Changes for page UX: Standards
on 2009/07/29 14:45
on 2009/07/29 16:25
Summary
-
Objects (3 modified, 0 added, 0 removed)
Details
- XWiki.StyleSheetExtension[0]
-
- Code
-
... ... @@ -1,4 +1,4 @@ 1 -ul. colorsShow{1 +ul.showColors { 2 2 list-style-type: none; 3 3 display: block; 4 4 clear: both; ... ... @@ -5,7 +5,7 @@ 5 5 margin: 0px; 6 6 } 7 7 8 -ul. colorsShowli {8 +ul.showColors li { 9 9 width: 100px; 10 10 height: 20px; 11 11 text-align: center; ... ... @@ -14,19 +14,19 @@ 14 14 overflow: hidden; 15 15 } 16 16 17 -ul. colorsShowli.dark {17 +ul.showColors li.dark { 18 18 color: #000; 19 19 } 20 20 21 -ul. colorsShowli.light {21 +ul.showColors li.light { 22 22 color: #fff; 23 23 } 24 24 25 -ul. colorsShowli.medium{25 +ul.showColors li.medium{ 26 26 color: #ccc; 27 27 } 28 28 29 -ul. colorsShowli.empty{29 +ul.showColors li.empty{ 30 30 border: 1px solid #fff; 31 31 background-color: #fff; 32 32 }
- XWiki.StyleSheetExtension[1]
-
- Code
-
... ... @@ -1,5 +1,4 @@ 1 1 .palette { 2 - clear: both; 3 3 display: block; 4 4 } 5 5
- XWiki.StyleSheetExtension[2]
-
- Code
-
... ... @@ -1,11 +7,31 @@ 1 -hr { 2 -background:transparent none repeat scroll 0 0; 3 -border-color:#DDDDDD; 4 -border-style:dotted none none; 5 -border-width:1px 0 0; 6 -} 7 7 8 8 h6 { 9 -font-size:1em; 10 -font-weight:bold; 3 + font-size:1em; 4 + font-weight:bold; 5 + color: #888; 6 + border-bottom: 1px dotted #DDDDDD; 7 + display:block; 8 + margin-top: 20px; 9 + margin-bottom: 5px; 11 11 } 11 + 12 +.showCategory { 13 + float: left; 14 + margin: 5px; 15 + margin-top: 10px; 16 + padding: 5px; 17 + border: 1px dotted #DDDDDD; 18 +} 19 + 20 +.showCategoryName { 21 + font-variant: uppercase; 22 + background-color: #DDDDDD; 23 + color: #fff; 24 + float: right; 25 + padding: 3px; 26 +} 27 + 28 +.showCategoryDetails { 29 + font-size: 80%; 30 + color: #ccc; 31 +}