angelovcom.net

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

forms-editor.scss (711B)


      1 select,
      2 select:focus {
      3 	border: var(--form--border-width) solid var(--form--border-color);
      4 	border-radius: var(--form--border-radius);
      5 	color: var(--form--color-text);
      6 	font-size: var(--form--font-size);
      7 	-moz-appearance: none;
      8 	-webkit-appearance: none;
      9 	appearance: none;
     10 	padding: var(--form--spacing-unit) calc(3 * var(--form--spacing-unit)) var(--form--spacing-unit) var(--form--spacing-unit);
     11 	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; // stylelint-disable-line function-url-quotes
     12 	background-position: right var(--form--spacing-unit) top 60%;
     13 }