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