@annalib/anna-core 35.4.0 → 35.4.1
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/package.json
CHANGED
|
@@ -88,6 +88,23 @@
|
|
|
88
88
|
}
|
|
89
89
|
}
|
|
90
90
|
|
|
91
|
+
@mixin table-input-box($height, $borderColor) {
|
|
92
|
+
border: solid 1px $borderColor;
|
|
93
|
+
height: $height;
|
|
94
|
+
width: 99%;
|
|
95
|
+
text-overflow: ellipsis;
|
|
96
|
+
overflow: hidden;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
@mixin table-input-box-disabled($height, $borderColor, $bgColor, $color) {
|
|
100
|
+
border: solid 1px $borderColor;
|
|
101
|
+
height: $height;
|
|
102
|
+
background-color: $bgColor;
|
|
103
|
+
pointer-events: none !important;
|
|
104
|
+
cursor: default !important;
|
|
105
|
+
color: $color;
|
|
106
|
+
}
|
|
107
|
+
|
|
91
108
|
@mixin table-ellipses-only-on-text-span {
|
|
92
109
|
span {
|
|
93
110
|
text-overflow: ellipsis !important;
|
|
@@ -99,6 +116,11 @@
|
|
|
99
116
|
}
|
|
100
117
|
}
|
|
101
118
|
|
|
119
|
+
@mixin noBorderTableHeader($bgColor) {
|
|
120
|
+
background: $bgColor !important;
|
|
121
|
+
box-shadow: none !important;
|
|
122
|
+
}
|
|
123
|
+
|
|
102
124
|
@mixin genericTableHeaderShadow($columnNumber) {
|
|
103
125
|
.scroll-left-shadow-effect .header-row th:nth-of-type(#{$columnNumber}) {
|
|
104
126
|
border: none !important;
|