i-tech-shared-components 1.3.7 → 1.3.8
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 +1 -1
- package/theme/_icon-button.scss +16 -0
package/package.json
CHANGED
package/theme/_icon-button.scss
CHANGED
|
@@ -91,6 +91,12 @@ body {
|
|
|
91
91
|
}
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
+
.mat-mdc-icon-button.tonal:disabled {
|
|
95
|
+
opacity: 0.38 !important;
|
|
96
|
+
background-color: lightgray !important;
|
|
97
|
+
border-radius: 20px !important;
|
|
98
|
+
}
|
|
99
|
+
|
|
94
100
|
.mat-mdc-icon-button.standard {
|
|
95
101
|
--mat-icon-button-state-layer-color: #{mat.get-theme-color(color-themes.$m3-light-theme, primary, 60)};
|
|
96
102
|
|
|
@@ -102,6 +108,10 @@ body {
|
|
|
102
108
|
}
|
|
103
109
|
}
|
|
104
110
|
|
|
111
|
+
.mat-mdc-icon-button.standard:disabled {
|
|
112
|
+
opacity: 0.38 !important;
|
|
113
|
+
}
|
|
114
|
+
|
|
105
115
|
// FILLED
|
|
106
116
|
.mat-mdc-fab-base.filled {
|
|
107
117
|
--mdc-fab-container-shape: 50% !important;
|
|
@@ -118,6 +128,12 @@ body {
|
|
|
118
128
|
}
|
|
119
129
|
}
|
|
120
130
|
}
|
|
131
|
+
|
|
132
|
+
.mat-mdc-icon-button.filled:disabled {
|
|
133
|
+
opacity: 0.38 !important;
|
|
134
|
+
background-color: lightgray !important;
|
|
135
|
+
border-radius: 20px !important;
|
|
136
|
+
}
|
|
121
137
|
// END OF BUTTON ICON TYPES
|
|
122
138
|
|
|
123
139
|
//.mat-mdc-icon-button:disabled, .mat-mdc-fab-base:disabled {
|