omnia-sass 3.5.113 → 3.5.135
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/dist/omnia-sass.scss +50 -0
- package/package.json +2 -2
package/dist/omnia-sass.scss
CHANGED
@@ -8871,6 +8871,7 @@ $breadcrumb-height: 2.5rem;
|
|
8871
8871
|
.table {
|
8872
8872
|
table-layout: fixed;
|
8873
8873
|
}
|
8874
|
+
|
8874
8875
|
.element-calendar-header {
|
8875
8876
|
td,
|
8876
8877
|
th {
|
@@ -8879,12 +8880,15 @@ $breadcrumb-height: 2.5rem;
|
|
8879
8880
|
border-color: $table-border-color;
|
8880
8881
|
}
|
8881
8882
|
}
|
8883
|
+
|
8882
8884
|
.element-calendar-week {
|
8883
8885
|
height: 6.5rem;
|
8886
|
+
|
8884
8887
|
td {
|
8885
8888
|
border-color: $table-border-color;
|
8886
8889
|
}
|
8887
8890
|
}
|
8891
|
+
|
8888
8892
|
.element-calendar-header td,
|
8889
8893
|
.element-calendar-header th,
|
8890
8894
|
.element-calendar-day,
|
@@ -8892,25 +8896,32 @@ $breadcrumb-height: 2.5rem;
|
|
8892
8896
|
width: calc(100% / 7);
|
8893
8897
|
max-width: calc(100% / 7);
|
8894
8898
|
}
|
8899
|
+
|
8895
8900
|
.element-calendar-day-container {
|
8896
8901
|
height: 5rem;
|
8897
8902
|
}
|
8903
|
+
|
8898
8904
|
.element-calendar-day {
|
8899
8905
|
padding: 0.25rem 0.5rem;
|
8906
|
+
|
8900
8907
|
&.element-calendar-weekend {
|
8901
8908
|
@include weekend();
|
8902
8909
|
}
|
8910
|
+
|
8903
8911
|
&.element-calendar-today {
|
8904
8912
|
@include today();
|
8905
8913
|
}
|
8914
|
+
|
8906
8915
|
&:hover:not(.element-calendar-day-disabled) {
|
8907
8916
|
@include hover_day();
|
8908
8917
|
}
|
8918
|
+
|
8909
8919
|
&.element-calendar-out-of-period,
|
8910
8920
|
&.element-calendar-non-work-day {
|
8911
8921
|
@include nonWork();
|
8912
8922
|
@include hover_notAllowed();
|
8913
8923
|
}
|
8924
|
+
|
8914
8925
|
&.element-calendar-blocked-day {
|
8915
8926
|
.element-calendar-day-container {
|
8916
8927
|
.element-calendar-day-number,
|
@@ -8918,12 +8929,15 @@ $breadcrumb-height: 2.5rem;
|
|
8918
8929
|
@include blocked-text();
|
8919
8930
|
}
|
8920
8931
|
}
|
8932
|
+
|
8921
8933
|
@include blocked-background();
|
8922
8934
|
@include hover_notAllowed();
|
8923
8935
|
}
|
8936
|
+
|
8924
8937
|
&.element-calendar-on-range-selection {
|
8925
8938
|
@include hover_day();
|
8926
8939
|
}
|
8940
|
+
|
8927
8941
|
.element-calendar-day-entry {
|
8928
8942
|
font-size: 0.85rem;
|
8929
8943
|
overflow-x: hidden;
|
@@ -8936,47 +8950,58 @@ $breadcrumb-height: 2.5rem;
|
|
8936
8950
|
margin: 0.2rem 0;
|
8937
8951
|
border-width: $border-width;
|
8938
8952
|
border-style: solid;
|
8953
|
+
|
8939
8954
|
&:hover {
|
8940
8955
|
background-color: darken($body-bg, 10%);
|
8941
8956
|
cursor: pointer;
|
8942
8957
|
}
|
8958
|
+
|
8943
8959
|
&.element-calendar-day-entry-disabled,
|
8944
8960
|
&.element-calendar-day-static-entry {
|
8945
8961
|
cursor: default;
|
8946
8962
|
}
|
8963
|
+
|
8947
8964
|
&.element-calendar-day-static-entry {
|
8948
8965
|
background-color: $white;
|
8949
8966
|
border: 1px solid $info;
|
8950
8967
|
color: $info;
|
8951
8968
|
cursor: default;
|
8952
8969
|
}
|
8970
|
+
|
8953
8971
|
&.element-calendar-day-entry-created {
|
8954
8972
|
border: 2px solid $success;
|
8955
8973
|
}
|
8974
|
+
|
8956
8975
|
&.element-calendar-day-entry-updated {
|
8957
8976
|
border: 2px solid $warning;
|
8958
8977
|
}
|
8978
|
+
|
8959
8979
|
&.element-calendar-day-entry-removed {
|
8960
8980
|
border: 2px solid $danger;
|
8961
8981
|
text-decoration: line-through;
|
8962
8982
|
}
|
8963
8983
|
}
|
8964
8984
|
}
|
8985
|
+
|
8965
8986
|
.element-calendar-day-all-entries {
|
8966
8987
|
padding: 0;
|
8967
8988
|
overflow-x: hidden;
|
8968
8989
|
text-overflow: ellipsis;
|
8969
8990
|
}
|
8991
|
+
|
8970
8992
|
.dropdown-header {
|
8971
8993
|
text-align: center;
|
8972
8994
|
padding: 0;
|
8973
8995
|
}
|
8996
|
+
|
8974
8997
|
.dropdown-item {
|
8975
8998
|
padding: 0.1rem 0.25rem;
|
8976
8999
|
}
|
9000
|
+
|
8977
9001
|
.dropdown-divider {
|
8978
9002
|
margin: 0.25 0;
|
8979
9003
|
}
|
9004
|
+
|
8980
9005
|
.dropdown-menu {
|
8981
9006
|
max-height: 25rem;
|
8982
9007
|
overflow-y: auto;
|
@@ -8988,6 +9013,7 @@ $breadcrumb-height: 2.5rem;
|
|
8988
9013
|
margin: 0;
|
8989
9014
|
padding: 0;
|
8990
9015
|
}
|
9016
|
+
|
8991
9017
|
.element-calendar-week {
|
8992
9018
|
height: 3rem;
|
8993
9019
|
}
|
@@ -9001,6 +9027,15 @@ $breadcrumb-height: 2.5rem;
|
|
9001
9027
|
|
9002
9028
|
.element-calendar-schedule-view {
|
9003
9029
|
font-size: 90%;
|
9030
|
+
|
9031
|
+
.category-text {
|
9032
|
+
display: block;
|
9033
|
+
}
|
9034
|
+
|
9035
|
+
.element-calendar-schedule-view-categories {
|
9036
|
+
table-layout: fixed;
|
9037
|
+
}
|
9038
|
+
|
9004
9039
|
.element-calendar-schedule-view-categories td,
|
9005
9040
|
.element-calendar-schedule-view-days td,
|
9006
9041
|
.element-calendar-schedule-view-header-day,
|
@@ -9009,47 +9044,58 @@ $breadcrumb-height: 2.5rem;
|
|
9009
9044
|
text-align: center;
|
9010
9045
|
font-weight: normal;
|
9011
9046
|
}
|
9047
|
+
|
9012
9048
|
.element-calendar-schedule-view-header-day,
|
9013
9049
|
.element-calendar-schedule-view-days td {
|
9014
9050
|
width: calc(100% / 31);
|
9015
9051
|
}
|
9052
|
+
|
9016
9053
|
.element-calendar-schedule-view-header-day {
|
9017
9054
|
border-bottom-width: 0;
|
9018
9055
|
}
|
9056
|
+
|
9019
9057
|
.element-calendar-schedule-view-days-container {
|
9020
9058
|
overflow-x: scroll;
|
9021
9059
|
padding-left: 0;
|
9022
9060
|
padding-right: 0;
|
9023
9061
|
}
|
9062
|
+
|
9024
9063
|
.element-calendar-schedule-view-day {
|
9025
9064
|
&.element-calendar-schedule-view-today {
|
9026
9065
|
@include today();
|
9027
9066
|
}
|
9067
|
+
|
9028
9068
|
&:hover:not(.element-calendar-schedule-view-day-disabled) {
|
9029
9069
|
@include hover_day();
|
9030
9070
|
}
|
9071
|
+
|
9031
9072
|
&.element-calendar-schedule-view-out-of-period,
|
9032
9073
|
&.element-calendar-schedule-view-non-work-day {
|
9033
9074
|
@include nonWork();
|
9034
9075
|
@include hover_notAllowed();
|
9035
9076
|
}
|
9077
|
+
|
9036
9078
|
&.element-calendar-schedule-view-blocked-day {
|
9037
9079
|
@include blocked-text();
|
9038
9080
|
@include blocked-background();
|
9039
9081
|
@include hover_notAllowed();
|
9040
9082
|
}
|
9041
9083
|
}
|
9084
|
+
|
9042
9085
|
.element-calendar-schedule-view-header-day {
|
9043
9086
|
&.element-calendar-schedule-view-weekend {
|
9044
9087
|
@include weekend();
|
9045
9088
|
}
|
9089
|
+
|
9046
9090
|
&.element-calendar-schedule-view-today {
|
9047
9091
|
@include today();
|
9048
9092
|
}
|
9093
|
+
|
9049
9094
|
&.element-calendar-schedule-view-out-of-period,
|
9050
9095
|
&.element-calendar-schedule-view-non-work-day {
|
9051
9096
|
@include nonWork();
|
9052
9097
|
}
|
9098
|
+
|
9053
9099
|
&.element-calendar-schedule-view-blocked-day {
|
9054
9100
|
@include blocked-text();
|
9055
9101
|
@include blocked-background();
|
@@ -9061,10 +9107,12 @@ $breadcrumb-height: 2.5rem;
|
|
9061
9107
|
.element-calendar-caption {
|
9062
9108
|
border-bottom: 1px solid $border-color;
|
9063
9109
|
padding: 0.25rem 0;
|
9110
|
+
|
9064
9111
|
.element-calendar-caption-entry {
|
9065
9112
|
margin: 0;
|
9066
9113
|
margin-right: 0.5rem;
|
9067
9114
|
display: inline;
|
9115
|
+
|
9068
9116
|
.element-calendar-caption-entry-badge {
|
9069
9117
|
height: 0.75rem;
|
9070
9118
|
width: 0.75rem;
|
@@ -9074,6 +9122,7 @@ $breadcrumb-height: 2.5rem;
|
|
9074
9122
|
margin: 0 0.25rem;
|
9075
9123
|
}
|
9076
9124
|
}
|
9125
|
+
|
9077
9126
|
.element-calendar-caption-static-entries {
|
9078
9127
|
.element-calendar-caption-entry {
|
9079
9128
|
.element-calendar-caption-entry-badge {
|
@@ -11150,6 +11199,7 @@ table .checkmark {
|
|
11150
11199
|
}
|
11151
11200
|
}
|
11152
11201
|
.static-form-collection-options {
|
11202
|
+
width: 2rem;
|
11153
11203
|
.btn {
|
11154
11204
|
border: none;
|
11155
11205
|
border-radius: 0;
|
package/package.json
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
"clean": "rimraf dist && rimraf omnia-low-code-omnia-sass*.tgz"
|
10
10
|
},
|
11
11
|
"devDependencies": {
|
12
|
-
"@omnia-low-code/runtime-web-app": "^3.5.
|
12
|
+
"@omnia-low-code/runtime-web-app": "^3.5.135",
|
13
13
|
"scss-bundle": "3.1.2"
|
14
14
|
},
|
15
15
|
"workspaces": {
|
@@ -18,7 +18,7 @@
|
|
18
18
|
"*@omnia-low-code/runtime-web-app*/**"
|
19
19
|
]
|
20
20
|
},
|
21
|
-
"version": "3.5.
|
21
|
+
"version": "3.5.135",
|
22
22
|
"author": "",
|
23
23
|
"license": "MIT"
|
24
24
|
}
|