browser/themes/osx/tabview/tabview.css

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 2 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 4
michael@0 5 body {
michael@0 6 background-color: transparent;
michael@0 7 font: message-box;
michael@0 8 color: rgba(0, 0, 0, 0.6);
michael@0 9 font-size: 12px;
michael@0 10 }
michael@0 11
michael@0 12 #bg {
michael@0 13 background: linear-gradient(#C4C4C4, #9E9E9E);
michael@0 14 }
michael@0 15
michael@0 16 #bg:-moz-window-inactive {
michael@0 17 background: linear-gradient(#EDEDED, #D8D8D8);
michael@0 18 }
michael@0 19
michael@0 20 /* Tabs
michael@0 21 ----------------------------------*/
michael@0 22
michael@0 23 .tab {
michael@0 24 margin: 8px;
michael@0 25 padding-top: 4px;
michael@0 26 -moz-padding-end: 6px;
michael@0 27 padding-bottom: 6px;
michael@0 28 -moz-padding-start: 4px;
michael@0 29 background-color: rgb(240,240,240);
michael@0 30 border-radius: 0.4em;
michael@0 31 cursor: pointer;
michael@0 32 }
michael@0 33
michael@0 34 .tab canvas,
michael@0 35 .cached-thumb {
michael@0 36 border: 1px solid rgba(0, 0, 0, 0.3);
michael@0 37 }
michael@0 38
michael@0 39 .thumb {
michael@0 40 box-shadow: 1px 2px 0 rgba(0, 0, 0, 0.2);
michael@0 41 background-color: white;
michael@0 42 }
michael@0 43
michael@0 44 html[dir=rtl] .thumb {
michael@0 45 box-shadow: -1px 2px 0 rgba(0, 0, 0, 0.2);
michael@0 46 }
michael@0 47
michael@0 48 .favicon {
michael@0 49 background-color: rgb(240,240,240);
michael@0 50 box-shadow:
michael@0 51 0 -1px 0 rgba(225, 225, 225, 0.8) inset,
michael@0 52 -1px 0 0 rgba(225, 225, 225, 0.8) inset;
michael@0 53 padding-top: 4px;
michael@0 54 -moz-padding-end: 6px;
michael@0 55 padding-bottom: 6px;
michael@0 56 -moz-padding-start: 4px;
michael@0 57 top: 4px;
michael@0 58 left: 4px;
michael@0 59 -moz-border-end: 1px solid rgba(0, 0, 0, 0.3);
michael@0 60 border-bottom: 1px solid rgba(0, 0, 0, 0.3);
michael@0 61 height: 16px;
michael@0 62 width: 16px;
michael@0 63 }
michael@0 64
michael@0 65 html[dir=ltr] .favicon {
michael@0 66 border-bottom-right-radius: 0.4em;
michael@0 67 }
michael@0 68
michael@0 69 html[dir=rtl] .favicon {
michael@0 70 border-bottom-left-radius: 0.4em;
michael@0 71 box-shadow:
michael@0 72 0 -1px 0 rgba(225, 225, 225, 0.8) inset,
michael@0 73 1px 0 0 rgba(225, 225, 225, 0.8) inset;
michael@0 74 left: auto;
michael@0 75 right: 2px;
michael@0 76 }
michael@0 77
michael@0 78 .favicon img {
michael@0 79 border: none;
michael@0 80 width: 16px;
michael@0 81 height: 16px;
michael@0 82 }
michael@0 83
michael@0 84 .close {
michael@0 85 top: 6px;
michael@0 86 right: 6px;
michael@0 87 width: 16px;
michael@0 88 height: 16px;
michael@0 89 background-image: -moz-image-rect(url(chrome://browser/skin/tabview/close.png), 0, 16, 16, 0);
michael@0 90 background-repeat: no-repeat;
michael@0 91 }
michael@0 92 .close:hover {
michael@0 93 background-image: -moz-image-rect(url(chrome://browser/skin/tabview/close.png), 0, 32, 16, 16);
michael@0 94 }
michael@0 95 .close:active {
michael@0 96 background-image: -moz-image-rect(url(chrome://browser/skin/tabview/close.png), 0, 48, 16, 32);
michael@0 97 }
michael@0 98
michael@0 99 html[dir=rtl] .close {
michael@0 100 right: auto;
michael@0 101 left: 6px;
michael@0 102 }
michael@0 103
michael@0 104 .expander {
michael@0 105 bottom: 8px;
michael@0 106 right: 6px;
michael@0 107 width: 16px;
michael@0 108 height: 16px;
michael@0 109 background: url(chrome://global/skin/icons/resizer.png) no-repeat;
michael@0 110 transition-property: opacity;
michael@0 111 transition-duration: 0.5s;
michael@0 112 transition-timing-function: ease-out;
michael@0 113 opacity: 0.2;
michael@0 114 }
michael@0 115
michael@0 116 html[dir=rtl] .expander {
michael@0 117 right: auto;
michael@0 118 left: 6px;
michael@0 119 transform: scaleX(-1);
michael@0 120 }
michael@0 121
michael@0 122 .expander:hover,
michael@0 123 .appTabIcon:hover {
michael@0 124 transition-property: opacity;
michael@0 125 transition-duration: 0.5s;
michael@0 126 transition-timing-function: ease-out;
michael@0 127 opacity: 1.0;
michael@0 128 }
michael@0 129
michael@0 130 .favicon img:hover,
michael@0 131 .expander img:hover {
michael@0 132 opacity: 1;
michael@0 133 border: none;
michael@0 134 }
michael@0 135
michael@0 136 .tab-title {
michael@0 137 bottom: -20px;
michael@0 138 text-align: center;
michael@0 139 width: 94.5%;
michael@0 140 text-shadow: 0 1px rgba(255, 255, 255, 0.6);
michael@0 141 }
michael@0 142
michael@0 143 .stacked {
michael@0 144 padding: 0;
michael@0 145 }
michael@0 146
michael@0 147 .stacked .thumb {
michael@0 148 box-shadow: rgba(0,0,0,.2) 1px 1px 4px;
michael@0 149 }
michael@0 150
michael@0 151 html[dir=rtl] .stacked .thumb {
michael@0 152 box-shadow: rgba(0,0,0,.2) -1px 1px 4px;
michael@0 153 }
michael@0 154
michael@0 155 .stack-trayed .tab-title {
michael@0 156 text-shadow: rgba(0,0,0,1) 1px 1px 1.5px;
michael@0 157 color: #EEE;
michael@0 158 font-size: 11px;
michael@0 159 }
michael@0 160
michael@0 161 html[dir=rtl] .stack-trayed .tab-title {
michael@0 162 text-shadow: rgba(0,0,0,1) -1px 1px 1.5px;
michael@0 163 }
michael@0 164
michael@0 165 .stack-trayed .thumb {
michael@0 166 box-shadow: none !important;
michael@0 167 }
michael@0 168
michael@0 169 .tab.focus {
michael@0 170 box-shadow: 0 0 5.5px -moz-mac-menuselect/*#0060D6*/;
michael@0 171 border: 1px solid rgba(255, 255, 255, 0.6);
michael@0 172 }
michael@0 173
michael@0 174 /* Tab: Zooming
michael@0 175 ----------------------------------*/
michael@0 176
michael@0 177 .front .tab-title,
michael@0 178 .front .close,
michael@0 179 .front .favicon,
michael@0 180 .front .expander,
michael@0 181 .front .thumb-shadow {
michael@0 182 display: none;
michael@0 183 }
michael@0 184
michael@0 185 .front .thumb {
michael@0 186 box-shadow: none !important;
michael@0 187 }
michael@0 188
michael@0 189 .front.focus {
michael@0 190 box-shadow: none !important;
michael@0 191 border: none !important;
michael@0 192 }
michael@0 193
michael@0 194 /* Tab GroupItem
michael@0 195 ----------------------------------*/
michael@0 196
michael@0 197 .groupItem {
michael@0 198 cursor: pointer;
michael@0 199 background-color: rgb(240,240,240);
michael@0 200 border-radius: 0.4em;
michael@0 201 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
michael@0 202 border: 1px solid rgba(255, 255, 255, 0.5);
michael@0 203 }
michael@0 204
michael@0 205 .groupItem.activeGroupItem {
michael@0 206 box-shadow:
michael@0 207 rgba(0,0,0,0.8) 2px 2px 8px;
michael@0 208 }
michael@0 209
michael@0 210 html[dir=rtl] .groupItem.activeGroupItem {
michael@0 211 box-shadow:
michael@0 212 rgba(0,0,0,0.8) -2px 2px 8px;
michael@0 213 }
michael@0 214
michael@0 215 .groupItem .close {
michael@0 216 z-index: 10;
michael@0 217 top: 0px;
michael@0 218 right: 0px;
michael@0 219 width: 22px;
michael@0 220 height: 22px;
michael@0 221 background-position: bottom left;
michael@0 222 }
michael@0 223
michael@0 224 html[dir=rtl] .groupItem .close {
michael@0 225 right: auto;
michael@0 226 left: 0px;
michael@0 227 background-position: bottom right;
michael@0 228 }
michael@0 229
michael@0 230 .phantom {
michael@0 231 border: 1px solid rgba(255, 255, 255, 0.5);
michael@0 232 }
michael@0 233
michael@0 234 .dragRegion {
michael@0 235 background: rgba(235, 235, 235, 0.4);
michael@0 236 }
michael@0 237
michael@0 238 .overlay {
michael@0 239 background-color: rgba(0,0,0,.7) !important;
michael@0 240 box-shadow: 3px 3px 5.5px rgba(0,0,0,.5);
michael@0 241 border-radius: 0.4em;
michael@0 242 }
michael@0 243
michael@0 244 html[dir=rtl] .overlay {
michael@0 245 box-shadow: -3px 3px 5.5px rgba(0,0,0,.5);
michael@0 246 }
michael@0 247
michael@0 248 .appTabTrayContainer {
michael@0 249 top: 34px;
michael@0 250 right: 1px;
michael@0 251 -moz-border-start: 1px solid #E1E1E1;
michael@0 252 padding: 0 5px;
michael@0 253 overflow: -moz-hidden-unscrollable;
michael@0 254 text-align: start;
michael@0 255 line-height: 0;
michael@0 256 }
michael@0 257
michael@0 258 html[dir=rtl] .appTabTrayContainer {
michael@0 259 right: auto;
michael@0 260 left: 1px;
michael@0 261 }
michael@0 262
michael@0 263 .appTabTray {
michael@0 264 display: inline-block;
michael@0 265 -moz-column-width: 16px;
michael@0 266 -moz-column-gap: 5px;
michael@0 267 }
michael@0 268
michael@0 269 .appTabTrayContainerTruncated {
michael@0 270 padding-bottom: 7px;
michael@0 271 }
michael@0 272
michael@0 273 .appTabTrayContainerTruncated:after {
michael@0 274 content: "…";
michael@0 275 position: absolute;
michael@0 276 bottom: 2px;
michael@0 277 left: 0;
michael@0 278 display: block;
michael@0 279 width: 100%;
michael@0 280 height: 15px;
michael@0 281 line-height: 15px;
michael@0 282 text-align: center;
michael@0 283 font-size: 15px;
michael@0 284 }
michael@0 285
michael@0 286 .appTabIcon {
michael@0 287 width: 16px;
michael@0 288 height: 16px;
michael@0 289 cursor: pointer;
michael@0 290 opacity: 0.8;
michael@0 291 padding-bottom: 3px;
michael@0 292 display: block;
michael@0 293 }
michael@0 294
michael@0 295 .undo {
michael@0 296 background-color: #A0A0A0;
michael@0 297 padding-top: 3px;
michael@0 298 padding-bottom: 3px;
michael@0 299 -moz-padding-start: 5px;
michael@0 300 -moz-padding-end: 20px;
michael@0 301 width: 135px;
michael@0 302 line-height: 25px;
michael@0 303 box-shadow: 0px 1px 0px rgba(255,255,255,.5), 0px -1px 0px rgba(0,0,0,.24);
michael@0 304 text-shadow: 0px -1px 0px rgba(255,255,255,.2);
michael@0 305 color: rgba( 0,0,0, .8);
michael@0 306 border-radius: 0.4em;
michael@0 307 text-align: center;
michael@0 308 border: none;
michael@0 309 cursor: pointer;
michael@0 310 }
michael@0 311
michael@0 312 .undo:hover {
michael@0 313 background-color: #949494;
michael@0 314 }
michael@0 315
michael@0 316 .undo .close {
michael@0 317 top: 7px;
michael@0 318 right: 7px;
michael@0 319 opacity: 0.5;
michael@0 320 }
michael@0 321
michael@0 322 html[dir=rtl] .undo .close {
michael@0 323 right: auto;
michael@0 324 left: 7px;
michael@0 325 }
michael@0 326
michael@0 327 .undo .close:hover{
michael@0 328 opacity: 1.0;
michael@0 329 }
michael@0 330
michael@0 331 /* Trenches
michael@0 332 ----------------------------------*/
michael@0 333
michael@0 334 .guideTrench {
michael@0 335 opacity: 0.9;
michael@0 336 border: 1px dashed rgba(0,0,0,.12);
michael@0 337 border-bottom: none;
michael@0 338 -moz-border-end: none;
michael@0 339 box-shadow: 1px 1px 0 rgba(255,255,255,.15);
michael@0 340 }
michael@0 341
michael@0 342 html[dir=rtl] .guideTrench {
michael@0 343 box-shadow: -1px 1px 0 rgba(255,255,255,.15);
michael@0 344 }
michael@0 345
michael@0 346 .visibleTrench {
michael@0 347 opacity: 0.05;
michael@0 348 }
michael@0 349
michael@0 350 .activeVisibleTrench {
michael@0 351 opacity: 0;
michael@0 352 }
michael@0 353
michael@0 354 .activeVisibleTrench.activeTrench {
michael@0 355 opacity: 0.45;
michael@0 356 }
michael@0 357
michael@0 358 .visibleTrench.border,
michael@0 359 .activeVisibleTrench.border {
michael@0 360 background-color: red;
michael@0 361 }
michael@0 362
michael@0 363 .visibleTrench.guide,
michael@0 364 .activeVisibleTrench.guide {
michael@0 365 background-color: blue;
michael@0 366 }
michael@0 367
michael@0 368 /* Other
michael@0 369 ----------------------------------*/
michael@0 370
michael@0 371 .active {
michael@0 372 box-shadow: 5px 5px 3px rgba(0,0,0,.5);
michael@0 373 }
michael@0 374
michael@0 375 html[dir=rtl] .active {
michael@0 376 box-shadow: -5px 5px 3px rgba(0,0,0,.5);
michael@0 377 }
michael@0 378
michael@0 379 .acceptsDrop {
michael@0 380 box-shadow: 2px 2px 7px -1px rgba(0,0,0,.6);
michael@0 381 }
michael@0 382
michael@0 383 html[dir=rtl] .acceptsDrop {
michael@0 384 box-shadow: -2px 2px 7px -1px rgba(0,0,0,.6);
michael@0 385 }
michael@0 386
michael@0 387 .titlebar {
michael@0 388 cursor: move;
michael@0 389 font-size: 12px;
michael@0 390 height: 18px;
michael@0 391 }
michael@0 392
michael@0 393 input.name {
michael@0 394 background: transparent;
michael@0 395 border: 1px solid transparent;
michael@0 396 color: #999;
michael@0 397 margin-top: 3px;
michael@0 398 -moz-margin-end: 0;
michael@0 399 margin-bottom: 0;
michael@0 400 -moz-margin-start: 3px;
michael@0 401 padding: 1px;
michael@0 402 }
michael@0 403
michael@0 404 html[dir=rtl] input.name {
michael@0 405 background-position: right top;
michael@0 406 }
michael@0 407
michael@0 408 .title-container:hover input.name,
michael@0 409 .title-container input.name:focus {
michael@0 410 border: 1px solid #ddd;
michael@0 411 }
michael@0 412
michael@0 413 .title-container:hover input.name-locked {
michael@0 414 border: 1px solid transparent !important;
michael@0 415 cursor: default;
michael@0 416 }
michael@0 417
michael@0 418 input.name:focus {
michael@0 419 color: #555;
michael@0 420 }
michael@0 421
michael@0 422 input.name::-moz-placeholder {
michael@0 423 opacity: 1.0;
michael@0 424 font-style: italic !important;
michael@0 425 color: transparent;
michael@0 426 background-image: url(chrome://browser/skin/tabview/edit-light.png);
michael@0 427 background-repeat: no-repeat;
michael@0 428 }
michael@0 429
michael@0 430 .title-container:hover input.name::-moz-placeholder {
michael@0 431 color: #CCC;
michael@0 432 background-image: none;
michael@0 433 }
michael@0 434
michael@0 435 input.name:focus::-moz-placeholder {
michael@0 436 background-image: none;
michael@0 437 }
michael@0 438
michael@0 439 .title-shield {
michael@0 440 margin-top: 3px;
michael@0 441 -moz-margin-end: 0;
michael@0 442 margin-bottom: 0;
michael@0 443 -moz-margin-start: 3px;
michael@0 444 padding: 1px;
michael@0 445 left: 0;
michael@0 446 top: 0;
michael@0 447 height: 100%;
michael@0 448 width: -moz-available;
michael@0 449 cursor: text;
michael@0 450 }
michael@0 451
michael@0 452 html[dir=rtl] .title-shield {
michael@0 453 left: auto;
michael@0 454 right: 0;
michael@0 455 }
michael@0 456
michael@0 457 .transparentBorder {
michael@0 458 border: 1px solid transparent !important;
michael@0 459 }
michael@0 460
michael@0 461 .stackExpander {
michael@0 462 cursor: pointer;
michael@0 463 bottom: 8px;
michael@0 464 background-image: -moz-image-rect(url(chrome://browser/skin/tabview/stack-expander.png), 0, 48, 24, 24);
michael@0 465 width: 24px;
michael@0 466 height: 24px;
michael@0 467 }
michael@0 468
michael@0 469 .stackExpander:hover {
michael@0 470 background-image: -moz-image-rect(url(chrome://browser/skin/tabview/stack-expander.png), 0, 24, 24, 0);
michael@0 471 }
michael@0 472
michael@0 473 /* Resizable
michael@0 474 ----------------------------------*/
michael@0 475 .resizer {
michael@0 476 background-image: url(chrome://global/skin/icons/resizer.png);
michael@0 477 width: 16px;
michael@0 478 height: 16px;
michael@0 479 bottom: 0px;
michael@0 480 right: 0px;
michael@0 481 opacity: .2;
michael@0 482 }
michael@0 483
michael@0 484 html[dir=rtl] .resizer {
michael@0 485 right: auto;
michael@0 486 left: 0;
michael@0 487 transform: scaleX(-1);
michael@0 488 }
michael@0 489
michael@0 490 .iq-resizable-handle {
michael@0 491 font-size: 0.1px;
michael@0 492 }
michael@0 493
michael@0 494 .iq-resizable-se {
michael@0 495 cursor: se-resize;
michael@0 496 width: 12px;
michael@0 497 height: 12px;
michael@0 498 padding-right: 3px;
michael@0 499 padding-bottom: 3px;
michael@0 500 right: -2px;
michael@0 501 bottom: -2px;
michael@0 502 }
michael@0 503
michael@0 504 html[dir=rtl] .iq-resizable-se {
michael@0 505 cursor: sw-resize;
michael@0 506 right: auto;
michael@0 507 left: 1px;
michael@0 508 }
michael@0 509
michael@0 510 /* Exit button
michael@0 511 +----------------------------------*/
michael@0 512 #exit-button {
michael@0 513 width: 20px;
michael@0 514 height: 20px;
michael@0 515 -moz-margin-end: 3px;
michael@0 516 margin-top: 0px;
michael@0 517 background-image: -moz-image-rect(url(chrome://browser/skin/tabview/tabview.png), 0, 100, 20, 80);
michael@0 518 background-attachment: scroll;
michael@0 519 background-repeat: no-repeat;
michael@0 520 border: none;
michael@0 521 }
michael@0 522
michael@0 523 #exit-button[groups="0"] {
michael@0 524 background-image: -moz-image-rect(url(chrome://browser/skin/tabview/tabview.png), 0, 20, 20, 0);
michael@0 525 }
michael@0 526
michael@0 527 #exit-button[groups="1"] {
michael@0 528 background-image: -moz-image-rect(url(chrome://browser/skin/tabview/tabview.png), 0, 40, 20, 20);
michael@0 529 }
michael@0 530
michael@0 531 #exit-button[groups="2"] {
michael@0 532 background-image: -moz-image-rect(url(chrome://browser/skin/tabview/tabview.png), 0, 60, 20, 40);
michael@0 533 }
michael@0 534
michael@0 535 #exit-button[groups="3"] {
michael@0 536 background-image: -moz-image-rect(url(chrome://browser/skin/tabview/tabview.png), 0, 80, 20, 60);
michael@0 537 }
michael@0 538
michael@0 539 /* Search
michael@0 540 ----------------------------------*/
michael@0 541 #searchshade{
michael@0 542 background-color: rgba(0,0,0,.42);
michael@0 543 width: 100%;
michael@0 544 height: 100%;
michael@0 545 }
michael@0 546
michael@0 547 #searchshade:-moz-window-inactive {
michael@0 548 background: linear-gradient(rgba(237,237,237,0.42), rgba(216,216,216,0.42));
michael@0 549 }
michael@0 550
michael@0 551 #search{
michael@0 552 width: 100%;
michael@0 553 height: 100%;
michael@0 554 }
michael@0 555
michael@0 556 #searchbox {
michael@0 557 width: 270px;
michael@0 558 max-width: -moz-available;
michael@0 559 -moz-margin-start: 20px;
michael@0 560 height: 30px;
michael@0 561 box-shadow: 0px 1px 0px rgba(255,255,255,.5), 0px -1px 0px rgba(0,0,0,1), 0px 0px 13px rgba(0,0,0,.8);
michael@0 562 color: white;
michael@0 563 border: none;
michael@0 564 background-color: #272727;
michael@0 565 border-radius: 0.4em;
michael@0 566 -moz-padding-start: 5px;
michael@0 567 -moz-padding-end: 5px;
michael@0 568 font-size: 14px;
michael@0 569 }
michael@0 570
michael@0 571 #searchbox:-moz-window-inactive {
michael@0 572 background-color: #BBBBBB;
michael@0 573 box-shadow: 0px 1px 0px rgba(255,255,255,.1), 0px -1px 0px rgba(0,0,0,0.3), 0px 0px 13px rgba(0,0,0,.2);
michael@0 574 }
michael@0 575
michael@0 576 #actions {
michael@0 577 width: 29px;
michael@0 578 text-align: center;
michael@0 579 background-color: #EBEBEB;
michael@0 580 border-radius: 0.4em;
michael@0 581 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
michael@0 582 border: 1px solid rgba(255, 255, 255, 0.5);
michael@0 583 }
michael@0 584
michael@0 585 #actions #searchbutton {
michael@0 586 background: transparent url(chrome://browser/skin/tabview/search.png) no-repeat;
michael@0 587 border: none;
michael@0 588 width: 20px;
michael@0 589 height: 20px;
michael@0 590 margin-top: 3px;
michael@0 591 -moz-margin-end: 1px;
michael@0 592 }
michael@0 593
michael@0 594 .notMainMatch {
michael@0 595 opacity: .70;
michael@0 596 }
michael@0 597
michael@0 598 #otherresults {
michael@0 599 left: 0px;
michael@0 600 bottom: 0px;
michael@0 601 width: 100%;
michael@0 602 height: 30px;
michael@0 603 background-color: rgba(0,0,0,.3);
michael@0 604 box-shadow: 0 -1px 0 rgba(255,255,255,.1), inset 0 2px 5px rgba(0,0,0,.3);
michael@0 605 }
michael@0 606
michael@0 607 html[dir=rtl] #otherresults {
michael@0 608 left: auto;
michael@0 609 right: 0px;
michael@0 610 }
michael@0 611
michael@0 612 #otherresults .label {
michael@0 613 color: #999;
michael@0 614 line-height: 30px;
michael@0 615 -moz-margin-start: 5px;
michael@0 616 -moz-margin-end: 5px;
michael@0 617 }
michael@0 618
michael@0 619 #otherresults .label:-moz-window-inactive {
michael@0 620 color: #404040;
michael@0 621 }
michael@0 622
michael@0 623 .inlineMatch {
michael@0 624 background-color: #EBEBEB;
michael@0 625 border-radius: 0.4em;
michael@0 626 box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
michael@0 627 border: 1px solid rgba(255, 255, 255, 0.5);
michael@0 628 -moz-padding-start: 3px;
michael@0 629 -moz-padding-end: 3px;
michael@0 630 height: 20px;
michael@0 631 -moz-margin-end: 5px;
michael@0 632 cursor: pointer;
michael@0 633 }
michael@0 634
michael@0 635 .inlineMatch:hover {
michael@0 636 opacity: 1.0;
michael@0 637 }
michael@0 638
michael@0 639 .inlineMatch > img {
michael@0 640 -moz-margin-end: 5px;
michael@0 641 position: relative;
michael@0 642 top: 2px;
michael@0 643 width: 16px;
michael@0 644 height: 16px;
michael@0 645 }
michael@0 646
michael@0 647 .inlineMatch > span {
michael@0 648 max-width: 200px;
michael@0 649 height: 15px;
michael@0 650 }
michael@0 651

mercurial