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