chosen.icons.less 837 字节
Newer Older
C
Catouse 已提交
1 2
/// ========================================================================
/// ZUI: chosen.icons.less
C
Catouse 已提交
3
/// http://openzui.com
C
Catouse 已提交
4
/// ========================================================================
C
Catouse 已提交
5
/// Copyright 2014-2020 cnezsoft.com; Licensed MIT
C
Catouse 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/// ========================================================================


// Icons selector style with chosen module

.chosen-container.chosen-icons {
  .chosen-results {
    padding: 5px;

    li {
      border-radius: @border-radius-base;

      &.group-result {
        padding: 5px 0;
        color: #666;
        font-size: 12px;
        border-radius: 0;
      }

      &.group-option {
C
Catouse 已提交
26
        display: inline-block!important;
C
Catouse 已提交
27 28 29 30 31 32 33 34
        padding: 8px;
        font-size: 14px;
        line-height: 14px;
        width: 30px;
        text-align: center;
      }
    }
  }
C
Catouse 已提交
35
}