File: suggestion-element.less

package info (click to toggle)
icinga-php-library 0.18.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,160 kB
  • sloc: php: 48,772; javascript: 9,318; makefile: 9
file content (29 lines) | stat: -rw-r--r-- 664 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
.suggestion-element-group {
  display: inline-flex;

  .suggestion-element,
  .suggestion-element-icon {
    line-height: normal;
    height: 2.25em;
    padding: 0.5em;
    background-color: var(--default-input-bg, @default-input-bg);
    color: var(--default-text-color, @default-text-color);
  }

  .suggestion-element {
    border: none;
    outline: none;
    border-radius: 0 0.25em 0.25em 0;
  }

  .suggestion-element-icon {
    padding-right: 0;
    border-radius: 0.25em 0 0 0.25em;
  }

  &:focus-within {
    border-radius: 0.25em;
    outline: 3px solid var(--default-input-outline-color, @default-input-outline-color);
    outline-offset: 1px;
  }
}