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