@@ -72,11 +72,16 @@ a:hover {
72
72
justify-content: center;
73
73
}
74
74
75
- .flex-row-space_between {
75
+ .flex-row-space-between {
76
76
.flex-row();
77
77
justify-content: space-between;
78
78
}
79
79
80
+ .flex-row-space_evenly {
81
+ .flex-row();
82
+ justify-content: space-evenly;
83
+ }
84
+
80
85
.flex-row-start {
81
86
.flex-row();
82
87
justify-content: flex-start;
@@ -97,8 +102,18 @@ a:hover {
97
102
align-items: center;
98
103
}
99
104
100
- .flex-row-space_between-center {
101
- .flex-row-space_between();
105
+ .flex-row-space-between-center {
106
+ .flex-row-space-between();
107
+ align-items: center;
108
+ }
109
+
110
+ .flex-row-space-between-center-wrap {
111
+ .flex-row-space-between-center();
112
+ flex-wrap: wrap;
113
+ }
114
+
115
+ .flex-row-space_evenly-center {
116
+ .flex-row-space_evenly();
102
117
align-items: center;
103
118
}
104
119
@@ -121,6 +136,12 @@ a:hover {
121
136
.flex-row-start-center;
122
137
flex-wrap: wrap;
123
138
}
139
+
140
+ .flex-row-end {
141
+ .flex-row();
142
+ width: 100%;
143
+ justify-content: flex-end;
144
+ }
124
145
.flex-column {
125
146
display: flex;
126
147
flex-direction: column;
@@ -174,6 +195,30 @@ a:hover {
174
195
margin: 0px !important;
175
196
}
176
197
198
+ .full-width-container {
199
+ width: 100%;
200
+ }
201
+
202
+ .text-block-width {
203
+ max-width: 800px;
204
+ }
205
+
206
+ .right-margin-space-10 {
207
+ margin-right: 10px !important;
208
+ }
209
+
210
+ .left-margin-space-10 {
211
+ margin-left: 10px !important;
212
+ }
213
+
214
+ .flex-gap-10 {
215
+ gap: 10px;
216
+ }
217
+
218
+ .flex-gap-20 {
219
+ gap: 20px;
220
+ }
221
+
177
222
/*--------------------------------
178
223
Login page
179
224
---------------------------------*/
@@ -1603,18 +1648,27 @@ a:hover {
1603
1648
.io-wrapper {
1604
1649
.flex-row();
1605
1650
align-items: stretch;
1606
- margin: 2px;
1651
+ margin: 2px 2px 8px;
1652
+ min-height: 25px;
1607
1653
.io-component {
1608
1654
flex-grow: 1;
1609
1655
margin: 0px;
1610
- text-align: center;
1611
- white-space: nowrap;
1612
- border: 2px solid @indicatorColor;
1656
+ border: 2px solid @surfacesLight;
1613
1657
border-radius: @borderRadius;
1614
1658
font-size: 12px;
1615
1659
padding: 2px;
1616
1660
padding-left: 10px;
1617
1661
padding-right: 10px;
1662
+ line-height: 1.4285em // resets height set by Modal;;
1663
+ }
1664
+
1665
+ .ui.checkbox {
1666
+ vertical-align: middle;
1667
+ }
1668
+
1669
+ .io-component-negative {
1670
+ .io-component();
1671
+ border: 1px solid @surfacesDark;
1618
1672
}
1619
1673
1620
1674
input,
@@ -1624,18 +1678,24 @@ a:hover {
1624
1678
padding: 0px !important;
1625
1679
font-size: 12px !important;
1626
1680
width: none !important;
1627
- min-width: 200px;
1628
1681
}
1629
1682
1630
1683
.key {
1631
1684
border-end-end-radius: 0px;
1632
1685
border-start-end-radius: 0px;
1633
- background-color: @indicatorColor ;
1686
+ background-color: @surfacesLight ;
1634
1687
a {
1635
1688
text-decoration: underline;
1636
1689
}
1637
1690
}
1638
1691
1692
+ .key-negative {
1693
+ .key();
1694
+ background-color: @headersInteractiveMed;
1695
+ border: 1px solid @headersInteractiveMed;
1696
+ color: white;
1697
+ }
1698
+
1639
1699
.value {
1640
1700
border-start-start-radius: 0px !important;
1641
1701
border-end-start-radius: 0px !important;
@@ -1646,7 +1706,7 @@ a:hover {
1646
1706
1647
1707
.from-existing-dropdown {
1648
1708
font-size: 12px !important;
1649
- border: 2px solid @indicatorColor !important;
1709
+ border: 1px solid @surfacesDark !important;
1650
1710
border-radius: @borderRadius !important;
1651
1711
margin: 2px !important;
1652
1712
}
@@ -1661,7 +1721,7 @@ a:hover {
1661
1721
.longer {
1662
1722
input,
1663
1723
textarea {
1664
- min-width: 600px !important;
1724
+ min-width: 500px !important;
1665
1725
}
1666
1726
}
1667
1727
.long {
@@ -1693,7 +1753,15 @@ a:hover {
1693
1753
width: @applicationListWidth;
1694
1754
.template-builder-info-bar {
1695
1755
.flex-row();
1696
- justify-content: center;
1756
+ justify-content: flex-end;
1757
+ width: 100%;
1758
+ flex-wrap: wrap;
1759
+ }
1760
+ .template-builder-content {
1761
+ .flex-column-center();
1762
+ background-color: @surfacesWhite;
1763
+ padding: 20px 2rem 30px;
1764
+ margin-top: 20px;
1697
1765
}
1698
1766
.template-builder-tabs {
1699
1767
.flex-row();
@@ -1714,7 +1782,7 @@ a:hover {
1714
1782
margin: 3px;
1715
1783
padding: 20px;
1716
1784
border-radius: @borderRadius;
1717
- background: @surfacesWhite ;
1785
+ background: @surfacesLight ;
1718
1786
p {
1719
1787
font-size: @slightlySmallerText;
1720
1788
margin-top: 10px;
@@ -1734,15 +1802,30 @@ a:hover {
1734
1802
}
1735
1803
}
1736
1804
1805
+ .page-controller {
1806
+ background-color: @surfacesLight;
1807
+ width: fit-content;
1808
+ padding: 10px;
1809
+ border: 1px solid @surfacesMed;
1810
+ border-radius: @borderRadius;
1811
+ margin: 15px;
1812
+ }
1813
+
1814
+ .filter-joins {
1815
+ .ui.label {
1816
+ margin-right: 7px;
1817
+ margin-bottom: 7px;
1818
+ }
1819
+ }
1820
+
1737
1821
.builder-page-elements-wrapper {
1738
1822
background: white;
1739
1823
padding: 10px;
1740
- margin: 10px ;
1824
+ min-width: 900px ;
1741
1825
.element-config-options-container {
1742
1826
.flex-row();
1743
1827
align-items: flex-start;
1744
1828
justify-content: flex-end;
1745
- width: 100px;
1746
1829
margin-right: 30px;
1747
1830
margin: 5px;
1748
1831
}
@@ -1752,15 +1835,17 @@ a:hover {
1752
1835
}
1753
1836
1754
1837
.evaluation-container {
1838
+ width: 100%;
1755
1839
border-radius: @borderRadius;
1756
1840
border: 1px solid @indicatorColor;
1757
1841
padding: 2px;
1758
- padding-left: 5px ;
1759
- padding-right: 5px ;
1842
+ padding-left: 10px ;
1843
+ padding-right: 10px ;
1760
1844
margin: 2px;
1761
1845
background-color: @surfacesWhite;
1762
1846
.evaluation-container-title {
1763
- .flex-row-center-center();
1847
+ .flex-row-start-center();
1848
+ white-space: nowrap;
1764
1849
}
1765
1850
.evaluation-container-content {
1766
1851
.flex-row() !important;
@@ -1770,29 +1855,58 @@ a:hover {
1770
1855
}
1771
1856
1772
1857
.config-modal {
1773
- width: 90% !important;
1858
+ min-width: 700px !important;
1859
+ max-width: 90% !important;
1860
+ width: fit-content !important;
1861
+ border-radius: @borderRadius !important;
1774
1862
1775
1863
.config-modal-container {
1776
1864
.flex-column-center-center();
1777
- padding: 10px;
1865
+ padding: 0 0 10px 0;
1866
+ border-radius: @borderRadius !important;
1778
1867
}
1779
1868
.config-modal-info {
1780
1869
background-color: @surfacesWhite !important;
1870
+ display: flex;
1871
+ flex-direction: column;
1872
+ align-items: center;
1873
+ padding-left: 20px;
1874
+ padding-right: 20px;
1875
+ }
1876
+ .config-modal-header {
1877
+ .flex-row-center-center();
1878
+ gap: 50px;
1879
+ background-color: @surfacesLight;
1880
+ width: 100%;
1881
+ margin-top: 0;
1882
+ margin-bottom: 10px;
1883
+ padding: 10px;
1884
+ border-top-left-radius: @borderRadius;
1885
+ border-top-right-radius: @borderRadius;
1781
1886
}
1782
1887
}
1783
1888
1889
+ .alert-success {
1890
+ position: absolute !important;
1891
+ bottom: 60px;
1892
+ left: 20px;
1893
+ width: fit-content !important;
1894
+ box-shadow: 0 0 0 1px rgba(34, 36, 38, 0.22) inset, 0 2px 4px 0 rgba(34, 36, 38, 0.12),
1895
+ 0 2px 10px 0 rgba(34, 36, 38, 0.15) !important;
1896
+ }
1897
+
1784
1898
.object-properties-container {
1785
1899
.flex-column-start-center();
1786
1900
margin-left: 30px;
1901
+ max-width: 500px;
1787
1902
}
1788
1903
.evaluator-operator-container {
1789
1904
.flex-column-start-stretch();
1790
1905
background: rgba(0, 0, 0, 0.03);
1791
1906
padding: 5px;
1792
1907
margin: 2px;
1793
1908
border-radius: @borderRadius;
1794
- border: 2px solid rgba(0, 0, 0, 0.2);
1795
- background-color: rgba(50, 252, 50, 0.01);
1909
+ border: 1px solid @surfacesMed;
1796
1910
}
1797
1911
1798
1912
.config-container {
@@ -1805,7 +1919,12 @@ a:hover {
1805
1919
1806
1920
.config-container-alternate {
1807
1921
.config-container();
1808
- background-color: rgba(0, 0, 0, 0.03);
1922
+ background-color: @surfacesLight;
1923
+ }
1924
+
1925
+ .config-container-outline {
1926
+ .config-container();
1927
+ border: 1px solid @surfacesMed;
1809
1928
}
1810
1929
1811
1930
/*******************************
0 commit comments