1515 text-rendering : optimizeLegibility;
1616 -webkit-font-smoothing : antialiased;
1717 -moz-osx-font-smoothing : grayscale;
18+
19+ --border-color-unhovered : rgba (0 , 0 , 0 , 0.2 );
20+ --border-color-hovered : black;
21+ --standard-border-radius : 4px ;
22+ --semi-transparent-bg-color : rgba (255 , 255 , 255 , 0.7 );
23+ --standard-bg-color : white;
24+ --standard-box-shadow : 0 0 5px # bbb ;
1825}
1926
2027html ,
@@ -40,14 +47,14 @@ body {
4047
4148.scale-control {
4249 font-size : 1.3em ;
43- border : 2px solid rgba (0 , 0 , 0 , 0.3 );
44- border-top : none;
45- right : 3em ;
46- bottom : 20px ;
50+ border : 1px solid var (--border-color-unhovered );
51+ right : 1em ;
52+ bottom : 15px ;
4753 position : absolute;
48- background-color : rgba ( 255 , 255 , 255 , 0.7 );
49- box-shadow : 0 0 5 px # bbb ;
54+ background-color : var ( --semi-transparent-bg-color );
55+ box-shadow : var ( --standard-box-shadow ) ;
5056 box-sizing : border-box;
57+ border-radius : var (--standard-border-radius );
5158}
5259
5360.scale-control > div {
@@ -61,9 +68,10 @@ body {
6168
6269.source-popup {
6370 font-size : 1.25em ;
64- box-shadow : 0 3px 14px rgba (0 , 0 , 0 , 0.4 );
65- background-color : white;
66- border-radius : 12px ;
71+ box-shadow : var (--standard-box-shadow );
72+ border : 1px solid var (--border-color-unhovered );
73+ background-color : var (--standard-bg-color );
74+ border-radius : var (--standard-border-radius );
6775 border-top-left-radius : 0 ;
6876 padding : 2px 15px ;
6977}
@@ -86,12 +94,12 @@ body {
8694
8795.ol-popup {
8896 position : absolute;
89- background-color : white ;
90- padding : 10 px ;
91- border-radius : 6 px ;
97+ background-color : var ( --standard-bg-color ) ;
98+ padding : 4 px 8 px ;
99+ border-radius : var ( --standard-border-radius ) ;
92100 border-top-left-radius : 0 ;
93- border : 1px solid # ccc ;
94- box-shadow : 0 1 px 4 px rgba ( 0 , 0 , 0 , 0.2 );
101+ border : 1px solid var ( --border-color-unhovered ) ;
102+ box-shadow : var ( --standard-box-shadow );
95103 left : 5px ;
96104 top : 2px ;
97105 text-wrap : nowrap;
@@ -110,10 +118,10 @@ body {
110118}
111119
112120.map-btn {
113- background-color : white ;
121+ background-color : var ( --standard-bg-color ) ;
114122 color : # 666666 ;
115- border : 1px solid rgba ( 0 , 0 , 0 , 0.2 );
116- border-radius : 4 px ;
123+ border : 1px solid var ( --border-color-unhovered );
124+ border-radius : var ( --standard-border-radius ) ;
117125 display : flex;
118126 align-items : center;
119127 padding : 2px ;
@@ -125,7 +133,7 @@ body {
125133}
126134
127135.map-btn : hover : not (: disabled ) {
128- border-color : black ;
136+ border-color : var ( --border-color-hovered ) ;
129137 color : black;
130138}
131139
0 commit comments