2018-07-29 20:59:09 +02:00
|
|
|
.list-header {
|
|
|
|
border-bottom: 1px solid #dadada;
|
|
|
|
border-right: 1px solid #dadada;
|
|
|
|
padding: 25px;
|
|
|
|
font-size: 16px;
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: #333333;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mat-icon {
|
|
|
|
color: #666666;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.select-indicator {
|
|
|
|
display: none;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
position: absolute;
|
|
|
|
left: calc(20% - 15px);
|
|
|
|
background: -moz-linear-gradient(45deg, white 50%, transparent 50%);
|
|
|
|
background: -webkit-linear-gradient(45deg, white 50%, transparent 50%);
|
|
|
|
background: linear-gradient(45deg, white 50%, transparent 50%);
|
|
|
|
cursor: default;
|
|
|
|
border-left: 1px solid #dadada;
|
|
|
|
border-bottom: 1px solid #dadada;
|
|
|
|
-webkit-transform: rotate(45deg);
|
|
|
|
-moz-transform: rotate(45deg);
|
|
|
|
-o-transform: rotate(45deg);
|
|
|
|
-ms-transform: rotate(45deg);
|
|
|
|
transform: rotate(45deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.battle-list {
|
|
|
|
max-height: calc(100vh - 353px);
|
|
|
|
padding-left: 5px;
|
|
|
|
margin-left: 10%;
|
|
|
|
overflow-y: auto;
|
|
|
|
overflow-x: hidden;
|
|
|
|
direction: rtl;
|
|
|
|
}
|
|
|
|
|
|
|
|
.battle-list * {
|
|
|
|
direction: ltr;
|
|
|
|
}
|
|
|
|
|
|
|
|
.selected > div.select-indicator {
|
|
|
|
display: block !important;
|
2018-07-24 21:43:09 +02:00
|
|
|
}
|
|
|
|
|
2018-07-09 21:01:39 +02:00
|
|
|
.war-list-header {
|
|
|
|
margin: auto;
|
2018-07-29 20:59:09 +02:00
|
|
|
border-right: 1px solid #dadada;
|
2018-07-09 21:01:39 +02:00
|
|
|
}
|
|
|
|
|
2018-07-29 20:59:09 +02:00
|
|
|
.stats-add-btn {
|
|
|
|
background: white;
|
|
|
|
font-weight: 700;
|
|
|
|
color: #3e3e3e;
|
|
|
|
margin: 0 10px 10px 10px;
|
|
|
|
width: 95%;
|
2017-12-23 10:41:36 +01:00
|
|
|
}
|
2018-06-30 22:22:46 +02:00
|
|
|
|
2018-07-29 20:59:09 +02:00
|
|
|
.fill-vertical-border {
|
|
|
|
width: 20%;
|
|
|
|
position: fixed;
|
|
|
|
border-right: 1px solid #dadada;
|
|
|
|
height: 100vh;
|
2018-06-30 22:22:46 +02:00
|
|
|
}
|
|
|
|
|
2018-07-29 20:59:09 +02:00
|
|
|
/* Table Scrollbar BEGIN */
|
2018-07-01 00:02:59 +02:00
|
|
|
|
2018-07-29 20:59:09 +02:00
|
|
|
.battle-list::-webkit-scrollbar {
|
|
|
|
width: 12px;
|
2018-07-01 00:02:59 +02:00
|
|
|
}
|
|
|
|
|
2018-07-29 20:59:09 +02:00
|
|
|
.battle-list::-webkit-scrollbar-track {
|
|
|
|
border-left: 1px solid #f1f1f1;
|
2018-07-01 00:02:59 +02:00
|
|
|
}
|
|
|
|
|
2018-07-29 20:59:09 +02:00
|
|
|
.battle-list::-webkit-scrollbar-thumb {
|
|
|
|
background: rgb(234, 234, 234);
|
2018-07-01 00:02:59 +02:00
|
|
|
}
|
2018-07-06 23:42:50 +02:00
|
|
|
|
2018-07-29 20:59:09 +02:00
|
|
|
/* Table Scrollbar END */
|