@colijnit/corecomponents_v12 254.1.2 → 254.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/colijnit-corecomponents_v12.umd.js +4 -1
- package/bundles/colijnit-corecomponents_v12.umd.js.map +1 -1
- package/colijnit-corecomponents_v12.metadata.json +1 -1
- package/esm2015/lib/components/list-of-values/list-of-values-popup.component.js +33 -24
- package/fesm2015/colijnit-corecomponents_v12.js +32 -23
- package/fesm2015/colijnit-corecomponents_v12.js.map +1 -1
- package/lib/components/list-of-icons/style/_layout.scss +71 -0
- package/lib/components/list-of-icons/style/_material-definition.scss +20 -0
- package/lib/components/list-of-icons/style/_theme.scss +5 -0
- package/lib/components/list-of-icons/style/material.scss +7 -0
- package/package.json +1 -1
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
@include export-module('co-list-of-icons-layout') {
|
|
2
|
+
.co-list-of-icons {
|
|
3
|
+
display: block;
|
|
4
|
+
padding: 8px;
|
|
5
|
+
font-family: $cc-co-input-text-font-family;
|
|
6
|
+
font-size: $cc-co-input-text-font-size;
|
|
7
|
+
background: $cc-co-list-of-values-background-color;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.icon-item {
|
|
11
|
+
position: relative;
|
|
12
|
+
display: flex;
|
|
13
|
+
flex-direction: column;
|
|
14
|
+
align-items: center;
|
|
15
|
+
cursor: pointer;
|
|
16
|
+
|
|
17
|
+
.drop-arrow {
|
|
18
|
+
position: absolute;
|
|
19
|
+
top: 8px;
|
|
20
|
+
right: -14px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.co-icon svg {
|
|
24
|
+
fill: $color-menu;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.label {
|
|
28
|
+
margin-top: 2px;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&.menu-opened {
|
|
32
|
+
.drop-arrow {
|
|
33
|
+
transform: rotate(180deg);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&:hover,
|
|
38
|
+
&.menu-opened {
|
|
39
|
+
.co-icon svg {
|
|
40
|
+
fill: $color-action;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.label {
|
|
44
|
+
color: $color-action;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.dropdown-menu {
|
|
50
|
+
padding-top: 10px;
|
|
51
|
+
|
|
52
|
+
.icon-item {
|
|
53
|
+
margin-bottom: 8px;
|
|
54
|
+
|
|
55
|
+
&:last-of-type {
|
|
56
|
+
margin: 0;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&.active {
|
|
60
|
+
.co-icon svg {
|
|
61
|
+
fill: $color-action;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.label {
|
|
65
|
+
color: $color-action;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
$cc-co-input-text-font-family: $cc-font-family !default;
|
|
2
|
+
$cc-co-input-text-font-size: $cc-font-size-default !default;
|
|
3
|
+
$cc-co-input-text-font-color: $cc-color-dark !default;
|
|
4
|
+
$cc-co-input-text-background-color: white !default;
|
|
5
|
+
$cc-co-input-text-border-color: $cc-color-border !default;
|
|
6
|
+
$cc-co-input-placeholder-color: $cc-color-border !default;
|
|
7
|
+
$cc-co-input-placeholder-font-style: italic !default;
|
|
8
|
+
$cc-co-input-text-small-height: 45px !default;
|
|
9
|
+
$cc-co-input-text-icon-max-height: $cc-item-size !default;
|
|
10
|
+
$cc-co-input-text-icon-size: 50% !default;
|
|
11
|
+
$cc-co-input-text-icon-margin-number: 0 !default;
|
|
12
|
+
$cc-co-input-text-spacer-width: $cc-input-border-width !default;
|
|
13
|
+
$cc-co-input-text-right-spacer-width: 0 !default;
|
|
14
|
+
$cc-co-input-text-spacer-color: $cc-input-border-color !default;
|
|
15
|
+
$cc-co-list-of-values-background-color: white !default;
|
|
16
|
+
$cc-co-list-of-values-lov-options-border: 1px solid $cc-input-border-color !default;
|
|
17
|
+
$color-menu: #6b6e8a;
|
|
18
|
+
$color-action: #1A73E8;
|
|
19
|
+
//$cc-co-input-label-color: $cc-color-border !default;
|
|
20
|
+
//$cc-co-input-label-font-style: normal !default;
|