2021-12-02 01:41:56 +01:00
|
|
|
div#toolbar {
|
|
|
|
width: 100%;
|
2022-01-06 03:58:45 +01:00
|
|
|
height: 50px;
|
|
|
|
box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
background-color: #fff;
|
2022-01-07 17:19:43 +01:00
|
|
|
// TODO: make toolbar responsive
|
|
|
|
min-width: 900px;
|
|
|
|
overflow: hidden;
|
2021-12-02 01:41:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div#toolbar .buttonContainer {
|
|
|
|
height: @header-toolbar-height;
|
2022-01-06 07:16:30 +01:00
|
|
|
padding-top: 8px;
|
|
|
|
padding-right: 10px;
|
|
|
|
padding-left: 10px;
|
2021-12-02 01:41:56 +01:00
|
|
|
float: left;
|
2022-01-06 07:16:30 +01:00
|
|
|
border-left: 1px solid lightgray;
|
2022-01-06 03:58:45 +01:00
|
|
|
}
|
2022-01-06 07:16:30 +01:00
|
|
|
|
|
|
|
div#mapName >span {
|
|
|
|
border-radius: 4px;
|
|
|
|
float: left;
|
|
|
|
padding: 8px;
|
|
|
|
min-width: 30px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#back {
|
2022-01-06 23:57:17 +01:00
|
|
|
background: url(../images/back-icon.svg) no-repeat center center;
|
2022-01-06 03:58:45 +01:00
|
|
|
height: 40px;
|
|
|
|
width: 80px;
|
|
|
|
float: left;
|
2022-01-06 23:57:17 +01:00
|
|
|
margin: 6px 0px;
|
2021-12-02 01:41:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************************/
|
|
|
|
/* Buttons*/
|
|
|
|
/******************************************************************************************/
|
|
|
|
|
2021-12-25 23:24:17 +01:00
|
|
|
div#toolbar .buttonOn,
|
|
|
|
div#toolbar .buttonOff,
|
|
|
|
div#toolbar .buttonActive,
|
|
|
|
div#toolbar .buttonOn:hover {
|
2021-12-02 01:41:56 +01:00
|
|
|
width: 28px;
|
|
|
|
height: 28px;
|
|
|
|
float: left;
|
|
|
|
text-align: center;
|
|
|
|
z-index: 4;
|
|
|
|
margin-top: 3px;
|
|
|
|
padding-top: 2px;
|
|
|
|
padding-left: 2px;
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#toolbar .buttonOn:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
opacity: 1;
|
2022-01-06 07:16:30 +01:00
|
|
|
// background: url(../images/btn-bg-hover.png) no-repeat center top;
|
2021-12-02 01:41:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div#toolbar .buttonOn {
|
|
|
|
opacity: 0.8;
|
2022-01-06 07:16:30 +01:00
|
|
|
// background: url(../images/btn-bg-normal.png) no-repeat center top;
|
2021-12-02 01:41:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div#toolbar .buttonOff {
|
|
|
|
opacity: 0.4;
|
2022-01-06 07:16:30 +01:00
|
|
|
// background: url(../images/btn-bg-normal.png) no-repeat center top;
|
2021-12-02 01:41:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div#exportAnchor {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
2021-12-25 23:24:17 +01:00
|
|
|
div#toolbar .buttonExtOn,
|
|
|
|
div#toolbar .buttonExtOff,
|
|
|
|
div#toolbar .buttonExtActive,
|
|
|
|
div#toolbar .buttonExtOn:hover {
|
2021-12-02 01:41:56 +01:00
|
|
|
width: 40px;
|
|
|
|
height: 28px;
|
|
|
|
float: left;
|
|
|
|
text-align: left;
|
|
|
|
z-index: 4;
|
|
|
|
margin-top: 3px;
|
|
|
|
padding-top: 2px;
|
|
|
|
padding-left: 5px;
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#toolbar .buttonExtOn:hover {
|
|
|
|
opacity: 1;
|
2022-01-06 07:16:30 +01:00
|
|
|
// background: url(../images/btne-bg-hover.png) no-repeat center top;
|
2021-12-02 01:41:56 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
div#toolbar .buttonExtActive {
|
|
|
|
opacity: 1;
|
2022-01-06 07:16:30 +01:00
|
|
|
// background: url(../images/btne-bg-selected.png) no-repeat center top;
|
2021-12-02 01:41:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div#toolbar .buttonExtOn {
|
|
|
|
opacity: 0.8;
|
2022-01-06 07:16:30 +01:00
|
|
|
cursor: pointer
|
|
|
|
// background: url(../images/btne-bg-normal.png) no-repeat center top;
|
2021-12-02 01:41:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div#toolbar .buttonExtOff {
|
|
|
|
opacity: 0.4;
|
2022-01-06 07:16:30 +01:00
|
|
|
// background: url(../images/btne-bg-normal.png) no-repeat center top;
|
2021-12-02 01:41:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div#exportAnchor {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***************************************************************************************************/
|
|
|
|
/* Other toolbar styles */
|
|
|
|
/***************************************************************************************************/
|
|
|
|
.toolbarTip {
|
|
|
|
background-color: #000000;
|
|
|
|
padding: 5px 5px;
|
|
|
|
color: #f5f5f5;
|
|
|
|
/*font-weight: bold;*/
|
|
|
|
/*width: 100px;*/
|
|
|
|
font-size: 11px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#colorPalette {
|
|
|
|
border: 1px solid #bbb4d6;
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 4;
|
|
|
|
width: 160px;
|
|
|
|
top: 89px;
|
|
|
|
}
|
|
|
|
|
2021-12-25 23:24:17 +01:00
|
|
|
div.toolbarPanelLink,
|
|
|
|
div.toolbarPanelLinkSelectedLink {
|
2021-12-02 01:41:56 +01:00
|
|
|
cursor: pointer;
|
|
|
|
color: black;
|
|
|
|
margin: 1px;
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 5px 10px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2021-12-25 23:24:17 +01:00
|
|
|
div.toolbarPanelLink:hover,
|
|
|
|
div.toolbarPanelLinkSelectedLink {
|
2021-12-02 01:41:56 +01:00
|
|
|
cursor: pointer;
|
|
|
|
background-color: #efefef;
|
|
|
|
}
|
|
|
|
|
|
|
|
.toolbarPaneTip {
|
|
|
|
background-color: rgb(228, 226, 210);
|
|
|
|
padding: 5px 5px;
|
|
|
|
color: #f5f5f5;
|
|
|
|
/*font-weight: bold;*/
|
|
|
|
/*width: 100px;*/
|
|
|
|
font-size: 11px;
|
|
|
|
-moz-border-radius: 60px;
|
|
|
|
-webkit-border-radius: 6px;
|
|
|
|
border-radius: 6px;
|
|
|
|
box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
|
|
|
|
border: 3px double rgb(190, 190, 190);
|
|
|
|
}
|