Commit 3c59fb9cd8568f0a49a064e9d009b8f11f780a4c
1 parent
5def5752
Exists in
master
and in
7 other branches
Alteração nos botões da árvore de camadas para ficarem iguais aos da legenda
Showing
1 changed file
with
14 additions
and
12 deletions
Show diff stats
css/black.css
... | ... | @@ -142,9 +142,8 @@ Botao de ligar desligar do tipo chave da arvore de camadas |
142 | 142 | .i3GEOarvCam .temaSwitch { |
143 | 143 | position: relative; |
144 | 144 | display: inline-block; |
145 | - width: 36px; | |
146 | - height: 18px; | |
147 | - top: 3px; | |
145 | + width: 30px; | |
146 | + height: 14px; | |
148 | 147 | } |
149 | 148 | |
150 | 149 | .i3GEOarvCam .temaSwitch input { |
... | ... | @@ -162,27 +161,30 @@ Botao de ligar desligar do tipo chave da arvore de camadas |
162 | 161 | } |
163 | 162 | |
164 | 163 | .i3GEOarvCam .temaSlider:before { |
165 | - position: absolute; | |
164 | + position: absolute; | |
166 | 165 | content: ""; |
167 | - height: 14px; | |
168 | - width: 14px; | |
166 | + height: 12px; | |
167 | + width: 12px; | |
169 | 168 | left: 1px; |
170 | - bottom: 2px; | |
169 | + bottom: 1px; | |
171 | 170 | background-color: white; |
171 | + -webkit-box-shadow: -1px 1px 3px -0px rgba(0, 0, 0, 0.46); | |
172 | + -moz-box-shadow: -1px 1px 3px -0px rgba(0, 0, 0, 0.46); | |
173 | + box-shadow: -1px 1px 3px -0px rgba(0, 0, 0, 0.46); | |
172 | 174 | } |
173 | 175 | |
174 | 176 | .i3GEOarvCam input:checked + .temaSlider { |
175 | - background-color: #2196F3; | |
177 | + background-color: rgb(177, 205, 205); | |
176 | 178 | } |
177 | 179 | |
178 | 180 | .i3GEOarvCam input:focus + .temaSlider { |
179 | - box-shadow: 0 0 1px #2196F3; | |
181 | + box-shadow: 0 0 1px rgb(224, 235, 235); | |
180 | 182 | } |
181 | 183 | |
182 | 184 | .i3GEOarvCam input:checked + .temaSlider:before { |
183 | - -webkit-transform: translateX(20px); | |
184 | - -ms-transform: translateX(20px); | |
185 | - transform: translateX(20px); | |
185 | + -webkit-transform: translateX(16px); | |
186 | + -ms-transform: translateX(16px); | |
187 | + transform: translateX(16px); | |
186 | 188 | } |
187 | 189 | |
188 | 190 | .i3GEOarvCam .temaSlider.round { | ... | ... |