guestbell-forms 3.0.125 → 3.0.127
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/build/components/inputHeader/InputHeader.js +3 -3
- package/build/components/inputHeader/InputHeader.js.map +1 -1
- package/build/dist/guestbell-forms.css +505 -388
- package/build/dist/guestbell-forms.css.map +1 -1
- package/build/dist/guestbell-forms.min.css +1 -1
- package/build/dist/report.html +2 -2
- package/build/scss/components/button/base.scss +77 -0
- package/build/scss/components/button/buttons.scss +41 -147
- package/build/scss/components/button/index.scss +2 -0
- package/build/scss/components/button/utils.scss +78 -0
- package/package.json +1 -1
- package/src/lib/components/inputHeader/InputHeader.tsx +34 -39
- package/src/lib/scss/components/button/base.scss +77 -0
- package/src/lib/scss/components/button/buttons.scss +41 -147
- package/src/lib/scss/components/button/index.scss +2 -0
- package/src/lib/scss/components/button/utils.scss +78 -0
@@ -959,6 +959,510 @@
|
|
959
959
|
width: 0;
|
960
960
|
background: transparent; } }
|
961
961
|
|
962
|
+
.guestbell-btn.guestbell-btn-primary {
|
963
|
+
background-color: #10bdc7;
|
964
|
+
fill: white;
|
965
|
+
color: white; }
|
966
|
+
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled):not(.guestbell-btn--blank):not(
|
967
|
+
.guestbell-btn--outlined
|
968
|
+
):not(.guestbell-btn--unobtrusive):hover {
|
969
|
+
background-color: #0d9ea6; }
|
970
|
+
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled).guestbell-btn--outlined {
|
971
|
+
box-shadow: inset 0 0 0 1px #10bdc7 !important;
|
972
|
+
color: #10bdc7;
|
973
|
+
fill: #10bdc7;
|
974
|
+
background-color: transparent; }
|
975
|
+
@media (hover: hover) and (pointer: fine) {
|
976
|
+
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled).guestbell-btn--outlined:hover {
|
977
|
+
color: white;
|
978
|
+
fill: white;
|
979
|
+
background-color: #10bdc7; } }
|
980
|
+
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled).guestbell-btn--blank {
|
981
|
+
color: #10bdc7;
|
982
|
+
fill: #10bdc7;
|
983
|
+
background-color: transparent; }
|
984
|
+
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled).guestbell-btn--blank:hover {
|
985
|
+
color: white;
|
986
|
+
fill: white;
|
987
|
+
background-color: rgba(16, 189, 199, 0.5); }
|
988
|
+
.guestbell-btn.guestbell-btn-primary.guestbell-btn--disabled {
|
989
|
+
background-color: rgba(16, 189, 199, 0.25); }
|
990
|
+
.guestbell-btn.guestbell-btn-primary.guestbell-btn--disabled.guestbell-btn--outlined {
|
991
|
+
background-color: transparent;
|
992
|
+
box-shadow: inset 0 0 0 1px rgba(16, 189, 199, 0.25) !important;
|
993
|
+
color: rgba(16, 189, 199, 0.25);
|
994
|
+
fill: rgba(16, 189, 199, 0.25); }
|
995
|
+
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive {
|
996
|
+
box-shadow: none;
|
997
|
+
background-color: transparent;
|
998
|
+
color: inherit;
|
999
|
+
fill: inherit; }
|
1000
|
+
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive:hover {
|
1001
|
+
color: #10bdc7;
|
1002
|
+
fill: #10bdc7;
|
1003
|
+
background-color: transparent; }
|
1004
|
+
.guestbell-btn.guestbell-btn-primary.guestbell-btn--disabled.guestbell-btn--unobtrusive {
|
1005
|
+
color: #555555;
|
1006
|
+
background-color: transparent;
|
1007
|
+
box-shadow: none; }
|
1008
|
+
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled).guestbell-btn--text {
|
1009
|
+
box-shadow: none;
|
1010
|
+
background-color: transparent;
|
1011
|
+
color: #10bdc7;
|
1012
|
+
fill: #10bdc7; }
|
1013
|
+
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled).guestbell-btn--text:hover {
|
1014
|
+
color: #1de1ed;
|
1015
|
+
fill: #1de1ed;
|
1016
|
+
background-color: transparent !important; }
|
1017
|
+
.guestbell-btn.guestbell-btn-primary.guestbell-btn--disabled.guestbell-btn--text {
|
1018
|
+
color: rgba(16, 189, 199, 0.25);
|
1019
|
+
background-color: transparent;
|
1020
|
+
box-shadow: none; }
|
1021
|
+
.guestbell-btn.guestbell-btn-primary.guestbell-btn--disabled.guestbell-btn--blank {
|
1022
|
+
background-color: transparent;
|
1023
|
+
color: #086369; }
|
1024
|
+
|
1025
|
+
.guestbell-btn.guestbell-btn-success {
|
1026
|
+
background-color: #5cb85c;
|
1027
|
+
fill: white;
|
1028
|
+
color: white; }
|
1029
|
+
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled):not(.guestbell-btn--blank):not(
|
1030
|
+
.guestbell-btn--outlined
|
1031
|
+
):not(.guestbell-btn--unobtrusive):hover {
|
1032
|
+
background-color: #49a749; }
|
1033
|
+
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled).guestbell-btn--outlined {
|
1034
|
+
box-shadow: inset 0 0 0 1px #5cb85c !important;
|
1035
|
+
color: #5cb85c;
|
1036
|
+
fill: #5cb85c;
|
1037
|
+
background-color: transparent; }
|
1038
|
+
@media (hover: hover) and (pointer: fine) {
|
1039
|
+
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled).guestbell-btn--outlined:hover {
|
1040
|
+
color: white;
|
1041
|
+
fill: white;
|
1042
|
+
background-color: #5cb85c; } }
|
1043
|
+
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled).guestbell-btn--blank {
|
1044
|
+
color: #5cb85c;
|
1045
|
+
fill: #5cb85c;
|
1046
|
+
background-color: transparent; }
|
1047
|
+
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled).guestbell-btn--blank:hover {
|
1048
|
+
color: white;
|
1049
|
+
fill: white;
|
1050
|
+
background-color: rgba(92, 184, 92, 0.5); }
|
1051
|
+
.guestbell-btn.guestbell-btn-success.guestbell-btn--disabled {
|
1052
|
+
background-color: rgba(92, 184, 92, 0.25); }
|
1053
|
+
.guestbell-btn.guestbell-btn-success.guestbell-btn--disabled.guestbell-btn--outlined {
|
1054
|
+
background-color: transparent;
|
1055
|
+
box-shadow: inset 0 0 0 1px rgba(92, 184, 92, 0.25) !important;
|
1056
|
+
color: rgba(92, 184, 92, 0.25);
|
1057
|
+
fill: rgba(92, 184, 92, 0.25); }
|
1058
|
+
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive {
|
1059
|
+
box-shadow: none;
|
1060
|
+
background-color: transparent;
|
1061
|
+
color: inherit;
|
1062
|
+
fill: inherit; }
|
1063
|
+
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive:hover {
|
1064
|
+
color: #5cb85c;
|
1065
|
+
fill: #5cb85c;
|
1066
|
+
background-color: transparent; }
|
1067
|
+
.guestbell-btn.guestbell-btn-success.guestbell-btn--disabled.guestbell-btn--unobtrusive {
|
1068
|
+
color: #555555;
|
1069
|
+
background-color: transparent;
|
1070
|
+
box-shadow: none; }
|
1071
|
+
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled).guestbell-btn--text {
|
1072
|
+
box-shadow: none;
|
1073
|
+
background-color: transparent;
|
1074
|
+
color: #5cb85c;
|
1075
|
+
fill: #5cb85c; }
|
1076
|
+
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled).guestbell-btn--text:hover {
|
1077
|
+
color: #80c780;
|
1078
|
+
fill: #80c780;
|
1079
|
+
background-color: transparent !important; }
|
1080
|
+
.guestbell-btn.guestbell-btn-success.guestbell-btn--disabled.guestbell-btn--text {
|
1081
|
+
color: rgba(92, 184, 92, 0.25);
|
1082
|
+
background-color: transparent;
|
1083
|
+
box-shadow: none; }
|
1084
|
+
.guestbell-btn.guestbell-btn-success.guestbell-btn--disabled.guestbell-btn--blank {
|
1085
|
+
background-color: transparent;
|
1086
|
+
color: #357935; }
|
1087
|
+
|
1088
|
+
.guestbell-btn.guestbell-btn-white {
|
1089
|
+
background-color: white;
|
1090
|
+
fill: #555555;
|
1091
|
+
color: #555555; }
|
1092
|
+
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled):not(.guestbell-btn--blank):not(
|
1093
|
+
.guestbell-btn--outlined
|
1094
|
+
):not(.guestbell-btn--unobtrusive):hover {
|
1095
|
+
background-color: #ededed; }
|
1096
|
+
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled).guestbell-btn--outlined {
|
1097
|
+
box-shadow: inset 0 0 0 1px white !important;
|
1098
|
+
color: white;
|
1099
|
+
fill: white;
|
1100
|
+
background-color: transparent; }
|
1101
|
+
@media (hover: hover) and (pointer: fine) {
|
1102
|
+
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled).guestbell-btn--outlined:hover {
|
1103
|
+
color: #555555;
|
1104
|
+
fill: #555555;
|
1105
|
+
background-color: white; } }
|
1106
|
+
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled).guestbell-btn--blank {
|
1107
|
+
color: white;
|
1108
|
+
fill: white;
|
1109
|
+
background-color: transparent; }
|
1110
|
+
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled).guestbell-btn--blank:hover {
|
1111
|
+
color: #555555;
|
1112
|
+
fill: #555555;
|
1113
|
+
background-color: rgba(255, 255, 255, 0.5); }
|
1114
|
+
.guestbell-btn.guestbell-btn-white.guestbell-btn--disabled {
|
1115
|
+
background-color: rgba(255, 255, 255, 0.25); }
|
1116
|
+
.guestbell-btn.guestbell-btn-white.guestbell-btn--disabled.guestbell-btn--outlined {
|
1117
|
+
background-color: transparent;
|
1118
|
+
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25) !important;
|
1119
|
+
color: rgba(255, 255, 255, 0.25);
|
1120
|
+
fill: rgba(255, 255, 255, 0.25); }
|
1121
|
+
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive {
|
1122
|
+
box-shadow: none;
|
1123
|
+
background-color: transparent;
|
1124
|
+
color: inherit;
|
1125
|
+
fill: inherit; }
|
1126
|
+
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive:hover {
|
1127
|
+
color: white;
|
1128
|
+
fill: white;
|
1129
|
+
background-color: transparent; }
|
1130
|
+
.guestbell-btn.guestbell-btn-white.guestbell-btn--disabled.guestbell-btn--unobtrusive {
|
1131
|
+
color: #555555;
|
1132
|
+
background-color: transparent;
|
1133
|
+
box-shadow: none; }
|
1134
|
+
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled).guestbell-btn--text {
|
1135
|
+
box-shadow: none;
|
1136
|
+
background-color: transparent;
|
1137
|
+
color: white;
|
1138
|
+
fill: white; }
|
1139
|
+
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled).guestbell-btn--text:hover {
|
1140
|
+
color: white;
|
1141
|
+
fill: white;
|
1142
|
+
background-color: transparent !important; }
|
1143
|
+
.guestbell-btn.guestbell-btn-white.guestbell-btn--disabled.guestbell-btn--text {
|
1144
|
+
color: rgba(255, 255, 255, 0.25);
|
1145
|
+
background-color: transparent;
|
1146
|
+
box-shadow: none; }
|
1147
|
+
.guestbell-btn.guestbell-btn-white.guestbell-btn--disabled.guestbell-btn--blank {
|
1148
|
+
background-color: transparent;
|
1149
|
+
color: #cccccc; }
|
1150
|
+
|
1151
|
+
.guestbell-btn.guestbell-btn-black {
|
1152
|
+
background-color: black;
|
1153
|
+
fill: white;
|
1154
|
+
color: white; }
|
1155
|
+
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled):not(.guestbell-btn--blank):not(
|
1156
|
+
.guestbell-btn--outlined
|
1157
|
+
):not(.guestbell-btn--unobtrusive):hover {
|
1158
|
+
background-color: black; }
|
1159
|
+
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled).guestbell-btn--outlined {
|
1160
|
+
box-shadow: inset 0 0 0 1px black !important;
|
1161
|
+
color: black;
|
1162
|
+
fill: black;
|
1163
|
+
background-color: transparent; }
|
1164
|
+
@media (hover: hover) and (pointer: fine) {
|
1165
|
+
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled).guestbell-btn--outlined:hover {
|
1166
|
+
color: white;
|
1167
|
+
fill: white;
|
1168
|
+
background-color: black; } }
|
1169
|
+
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled).guestbell-btn--blank {
|
1170
|
+
color: black;
|
1171
|
+
fill: black;
|
1172
|
+
background-color: transparent; }
|
1173
|
+
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled).guestbell-btn--blank:hover {
|
1174
|
+
color: white;
|
1175
|
+
fill: white;
|
1176
|
+
background-color: rgba(0, 0, 0, 0.5); }
|
1177
|
+
.guestbell-btn.guestbell-btn-black.guestbell-btn--disabled {
|
1178
|
+
background-color: rgba(0, 0, 0, 0.25); }
|
1179
|
+
.guestbell-btn.guestbell-btn-black.guestbell-btn--disabled.guestbell-btn--outlined {
|
1180
|
+
background-color: transparent;
|
1181
|
+
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25) !important;
|
1182
|
+
color: rgba(0, 0, 0, 0.25);
|
1183
|
+
fill: rgba(0, 0, 0, 0.25); }
|
1184
|
+
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive {
|
1185
|
+
box-shadow: none;
|
1186
|
+
background-color: transparent;
|
1187
|
+
color: inherit;
|
1188
|
+
fill: inherit; }
|
1189
|
+
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive:hover {
|
1190
|
+
color: black;
|
1191
|
+
fill: black;
|
1192
|
+
background-color: transparent; }
|
1193
|
+
.guestbell-btn.guestbell-btn-black.guestbell-btn--disabled.guestbell-btn--unobtrusive {
|
1194
|
+
color: #555555;
|
1195
|
+
background-color: transparent;
|
1196
|
+
box-shadow: none; }
|
1197
|
+
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled).guestbell-btn--text {
|
1198
|
+
box-shadow: none;
|
1199
|
+
background-color: transparent;
|
1200
|
+
color: black;
|
1201
|
+
fill: black; }
|
1202
|
+
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled).guestbell-btn--text:hover {
|
1203
|
+
color: #1a1a1a;
|
1204
|
+
fill: #1a1a1a;
|
1205
|
+
background-color: transparent !important; }
|
1206
|
+
.guestbell-btn.guestbell-btn-black.guestbell-btn--disabled.guestbell-btn--text {
|
1207
|
+
color: rgba(0, 0, 0, 0.25);
|
1208
|
+
background-color: transparent;
|
1209
|
+
box-shadow: none; }
|
1210
|
+
.guestbell-btn.guestbell-btn-black.guestbell-btn--disabled.guestbell-btn--blank {
|
1211
|
+
background-color: transparent;
|
1212
|
+
color: black; }
|
1213
|
+
|
1214
|
+
.guestbell-btn.guestbell-btn-info {
|
1215
|
+
background-color: #a8dadc;
|
1216
|
+
fill: white;
|
1217
|
+
color: white; }
|
1218
|
+
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled):not(.guestbell-btn--blank):not(
|
1219
|
+
.guestbell-btn--outlined
|
1220
|
+
):not(.guestbell-btn--unobtrusive):hover {
|
1221
|
+
background-color: #8fcfd2; }
|
1222
|
+
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled).guestbell-btn--outlined {
|
1223
|
+
box-shadow: inset 0 0 0 1px #a8dadc !important;
|
1224
|
+
color: #a8dadc;
|
1225
|
+
fill: #a8dadc;
|
1226
|
+
background-color: transparent; }
|
1227
|
+
@media (hover: hover) and (pointer: fine) {
|
1228
|
+
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled).guestbell-btn--outlined:hover {
|
1229
|
+
color: white;
|
1230
|
+
fill: white;
|
1231
|
+
background-color: #a8dadc; } }
|
1232
|
+
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled).guestbell-btn--blank {
|
1233
|
+
color: #a8dadc;
|
1234
|
+
fill: #a8dadc;
|
1235
|
+
background-color: transparent; }
|
1236
|
+
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled).guestbell-btn--blank:hover {
|
1237
|
+
color: white;
|
1238
|
+
fill: white;
|
1239
|
+
background-color: rgba(168, 218, 220, 0.5); }
|
1240
|
+
.guestbell-btn.guestbell-btn-info.guestbell-btn--disabled {
|
1241
|
+
background-color: rgba(168, 218, 220, 0.25); }
|
1242
|
+
.guestbell-btn.guestbell-btn-info.guestbell-btn--disabled.guestbell-btn--outlined {
|
1243
|
+
background-color: transparent;
|
1244
|
+
box-shadow: inset 0 0 0 1px rgba(168, 218, 220, 0.25) !important;
|
1245
|
+
color: rgba(168, 218, 220, 0.25);
|
1246
|
+
fill: rgba(168, 218, 220, 0.25); }
|
1247
|
+
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive {
|
1248
|
+
box-shadow: none;
|
1249
|
+
background-color: transparent;
|
1250
|
+
color: inherit;
|
1251
|
+
fill: inherit; }
|
1252
|
+
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive:hover {
|
1253
|
+
color: #a8dadc;
|
1254
|
+
fill: #a8dadc;
|
1255
|
+
background-color: transparent; }
|
1256
|
+
.guestbell-btn.guestbell-btn-info.guestbell-btn--disabled.guestbell-btn--unobtrusive {
|
1257
|
+
color: #555555;
|
1258
|
+
background-color: transparent;
|
1259
|
+
box-shadow: none; }
|
1260
|
+
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled).guestbell-btn--text {
|
1261
|
+
box-shadow: none;
|
1262
|
+
background-color: transparent;
|
1263
|
+
color: #a8dadc;
|
1264
|
+
fill: #a8dadc; }
|
1265
|
+
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled).guestbell-btn--text:hover {
|
1266
|
+
color: #cce9eb;
|
1267
|
+
fill: #cce9eb;
|
1268
|
+
background-color: transparent !important; }
|
1269
|
+
.guestbell-btn.guestbell-btn-info.guestbell-btn--disabled.guestbell-btn--text {
|
1270
|
+
color: rgba(168, 218, 220, 0.25);
|
1271
|
+
background-color: transparent;
|
1272
|
+
box-shadow: none; }
|
1273
|
+
.guestbell-btn.guestbell-btn-info.guestbell-btn--disabled.guestbell-btn--blank {
|
1274
|
+
background-color: transparent;
|
1275
|
+
color: #5fbbbf; }
|
1276
|
+
|
1277
|
+
.guestbell-btn.guestbell-btn-error {
|
1278
|
+
background-color: #d9534f;
|
1279
|
+
fill: white;
|
1280
|
+
color: white; }
|
1281
|
+
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled):not(.guestbell-btn--blank):not(
|
1282
|
+
.guestbell-btn--outlined
|
1283
|
+
):not(.guestbell-btn--unobtrusive):hover {
|
1284
|
+
background-color: #d33632; }
|
1285
|
+
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled).guestbell-btn--outlined {
|
1286
|
+
box-shadow: inset 0 0 0 1px #d9534f !important;
|
1287
|
+
color: #d9534f;
|
1288
|
+
fill: #d9534f;
|
1289
|
+
background-color: transparent; }
|
1290
|
+
@media (hover: hover) and (pointer: fine) {
|
1291
|
+
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled).guestbell-btn--outlined:hover {
|
1292
|
+
color: white;
|
1293
|
+
fill: white;
|
1294
|
+
background-color: #d9534f; } }
|
1295
|
+
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled).guestbell-btn--blank {
|
1296
|
+
color: #d9534f;
|
1297
|
+
fill: #d9534f;
|
1298
|
+
background-color: transparent; }
|
1299
|
+
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled).guestbell-btn--blank:hover {
|
1300
|
+
color: white;
|
1301
|
+
fill: white;
|
1302
|
+
background-color: rgba(217, 83, 79, 0.5); }
|
1303
|
+
.guestbell-btn.guestbell-btn-error.guestbell-btn--disabled {
|
1304
|
+
background-color: rgba(217, 83, 79, 0.25); }
|
1305
|
+
.guestbell-btn.guestbell-btn-error.guestbell-btn--disabled.guestbell-btn--outlined {
|
1306
|
+
background-color: transparent;
|
1307
|
+
box-shadow: inset 0 0 0 1px rgba(217, 83, 79, 0.25) !important;
|
1308
|
+
color: rgba(217, 83, 79, 0.25);
|
1309
|
+
fill: rgba(217, 83, 79, 0.25); }
|
1310
|
+
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive {
|
1311
|
+
box-shadow: none;
|
1312
|
+
background-color: transparent;
|
1313
|
+
color: inherit;
|
1314
|
+
fill: inherit; }
|
1315
|
+
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive:hover {
|
1316
|
+
color: #d9534f;
|
1317
|
+
fill: #d9534f;
|
1318
|
+
background-color: transparent; }
|
1319
|
+
.guestbell-btn.guestbell-btn-error.guestbell-btn--disabled.guestbell-btn--unobtrusive {
|
1320
|
+
color: #555555;
|
1321
|
+
background-color: transparent;
|
1322
|
+
box-shadow: none; }
|
1323
|
+
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled).guestbell-btn--text {
|
1324
|
+
box-shadow: none;
|
1325
|
+
background-color: transparent;
|
1326
|
+
color: #d9534f;
|
1327
|
+
fill: #d9534f; }
|
1328
|
+
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled).guestbell-btn--text:hover {
|
1329
|
+
color: #e27c79;
|
1330
|
+
fill: #e27c79;
|
1331
|
+
background-color: transparent !important; }
|
1332
|
+
.guestbell-btn.guestbell-btn-error.guestbell-btn--disabled.guestbell-btn--text {
|
1333
|
+
color: rgba(217, 83, 79, 0.25);
|
1334
|
+
background-color: transparent;
|
1335
|
+
box-shadow: none; }
|
1336
|
+
.guestbell-btn.guestbell-btn-error.guestbell-btn--disabled.guestbell-btn--blank {
|
1337
|
+
background-color: transparent;
|
1338
|
+
color: #a02622; }
|
1339
|
+
|
1340
|
+
.guestbell-btn.guestbell-btn-warning {
|
1341
|
+
background-color: #f0ad4e;
|
1342
|
+
fill: white;
|
1343
|
+
color: white; }
|
1344
|
+
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled):not(.guestbell-btn--blank):not(
|
1345
|
+
.guestbell-btn--outlined
|
1346
|
+
):not(.guestbell-btn--unobtrusive):hover {
|
1347
|
+
background-color: #ed9e2d; }
|
1348
|
+
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled).guestbell-btn--outlined {
|
1349
|
+
box-shadow: inset 0 0 0 1px #f0ad4e !important;
|
1350
|
+
color: #f0ad4e;
|
1351
|
+
fill: #f0ad4e;
|
1352
|
+
background-color: transparent; }
|
1353
|
+
@media (hover: hover) and (pointer: fine) {
|
1354
|
+
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled).guestbell-btn--outlined:hover {
|
1355
|
+
color: white;
|
1356
|
+
fill: white;
|
1357
|
+
background-color: #f0ad4e; } }
|
1358
|
+
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled).guestbell-btn--blank {
|
1359
|
+
color: #f0ad4e;
|
1360
|
+
fill: #f0ad4e;
|
1361
|
+
background-color: transparent; }
|
1362
|
+
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled).guestbell-btn--blank:hover {
|
1363
|
+
color: white;
|
1364
|
+
fill: white;
|
1365
|
+
background-color: rgba(240, 173, 78, 0.5); }
|
1366
|
+
.guestbell-btn.guestbell-btn-warning.guestbell-btn--disabled {
|
1367
|
+
background-color: rgba(240, 173, 78, 0.25); }
|
1368
|
+
.guestbell-btn.guestbell-btn-warning.guestbell-btn--disabled.guestbell-btn--outlined {
|
1369
|
+
background-color: transparent;
|
1370
|
+
box-shadow: inset 0 0 0 1px rgba(240, 173, 78, 0.25) !important;
|
1371
|
+
color: rgba(240, 173, 78, 0.25);
|
1372
|
+
fill: rgba(240, 173, 78, 0.25); }
|
1373
|
+
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive {
|
1374
|
+
box-shadow: none;
|
1375
|
+
background-color: transparent;
|
1376
|
+
color: inherit;
|
1377
|
+
fill: inherit; }
|
1378
|
+
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive:hover {
|
1379
|
+
color: #f0ad4e;
|
1380
|
+
fill: #f0ad4e;
|
1381
|
+
background-color: transparent; }
|
1382
|
+
.guestbell-btn.guestbell-btn-warning.guestbell-btn--disabled.guestbell-btn--unobtrusive {
|
1383
|
+
color: #555555;
|
1384
|
+
background-color: transparent;
|
1385
|
+
box-shadow: none; }
|
1386
|
+
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled).guestbell-btn--text {
|
1387
|
+
box-shadow: none;
|
1388
|
+
background-color: transparent;
|
1389
|
+
color: #f0ad4e;
|
1390
|
+
fill: #f0ad4e; }
|
1391
|
+
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled).guestbell-btn--text:hover {
|
1392
|
+
color: #f4c37d;
|
1393
|
+
fill: #f4c37d;
|
1394
|
+
background-color: transparent !important; }
|
1395
|
+
.guestbell-btn.guestbell-btn-warning.guestbell-btn--disabled.guestbell-btn--text {
|
1396
|
+
color: rgba(240, 173, 78, 0.25);
|
1397
|
+
background-color: transparent;
|
1398
|
+
box-shadow: none; }
|
1399
|
+
.guestbell-btn.guestbell-btn-warning.guestbell-btn--disabled.guestbell-btn--blank {
|
1400
|
+
background-color: transparent;
|
1401
|
+
color: #c77c11; }
|
1402
|
+
|
1403
|
+
.guestbell-btn.guestbell-btn-gray {
|
1404
|
+
background-color: #555555;
|
1405
|
+
fill: white;
|
1406
|
+
color: white; }
|
1407
|
+
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled):not(.guestbell-btn--blank):not(
|
1408
|
+
.guestbell-btn--outlined
|
1409
|
+
):not(.guestbell-btn--unobtrusive):hover {
|
1410
|
+
background-color: #434343; }
|
1411
|
+
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled).guestbell-btn--outlined {
|
1412
|
+
box-shadow: inset 0 0 0 1px #555555 !important;
|
1413
|
+
color: #555555;
|
1414
|
+
fill: #555555;
|
1415
|
+
background-color: transparent; }
|
1416
|
+
@media (hover: hover) and (pointer: fine) {
|
1417
|
+
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled).guestbell-btn--outlined:hover {
|
1418
|
+
color: white;
|
1419
|
+
fill: white;
|
1420
|
+
background-color: #555555; } }
|
1421
|
+
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled).guestbell-btn--blank {
|
1422
|
+
color: #555555;
|
1423
|
+
fill: #555555;
|
1424
|
+
background-color: transparent; }
|
1425
|
+
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled).guestbell-btn--blank:hover {
|
1426
|
+
color: white;
|
1427
|
+
fill: white;
|
1428
|
+
background-color: rgba(85, 85, 85, 0.5); }
|
1429
|
+
.guestbell-btn.guestbell-btn-gray.guestbell-btn--disabled {
|
1430
|
+
background-color: rgba(85, 85, 85, 0.25); }
|
1431
|
+
.guestbell-btn.guestbell-btn-gray.guestbell-btn--disabled.guestbell-btn--outlined {
|
1432
|
+
background-color: transparent;
|
1433
|
+
box-shadow: inset 0 0 0 1px rgba(85, 85, 85, 0.25) !important;
|
1434
|
+
color: rgba(85, 85, 85, 0.25);
|
1435
|
+
fill: rgba(85, 85, 85, 0.25); }
|
1436
|
+
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive {
|
1437
|
+
box-shadow: none;
|
1438
|
+
background-color: transparent;
|
1439
|
+
color: inherit;
|
1440
|
+
fill: inherit; }
|
1441
|
+
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive:hover {
|
1442
|
+
color: #555555;
|
1443
|
+
fill: #555555;
|
1444
|
+
background-color: transparent; }
|
1445
|
+
.guestbell-btn.guestbell-btn-gray.guestbell-btn--disabled.guestbell-btn--unobtrusive {
|
1446
|
+
color: #555555;
|
1447
|
+
background-color: transparent;
|
1448
|
+
box-shadow: none; }
|
1449
|
+
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled).guestbell-btn--text {
|
1450
|
+
box-shadow: none;
|
1451
|
+
background-color: transparent;
|
1452
|
+
color: #555555;
|
1453
|
+
fill: #555555; }
|
1454
|
+
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled).guestbell-btn--text:hover {
|
1455
|
+
color: #6f6f6f;
|
1456
|
+
fill: #6f6f6f;
|
1457
|
+
background-color: transparent !important; }
|
1458
|
+
.guestbell-btn.guestbell-btn-gray.guestbell-btn--disabled.guestbell-btn--text {
|
1459
|
+
color: rgba(85, 85, 85, 0.25);
|
1460
|
+
background-color: transparent;
|
1461
|
+
box-shadow: none; }
|
1462
|
+
.guestbell-btn.guestbell-btn-gray.guestbell-btn--disabled.guestbell-btn--blank {
|
1463
|
+
background-color: transparent;
|
1464
|
+
color: #222222; }
|
1465
|
+
|
962
1466
|
.guestbell-btn {
|
963
1467
|
text-transform: uppercase;
|
964
1468
|
background: transparent;
|
@@ -1015,394 +1519,7 @@
|
|
1015
1519
|
border-radius: 50%;
|
1016
1520
|
display: inline-table; }
|
1017
1521
|
.guestbell-btn.guestbell-btn.guestbell-btn--disabled {
|
1018
|
-
|
1019
|
-
cursor: not-allowed;
|
1020
|
-
background-color: #eeeeee;
|
1021
|
-
color: #999999; }
|
1022
|
-
.guestbell-btn.guestbell-btn-primary {
|
1023
|
-
background-color: #10bdc7;
|
1024
|
-
fill: white;
|
1025
|
-
color: white; }
|
1026
|
-
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled):not(.guestbell-btn--blank):not(
|
1027
|
-
.guestbell-btn--outlined
|
1028
|
-
):not(.guestbell-btn--unobtrusive):hover {
|
1029
|
-
background-color: #0d9ea6; }
|
1030
|
-
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled).guestbell-btn--outlined {
|
1031
|
-
box-shadow: inset 0 0 0 1px #10bdc7 !important;
|
1032
|
-
color: #10bdc7;
|
1033
|
-
fill: #10bdc7;
|
1034
|
-
background-color: transparent; }
|
1035
|
-
@media (hover: hover) and (pointer: fine) {
|
1036
|
-
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled).guestbell-btn--outlined:hover {
|
1037
|
-
color: white;
|
1038
|
-
fill: white;
|
1039
|
-
background-color: #10bdc7; } }
|
1040
|
-
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled).guestbell-btn--blank {
|
1041
|
-
color: #10bdc7;
|
1042
|
-
fill: #10bdc7;
|
1043
|
-
background-color: transparent; }
|
1044
|
-
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled).guestbell-btn--blank:hover {
|
1045
|
-
color: white;
|
1046
|
-
fill: white;
|
1047
|
-
background-color: rgba(16, 189, 199, 0.5); }
|
1048
|
-
.guestbell-btn.guestbell-btn-primary.guestbell-btn--disabled.guestbell-btn--unobtrusive {
|
1049
|
-
background-color: transparent; }
|
1050
|
-
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive {
|
1051
|
-
box-shadow: none;
|
1052
|
-
background-color: transparent;
|
1053
|
-
color: inherit;
|
1054
|
-
fill: inherit; }
|
1055
|
-
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive:hover {
|
1056
|
-
color: #10bdc7;
|
1057
|
-
fill: #10bdc7;
|
1058
|
-
background-color: transparent; }
|
1059
|
-
.guestbell-btn.guestbell-btn-primary.guestbell-btn--disabled.guestbell-btn--text {
|
1060
|
-
background-color: transparent; }
|
1061
|
-
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled).guestbell-btn--text {
|
1062
|
-
box-shadow: none;
|
1063
|
-
background-color: transparent;
|
1064
|
-
color: #10bdc7;
|
1065
|
-
fill: #10bdc7; }
|
1066
|
-
.guestbell-btn.guestbell-btn-primary:not(.guestbell-btn--disabled).guestbell-btn--text:hover {
|
1067
|
-
color: #1de1ed;
|
1068
|
-
fill: #1de1ed;
|
1069
|
-
background-color: transparent !important; }
|
1070
|
-
.guestbell-btn.guestbell-btn-success {
|
1071
|
-
background-color: #5cb85c;
|
1072
|
-
fill: white;
|
1073
|
-
color: white; }
|
1074
|
-
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled):not(.guestbell-btn--blank):not(
|
1075
|
-
.guestbell-btn--outlined
|
1076
|
-
):not(.guestbell-btn--unobtrusive):hover {
|
1077
|
-
background-color: #49a749; }
|
1078
|
-
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled).guestbell-btn--outlined {
|
1079
|
-
box-shadow: inset 0 0 0 1px #5cb85c !important;
|
1080
|
-
color: #5cb85c;
|
1081
|
-
fill: #5cb85c;
|
1082
|
-
background-color: transparent; }
|
1083
|
-
@media (hover: hover) and (pointer: fine) {
|
1084
|
-
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled).guestbell-btn--outlined:hover {
|
1085
|
-
color: white;
|
1086
|
-
fill: white;
|
1087
|
-
background-color: #5cb85c; } }
|
1088
|
-
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled).guestbell-btn--blank {
|
1089
|
-
color: #5cb85c;
|
1090
|
-
fill: #5cb85c;
|
1091
|
-
background-color: transparent; }
|
1092
|
-
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled).guestbell-btn--blank:hover {
|
1093
|
-
color: white;
|
1094
|
-
fill: white;
|
1095
|
-
background-color: rgba(92, 184, 92, 0.5); }
|
1096
|
-
.guestbell-btn.guestbell-btn-success.guestbell-btn--disabled.guestbell-btn--unobtrusive {
|
1097
|
-
background-color: transparent; }
|
1098
|
-
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive {
|
1099
|
-
box-shadow: none;
|
1100
|
-
background-color: transparent;
|
1101
|
-
color: inherit;
|
1102
|
-
fill: inherit; }
|
1103
|
-
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive:hover {
|
1104
|
-
color: #5cb85c;
|
1105
|
-
fill: #5cb85c;
|
1106
|
-
background-color: transparent; }
|
1107
|
-
.guestbell-btn.guestbell-btn-success.guestbell-btn--disabled.guestbell-btn--text {
|
1108
|
-
background-color: transparent; }
|
1109
|
-
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled).guestbell-btn--text {
|
1110
|
-
box-shadow: none;
|
1111
|
-
background-color: transparent;
|
1112
|
-
color: #5cb85c;
|
1113
|
-
fill: #5cb85c; }
|
1114
|
-
.guestbell-btn.guestbell-btn-success:not(.guestbell-btn--disabled).guestbell-btn--text:hover {
|
1115
|
-
color: #80c780;
|
1116
|
-
fill: #80c780;
|
1117
|
-
background-color: transparent !important; }
|
1118
|
-
.guestbell-btn.guestbell-btn-white {
|
1119
|
-
background-color: white;
|
1120
|
-
fill: #555555;
|
1121
|
-
color: #555555; }
|
1122
|
-
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled):not(.guestbell-btn--blank):not(
|
1123
|
-
.guestbell-btn--outlined
|
1124
|
-
):not(.guestbell-btn--unobtrusive):hover {
|
1125
|
-
background-color: #ededed; }
|
1126
|
-
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled).guestbell-btn--outlined {
|
1127
|
-
box-shadow: inset 0 0 0 1px white !important;
|
1128
|
-
color: white;
|
1129
|
-
fill: white;
|
1130
|
-
background-color: transparent; }
|
1131
|
-
@media (hover: hover) and (pointer: fine) {
|
1132
|
-
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled).guestbell-btn--outlined:hover {
|
1133
|
-
color: #555555;
|
1134
|
-
fill: #555555;
|
1135
|
-
background-color: white; } }
|
1136
|
-
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled).guestbell-btn--blank {
|
1137
|
-
color: white;
|
1138
|
-
fill: white;
|
1139
|
-
background-color: transparent; }
|
1140
|
-
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled).guestbell-btn--blank:hover {
|
1141
|
-
color: #555555;
|
1142
|
-
fill: #555555;
|
1143
|
-
background-color: rgba(255, 255, 255, 0.5); }
|
1144
|
-
.guestbell-btn.guestbell-btn-white.guestbell-btn--disabled.guestbell-btn--unobtrusive {
|
1145
|
-
background-color: transparent; }
|
1146
|
-
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive {
|
1147
|
-
box-shadow: none;
|
1148
|
-
background-color: transparent;
|
1149
|
-
color: inherit;
|
1150
|
-
fill: inherit; }
|
1151
|
-
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive:hover {
|
1152
|
-
color: white;
|
1153
|
-
fill: white;
|
1154
|
-
background-color: transparent; }
|
1155
|
-
.guestbell-btn.guestbell-btn-white.guestbell-btn--disabled.guestbell-btn--text {
|
1156
|
-
background-color: transparent; }
|
1157
|
-
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled).guestbell-btn--text {
|
1158
|
-
box-shadow: none;
|
1159
|
-
background-color: transparent;
|
1160
|
-
color: white;
|
1161
|
-
fill: white; }
|
1162
|
-
.guestbell-btn.guestbell-btn-white:not(.guestbell-btn--disabled).guestbell-btn--text:hover {
|
1163
|
-
color: white;
|
1164
|
-
fill: white;
|
1165
|
-
background-color: transparent !important; }
|
1166
|
-
.guestbell-btn.guestbell-btn-black {
|
1167
|
-
background-color: black;
|
1168
|
-
fill: white;
|
1169
|
-
color: white; }
|
1170
|
-
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled):not(.guestbell-btn--blank):not(
|
1171
|
-
.guestbell-btn--outlined
|
1172
|
-
):not(.guestbell-btn--unobtrusive):hover {
|
1173
|
-
background-color: black; }
|
1174
|
-
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled).guestbell-btn--outlined {
|
1175
|
-
box-shadow: inset 0 0 0 1px black !important;
|
1176
|
-
color: black;
|
1177
|
-
fill: black;
|
1178
|
-
background-color: transparent; }
|
1179
|
-
@media (hover: hover) and (pointer: fine) {
|
1180
|
-
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled).guestbell-btn--outlined:hover {
|
1181
|
-
color: white;
|
1182
|
-
fill: white;
|
1183
|
-
background-color: black; } }
|
1184
|
-
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled).guestbell-btn--blank {
|
1185
|
-
color: black;
|
1186
|
-
fill: black;
|
1187
|
-
background-color: transparent; }
|
1188
|
-
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled).guestbell-btn--blank:hover {
|
1189
|
-
color: white;
|
1190
|
-
fill: white;
|
1191
|
-
background-color: rgba(0, 0, 0, 0.5); }
|
1192
|
-
.guestbell-btn.guestbell-btn-black.guestbell-btn--disabled.guestbell-btn--unobtrusive {
|
1193
|
-
background-color: transparent; }
|
1194
|
-
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive {
|
1195
|
-
box-shadow: none;
|
1196
|
-
background-color: transparent;
|
1197
|
-
color: inherit;
|
1198
|
-
fill: inherit; }
|
1199
|
-
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive:hover {
|
1200
|
-
color: black;
|
1201
|
-
fill: black;
|
1202
|
-
background-color: transparent; }
|
1203
|
-
.guestbell-btn.guestbell-btn-black.guestbell-btn--disabled.guestbell-btn--text {
|
1204
|
-
background-color: transparent; }
|
1205
|
-
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled).guestbell-btn--text {
|
1206
|
-
box-shadow: none;
|
1207
|
-
background-color: transparent;
|
1208
|
-
color: black;
|
1209
|
-
fill: black; }
|
1210
|
-
.guestbell-btn.guestbell-btn-black:not(.guestbell-btn--disabled).guestbell-btn--text:hover {
|
1211
|
-
color: #1a1a1a;
|
1212
|
-
fill: #1a1a1a;
|
1213
|
-
background-color: transparent !important; }
|
1214
|
-
.guestbell-btn.guestbell-btn-info {
|
1215
|
-
background-color: #a8dadc;
|
1216
|
-
fill: white;
|
1217
|
-
color: white; }
|
1218
|
-
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled):not(.guestbell-btn--blank):not(
|
1219
|
-
.guestbell-btn--outlined
|
1220
|
-
):not(.guestbell-btn--unobtrusive):hover {
|
1221
|
-
background-color: #8fcfd2; }
|
1222
|
-
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled).guestbell-btn--outlined {
|
1223
|
-
box-shadow: inset 0 0 0 1px #a8dadc !important;
|
1224
|
-
color: #a8dadc;
|
1225
|
-
fill: #a8dadc;
|
1226
|
-
background-color: transparent; }
|
1227
|
-
@media (hover: hover) and (pointer: fine) {
|
1228
|
-
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled).guestbell-btn--outlined:hover {
|
1229
|
-
color: white;
|
1230
|
-
fill: white;
|
1231
|
-
background-color: #a8dadc; } }
|
1232
|
-
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled).guestbell-btn--blank {
|
1233
|
-
color: #a8dadc;
|
1234
|
-
fill: #a8dadc;
|
1235
|
-
background-color: transparent; }
|
1236
|
-
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled).guestbell-btn--blank:hover {
|
1237
|
-
color: white;
|
1238
|
-
fill: white;
|
1239
|
-
background-color: rgba(168, 218, 220, 0.5); }
|
1240
|
-
.guestbell-btn.guestbell-btn-info.guestbell-btn--disabled.guestbell-btn--unobtrusive {
|
1241
|
-
background-color: transparent; }
|
1242
|
-
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive {
|
1243
|
-
box-shadow: none;
|
1244
|
-
background-color: transparent;
|
1245
|
-
color: inherit;
|
1246
|
-
fill: inherit; }
|
1247
|
-
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive:hover {
|
1248
|
-
color: #a8dadc;
|
1249
|
-
fill: #a8dadc;
|
1250
|
-
background-color: transparent; }
|
1251
|
-
.guestbell-btn.guestbell-btn-info.guestbell-btn--disabled.guestbell-btn--text {
|
1252
|
-
background-color: transparent; }
|
1253
|
-
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled).guestbell-btn--text {
|
1254
|
-
box-shadow: none;
|
1255
|
-
background-color: transparent;
|
1256
|
-
color: #a8dadc;
|
1257
|
-
fill: #a8dadc; }
|
1258
|
-
.guestbell-btn.guestbell-btn-info:not(.guestbell-btn--disabled).guestbell-btn--text:hover {
|
1259
|
-
color: #cce9eb;
|
1260
|
-
fill: #cce9eb;
|
1261
|
-
background-color: transparent !important; }
|
1262
|
-
.guestbell-btn.guestbell-btn-error {
|
1263
|
-
background-color: #d9534f;
|
1264
|
-
fill: white;
|
1265
|
-
color: white; }
|
1266
|
-
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled):not(.guestbell-btn--blank):not(
|
1267
|
-
.guestbell-btn--outlined
|
1268
|
-
):not(.guestbell-btn--unobtrusive):hover {
|
1269
|
-
background-color: #d33632; }
|
1270
|
-
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled).guestbell-btn--outlined {
|
1271
|
-
box-shadow: inset 0 0 0 1px #d9534f !important;
|
1272
|
-
color: #d9534f;
|
1273
|
-
fill: #d9534f;
|
1274
|
-
background-color: transparent; }
|
1275
|
-
@media (hover: hover) and (pointer: fine) {
|
1276
|
-
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled).guestbell-btn--outlined:hover {
|
1277
|
-
color: white;
|
1278
|
-
fill: white;
|
1279
|
-
background-color: #d9534f; } }
|
1280
|
-
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled).guestbell-btn--blank {
|
1281
|
-
color: #d9534f;
|
1282
|
-
fill: #d9534f;
|
1283
|
-
background-color: transparent; }
|
1284
|
-
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled).guestbell-btn--blank:hover {
|
1285
|
-
color: white;
|
1286
|
-
fill: white;
|
1287
|
-
background-color: rgba(217, 83, 79, 0.5); }
|
1288
|
-
.guestbell-btn.guestbell-btn-error.guestbell-btn--disabled.guestbell-btn--unobtrusive {
|
1289
|
-
background-color: transparent; }
|
1290
|
-
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive {
|
1291
|
-
box-shadow: none;
|
1292
|
-
background-color: transparent;
|
1293
|
-
color: inherit;
|
1294
|
-
fill: inherit; }
|
1295
|
-
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive:hover {
|
1296
|
-
color: #d9534f;
|
1297
|
-
fill: #d9534f;
|
1298
|
-
background-color: transparent; }
|
1299
|
-
.guestbell-btn.guestbell-btn-error.guestbell-btn--disabled.guestbell-btn--text {
|
1300
|
-
background-color: transparent; }
|
1301
|
-
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled).guestbell-btn--text {
|
1302
|
-
box-shadow: none;
|
1303
|
-
background-color: transparent;
|
1304
|
-
color: #d9534f;
|
1305
|
-
fill: #d9534f; }
|
1306
|
-
.guestbell-btn.guestbell-btn-error:not(.guestbell-btn--disabled).guestbell-btn--text:hover {
|
1307
|
-
color: #e27c79;
|
1308
|
-
fill: #e27c79;
|
1309
|
-
background-color: transparent !important; }
|
1310
|
-
.guestbell-btn.guestbell-btn-warning {
|
1311
|
-
background-color: #f0ad4e;
|
1312
|
-
fill: white;
|
1313
|
-
color: white; }
|
1314
|
-
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled):not(.guestbell-btn--blank):not(
|
1315
|
-
.guestbell-btn--outlined
|
1316
|
-
):not(.guestbell-btn--unobtrusive):hover {
|
1317
|
-
background-color: #ed9e2d; }
|
1318
|
-
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled).guestbell-btn--outlined {
|
1319
|
-
box-shadow: inset 0 0 0 1px #f0ad4e !important;
|
1320
|
-
color: #f0ad4e;
|
1321
|
-
fill: #f0ad4e;
|
1322
|
-
background-color: transparent; }
|
1323
|
-
@media (hover: hover) and (pointer: fine) {
|
1324
|
-
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled).guestbell-btn--outlined:hover {
|
1325
|
-
color: white;
|
1326
|
-
fill: white;
|
1327
|
-
background-color: #f0ad4e; } }
|
1328
|
-
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled).guestbell-btn--blank {
|
1329
|
-
color: #f0ad4e;
|
1330
|
-
fill: #f0ad4e;
|
1331
|
-
background-color: transparent; }
|
1332
|
-
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled).guestbell-btn--blank:hover {
|
1333
|
-
color: white;
|
1334
|
-
fill: white;
|
1335
|
-
background-color: rgba(240, 173, 78, 0.5); }
|
1336
|
-
.guestbell-btn.guestbell-btn-warning.guestbell-btn--disabled.guestbell-btn--unobtrusive {
|
1337
|
-
background-color: transparent; }
|
1338
|
-
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive {
|
1339
|
-
box-shadow: none;
|
1340
|
-
background-color: transparent;
|
1341
|
-
color: inherit;
|
1342
|
-
fill: inherit; }
|
1343
|
-
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive:hover {
|
1344
|
-
color: #f0ad4e;
|
1345
|
-
fill: #f0ad4e;
|
1346
|
-
background-color: transparent; }
|
1347
|
-
.guestbell-btn.guestbell-btn-warning.guestbell-btn--disabled.guestbell-btn--text {
|
1348
|
-
background-color: transparent; }
|
1349
|
-
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled).guestbell-btn--text {
|
1350
|
-
box-shadow: none;
|
1351
|
-
background-color: transparent;
|
1352
|
-
color: #f0ad4e;
|
1353
|
-
fill: #f0ad4e; }
|
1354
|
-
.guestbell-btn.guestbell-btn-warning:not(.guestbell-btn--disabled).guestbell-btn--text:hover {
|
1355
|
-
color: #f4c37d;
|
1356
|
-
fill: #f4c37d;
|
1357
|
-
background-color: transparent !important; }
|
1358
|
-
.guestbell-btn.guestbell-btn-gray {
|
1359
|
-
background-color: #555555;
|
1360
|
-
fill: white;
|
1361
|
-
color: white; }
|
1362
|
-
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled):not(.guestbell-btn--blank):not(
|
1363
|
-
.guestbell-btn--outlined
|
1364
|
-
):not(.guestbell-btn--unobtrusive):hover {
|
1365
|
-
background-color: #434343; }
|
1366
|
-
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled).guestbell-btn--outlined {
|
1367
|
-
box-shadow: inset 0 0 0 1px #555555 !important;
|
1368
|
-
color: #555555;
|
1369
|
-
fill: #555555;
|
1370
|
-
background-color: transparent; }
|
1371
|
-
@media (hover: hover) and (pointer: fine) {
|
1372
|
-
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled).guestbell-btn--outlined:hover {
|
1373
|
-
color: white;
|
1374
|
-
fill: white;
|
1375
|
-
background-color: #555555; } }
|
1376
|
-
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled).guestbell-btn--blank {
|
1377
|
-
color: #555555;
|
1378
|
-
fill: #555555;
|
1379
|
-
background-color: transparent; }
|
1380
|
-
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled).guestbell-btn--blank:hover {
|
1381
|
-
color: white;
|
1382
|
-
fill: white;
|
1383
|
-
background-color: rgba(85, 85, 85, 0.5); }
|
1384
|
-
.guestbell-btn.guestbell-btn-gray.guestbell-btn--disabled.guestbell-btn--unobtrusive {
|
1385
|
-
background-color: transparent; }
|
1386
|
-
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive {
|
1387
|
-
box-shadow: none;
|
1388
|
-
background-color: transparent;
|
1389
|
-
color: inherit;
|
1390
|
-
fill: inherit; }
|
1391
|
-
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled).guestbell-btn--unobtrusive:hover {
|
1392
|
-
color: #555555;
|
1393
|
-
fill: #555555;
|
1394
|
-
background-color: transparent; }
|
1395
|
-
.guestbell-btn.guestbell-btn-gray.guestbell-btn--disabled.guestbell-btn--text {
|
1396
|
-
background-color: transparent; }
|
1397
|
-
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled).guestbell-btn--text {
|
1398
|
-
box-shadow: none;
|
1399
|
-
background-color: transparent;
|
1400
|
-
color: #555555;
|
1401
|
-
fill: #555555; }
|
1402
|
-
.guestbell-btn.guestbell-btn-gray:not(.guestbell-btn--disabled).guestbell-btn--text:hover {
|
1403
|
-
color: #6f6f6f;
|
1404
|
-
fill: #6f6f6f;
|
1405
|
-
background-color: transparent !important; }
|
1522
|
+
cursor: not-allowed; }
|
1406
1523
|
|
1407
1524
|
.input__base.checkbox-input {
|
1408
1525
|
display: block;
|