Left: | ||
Right: |
OLD | NEW |
---|---|
1 /* Processed with LESS from lib/views/stylesheet.less */ | 1 /* Processed with LESS from lib/views/stylesheet.less */ |
2 @font-family: 'Ubuntu', 'Helvetica Neue', Helvetica, Arial, sans-serif; | 2 @font-family: 'Ubuntu', 'Helvetica Neue', Helvetica, Arial, sans-serif; |
3 | 3 |
4 /* Define common colors. */ | 4 /* Define common colors. */ |
5 @label-color: #292929; | 5 @label-color: #292929; |
6 @text-entry-color: #6d6e70; | 6 @text-entry-color: #6d6e70; |
7 @charm-panel-configure-title-color: #eee7d5; | 7 @charm-panel-configure-title-color: #eee7d5; |
8 @charm-panel-configure-name-color: #8f8f88; | 8 @charm-panel-configure-name-color: #8f8f88; |
9 @charm-panel-deploy-button-color: #e45718; | 9 @charm-panel-deploy-button-color: #e45718; |
10 @charm-panel-cancel-button-color: #979694; | 10 @charm-panel-cancel-button-color: #979694; |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
82 margin: 0 5px; | 82 margin: 0 5px; |
83 } | 83 } |
84 input { | 84 input { |
85 width: 128px; | 85 width: 128px; |
86 background: url(/juju-ui/assets/images/searchbox_icon.png) n o-repeat 2px 1px whiteSmoke; | 86 background: url(/juju-ui/assets/images/searchbox_icon.png) n o-repeat 2px 1px whiteSmoke; |
87 margin: 0 10px; | 87 margin: 0 10px; |
88 padding: 3px 3px 3px 26px; | 88 padding: 3px 3px 3px 26px; |
89 font-style: italic; | 89 font-style: italic; |
90 font-family: @font-family; | 90 font-family: @font-family; |
91 font-size: 0.9em; | 91 font-size: 0.9em; |
92 &:focus { | 92 &:valid { |
93 background: white; | 93 background: white; |
94 padding: 3px; | 94 padding: 3px; |
95 width: 151px; | 95 width: 151px; |
96 font-style: normal; | 96 font-style: normal; |
97 font-size: 1em; | 97 font-size: 1em; |
98 } | 98 } |
99 &:focus { | |
100 border-color: rgba(82, 168, 236, 0.8); | |
101 outline: 0; | |
102 outline: thin dotted 9; | |
103 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8p x rgba(82, 168, 236, 0.6); | |
bac
2012/11/01 09:47:56
This line should be wrapped.
gary.poster
2012/11/01 11:11:19
Yes, thanks, did this one and line 86 above while
| |
104 } | |
99 } | 105 } |
100 | 106 |
101 } | 107 } |
102 } | 108 } |
103 span:first-child .nav-section { | 109 span:first-child .nav-section { |
104 border-left: none; | 110 border-left: none; |
105 padding: 0 6px; | 111 padding: 0 6px; |
106 } | 112 } |
107 &#nav-alerts-charms { | 113 &#nav-alerts-charms { |
108 float: right; | 114 float: right; |
(...skipping 969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1078 font-size: 22px; | 1084 font-size: 22px; |
1079 color: @charm-panel-configure-title-color; | 1085 color: @charm-panel-configure-title-color; |
1080 margin-top: 35px; | 1086 margin-top: 35px; |
1081 } | 1087 } |
1082 .name { | 1088 .name { |
1083 font-size: 12px; | 1089 font-size: 12px; |
1084 color: @charm-panel-configure-name-color; | 1090 color: @charm-panel-configure-name-color; |
1085 margin-top: 5px; | 1091 margin-top: 5px; |
1086 } | 1092 } |
1087 } | 1093 } |
OLD | NEW |