Commit 7fea21875bdbd8f742e35d48c48cec0b19d5390b
1 parent
e2eb0fee
Exists in
master
and in
28 other branches
ActionItem541: correction of category selector on edit modes for MSIE
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@2259 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
2 changed files
with
34 additions
and
5 deletions
Show diff stats
public/designs/themes/ecosol/stylesheets/controller_cms.css
| @@ -25,3 +25,12 @@ ul.categories li.cat_checked { | @@ -25,3 +25,12 @@ ul.categories li.cat_checked { | ||
| 25 | border-bottom: 1px solid #729FCF; | 25 | border-bottom: 1px solid #729FCF; |
| 26 | } | 26 | } |
| 27 | 27 | ||
| 28 | +.msie.action_cms_edit li { | ||
| 29 | + height: 23px; | ||
| 30 | +} | ||
| 31 | +.msie.action_cms_edit li .button { | ||
| 32 | + display: block; | ||
| 33 | + float: right; | ||
| 34 | + margin-top: -20px; | ||
| 35 | +} | ||
| 36 | + |
public/stylesheets/common.css
| @@ -324,11 +324,16 @@ div.sitemap-item a:hover { | @@ -324,11 +324,16 @@ div.sitemap-item a:hover { | ||
| 324 | padding: 15px 0px 15px 20px; | 324 | padding: 15px 0px 15px 20px; |
| 325 | margin: 30px 0px 0px 0px; | 325 | margin: 30px 0px 0px 0px; |
| 326 | position: relative; | 326 | position: relative; |
| 327 | + font-size: 18px; | ||
| 328 | +} | ||
| 329 | + | ||
| 330 | +#category-ajax-selector a { | ||
| 331 | + font-size: 14px; | ||
| 327 | } | 332 | } |
| 328 | 333 | ||
| 329 | #category-ajax-selector h3 { | 334 | #category-ajax-selector h3 { |
| 330 | margin: 10px 0px; | 335 | margin: 10px 0px; |
| 331 | - font-size: 100%; | 336 | + font-size: 14px; |
| 332 | } | 337 | } |
| 333 | 338 | ||
| 334 | #category-ajax-selector .box-title { | 339 | #category-ajax-selector .box-title { |
| @@ -342,14 +347,29 @@ div.sitemap-item a:hover { | @@ -342,14 +347,29 @@ div.sitemap-item a:hover { | ||
| 342 | background: #EEE; | 347 | background: #EEE; |
| 343 | float: left; | 348 | float: left; |
| 344 | } | 349 | } |
| 350 | +.msie6 #category-ajax-selector .box-title { | ||
| 351 | + top: -29px; | ||
| 352 | +} | ||
| 345 | 353 | ||
| 346 | -.select-subcategory-link { | 354 | +#category-ajax-selector .select-subcategory-link { |
| 347 | border: 1px solid #BBB; | 355 | border: 1px solid #BBB; |
| 348 | - padding: 0px 3px; | ||
| 349 | - margin: 2px 0px; | 356 | + padding: 1px 3px; |
| 357 | + margin: 0px 1px; | ||
| 350 | text-decoration: none; | 358 | text-decoration: none; |
| 359 | + white-space: nowrap; | ||
| 360 | + font-size: 11px; | ||
| 351 | } | 361 | } |
| 352 | -.select-subcategory-link:hover { | 362 | +#category-ajax-selector .select-subcategory-link:hover { |
| 353 | background-color: #FFA; | 363 | background-color: #FFA; |
| 354 | } | 364 | } |
| 355 | 365 | ||
| 366 | +#category-ajax-selector .button { | ||
| 367 | + display: block; | ||
| 368 | + position: absolute; | ||
| 369 | + top: 2px; | ||
| 370 | + right: 0px; | ||
| 371 | +} | ||
| 372 | +#category-ajax-selector .icon-save { | ||
| 373 | + right: 23px; | ||
| 374 | +} | ||
| 375 | + |