181 lines
4.5 KiB
HTML
Executable File
181 lines
4.5 KiB
HTML
Executable File
<a id="adis-open-button" href="#">
|
|
<span class="glyphicon glyphicon-fire"></span>
|
|
</a>
|
|
<div id="adis-dashboard">
|
|
<header>
|
|
Autom. Disposition (ADis)
|
|
<a id="adis-dashboard-close-button">
|
|
<i class="fas fa-times"></i>
|
|
</a>
|
|
</header>
|
|
<section id="adis-dashboard-settings">
|
|
<div title="Arbeitet die ausgewählten Einsätze automatisch ab">
|
|
<a id="adis-setting-krankentransport-automatic" class="adis-setting-switch"></a>
|
|
Krankentransporte-Automatik
|
|
</div>
|
|
<div title="Arbeitet alle Einsätze automatisch ab">
|
|
<a id="adis-setting-full-automatic" class="adis-setting-switch"></a>
|
|
Eigene Einsätze-Automatik
|
|
</div>
|
|
<div title="Arbeitet die Sprechwünsche automatisch ab">
|
|
<a id="adis-setting-sprechwunsch-automatic" class="adis-setting-switch"></a>
|
|
Sprechwunsch-Automatik
|
|
</div>
|
|
<div title="Sendet automatisch Fahrzeuge zu Verbandseinsätzen, welche gerade abgearbeitet werden">
|
|
<a id="adis-setting-alliance-automatic" class="adis-setting-switch"></a>
|
|
Verbands-Automatik
|
|
</div>
|
|
<div title="Sendet automatisch Fahrzeuge zu Verband-Event Einsätzen, welche gerade abgearbeitet werden">
|
|
<a id="adis-setting-allianceevents-automatic" class="adis-setting-switch"></a>
|
|
VerbandsEvents-Automatik
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
<style>
|
|
#adis-nav-item {
|
|
position: relative;
|
|
}
|
|
|
|
#adis-dashboard {
|
|
width: 364px;
|
|
overflow: hidden;
|
|
|
|
position: absolute;
|
|
top: calc(100% + 16px);
|
|
left: 50%;
|
|
z-index: 1000;
|
|
transform: translateX(-50%);
|
|
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
font-family: "Open Sans";
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
|
|
background: rgba(250, 250, 250, 1);
|
|
border-radius: 4px;
|
|
box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.48);
|
|
}
|
|
|
|
#adis-dashboard>header {
|
|
width: 100%;
|
|
height: 48px;
|
|
padding: 8px 24px;
|
|
margin: 0px;
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
|
|
line-height: 1;
|
|
font-size: 18px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
#adis-dashboard-close-button {
|
|
width: 48px;
|
|
height: 48px;
|
|
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0px;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
cursor: pointer;
|
|
}
|
|
|
|
#adis-dashboard-close-button img {
|
|
width: 12px;
|
|
height: 12px;
|
|
}
|
|
|
|
#adis-dashboard>section {
|
|
width: 100%;
|
|
padding: 16px 24px;
|
|
margin: 0px;
|
|
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#adis-dashboard-switch-mode-button,
|
|
#adis-dashboard-open-dispatcher-button {
|
|
width: 80%;
|
|
height: 40px;
|
|
margin: 4px 0px;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
text-decoration: none;
|
|
color: #fafafa;
|
|
cursor: pointer;
|
|
|
|
background: #43a047;
|
|
border-radius: 4px;
|
|
border-bottom: 3px solid rgba(0, 0, 0, 0.32);
|
|
}
|
|
|
|
#adis-dashboard-settings {
|
|
background: #e0e0e0;
|
|
border-top: 1px solid #757575;
|
|
}
|
|
|
|
#adis-dashboard-settings>div {
|
|
width: 100%;
|
|
height: 32px;
|
|
|
|
display: flex;
|
|
flex-flow: row nowrap;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
}
|
|
|
|
.adis-setting-switch {
|
|
width: 40px;
|
|
height: 16px;
|
|
margin-right: 16px;
|
|
|
|
background: #9e9e9e;
|
|
border-radius: 12px;
|
|
box-shadow: inset 0px 0px 3px 0px rgba(0, 0, 0, 0.20);
|
|
}
|
|
|
|
.adis-setting-switch.active {
|
|
background: #8bc34a;
|
|
}
|
|
|
|
.adis-setting-switch::after {
|
|
width: 22px;
|
|
height: 22px;
|
|
margin-top: -3px;
|
|
margin-left: -3px;
|
|
content: "";
|
|
display: block;
|
|
|
|
background: #fafafa;
|
|
border-radius: 12px;
|
|
box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.24);
|
|
transition: all 200ms;
|
|
}
|
|
|
|
.adis-setting-switch.active::after {
|
|
margin-left: calc(100% - 22px + 3px);
|
|
|
|
background: #5a9216;
|
|
box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.32);
|
|
transition: all 200ms;
|
|
}
|
|
</style> |