Unite absolute label css

pull/12/head
Florian Hartwich 2017-10-07 19:40:00 +02:00
parent 840185d2e3
commit 2dfea01d68
11 changed files with 14 additions and 45 deletions

View File

@ -14,6 +14,7 @@
.table-container {
margin-top: 10px;
overflow-x: auto;
padding: 5px;
}
.table-head {
@ -24,11 +25,3 @@
.cell-outline {
outline: 1px solid #D4D4D4;
}
.label {
display: block;
position: absolute;
font-size: 12px;
padding: 5px;
margin-left: 25%;
}

View File

@ -3,7 +3,7 @@
<h2>Admin Panel</h2>
<span *ngIf="showSuccessLabel"
class="label label-success label-small">
class="absolute-label label label-success label-small">
Erfolgreich gespeichert
</span>

View File

@ -32,11 +32,3 @@
h3 {
margin: 80px 0 20px -20px;
}
.label {
display: block;
position: absolute;
font-size: 12px;
padding: 5px;
margin-left: 25%;
}

View File

@ -63,7 +63,7 @@
</button>
<span *ngIf="showSuccessLabel"
class="label label-success label-small">
class="absolute-label label label-success label-small">
Erfolgreich gespeichert
</span>

View File

@ -29,11 +29,3 @@
h3 {
margin: 80px 0 20px -20px;
}
.label {
display: block;
position: absolute;
font-size: 12px;
padding: 5px;
margin-left: 25%;
}

View File

@ -2,7 +2,7 @@
<h3>Offene Anträge - Auszeichnungen</h3>
<span *ngIf="showSuccessLabel"
class="label label-success label-small">
class="absolute-label label label-success label-small">
Erfolgreich gespeichert
</span>

View File

@ -29,11 +29,3 @@
h3 {
margin: 80px 0 20px -20px;
}
.label {
display: block;
position: absolute;
font-size: 12px;
padding: 5px;
margin-left: 25%;
}

View File

@ -2,7 +2,7 @@
<h3>Offene Anträge - Beförderung</h3>
<span *ngIf="showSuccessLabel"
class="label label-success label-small">
class="absolute-label label label-success label-small">
Erfolgreich gespeichert
</span>

View File

@ -31,11 +31,3 @@
h3 {
margin: 80px 0 20px -20px;
}
.label {
display: block;
position: absolute;
font-size: 12px;
padding: 5px;
margin-left: 25%;
}

View File

@ -58,7 +58,7 @@
</button>
<span *ngIf="showSuccessLabel"
class="label label-success label-small">
class="absolute-label label label-success label-small">
Erfolgreich gespeichert
</span>

View File

@ -7,3 +7,11 @@
height: 100vh;
bottom: 10px;
}
.absolute-label {
display: block;
position: absolute;
font-size: 12px;
padding: 5px;
margin-left: 25%;
}