Skip to content

Commit 502fbc5

Browse files
committed
Extended boxes are back
1 parent efa2473 commit 502fbc5

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

css/wikimaps-style.css

+28-1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ nav {
9898
margin-top: 5px;
9999
border: 1px solid rgb(204, 204, 204);
100100
border-radius: 2px;
101+
background-color: white;
101102
}
102103

103104
.map-box img {
@@ -124,10 +125,35 @@ nav {
124125
margin-top: 11px;
125126
}
126127

128+
/* EXTENDED BOXES */
129+
130+
.extended-box-top {
131+
width: 10px;
132+
height: 10px;
133+
border: 1px solid rgb(204, 204, 204);
134+
margin: auto;
135+
margin-top: 3px;
136+
transform:rotate(-45deg);
137+
-moz-transform:rotate(-45deg);
138+
-webkit-transform:rotate(-45deg);
139+
background-color: white;
140+
}
141+
142+
.extended-box {
143+
width: 100%;
144+
position: relative;
145+
border: 1px solid rgb(204, 204, 204);
146+
border-radius: 2px;
147+
background-color: white;
148+
margin-top: -6px;
149+
margin-bottom: 5px;
150+
z-index: 100;
151+
}
152+
127153
/* USER MENU */
128154

129155
.user-menu {
130-
border: 1px solid #cccccc;
156+
border: 1px solid rgb(204, 204, 204);
131157
border-radius: 3px;
132158
margin-right: 8px;
133159
margin-top: 10px;
@@ -211,6 +237,7 @@ nav {
211237
margin: 0px;
212238
padding: 0px;
213239
position: fixed;
240+
z-index: 500;
214241
}
215242

216243
#tabs .ui-tabs-nav a {

index.html

+8
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,14 @@ <h4>Map Title</h4>
5858
<b>Edited 5 minutes ago</b>
5959
</div>
6060
</div>
61+
<div class="extended-box-top" aria-hidden="true"></div>
62+
<div class="extended-box">
63+
placeholder
64+
<br>
65+
placeholder
66+
<br>
67+
placeholder
68+
</div>
6169
<div class="map-box">
6270
<img aria-hidden="true" src="http://fakeimg.pl/300/" />
6371
<div>

0 commit comments

Comments
 (0)