Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * lib/css/legacy/body.css |
| 4 | */html { |
| 5 | margin: 0px; |
| 6 | padding: 0px; |
| 7 | } |
| 8 | |
| 9 | body { |
| 10 | margin: 0px; |
| 11 | padding: 0px; |
| 12 | font-family: Arial, Helvetica, Sans; |
| 13 | font-size: 12px; |
| 14 | color: #000; |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 15 | background-color: #e2e2e2; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 16 | } |
| 17 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 18 | pre { margin: 0px; padding: 0px; } |
| 19 | |
| 20 | button { margin: 2px; margin-left: 0px; } |
| 21 | |
| 22 | label { |
| 23 | padding-top: 15px; |
| 24 | color: #404040; |
| 25 | } |
| 26 | |
| 27 | select, input, textarea { |
| 28 | border: 1px solid #AAA; |
| 29 | -moz-border-radius: 4px; |
| 30 | -webkit-border-radius: 4px; |
| 31 | font-size: 13px; |
| 32 | padding: 4px; |
| 33 | color: #222; |
| 34 | } |
| 35 | |
| 36 | textarea { |
| 37 | font-family: inherit; |
| 38 | height: 120px; |
| 39 | width: 90%; |
| 40 | font-size: 12px; |
| 41 | white-space: normal; |
| 42 | } |
| 43 | |
| 44 | table { padding: 0px; border-collapse: 'collapse'} |
| 45 | |
| 46 | td { |
| 47 | padding:0px; |
| 48 | margin: 0px; |
| 49 | vertical-align: top; |
| 50 | } |
| 51 | |
| 52 | p { |
| 53 | margin: 0px 0px 9px 0px; |
| 54 | line-height: 1.5em; |
| 55 | } |
| 56 | |
| 57 | li { |
| 58 | line-height: 1.5em; |
| 59 | } |
| 60 | |
Rushabh Mehta | aa848be | 2012-02-17 12:06:33 +0530 | [diff] [blame] | 61 | hr { |
| 62 | margin: 18px 0; |
| 63 | border: 0; |
| 64 | border-top: 1px solid #e5e5e5; |
| 65 | border-bottom: 1px solid #ffffff; |
| 66 | } |
| 67 | |
Rushabh Mehta | d025133 | 2012-02-21 17:26:50 +0530 | [diff] [blame] | 68 | /* links */ |
| 69 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 70 | a:active { outline:none; } |
| 71 | |
Rushabh Mehta | d025133 | 2012-02-21 17:26:50 +0530 | [diff] [blame] | 72 | a { |
| 73 | color: #0088cc; |
| 74 | text-decoration: none; |
| 75 | } |
| 76 | a:hover { |
| 77 | color: #005580; |
| 78 | text-decoration: underline; |
| 79 | } |
| 80 | |
| 81 | .link_type { |
| 82 | padding:2px; |
| 83 | color: #0088cc; |
| 84 | cursor: pointer; |
| 85 | } |
| 86 | |
| 87 | .link_type:hover { |
| 88 | color: #005580; |
| 89 | text-decoration: underline; |
| 90 | } |
| 91 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 92 | :focus { -moz-outline-style:none; } |
| 93 | |
| 94 | table.simpletable { border-collapse: collapse; margin-bottom: 10px;} |
| 95 | table.simpletable td {border: 1pt solid #000; vertical-align: top; padding: 2px; } |
| 96 | |
| 97 | div.fix_ff_cursor { overflow: auto; } |
| 98 | |
| 99 | /* --- Layout --- */ |
| 100 | |
| 101 | div.comment { color: #444; } |
| 102 | |
| 103 | div#body_div { |
| 104 | position: relative; |
| 105 | display: none; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 106 | padding-right: 7px; |
Rushabh Mehta | c5471dd | 2012-02-22 12:07:42 +0530 | [diff] [blame] | 107 | width: 900px; |
| 108 | margin: auto; |
| 109 | margin-top: 56px; |
| 110 | } |
| 111 | |
| 112 | footer { |
| 113 | width: 900px; |
| 114 | margin: auto; |
| 115 | } |
| 116 | header .container { |
| 117 | width: 900px; |
| 118 | margin: auto; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | div.no_script { |
| 122 | display: none; |
| 123 | } |
| 124 | |
| 125 | div.loading_div { |
| 126 | position: absolute; |
| 127 | background-color: #FFFFCC; |
| 128 | z-index: 1999; |
| 129 | right: 5px; |
| 130 | width: 90px; |
| 131 | display: none; |
| 132 | text-align: center; |
| 133 | padding: 2px; |
| 134 | font-size: 12px; |
| 135 | border: 1px solid #FF4; |
| 136 | } |
| 137 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 138 | div.std-footer { |
| 139 | margin: 13px 0px; |
| 140 | border-top: 1px solid #AAA; |
| 141 | padding: 13px; |
| 142 | } |
| 143 | |
| 144 | div.std-footer-item { |
| 145 | margin: 0px 13px 13px 0px; |
| 146 | } |
| 147 | |
| 148 | .shadow { |
| 149 | -moz-box-shadow: 0px 2px 2px #888; |
| 150 | -webkit-box-shadow: 0px 2px 2px #888; |
| 151 | box-shadow: 0px 2px 2px #888; |
| 152 | } |
| 153 | |
| 154 | .round { |
| 155 | -webkit-border-radius: 5px; |
| 156 | -moz-border-radius: 5px; |
| 157 | border-radius: 5px; |
| 158 | } |
| 159 | .gradient { |
| 160 | background: #ededed; /* Old browsers */ |
| 161 | background: -moz-linear-gradient(top, #ededed 0%, #d1d1d1 47%, #b7b7b7 100%); /* FF3.6+ */ |
| 162 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ededed), color-stop(47%,#d1d1d1), color-stop(100%,#b7b7b7)); /* Chrome,Safari4+ */ |
| 163 | background: -webkit-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* Chrome10+,Safari5.1+ */ |
| 164 | background: -o-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* Opera11.10+ */ |
| 165 | background: -ms-linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* IE10+ */ |
| 166 | filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#b7b7b7',GradientType=0 ); /* IE6-9 */ |
| 167 | background: linear-gradient(top, #ededed 0%,#d1d1d1 47%,#b7b7b7 100%); /* W3C */ |
| 168 | } |
| 169 | |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 170 | .layout_wrapper, .layout-wrapper { |
Anand Doshi | 40ee8d6 | 2012-02-24 19:21:47 +0530 | [diff] [blame] | 171 | -moz-box-shadow: 1px 1px 8px #555; |
| 172 | -webkit-box-shadow: 1px 1px 8px #555; |
| 173 | box-shadow: 1px 1px 8px #555; |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 174 | background-color: #fff; |
| 175 | padding: 15px; |
| 176 | } |
| 177 | |
Rushabh Mehta | 09a897a | 2012-02-20 18:30:52 +0530 | [diff] [blame] | 178 | .layout-wrapper-background { |
| 179 | background-color: #f2f2f2 !important; |
| 180 | padding: 0px; |
| 181 | } |
| 182 | |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 183 | .layout-main-section { |
Anand Doshi | 40ee8d6 | 2012-02-24 19:21:47 +0530 | [diff] [blame] | 184 | width: 71%; |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 185 | float: left; |
Rushabh Mehta | 09a897a | 2012-02-20 18:30:52 +0530 | [diff] [blame] | 186 | padding: 15px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 187 | background-color: #FFF; |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 188 | min-height: 450px; |
Rushabh Mehta | fdea966 | 2012-02-27 18:03:54 +0530 | [diff] [blame] | 189 | -moz-box-shadow: 7px 0px 6px -2px #ddd; |
| 190 | -webkit-box-shadow: 7px 0px 6px -2px #ddd; |
| 191 | box-shadow: 7px 0px 6px -2px #ddd; |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 192 | } |
| 193 | |
| 194 | .layout-side-section { |
Rushabh Mehta | c5471dd | 2012-02-22 12:07:42 +0530 | [diff] [blame] | 195 | width: 22%; |
Anand Doshi | 40ee8d6 | 2012-02-24 19:21:47 +0530 | [diff] [blame] | 196 | /*float: right;*/ |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 197 | color: #606060; |
| 198 | overflow-x: hidden; |
Rushabh Mehta | 09a897a | 2012-02-20 18:30:52 +0530 | [diff] [blame] | 199 | padding: 15px; |
Rushabh Mehta | 3f29b85 | 2012-02-20 15:40:29 +0530 | [diff] [blame] | 200 | min-height: 450px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 201 | } |
| 202 | |
| 203 | /* from bootstrap */ |
| 204 | .container { |
| 205 | margin-left: auto; |
| 206 | margin-right: auto; |
| 207 | zoom: 1; |
| 208 | } |
| 209 | .container:before, .container:after { |
| 210 | display: table; |
| 211 | content: ""; |
| 212 | zoom: 1; |
| 213 | } |
| 214 | .container:after { |
| 215 | clear: both; |
| 216 | } |
| 217 | |
Anand Doshi | 40ee8d6 | 2012-02-24 19:21:47 +0530 | [diff] [blame] | 218 | .well { |
| 219 | min-height: 20px; |
| 220 | padding: 19px; |
| 221 | margin-bottom: 20px; |
| 222 | background-color: #f5f5f5; |
| 223 | border: 1px solid #eee; |
| 224 | border: 1px solid rgba(0, 0, 0, 0.05); |
| 225 | -webkit-border-radius: 4px; |
| 226 | -moz-border-radius: 4px; |
| 227 | border-radius: 4px; |
| 228 | -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); |
| 229 | -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); |
| 230 | box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); |
| 231 | } |
| 232 | |
Rushabh Mehta | df33cb3 | 2012-03-01 13:44:09 +0530 | [diff] [blame] | 233 | .avatar-small { |
| 234 | display: inline-block; |
| 235 | min-width: 29px; |
| 236 | } |
| 237 | .avatar-small img { |
| 238 | height: 24px; |
| 239 | margin-bottom: -7px; |
| 240 | max-width: 24px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 241 | } |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 242 | /* |
| 243 | * lib/css/legacy/messages.css |
| 244 | */ |
| 245 | /* FLOATING MESSAGE */ |
| 246 | |
| 247 | .btn-img { cursor: pointer; } |
| 248 | |
| 249 | div.fetching { color: #888; text-align:right; } |
| 250 | |
| 251 | div.notice { |
| 252 | postion: absolute; |
| 253 | background-color: #000; |
| 254 | -moz-border-radius: 5px; -webkit-border-radius: 5px; |
| 255 | opacity: 0.6; |
| 256 | right: 0; |
| 257 | top: 0; |
| 258 | margin-top: 8px; |
| 259 | z-index: -1; |
| 260 | padding: 8px; |
| 261 | } |
| 262 | |
| 263 | /** help **/ |
| 264 | |
| 265 | .info-box { |
| 266 | background-color: #F8F8F8; |
| 267 | border: 1px solid #CCCCCC; |
| 268 | border-radius: 3px 3px 3px 3px; |
| 269 | line-height: 1.6em; |
| 270 | overflow: auto; |
| 271 | padding: 6px 10px; |
| 272 | margin-bottom: 9px; |
| 273 | } |
| 274 | |
| 275 | .help_box, .help-box { |
| 276 | background-color:#FFC; |
| 277 | font-size: 13px; |
| 278 | color: #864; |
| 279 | padding: 7px; |
| 280 | margin: 11px 0px; |
| 281 | border: 1px solid #EEB; |
| 282 | } |
| 283 | |
| 284 | .help_box_big { |
| 285 | background-color:#FFC; |
| 286 | color: #864; |
| 287 | padding: 7px; |
| 288 | margin: 7px 0px; |
| 289 | border: 1px solid #EEB; |
| 290 | text-align: center; |
| 291 | font-size: 14px; |
| 292 | } |
| 293 | /* |
| 294 | * lib/css/legacy/dialog.css |
| 295 | *//***** Dialogs *******/ |
| 296 | |
| 297 | div.dialog_wrapper { |
| 298 | position: absolute; |
| 299 | width: 440px; |
| 300 | display: none; |
| 301 | z-index: 90; |
| 302 | background-color: #FFF; |
| 303 | border: 3px solid #222; |
| 304 | box-shadow:1px 1px 5px #777; |
| 305 | -moz-box-shadow: 1px 1px 5px #777; |
| 306 | -webkit-box-shadow: 1px 1px 5px #777; |
| 307 | |
| 308 | border-radius: 5px; |
| 309 | -moz-border-radius: 5px; |
| 310 | -webkit-border-radius: 5px; |
| 311 | } |
| 312 | |
| 313 | div.dialog_head { |
| 314 | height: 22px; |
| 315 | padding: 4px; |
| 316 | background-color: #222; |
| 317 | color: #FFF; |
| 318 | } |
| 319 | |
| 320 | div.dialog_body { |
Rushabh Mehta | 4c1e9e7 | 2012-03-01 13:30:34 +0530 | [diff] [blame] | 321 | padding: 8px 8px 16px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 322 | border-radius: 5px; |
| 323 | -moz-border-radius: 5px; |
| 324 | -webkit-border-radius: 5px; |
| 325 | } |
| 326 | |
| 327 | div.dialog_back { |
| 328 | position: fixed; |
| 329 | display: none; |
| 330 | top: 0px; |
| 331 | left: 0px; |
| 332 | bottom: 0px; |
| 333 | right: 0px; |
| 334 | background-color: #EEE; |
| 335 | opacity: 0.6; |
| 336 | z-index: 50; |
| 337 | text-align: center; |
| 338 | } |
| 339 | |
| 340 | div.dialog_message { |
| 341 | display: none; |
| 342 | position: absolute; |
| 343 | width: 250px; |
| 344 | font-size: 12px; |
| 345 | z-index: 91; |
| 346 | background-color:#FFF; |
| 347 | padding: 12px; |
| 348 | border: 1px solid #444; |
| 349 | } |
| 350 | |
| 351 | div.dialog_row { |
| 352 | padding: 8px 8px 0px 8px; |
| 353 | } |
| 354 | |
| 355 | div.dialog_row table { |
| 356 | width: 100%; |
| 357 | } |
| 358 | |
| 359 | div.dialog_row table td { |
| 360 | } |
| 361 | |
| 362 | div.dialog_row input[type="text"], div.dialog_row input[type="password"], div.dialog_row textarea, div.dialog_row select { |
| 363 | width: 80%; |
| 364 | font-size: 14px; |
| 365 | } |
| 366 | |
| 367 | div.dialog_row table td textarea { |
| 368 | width: 80%; |
| 369 | height: 200px; |
| 370 | font-size: 12px; |
| 371 | } |
| 372 | |
| 373 | /* |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 374 | * lib/css/bootstrap/headings.css |
| 375 | *//* heading from bootstrap */ |
| 376 | |
| 377 | h1, |
| 378 | h2, |
| 379 | h3, |
| 380 | h4, |
| 381 | h5, |
| 382 | h6 { |
| 383 | margin: 0; |
| 384 | font-weight: bold; |
| 385 | color: #333333; |
| 386 | text-rendering: optimizelegibility; |
| 387 | margin-bottom: 0.3em; |
| 388 | } |
| 389 | h1 small, |
| 390 | h2 small, |
| 391 | h3 small, |
| 392 | h4 small, |
| 393 | h5 small, |
| 394 | h6 small { |
| 395 | font-weight: normal; |
| 396 | color: #999999; |
| 397 | } |
| 398 | h1 { |
| 399 | font-size: 30px; |
| 400 | line-height: 36px; |
| 401 | } |
| 402 | h1 small { |
| 403 | font-size: 18px; |
| 404 | } |
| 405 | h2 { |
| 406 | font-size: 24px; |
| 407 | line-height: 36px; |
| 408 | } |
| 409 | h2 small { |
| 410 | font-size: 18px; |
| 411 | } |
| 412 | h3 { |
| 413 | line-height: 27px; |
| 414 | font-size: 18px; |
| 415 | } |
| 416 | h3 small { |
| 417 | font-size: 14px; |
| 418 | } |
| 419 | h4, h5, h6 { |
| 420 | line-height: 18px; |
| 421 | } |
| 422 | h4 { |
| 423 | font-size: 14px; |
| 424 | } |
| 425 | h4 small { |
| 426 | font-size: 12px; |
| 427 | } |
| 428 | h5 { |
| 429 | font-size: 12px; |
| 430 | } |
| 431 | h6 { |
| 432 | font-size: 11px; |
| 433 | color: #999999; |
| 434 | text-transform: uppercase; |
| 435 | } |
| 436 | /* |
| 437 | * lib/css/bootstrap/buttons.css |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 438 | */.close { |
| 439 | float: right; |
| 440 | font-size: 20px; |
| 441 | font-weight: bold; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 442 | line-height: 18px; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 443 | color: #000000; |
| 444 | text-shadow: 0 1px 0 #ffffff; |
| 445 | opacity: 0.2; |
| 446 | filter: alpha(opacity=20); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 447 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 448 | .close:hover { |
| 449 | color: #000000; |
| 450 | text-decoration: none; |
| 451 | opacity: 0.4; |
| 452 | filter: alpha(opacity=40); |
| 453 | cursor: pointer; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 454 | } |
| 455 | .btn { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 456 | display: inline-block; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 457 | padding: 4px 10px 4px; |
| 458 | font-size: 13px; |
| 459 | line-height: 18px; |
| 460 | color: #333333; |
| 461 | text-align: center; |
| 462 | text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); |
| 463 | background-color: #fafafa; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 464 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6)); |
| 465 | background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); |
| 466 | background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6); |
| 467 | background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); |
| 468 | background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); |
| 469 | background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 470 | background-repeat: no-repeat; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 471 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 472 | border: 1px solid #ccc; |
| 473 | border-bottom-color: #bbb; |
| 474 | -webkit-border-radius: 4px; |
| 475 | -moz-border-radius: 4px; |
| 476 | border-radius: 4px; |
| 477 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 478 | -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 479 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 480 | cursor: pointer; |
| 481 | *margin-left: .3em; |
| 482 | } |
| 483 | .btn:first-child { |
| 484 | *margin-left: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 485 | } |
| 486 | .btn:hover { |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 487 | color: #333333; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 488 | text-decoration: none; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 489 | background-color: #e6e6e6; |
| 490 | background-position: 0 -15px; |
| 491 | -webkit-transition: background-position 0.1s linear; |
| 492 | -moz-transition: background-position 0.1s linear; |
| 493 | -ms-transition: background-position 0.1s linear; |
| 494 | -o-transition: background-position 0.1s linear; |
| 495 | transition: background-position 0.1s linear; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 496 | } |
| 497 | .btn:focus { |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 498 | outline: thin dotted; |
| 499 | outline: 5px auto -webkit-focus-ring-color; |
| 500 | outline-offset: -2px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 501 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 502 | .btn.active, .btn:active { |
| 503 | background-image: none; |
| 504 | -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 505 | -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 506 | box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 507 | background-color: #e6e6e6; |
| 508 | background-color: #d9d9d9 \9; |
| 509 | color: rgba(0, 0, 0, 0.5); |
| 510 | outline: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 511 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 512 | .btn.disabled, .btn[disabled] { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 513 | cursor: default; |
| 514 | background-image: none; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 515 | background-color: #e6e6e6; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 516 | opacity: 0.65; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 517 | filter: alpha(opacity=65); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 518 | -webkit-box-shadow: none; |
| 519 | -moz-box-shadow: none; |
| 520 | box-shadow: none; |
| 521 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 522 | .btn-large { |
| 523 | padding: 9px 14px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 524 | font-size: 15px; |
| 525 | line-height: normal; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 526 | -webkit-border-radius: 5px; |
| 527 | -moz-border-radius: 5px; |
| 528 | border-radius: 5px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 529 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 530 | .btn-large .icon { |
| 531 | margin-top: 1px; |
| 532 | } |
| 533 | .btn-small { |
| 534 | padding: 5px 9px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 535 | font-size: 11px; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 536 | line-height: 16px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 537 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 538 | .btn-small .icon { |
| 539 | margin-top: -1px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 540 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 541 | .btn-primary, |
| 542 | .btn-primary:hover, |
| 543 | .btn-warning, |
| 544 | .btn-warning:hover, |
| 545 | .btn-danger, |
| 546 | .btn-danger:hover, |
| 547 | .btn-success, |
| 548 | .btn-success:hover, |
| 549 | .btn-info, |
| 550 | .btn-info:hover { |
| 551 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); |
| 552 | color: #ffffff; |
| 553 | } |
| 554 | .btn-primary.active, |
| 555 | .btn-warning.active, |
| 556 | .btn-danger.active, |
| 557 | .btn-success.active, |
| 558 | .btn-info.active { |
| 559 | color: rgba(255, 255, 255, 0.75); |
| 560 | } |
| 561 | .btn-primary { |
| 562 | background-color: #006dcc; |
| 563 | background-image: -moz-linear-gradient(top, #0088cc, #0044cc); |
| 564 | background-image: -ms-linear-gradient(top, #0088cc, #0044cc); |
| 565 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc)); |
| 566 | background-image: -webkit-linear-gradient(top, #0088cc, #0044cc); |
| 567 | background-image: -o-linear-gradient(top, #0088cc, #0044cc); |
| 568 | background-image: linear-gradient(top, #0088cc, #0044cc); |
| 569 | background-repeat: repeat-x; |
| 570 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0); |
| 571 | border-color: #0044cc #0044cc #002a80; |
| 572 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 573 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 574 | } |
| 575 | .btn-primary:hover, |
| 576 | .btn-primary:active, |
| 577 | .btn-primary.active, |
| 578 | .btn-primary.disabled, |
| 579 | .btn-primary[disabled] { |
| 580 | background-color: #0044cc; |
| 581 | } |
| 582 | .btn-primary:active, .btn-primary.active { |
| 583 | background-color: #003399 \9; |
| 584 | } |
| 585 | .btn-warning { |
| 586 | background-color: #faa732; |
| 587 | background-image: -moz-linear-gradient(top, #fbb450, #f89406); |
| 588 | background-image: -ms-linear-gradient(top, #fbb450, #f89406); |
| 589 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406)); |
| 590 | background-image: -webkit-linear-gradient(top, #fbb450, #f89406); |
| 591 | background-image: -o-linear-gradient(top, #fbb450, #f89406); |
| 592 | background-image: linear-gradient(top, #fbb450, #f89406); |
| 593 | background-repeat: repeat-x; |
| 594 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0); |
| 595 | border-color: #f89406 #f89406 #ad6704; |
| 596 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 597 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 598 | } |
| 599 | .btn-warning:hover, |
| 600 | .btn-warning:active, |
| 601 | .btn-warning.active, |
| 602 | .btn-warning.disabled, |
| 603 | .btn-warning[disabled] { |
| 604 | background-color: #f89406; |
| 605 | } |
| 606 | .btn-warning:active, .btn-warning.active { |
| 607 | background-color: #c67605 \9; |
| 608 | } |
| 609 | .btn-danger { |
| 610 | background-color: #da4f49; |
| 611 | background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f); |
| 612 | background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f); |
| 613 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f)); |
| 614 | background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f); |
| 615 | background-image: -o-linear-gradient(top, #ee5f5b, #bd362f); |
| 616 | background-image: linear-gradient(top, #ee5f5b, #bd362f); |
| 617 | background-repeat: repeat-x; |
| 618 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0); |
| 619 | border-color: #bd362f #bd362f #802420; |
| 620 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 621 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 622 | } |
| 623 | .btn-danger:hover, |
| 624 | .btn-danger:active, |
| 625 | .btn-danger.active, |
| 626 | .btn-danger.disabled, |
| 627 | .btn-danger[disabled] { |
| 628 | background-color: #bd362f; |
| 629 | } |
| 630 | .btn-danger:active, .btn-danger.active { |
| 631 | background-color: #942a25 \9; |
| 632 | } |
| 633 | .btn-success { |
| 634 | background-color: #5bb75b; |
| 635 | background-image: -moz-linear-gradient(top, #62c462, #51a351); |
| 636 | background-image: -ms-linear-gradient(top, #62c462, #51a351); |
| 637 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351)); |
| 638 | background-image: -webkit-linear-gradient(top, #62c462, #51a351); |
| 639 | background-image: -o-linear-gradient(top, #62c462, #51a351); |
| 640 | background-image: linear-gradient(top, #62c462, #51a351); |
| 641 | background-repeat: repeat-x; |
| 642 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0); |
| 643 | border-color: #51a351 #51a351 #387038; |
| 644 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 645 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 646 | } |
| 647 | .btn-success:hover, |
| 648 | .btn-success:active, |
| 649 | .btn-success.active, |
| 650 | .btn-success.disabled, |
| 651 | .btn-success[disabled] { |
| 652 | background-color: #51a351; |
| 653 | } |
| 654 | .btn-success:active, .btn-success.active { |
| 655 | background-color: #408140 \9; |
| 656 | } |
| 657 | .btn-info { |
| 658 | background-color: #49afcd; |
| 659 | background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4); |
| 660 | background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4); |
| 661 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4)); |
| 662 | background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4); |
| 663 | background-image: -o-linear-gradient(top, #5bc0de, #2f96b4); |
| 664 | background-image: linear-gradient(top, #5bc0de, #2f96b4); |
| 665 | background-repeat: repeat-x; |
| 666 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0); |
| 667 | border-color: #2f96b4 #2f96b4 #1f6377; |
| 668 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 669 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 670 | } |
| 671 | .btn-info:hover, |
| 672 | .btn-info:active, |
| 673 | .btn-info.active, |
| 674 | .btn-info.disabled, |
| 675 | .btn-info[disabled] { |
| 676 | background-color: #2f96b4; |
| 677 | } |
| 678 | .btn-info:active, .btn-info.active { |
| 679 | background-color: #24748c \9; |
| 680 | } |
| 681 | button.btn, input[type="submit"].btn { |
| 682 | *padding-top: 2px; |
| 683 | *padding-bottom: 2px; |
| 684 | } |
| 685 | button.btn::-moz-focus-inner, input[type="submit"].btn::-moz-focus-inner { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 686 | padding: 0; |
| 687 | border: 0; |
| 688 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 689 | button.btn.large, input[type="submit"].btn.large { |
| 690 | *padding-top: 7px; |
| 691 | *padding-bottom: 7px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 692 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 693 | button.btn.small, input[type="submit"].btn.small { |
| 694 | *padding-top: 3px; |
| 695 | *padding-bottom: 3px; |
| 696 | } |
| 697 | .btn-group { |
| 698 | position: relative; |
| 699 | *zoom: 1; |
| 700 | *margin-left: .3em; |
| 701 | } |
| 702 | .btn-group:before, .btn-group:after { |
| 703 | display: table; |
| 704 | content: ""; |
| 705 | } |
| 706 | .btn-group:after { |
| 707 | clear: both; |
| 708 | } |
| 709 | .btn-group:first-child { |
| 710 | *margin-left: 0; |
| 711 | } |
| 712 | .btn-group + .btn-group { |
| 713 | margin-left: 5px; |
| 714 | } |
| 715 | .btn-toolbar { |
| 716 | margin-top: 9px; |
| 717 | margin-bottom: 9px; |
| 718 | } |
| 719 | .btn-toolbar .btn-group { |
| 720 | display: inline-block; |
| 721 | *display: inline; |
| 722 | /* IE7 inline-block hack */ |
| 723 | |
| 724 | *zoom: 1; |
| 725 | } |
| 726 | .btn-group .btn { |
| 727 | position: relative; |
| 728 | float: left; |
| 729 | margin-left: -1px; |
| 730 | -webkit-border-radius: 0; |
| 731 | -moz-border-radius: 0; |
| 732 | border-radius: 0; |
| 733 | } |
| 734 | .btn-group .btn:first-child { |
| 735 | margin-left: 0; |
| 736 | -webkit-border-top-left-radius: 4px; |
| 737 | -moz-border-radius-topleft: 4px; |
| 738 | border-top-left-radius: 4px; |
| 739 | -webkit-border-bottom-left-radius: 4px; |
| 740 | -moz-border-radius-bottomleft: 4px; |
| 741 | border-bottom-left-radius: 4px; |
| 742 | } |
| 743 | .btn-group .btn:last-child, .btn-group .dropdown-toggle { |
| 744 | -webkit-border-top-right-radius: 4px; |
| 745 | -moz-border-radius-topright: 4px; |
| 746 | border-top-right-radius: 4px; |
| 747 | -webkit-border-bottom-right-radius: 4px; |
| 748 | -moz-border-radius-bottomright: 4px; |
| 749 | border-bottom-right-radius: 4px; |
| 750 | } |
| 751 | .btn-group .btn.large:first-child { |
| 752 | margin-left: 0; |
| 753 | -webkit-border-top-left-radius: 6px; |
| 754 | -moz-border-radius-topleft: 6px; |
| 755 | border-top-left-radius: 6px; |
| 756 | -webkit-border-bottom-left-radius: 6px; |
| 757 | -moz-border-radius-bottomleft: 6px; |
| 758 | border-bottom-left-radius: 6px; |
| 759 | } |
| 760 | .btn-group .btn.large:last-child, .btn-group .large.dropdown-toggle { |
| 761 | -webkit-border-top-right-radius: 6px; |
| 762 | -moz-border-radius-topright: 6px; |
| 763 | border-top-right-radius: 6px; |
| 764 | -webkit-border-bottom-right-radius: 6px; |
| 765 | -moz-border-radius-bottomright: 6px; |
| 766 | border-bottom-right-radius: 6px; |
| 767 | } |
| 768 | .btn-group .btn:hover, |
| 769 | .btn-group .btn:focus, |
| 770 | .btn-group .btn:active, |
| 771 | .btn-group .btn.active { |
| 772 | z-index: 2; |
| 773 | } |
| 774 | .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { |
| 775 | outline: 0; |
| 776 | } |
| 777 | .btn-group .dropdown-toggle { |
| 778 | padding-left: 8px; |
| 779 | padding-right: 8px; |
| 780 | -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 781 | -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 782 | box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 783 | *padding-top: 5px; |
| 784 | *padding-bottom: 5px; |
| 785 | } |
| 786 | .btn-group.open { |
| 787 | *z-index: 1000; |
| 788 | } |
| 789 | .btn-group.open .dropdown-menu { |
| 790 | display: block; |
| 791 | margin-top: 1px; |
| 792 | -webkit-border-radius: 5px; |
| 793 | -moz-border-radius: 5px; |
| 794 | border-radius: 5px; |
| 795 | } |
| 796 | .btn-group.open .dropdown-toggle { |
| 797 | background-image: none; |
| 798 | -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 799 | -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 800 | box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05); |
| 801 | } |
| 802 | .btn .caret { |
| 803 | margin-top: 7px; |
| 804 | margin-left: 0; |
| 805 | } |
| 806 | .btn:hover .caret, .open.btn-group .caret { |
| 807 | opacity: 1; |
| 808 | filter: alpha(opacity=100); |
| 809 | } |
| 810 | .btn-primary .caret, |
| 811 | .btn-danger .caret, |
| 812 | .btn-info .caret, |
| 813 | .btn-success .caret { |
| 814 | border-top-color: #ffffff; |
| 815 | opacity: 0.75; |
| 816 | filter: alpha(opacity=75); |
| 817 | } |
| 818 | .btn-small .caret { |
| 819 | margin-top: 4px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 820 | } |
| 821 | /* |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 822 | * lib/css/bootstrap/navbar.css |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 823 | */.nav { |
| 824 | margin-left: 0; |
| 825 | margin-bottom: 18px; |
| 826 | list-style: none; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 827 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 828 | .nav > li > a { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 829 | display: block; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 830 | } |
| 831 | .nav > li > a:hover { |
| 832 | text-decoration: none; |
| 833 | background-color: #eeeeee; |
| 834 | } |
| 835 | .nav-list { |
| 836 | padding-left: 14px; |
| 837 | padding-right: 14px; |
| 838 | margin-bottom: 0; |
| 839 | } |
| 840 | .nav-list > li > a, .nav-list .nav-header { |
| 841 | display: block; |
| 842 | padding: 3px 15px; |
| 843 | margin-left: -15px; |
| 844 | margin-right: -15px; |
| 845 | text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); |
| 846 | } |
| 847 | .nav-list .nav-header { |
| 848 | font-size: 11px; |
| 849 | font-weight: bold; |
| 850 | line-height: 18px; |
| 851 | color: #999999; |
| 852 | text-transform: uppercase; |
| 853 | } |
| 854 | .nav-list > li + .nav-header { |
| 855 | margin-top: 9px; |
| 856 | } |
| 857 | .nav-list .active > a, .nav-list .active > a:hover { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 858 | color: #ffffff; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 859 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2); |
| 860 | background-color: #0088cc; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 861 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 862 | .nav-list [class^="icon-"] { |
| 863 | margin-right: 2px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 864 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 865 | .nav-tabs, .nav-pills { |
| 866 | *zoom: 1; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 867 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 868 | .nav-tabs:before, |
| 869 | .nav-pills:before, |
| 870 | .nav-tabs:after, |
| 871 | .nav-pills:after { |
| 872 | display: table; |
| 873 | content: ""; |
| 874 | } |
| 875 | .nav-tabs:after, .nav-pills:after { |
| 876 | clear: both; |
| 877 | } |
| 878 | .nav-tabs > li, .nav-pills > li { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 879 | float: left; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 880 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 881 | .nav-tabs > li > a, .nav-pills > li > a { |
| 882 | padding-right: 12px; |
| 883 | padding-left: 12px; |
| 884 | margin-right: 2px; |
| 885 | line-height: 14px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 886 | } |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 887 | .nav-tabs { |
| 888 | border-bottom: 1px solid #ddd; |
| 889 | } |
| 890 | .nav-tabs > li { |
| 891 | margin-bottom: -1px; |
| 892 | } |
| 893 | .nav-tabs > li > a { |
| 894 | padding-top: 9px; |
| 895 | padding-bottom: 9px; |
| 896 | border: 1px solid transparent; |
| 897 | -webkit-border-radius: 4px 4px 0 0; |
| 898 | -moz-border-radius: 4px 4px 0 0; |
| 899 | border-radius: 4px 4px 0 0; |
| 900 | } |
| 901 | .nav-tabs > li > a:hover { |
| 902 | border-color: #eeeeee #eeeeee #dddddd; |
| 903 | } |
| 904 | .nav-tabs > .active > a, .nav-tabs > .active > a:hover { |
| 905 | color: #555555; |
| 906 | background-color: #ffffff; |
| 907 | border: 1px solid #ddd; |
| 908 | border-bottom-color: transparent; |
| 909 | cursor: default; |
| 910 | } |
| 911 | .nav-pills > li > a { |
| 912 | padding-top: 8px; |
| 913 | padding-bottom: 8px; |
| 914 | margin-top: 2px; |
| 915 | margin-bottom: 2px; |
| 916 | -webkit-border-radius: 5px; |
| 917 | -moz-border-radius: 5px; |
| 918 | border-radius: 5px; |
| 919 | } |
| 920 | .nav-pills .active > a, .nav-pills .active > a:hover { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 921 | color: #ffffff; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 922 | background-color: #0088cc; |
| 923 | } |
| 924 | .nav-stacked > li { |
| 925 | float: none; |
| 926 | } |
| 927 | .nav-stacked > li > a { |
| 928 | margin-right: 0; |
| 929 | } |
| 930 | .nav-tabs.nav-stacked { |
| 931 | border-bottom: 0; |
| 932 | } |
| 933 | .nav-tabs.nav-stacked > li > a { |
| 934 | border: 1px solid #ddd; |
| 935 | -webkit-border-radius: 0; |
| 936 | -moz-border-radius: 0; |
| 937 | border-radius: 0; |
| 938 | } |
| 939 | .nav-tabs.nav-stacked > li:first-child > a { |
| 940 | -webkit-border-radius: 4px 4px 0 0; |
| 941 | -moz-border-radius: 4px 4px 0 0; |
| 942 | border-radius: 4px 4px 0 0; |
| 943 | } |
| 944 | .nav-tabs.nav-stacked > li:last-child > a { |
| 945 | -webkit-border-radius: 0 0 4px 4px; |
| 946 | -moz-border-radius: 0 0 4px 4px; |
| 947 | border-radius: 0 0 4px 4px; |
| 948 | } |
| 949 | .nav-tabs.nav-stacked > li > a:hover { |
| 950 | border-color: #ddd; |
| 951 | z-index: 2; |
| 952 | } |
| 953 | .nav-pills.nav-stacked > li > a { |
| 954 | margin-bottom: 3px; |
| 955 | } |
| 956 | .nav-pills.nav-stacked > li:last-child > a { |
| 957 | margin-bottom: 1px; |
| 958 | } |
| 959 | .nav-tabs .dropdown-menu, .nav-pills .dropdown-menu { |
| 960 | margin-top: 1px; |
| 961 | border-width: 1px; |
| 962 | } |
| 963 | .nav-pills .dropdown-menu { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 964 | -webkit-border-radius: 4px; |
| 965 | -moz-border-radius: 4px; |
| 966 | border-radius: 4px; |
Rushabh Mehta | 6e156c7 | 2012-02-21 11:19:24 +0530 | [diff] [blame] | 967 | } |
| 968 | .nav-tabs .dropdown-toggle .caret, .nav-pills .dropdown-toggle .caret { |
| 969 | border-top-color: #0088cc; |
| 970 | margin-top: 6px; |
| 971 | } |
| 972 | .nav-tabs .dropdown-toggle:hover .caret, .nav-pills .dropdown-toggle:hover .caret { |
| 973 | border-top-color: #005580; |
| 974 | } |
| 975 | .nav-tabs .active .dropdown-toggle .caret, .nav-pills .active .dropdown-toggle .caret { |
| 976 | border-top-color: #333333; |
| 977 | } |
| 978 | .nav > .dropdown.active > a:hover { |
| 979 | color: #000000; |
| 980 | cursor: pointer; |
| 981 | } |
| 982 | .nav-tabs .open .dropdown-toggle, .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover { |
| 983 | color: #ffffff; |
| 984 | background-color: #999999; |
| 985 | border-color: #999999; |
| 986 | } |
| 987 | .nav .open .caret, .nav .open.active .caret, .nav .open a:hover .caret { |
| 988 | border-top-color: #ffffff; |
| 989 | opacity: 1; |
| 990 | filter: alpha(opacity=100); |
| 991 | } |
| 992 | |
| 993 | .navbar { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 994 | overflow: visible; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 995 | margin-bottom: 18px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 996 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 997 | .navbar-inner { |
| 998 | padding-left: 20px; |
| 999 | padding-right: 20px; |
| 1000 | background-color: #2c2c2c; |
| 1001 | background-image: -moz-linear-gradient(top, #333333, #222222); |
| 1002 | background-image: -ms-linear-gradient(top, #333333, #222222); |
| 1003 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222)); |
| 1004 | background-image: -webkit-linear-gradient(top, #333333, #222222); |
| 1005 | background-image: -o-linear-gradient(top, #333333, #222222); |
| 1006 | background-image: linear-gradient(top, #333333, #222222); |
| 1007 | background-repeat: repeat-x; |
| 1008 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0); |
| 1009 | -webkit-border-radius: 4px; |
| 1010 | -moz-border-radius: 4px; |
| 1011 | border-radius: 4px; |
| 1012 | -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
| 1013 | -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
| 1014 | box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); |
| 1015 | } |
| 1016 | .btn-navbar { |
| 1017 | display: none; |
| 1018 | float: right; |
| 1019 | padding: 7px 10px; |
| 1020 | margin-left: 5px; |
| 1021 | margin-right: 5px; |
| 1022 | background-color: #2c2c2c; |
| 1023 | background-image: -moz-linear-gradient(top, #333333, #222222); |
| 1024 | background-image: -ms-linear-gradient(top, #333333, #222222); |
| 1025 | background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#333333), to(#222222)); |
| 1026 | background-image: -webkit-linear-gradient(top, #333333, #222222); |
| 1027 | background-image: -o-linear-gradient(top, #333333, #222222); |
| 1028 | background-image: linear-gradient(top, #333333, #222222); |
| 1029 | background-repeat: repeat-x; |
| 1030 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0); |
| 1031 | border-color: #222222 #222222 #000000; |
| 1032 | border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); |
| 1033 | filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); |
| 1034 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); |
| 1035 | -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); |
| 1036 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.075); |
| 1037 | } |
| 1038 | .btn-navbar:hover, |
| 1039 | .btn-navbar:active, |
| 1040 | .btn-navbar.active, |
| 1041 | .btn-navbar.disabled, |
| 1042 | .btn-navbar[disabled] { |
| 1043 | background-color: #222222; |
| 1044 | } |
| 1045 | .btn-navbar:active, .btn-navbar.active { |
| 1046 | background-color: #080808 \9; |
| 1047 | } |
| 1048 | .btn-navbar .icon-bar { |
| 1049 | display: block; |
| 1050 | width: 18px; |
| 1051 | height: 2px; |
| 1052 | background-color: #f5f5f5; |
| 1053 | -webkit-border-radius: 1px; |
| 1054 | -moz-border-radius: 1px; |
| 1055 | border-radius: 1px; |
| 1056 | -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); |
| 1057 | -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); |
| 1058 | box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); |
| 1059 | } |
| 1060 | .btn-navbar .icon-bar + .icon-bar { |
| 1061 | margin-top: 3px; |
| 1062 | } |
| 1063 | .nav-collapse.collapse { |
| 1064 | height: auto; |
| 1065 | } |
| 1066 | .navbar .brand:hover { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1067 | text-decoration: none; |
| 1068 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1069 | .navbar .brand { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1070 | float: left; |
| 1071 | display: block; |
| 1072 | padding: 8px 20px 12px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1073 | font-size: 20px; |
| 1074 | font-weight: 200; |
| 1075 | line-height: 1; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1076 | color: #ffffff; |
| 1077 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1078 | .navbar .navbar-text { |
| 1079 | margin-bottom: 0; |
| 1080 | line-height: 40px; |
| 1081 | color: #999999; |
| 1082 | } |
| 1083 | .navbar .navbar-text a:hover { |
| 1084 | color: #ffffff; |
| 1085 | background-color: transparent; |
| 1086 | } |
| 1087 | .navbar .btn, .navbar .btn-group { |
| 1088 | margin-top: 5px; |
| 1089 | } |
| 1090 | .navbar .btn-group .btn { |
| 1091 | margin-top: 0; |
| 1092 | } |
| 1093 | .navbar-form { |
| 1094 | margin-bottom: 0; |
| 1095 | *zoom: 1; |
| 1096 | } |
| 1097 | .navbar-form:before, .navbar-form:after { |
| 1098 | display: table; |
| 1099 | content: ""; |
| 1100 | } |
| 1101 | .navbar-form:after { |
| 1102 | clear: both; |
| 1103 | } |
| 1104 | .navbar-form input, .navbar-form select { |
| 1105 | display: inline-block; |
| 1106 | margin-top: 5px; |
| 1107 | margin-bottom: 0; |
| 1108 | } |
| 1109 | .navbar-form .radio, .navbar-form .checkbox { |
| 1110 | margin-top: 5px; |
| 1111 | } |
| 1112 | .navbar-form input[type="image"], .navbar-form input[type="checkbox"], .navbar-form input[type="radio"] { |
| 1113 | margin-top: 3px; |
| 1114 | } |
| 1115 | .navbar-search { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1116 | position: relative; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1117 | float: left; |
| 1118 | margin-top: 6px; |
| 1119 | margin-bottom: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1120 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1121 | .navbar-search .search-query { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1122 | padding: 4px 9px; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1123 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; |
| 1124 | font-size: 13px; |
| 1125 | font-weight: normal; |
| 1126 | line-height: 1; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1127 | color: #ffffff; |
| 1128 | color: rgba(255, 255, 255, 0.75); |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1129 | background: #666; |
| 1130 | background: rgba(255, 255, 255, 0.3); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1131 | border: 1px solid #111; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1132 | -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15); |
| 1133 | -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15); |
| 1134 | box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 1px 0px rgba(255, 255, 255, 0.15); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1135 | -webkit-transition: none; |
| 1136 | -moz-transition: none; |
| 1137 | -ms-transition: none; |
| 1138 | -o-transition: none; |
| 1139 | transition: none; |
| 1140 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1141 | .navbar-search .search-query :-moz-placeholder { |
| 1142 | color: #eeeeee; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1143 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1144 | .navbar-search .search-query::-webkit-input-placeholder { |
| 1145 | color: #eeeeee; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1146 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1147 | .navbar-search .search-query:hover { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1148 | color: #ffffff; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1149 | background-color: #999999; |
| 1150 | background-color: rgba(255, 255, 255, 0.5); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1151 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1152 | .navbar-search .search-query:focus, .navbar-search .search-query.focused { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1153 | padding: 5px 10px; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1154 | color: #333333; |
| 1155 | text-shadow: 0 1px 0 #ffffff; |
| 1156 | background-color: #ffffff; |
| 1157 | border: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1158 | -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); |
| 1159 | -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); |
| 1160 | box-shadow: 0 0 3px rgba(0, 0, 0, 0.15); |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1161 | outline: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1162 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1163 | .navbar-fixed-top { |
| 1164 | position: fixed; |
| 1165 | top: 0; |
| 1166 | right: 0; |
| 1167 | left: 0; |
| 1168 | z-index: 1030; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1169 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1170 | .navbar-fixed-top .navbar-inner { |
| 1171 | padding-left: 0; |
| 1172 | padding-right: 0; |
| 1173 | -webkit-border-radius: 0; |
| 1174 | -moz-border-radius: 0; |
| 1175 | border-radius: 0; |
| 1176 | } |
| 1177 | .navbar .nav { |
| 1178 | position: relative; |
| 1179 | left: 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1180 | display: block; |
| 1181 | float: left; |
| 1182 | margin: 0 10px 0 0; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1183 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1184 | .navbar .nav.pull-right { |
| 1185 | float: right; |
| 1186 | } |
| 1187 | .navbar .nav > li { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1188 | display: block; |
| 1189 | float: left; |
| 1190 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1191 | .navbar .nav > li > a { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1192 | float: none; |
| 1193 | padding: 10px 10px 11px; |
| 1194 | line-height: 19px; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1195 | color: #999999; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1196 | text-decoration: none; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1197 | text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1198 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1199 | .navbar .nav > li > a:hover { |
| 1200 | background-color: transparent; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1201 | color: #ffffff; |
| 1202 | text-decoration: none; |
| 1203 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1204 | .navbar .nav .active > a, .navbar .nav .active > a:hover { |
| 1205 | color: #ffffff; |
| 1206 | text-decoration: none; |
| 1207 | background-color: #222222; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1208 | background-color: rgba(0, 0, 0, 0.5); |
| 1209 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1210 | .navbar .divider-vertical { |
| 1211 | height: 40px; |
| 1212 | width: 1px; |
| 1213 | margin: 0 9px; |
| 1214 | overflow: hidden; |
| 1215 | background-color: #222222; |
| 1216 | border-right: 1px solid #333333; |
| 1217 | } |
| 1218 | .navbar .nav.pull-right { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1219 | margin-left: 10px; |
| 1220 | margin-right: 0; |
| 1221 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1222 | .navbar .dropdown-menu { |
| 1223 | margin-top: 1px; |
| 1224 | -webkit-border-radius: 4px; |
| 1225 | -moz-border-radius: 4px; |
| 1226 | border-radius: 4px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1227 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1228 | .navbar .dropdown-menu:before { |
| 1229 | content: ''; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1230 | display: inline-block; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1231 | border-left: 7px solid transparent; |
| 1232 | border-right: 7px solid transparent; |
| 1233 | border-bottom: 7px solid #ccc; |
| 1234 | border-bottom-color: rgba(0, 0, 0, 0.2); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1235 | position: absolute; |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1236 | top: -7px; |
| 1237 | left: 9px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1238 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1239 | .navbar .dropdown-menu:after { |
| 1240 | content: ''; |
| 1241 | display: inline-block; |
| 1242 | border-left: 6px solid transparent; |
| 1243 | border-right: 6px solid transparent; |
| 1244 | border-bottom: 6px solid #ffffff; |
| 1245 | position: absolute; |
| 1246 | top: -6px; |
| 1247 | left: 10px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1248 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1249 | .navbar .nav .dropdown-toggle .caret, .navbar .nav .open.dropdown .caret { |
| 1250 | border-top-color: #ffffff; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1251 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1252 | .navbar .nav .active .caret { |
| 1253 | opacity: 1; |
| 1254 | filter: alpha(opacity=100); |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1255 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1256 | .navbar .nav .open > .dropdown-toggle, .navbar .nav .active > .dropdown-toggle, .navbar .nav .open.active > .dropdown-toggle { |
| 1257 | background-color: transparent; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1258 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1259 | .navbar .nav .active > .dropdown-toggle:hover { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1260 | color: #ffffff; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1261 | } |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1262 | .navbar .nav.pull-right .dropdown-menu { |
| 1263 | left: auto; |
| 1264 | right: 0; |
| 1265 | } |
| 1266 | .navbar .nav.pull-right .dropdown-menu:before { |
| 1267 | left: auto; |
| 1268 | right: 12px; |
| 1269 | } |
| 1270 | .navbar .nav.pull-right .dropdown-menu:after { |
| 1271 | left: auto; |
| 1272 | right: 13px; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1273 | } |
| 1274 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1275 | /* ajax spinner */ |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1276 | .navbar #spinner { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1277 | display: block; |
| 1278 | float: right; |
| 1279 | width: 20px; |
| 1280 | margin-bottom: -5px; |
| 1281 | margin-top: 10px; |
| 1282 | visibility: hidden; |
| 1283 | } |
| 1284 | |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1285 | .navbar-inner { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1286 | padding: 0px 20px; |
| 1287 | } |
Anand Doshi | 5b1beeb | 2012-02-27 17:17:48 +0530 | [diff] [blame] | 1288 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1289 | /* |
Rushabh Mehta | 4dc2f43 | 2012-02-21 10:30:43 +0530 | [diff] [blame] | 1290 | * lib/css/bootstrap/dropdown.css |
| 1291 | */.dropdown { |
| 1292 | position: relative; |
| 1293 | } |
| 1294 | .dropdown-toggle { |
| 1295 | *margin-bottom: -3px; |
| 1296 | } |
| 1297 | .dropdown-toggle:active, .open .dropdown-toggle { |
| 1298 | outline: 0; |
| 1299 | } |
| 1300 | .caret { |
| 1301 | display: inline-block; |
| 1302 | width: 0; |
| 1303 | height: 0; |
| 1304 | text-indent: -99999px; |
| 1305 | *text-indent: 0; |
| 1306 | vertical-align: top; |
| 1307 | border-left: 4px solid transparent; |
| 1308 | border-right: 4px solid transparent; |
| 1309 | border-top: 4px solid #000000; |
| 1310 | opacity: 0.3; |
| 1311 | filter: alpha(opacity=30); |
| 1312 | content: "\2193"; |
| 1313 | } |
| 1314 | .dropdown .caret { |
| 1315 | margin-top: 8px; |
| 1316 | margin-left: 2px; |
| 1317 | } |
| 1318 | .dropdown:hover .caret, .open.dropdown .caret { |
| 1319 | opacity: 1; |
| 1320 | filter: alpha(opacity=100); |
| 1321 | } |
| 1322 | .dropdown-menu { |
| 1323 | position: absolute; |
| 1324 | top: 100%; |
| 1325 | left: 0; |
| 1326 | z-index: 1000; |
| 1327 | float: left; |
| 1328 | display: none; |
| 1329 | min-width: 160px; |
| 1330 | max-width: 220px; |
| 1331 | _width: 160px; |
| 1332 | padding: 4px 0; |
| 1333 | margin: 0; |
| 1334 | list-style: none; |
| 1335 | background-color: #ffffff; |
| 1336 | border-color: #ccc; |
| 1337 | border-color: rgba(0, 0, 0, 0.2); |
| 1338 | border-style: solid; |
| 1339 | border-width: 1px; |
| 1340 | -webkit-border-radius: 0 0 5px 5px; |
| 1341 | -moz-border-radius: 0 0 5px 5px; |
| 1342 | border-radius: 0 0 5px 5px; |
| 1343 | -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); |
| 1344 | -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); |
| 1345 | box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); |
| 1346 | -webkit-background-clip: padding-box; |
| 1347 | -moz-background-clip: padding; |
| 1348 | background-clip: padding-box; |
| 1349 | *border-right-width: 2px; |
| 1350 | *border-bottom-width: 2px; |
| 1351 | } |
| 1352 | .dropdown-menu.bottom-up { |
| 1353 | top: auto; |
| 1354 | bottom: 100%; |
| 1355 | margin-bottom: 2px; |
| 1356 | } |
| 1357 | .dropdown-menu .divider { |
| 1358 | height: 1px; |
| 1359 | margin: 5px 1px; |
| 1360 | overflow: hidden; |
| 1361 | background-color: #e5e5e5; |
| 1362 | border-bottom: 1px solid #ffffff; |
| 1363 | *width: 100%; |
| 1364 | *margin: -5px 0 5px; |
| 1365 | } |
| 1366 | .dropdown-menu a { |
| 1367 | display: block; |
| 1368 | padding: 3px 15px; |
| 1369 | clear: both; |
| 1370 | font-weight: normal; |
| 1371 | line-height: 18px; |
| 1372 | color: #555555; |
| 1373 | white-space: nowrap; |
| 1374 | } |
| 1375 | .dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover { |
| 1376 | color: #ffffff; |
| 1377 | text-decoration: none; |
| 1378 | background-color: #0088cc; |
| 1379 | } |
| 1380 | .dropdown.open { |
| 1381 | *z-index: 1000; |
| 1382 | } |
| 1383 | .dropdown.open .dropdown-toggle { |
| 1384 | color: #ffffff; |
| 1385 | background: #ccc; |
| 1386 | background: rgba(0, 0, 0, 0.3); |
| 1387 | } |
| 1388 | .dropdown.open .dropdown-menu { |
| 1389 | display: block; |
| 1390 | } |
| 1391 | /* |
Rushabh Mehta | d025133 | 2012-02-21 17:26:50 +0530 | [diff] [blame] | 1392 | * lib/css/bootstrap/tooltip.css |
| 1393 | */.tooltip { |
| 1394 | position: absolute; |
| 1395 | z-index: 1020; |
| 1396 | display: block; |
| 1397 | visibility: visible; |
| 1398 | padding: 5px; |
| 1399 | font-size: 11px; |
| 1400 | opacity: 0; |
| 1401 | filter: alpha(opacity=0); |
| 1402 | } |
| 1403 | .tooltip.in { |
| 1404 | opacity: 0.8; |
| 1405 | filter: alpha(opacity=80); |
| 1406 | } |
| 1407 | .tooltip.top { |
| 1408 | margin-top: -2px; |
| 1409 | } |
| 1410 | .tooltip.right { |
| 1411 | margin-left: 2px; |
| 1412 | } |
| 1413 | .tooltip.bottom { |
| 1414 | margin-top: 2px; |
| 1415 | } |
| 1416 | .tooltip.left { |
| 1417 | margin-left: -2px; |
| 1418 | } |
| 1419 | .tooltip.top .tooltip-arrow { |
| 1420 | bottom: 0; |
| 1421 | left: 50%; |
| 1422 | margin-left: -5px; |
| 1423 | border-left: 5px solid transparent; |
| 1424 | border-right: 5px solid transparent; |
| 1425 | border-top: 5px solid #000000; |
| 1426 | } |
| 1427 | .tooltip.left .tooltip-arrow { |
| 1428 | top: 50%; |
| 1429 | right: 0; |
| 1430 | margin-top: -5px; |
| 1431 | border-top: 5px solid transparent; |
| 1432 | border-bottom: 5px solid transparent; |
| 1433 | border-left: 5px solid #000000; |
| 1434 | } |
| 1435 | .tooltip.bottom .tooltip-arrow { |
| 1436 | top: 0; |
| 1437 | left: 50%; |
| 1438 | margin-left: -5px; |
| 1439 | border-left: 5px solid transparent; |
| 1440 | border-right: 5px solid transparent; |
| 1441 | border-bottom: 5px solid #000000; |
| 1442 | } |
| 1443 | .tooltip.right .tooltip-arrow { |
| 1444 | top: 50%; |
| 1445 | left: 0; |
| 1446 | margin-top: -5px; |
| 1447 | border-top: 5px solid transparent; |
| 1448 | border-bottom: 5px solid transparent; |
| 1449 | border-right: 5px solid #000000; |
| 1450 | } |
| 1451 | .tooltip-inner { |
| 1452 | max-width: 200px; |
| 1453 | padding: 3px 8px; |
| 1454 | color: #ffffff; |
| 1455 | text-align: center; |
| 1456 | text-decoration: none; |
| 1457 | background-color: #000000; |
| 1458 | -webkit-border-radius: 4px; |
| 1459 | -moz-border-radius: 4px; |
| 1460 | border-radius: 4px; |
| 1461 | } |
| 1462 | .tooltip-arrow { |
| 1463 | position: absolute; |
| 1464 | width: 0; |
| 1465 | height: 0; |
| 1466 | } |
| 1467 | .popover { |
| 1468 | position: absolute; |
| 1469 | top: 0; |
| 1470 | left: 0; |
| 1471 | z-index: 1010; |
| 1472 | display: none; |
| 1473 | padding: 5px; |
| 1474 | } |
| 1475 | .popover.top { |
| 1476 | margin-top: -5px; |
| 1477 | } |
| 1478 | .popover.right { |
| 1479 | margin-left: 5px; |
| 1480 | } |
| 1481 | .popover.bottom { |
| 1482 | margin-top: 5px; |
| 1483 | } |
| 1484 | .popover.left { |
| 1485 | margin-left: -5px; |
| 1486 | } |
| 1487 | .popover.top .arrow { |
| 1488 | bottom: 0; |
| 1489 | left: 50%; |
| 1490 | margin-left: -5px; |
| 1491 | border-left: 5px solid transparent; |
| 1492 | border-right: 5px solid transparent; |
| 1493 | border-top: 5px solid #000000; |
| 1494 | } |
| 1495 | .popover.right .arrow { |
| 1496 | top: 50%; |
| 1497 | left: 0; |
| 1498 | margin-top: -5px; |
| 1499 | border-top: 5px solid transparent; |
| 1500 | border-bottom: 5px solid transparent; |
| 1501 | border-right: 5px solid #000000; |
| 1502 | } |
| 1503 | .popover.bottom .arrow { |
| 1504 | top: 0; |
| 1505 | left: 50%; |
| 1506 | margin-left: -5px; |
| 1507 | border-left: 5px solid transparent; |
| 1508 | border-right: 5px solid transparent; |
| 1509 | border-bottom: 5px solid #000000; |
| 1510 | } |
| 1511 | .popover.left .arrow { |
| 1512 | top: 50%; |
| 1513 | right: 0; |
| 1514 | margin-top: -5px; |
| 1515 | border-top: 5px solid transparent; |
| 1516 | border-bottom: 5px solid transparent; |
| 1517 | border-left: 5px solid #000000; |
| 1518 | } |
| 1519 | .popover .arrow { |
| 1520 | position: absolute; |
| 1521 | width: 0; |
| 1522 | height: 0; |
| 1523 | } |
| 1524 | .popover-inner { |
| 1525 | padding: 3px; |
| 1526 | width: 280px; |
| 1527 | overflow: hidden; |
| 1528 | background: #000000; |
| 1529 | background: rgba(0, 0, 0, 0.8); |
| 1530 | -webkit-border-radius: 6px; |
| 1531 | -moz-border-radius: 6px; |
| 1532 | border-radius: 6px; |
| 1533 | -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); |
| 1534 | -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); |
| 1535 | box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3); |
| 1536 | } |
| 1537 | .popover-title { |
| 1538 | padding: 9px 15px; |
| 1539 | line-height: 1; |
| 1540 | background-color: #f5f5f5; |
| 1541 | border-bottom: 1px solid #eee; |
| 1542 | -webkit-border-radius: 3px 3px 0 0; |
| 1543 | -moz-border-radius: 3px 3px 0 0; |
| 1544 | border-radius: 3px 3px 0 0; |
| 1545 | } |
| 1546 | .popover-content { |
| 1547 | padding: 14px; |
| 1548 | background-color: #ffffff; |
| 1549 | -webkit-border-radius: 0 0 3px 3px; |
| 1550 | -moz-border-radius: 0 0 3px 3px; |
| 1551 | border-radius: 0 0 3px 3px; |
| 1552 | -webkit-background-clip: padding-box; |
| 1553 | -moz-background-clip: padding-box; |
| 1554 | background-clip: padding-box; |
| 1555 | } |
| 1556 | .popover-content p, .popover-content ul, .popover-content ol { |
| 1557 | margin-bottom: 0; |
| 1558 | } |
| 1559 | /* |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1560 | * erpnext/startup/startup.css |
| 1561 | */h1, h2, h3, h4, h5 { |
| 1562 | font-family: Tahoma, Arial, Verdana, sans-serif; |
| 1563 | font-weight: bold; |
| 1564 | } |
| 1565 | |
| 1566 | body { |
| 1567 | font-family: 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif; |
| 1568 | font-size: 12px; |
| 1569 | } |
| 1570 | |
| 1571 | span, div, td, input, textarea, button, select { |
| 1572 | font-family: inherit; |
| 1573 | } |
| 1574 | |
| 1575 | body { |
Rushabh Mehta | 5d267a4 | 2012-03-01 18:53:06 +0530 | [diff] [blame] | 1576 | background: url(../images/stripedbg.png) repeat; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1577 | } |
| 1578 | |
| 1579 | .erpnext-footer { |
Rushabh Mehta | 4c1e9e7 | 2012-03-01 13:30:34 +0530 | [diff] [blame] | 1580 | margin: 11px auto; |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1581 | text-align: center; |
| 1582 | } |
| 1583 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1584 | .module-icons { |
| 1585 | background: url(../images/module-icons.png) no-repeat top left; |
| 1586 | width:16px; |
| 1587 | height:16px; |
| 1588 | } |
| 1589 | |
| 1590 | .module-icons-accounts{ background-position: 0 0; } |
| 1591 | .module-icons-analysis{ background-position: 0 -66px; } |
| 1592 | .module-icons-buying{ background-position: 0 -132px; } |
| 1593 | .module-icons-home{ background-position: 0 -198px; } |
| 1594 | .module-icons-hr{ background-position: 0 -264px; } |
| 1595 | .module-icons-people{ background-position: 0 -330px; } |
| 1596 | .module-icons-production{ background-position: 0 -396px; } |
| 1597 | .module-icons-projects{ background-position: 0 -462px; } |
| 1598 | .module-icons-selling{ background-position: 0 -528px; } |
| 1599 | .module-icons-setup{ background-position: 0 -594px; } |
| 1600 | .module-icons-stock{ background-position: 0 -660px; } |
| 1601 | .module-icons-support{ background-position: 0 -726px; } |
Anand Doshi | c3023be | 2012-02-20 16:31:55 +0530 | [diff] [blame] | 1602 | |
Anand Doshi | db62876 | 2012-02-24 17:56:00 +0530 | [diff] [blame] | 1603 | .navbar-new-comments { |
Anand Doshi | c3023be | 2012-02-20 16:31:55 +0530 | [diff] [blame] | 1604 | margin: -3px 0px; |
| 1605 | padding: 2px; |
Anand Doshi | c3023be | 2012-02-20 16:31:55 +0530 | [diff] [blame] | 1606 | min-width: 20px; |
| 1607 | text-align: center; |
| 1608 | display: inline-block; |
| 1609 | border-radius: 2px; |
Anand Doshi | 5b1beeb | 2012-02-27 17:17:48 +0530 | [diff] [blame] | 1610 | color: #999999; |
| 1611 | background-color: #333131; |
| 1612 | } |
| 1613 | |
| 1614 | .navbar-new-comments:hover, |
| 1615 | .navbar-new-comments:active, |
| 1616 | .navbar-new-comments:focus { |
| 1617 | color: #fff; |
| 1618 | } |
| 1619 | |
| 1620 | |
| 1621 | .navbar-new-comments-true { |
| 1622 | color: #fff; |
| 1623 | background-color: #B00D07; |
| 1624 | } |
| 1625 | |
| 1626 | .navbar-icon-home { |
| 1627 | vertical-align: middle; |
| 1628 | opacity:0.4; |
| 1629 | Filter:alpha(opacity=40); /* For IE8 and earlier */ |
| 1630 | } |
| 1631 | |
| 1632 | .navbar-icon-home:hover, |
| 1633 | .navbar-icon-home:focus, |
Anand Doshi | ac14412 | 2012-02-27 19:16:24 +0530 | [diff] [blame] | 1634 | .navbar-icon-home:active, |
| 1635 | .navbar-icon-home-hover{ |
Anand Doshi | 5b1beeb | 2012-02-27 17:17:48 +0530 | [diff] [blame] | 1636 | opacity:1; |
| 1637 | Filter:alpha(opacity=100); /* For IE8 and earlier */ |
| 1638 | } |
| 1639 | |
| 1640 | /*extra size menus for recent*/ |
| 1641 | .dropdown-menu#toolbar-recent, .dropdown-menu#toolbar-options, .dropdown-menu#toolbar-help{ |
| 1642 | min-width: 160px !important; |
| 1643 | max-width: 260px !important; |
Anand Doshi | c3023be | 2012-02-20 16:31:55 +0530 | [diff] [blame] | 1644 | } |
| 1645 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1646 | /* |
| 1647 | * erpnext/website/css/website.css |
Rushabh Mehta | c5471dd | 2012-02-22 12:07:42 +0530 | [diff] [blame] | 1648 | */.layout_wrapper { |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1649 | padding: 20px; |
| 1650 | } |
| 1651 | |
| 1652 | h1 { |
| 1653 | margin-bottom: 15px; |
| 1654 | } |
| 1655 | |
Rushabh Mehta | aa848be | 2012-02-17 12:06:33 +0530 | [diff] [blame] | 1656 | h2 { |
| 1657 | margin-bottom: 11px; |
| 1658 | } |
| 1659 | |
| 1660 | h3 { |
| 1661 | margin-bottom: 7px; |
| 1662 | } |
| 1663 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1664 | pre { |
| 1665 | background-color: #F8F8F8; |
| 1666 | border: 1px solid #CCCCCC; |
| 1667 | border-radius: 3px 3px 3px 3px; |
| 1668 | font-size: 13px; |
| 1669 | line-height: 19px; |
| 1670 | overflow: auto; |
| 1671 | padding: 6px 10px; |
| 1672 | margin-bottom: 9px; |
| 1673 | } |
| 1674 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1675 | .web-content input[type="text"], .web-content input[type="password"], .web-content select { |
| 1676 | min-width: 180px; |
| 1677 | } |
| 1678 | |
Rushabh Mehta | 13531b7 | 2012-02-20 12:35:23 +0530 | [diff] [blame] | 1679 | .web-head-section { |
| 1680 | margin-bottom: 20px |
| 1681 | } |
| 1682 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1683 | .web-main-section { |
| 1684 | width: 65%; |
| 1685 | float: left; |
| 1686 | margin-bottom: 20px; |
| 1687 | } |
| 1688 | |
Rushabh Mehta | afaac60 | 2012-02-14 11:44:13 +0530 | [diff] [blame] | 1689 | .web-side-section { |
| 1690 | width: 30%; |
| 1691 | float: right; |
| 1692 | margin-bottom: 20px; |
| 1693 | margin-right: 15px; |
| 1694 | color: #606060; |
| 1695 | overflow-x: hidden; |
| 1696 | } |
| 1697 | |
| 1698 | .web-page-status { |
| 1699 | padding: 7px; |
| 1700 | color: #777; |
| 1701 | clear: both; |
| 1702 | text-align: right; |
| 1703 | } |
| 1704 | |
| 1705 | .web-page-status a, |
| 1706 | .web-page-status a:hover, |
| 1707 | .web-page-status a:visited { |
| 1708 | padding: 2px; |
| 1709 | background-color: #777; |
| 1710 | color: #FFF; |
| 1711 | text-decoration: none; |
| 1712 | } |
| 1713 | |
| 1714 | .web-page-status a:hover { |
| 1715 | background-color: #444; |
| 1716 | } |
| 1717 | |
| 1718 | footer { |
| 1719 | color: #777; |
| 1720 | } |
| 1721 | |
| 1722 | .web-footer { |
| 1723 | color: inherit; |
| 1724 | text-align: center; |
| 1725 | margin: 10px; |
| 1726 | line-height: 1.7; |
| 1727 | } |
| 1728 | |
| 1729 | .web-footer div, .web-footer a { |
| 1730 | font-size: 11px; |
| 1731 | } |
| 1732 | |
| 1733 | .web-footer-menu { |
| 1734 | margin-bottom: 7px; |
| 1735 | } |
| 1736 | footer a, footer a:visited { |
| 1737 | color: #777; |
| 1738 | } |
| 1739 | |
| 1740 | footer a:hover { |
| 1741 | background-color: #777; |
| 1742 | color: #fff; |
| 1743 | } |
| 1744 | |
| 1745 | .web-footer-menu ul { |
| 1746 | list-style: none; |
| 1747 | margin: 0px; |
| 1748 | padding: 0px; |
| 1749 | } |
| 1750 | |
| 1751 | .web-footer-menu ul li { |
| 1752 | display: inline; |
| 1753 | padding: 2px 15px; |
| 1754 | border-right: 1px solid #999; |
| 1755 | } |
| 1756 | |
| 1757 | .web-footer-menu ul li:last-child { |
| 1758 | border-right: 0px solid #777 !important; |
| 1759 | } |