zoukankan      html  css  js  c++  java
  • [CSS] Customer focus / disabled style for select element

    Because there is no parent selector in CSS, we'll need to add an additional element to assist us in providing a focus style. We'll also add it to our multiple select so that it applies in both scenarios. The placement is important because we can affect elements that follow another element easily in CSS which we'll see.

    <div class="form-group">
        <label for="select">Select</label>
        <div class="form-field select">
            <select id="select" name="select">...
            </select>
            <span class="focus"></span>
        </div>
    </div>
    .form-field {
        border-color: var(--color-default, color("default"));
    
        &:focus {
            @include field-focus;
        }
    
        &:disabled {
            @include field-disabled;
        }
    }
    
    .form-field.select {
        display: grid;
        align-items: center;
        grid-template-areas: "select";
        position: relative;
    
        background-image: linear-gradient(
            to top,
            scale-color(color("white"), $lightness: -10%),
            color("white") 33%
        );
    
        select, 
        &::after {
            grid-area: select;
        }
    
        &:not(.select--multiple)::after {
            content: "";
            width: 0.8em;
            height: 0.5em;
            background-color: var(--color-default, color("default"));
            justify-self: end;
            clip-path: polygon(100% 0%, 0 0%, 50% 100%);
        }
    
        select {
            z-index: 1;
    
            &[multiple] {
                padding-right: 0;
            }
        }
    
        .focus {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: inherit;
            border: 2px solid transparent;
        }
    
        select:focus + .focus {
            @include field-focus;
        }
    
        &--disabled {
            @include field-disabled;
            
            background-image: linear-gradient(
                to top,
                rgba(black, 0.08),
                rgba(white, 0) 33%
            );
        }
    }

    mixin:

    @mixin field-focus {
        border-color: var(--field-focus, color("primary"));
        box-shadow: 0 0 0.35em -0.1em var(--field-focus, color("primary"));
        outline: 2px solid transparent;
    }
    
    @mixin field-disabled {
        border-color: var(--color-disabled-border, color("disabled"));
        background-color: var(
            --color-disabled-background,
            color("disabled-background")
        );
        cursor: not-allowed;
        &,
        option {
            color: rgba(black, 0.45);
        }
    }

    All the idea that use to focus is add new element which class is `focus`, styling it and positioning it order to complete focus style.

  • 相关阅读:
    Java连接MySql报错—— com.mysql.cj.exceptions.InvalidConnectionAttributeException
    Java——XML基础知识
    Java——多线程基础知识
    Java——线程安全的集合
    Java——集合
    dom4j——使用dom4j生成xml
    Java——用程序编译一个文件夹下所有java文件到另一个文件夹下
    Java——DOS命令窗口用命令编译文件夹下所有.java文件
    Java——删除Map集合中key-value值
    python 枚举Enum
  • 原文地址:https://www.cnblogs.com/Answer1215/p/14484028.html
Copyright © 2011-2022 走看看