summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/components/select/select.component.scss
blob: 9a4b45062f20dfde0f2b7e2d20519ab70a6d1504 (plain)
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
@use './src/styles/vendor/variables' as vv;

.select-menu-item {
  border-bottom: 1px solid vv.$datatable-divider-color;
  cursor: pointer;
  display: block;
  font-size: 1rem;

  &:hover {
    background-color: vv.$gray-200;
  }
}

.select-menu-item-icon {
  float: left;
  padding: 0.5em;
  width: 3em;
}

.select-menu-item-content {
  padding: 0.5em;

  .form-text {
    display: flex;
  }
}