opt-cc/static/src/app/statistic/war/war-list/war-list.component.scss

143 lines
2.6 KiB
SCSS
Raw Normal View History

.list-header {
border-bottom: 1px solid #dadada;
border-right: 1px solid #dadada;
border-left: 4px solid transparent;
padding: 25px;
font-size: 16px;
text-transform: uppercase;
color: #333333;
cursor: pointer;
}
.list-header:hover, .selected {
background: linear-gradient(80deg, white 0%, #e7e7e7 120%);
}
.list-header-battles {
border-bottom: 1px solid #dadada;
border-right: 1px solid #dadada;
border-left: 4px solid transparent;
padding: 25px;
font-size: 16px;
text-transform: uppercase;
color: #333333;
border-bottom: 1px solid #f1f1f1;
}
.mat-icon {
color: #666666;
vertical-align: middle;
margin-right: 5px;
}
2018-07-30 20:43:47 +02:00
.select-indicator-container {
display: none;
2018-07-30 20:43:47 +02:00
position: relative;
}
.select-indicator {
2018-08-04 10:35:26 +02:00
width: 29px;
height: 29px;
position: absolute;
2018-07-30 20:43:47 +02:00
left: calc(100% + 11px);
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%);
box-shadow: inset 8px -6px 5px -7px #a5a5a5;
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;
}
2018-07-30 20:43:47 +02:00
.selected > div.select-indicator-container {
display: block !important;
}
2018-07-09 21:01:39 +02:00
.war-list-header {
margin: auto;
2018-08-01 20:53:25 +02:00
padding: 15px 5px 5px;
border-right: 1px solid #dadada;
2018-08-01 20:53:25 +02:00
border-bottom: 1px solid #dadada;
2018-07-09 21:01:39 +02:00
}
2018-08-01 20:53:25 +02:00
.war-list-header > button {
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
.fill-vertical-border {
position: fixed;
2018-07-30 20:43:47 +02:00
border-right: 1px solid #dadada;
height: 100vh;
2019-02-27 23:13:23 +01:00
top: 0;
2019-03-03 18:09:20 +01:00
left: calc(20% - 1px);
2019-02-27 23:13:23 +01:00
z-index: -1;
2019-03-03 18:09:20 +01:00
&.collapsed {
left: 0;
}
2019-02-27 23:13:23 +01:00
@media all and (max-width: 959px) {
display: none;
}
}
.war-select-small {
background: #424242;
height: 3em;
color: #9d9d9d;
text-align: center;
.select-menu-text {
font-size: 16px;
}
2018-06-30 22:22:46 +02:00
}
2019-02-27 23:13:23 +01:00
:host /deep/ div.mat-list-item-content {
height: 100%;
padding: 10px;
cursor: pointer;
}
/* Table Scrollbar BEGIN */
.battle-list::-webkit-scrollbar {
width: 12px;
}
.battle-list::-webkit-scrollbar-track {
border-left: 1px solid #f1f1f1;
}
.battle-list::-webkit-scrollbar-thumb {
background: rgb(234, 234, 234);
}
2018-07-06 23:42:50 +02:00
/* Table Scrollbar END */
2018-07-30 20:43:47 +02:00
.collapsed {
width: 70px;
}