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