Ticket #53605: 53605.1.diff
| File 53605.1.diff, 2.5 KB (added by , 5 years ago) |
|---|
-
src/wp-content/themes/twentytwentyone/assets/css/ie-editor.css
311 311 padding: 0; 312 312 } 313 313 314 select { 315 border: 3px solid #39414d; 316 border-radius: 0; 317 color: #28303d; 318 font-size: 1.125rem; 319 -moz-appearance: none; 320 -webkit-appearance: none; 321 appearance: none; 322 padding: 10px 30px 10px 10px; 323 background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2328303d'><polygon points='0,0 10,0 5,5'/></svg>") no-repeat; 324 background-position: right 10px top 60%; 325 } 326 314 select, 327 315 select:focus { 328 border: 3px solid #39414d;329 border-radius: 0;330 color: #28303d;331 font-size: 1.125rem;316 border: var(--form--border-width) solid var(--form--border-color); 317 border-radius: var(--form--border-radius); 318 color: var(--form--color-text); 319 font-size: var(--form--font-size); 332 320 -moz-appearance: none; 333 321 -webkit-appearance: none; 334 322 appearance: none; 335 padding: 10px 30px 10px 10px;336 background: #fffurl("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2328303d'><polygon points='0,0 10,0 5,5'/></svg>") no-repeat;337 background-position: right 10pxtop 60%;323 padding: var(--form--spacing-unit) calc(3 * var(--form--spacing-unit)) var(--form--spacing-unit) var(--form--spacing-unit); 324 background: var(--global--color-white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2328303d'><polygon points='0,0 10,0 5,5'/></svg>") no-repeat; 325 background-position: right var(--form--spacing-unit) top 60%; 338 326 } 339 327 340 328 /* … … 3091 3079 text-decoration: none; 3092 3080 } 3093 3081 3094 .has-background .has-link-color a { 3095 color: #28303d; 3096 } 3097 3082 .has-background .has-link-color a, 3098 3083 .has-background.has-link-color a { 3099 3084 color: #28303d; 3100 3085 } -
src/wp-content/themes/twentytwentyone/assets/css/ie.css
2242 2242 outline: 2px dotted #28303d; 2243 2243 } 2244 2244 2245 .has-background .has-link-color a { 2246 color: #28303d; 2247 } 2248 2245 .has-background .has-link-color a, 2249 2246 .has-background.has-link-color a { 2250 2247 color: #28303d; 2251 2248 }