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