TeaWeb/shared/css/static/modal-banlist.scss
WolverinDEV 664f8b2abd
Implemented the Material Design and fixed some bugs (#33)
* cleaned up some files

* Fundamental style update

* Redesigned some style

* fixed hostbanner popup

* Removed old identity stuff

* fixed close listener

* Fixed changelog date

* fixed release chat icons

* fixed url

* Fixed hostbanner

* Uploaded missing images

* Improved update handling

* Improved script files

* Fixed loading error and icon error

* fixed Yes/No modal

* Fixed loader issues with MS Edge

* fixed modal style bug

* Fixed control bar overflow for small devices

* Improved error handling on identity creation

* Logging generate error to terminal

* fixed possible php error

* fixed some possible loading errors when other files have'nt been already loaded.

* removed debug message

* Changed emsrcypten flags

* Improved codec error handling

* removed webassembly as required dependency

* Improved and fixed channel tree issues

* Improved the sliders

* Removed unneeded files

* fixed loader versions cache

* second slight performance improved (dont animate elements anymore if they are not shown)

* Fixed query visibility setting

* not showing useless client infos for query clients

* Added an auto reconnect system

* Added a canceled message and increased reconnect interval

* removed implemented todo

* fixed repetitive channel names

* Reworked the channel tree selected lines

* Fixed channel tree names

* Fixed name alignment

* fixed the native client

* added min width to the server select groups to avoid a disappearing effect on shrink

* fixed bugged downloaded icons
2019-02-17 16:08:10 +01:00

180 lines
No EOL
2.4 KiB
SCSS

.banlist {
display: flex;
flex-direction: column;
justify-content: stretch;
flex-grow: 1;
height: 100%;
width: 100%;
.frame-container {
display: flex;
flex-direction: column;
justify-content: stretch;
flex-grow: 1;
.top-menu {
display: flex;
flex-direction: row;
justify-content: stretch;
flex-grow: 0;
flex-shrink: 0;
margin-bottom: 5px;
.manage-buttons {
flex-grow: 0;
flex-shrink: 0;
margin-right: 5px;
}
.search {
flex-grow: 1;
input {
width: 100%;
}
}
}
.entry-container {
flex-grow: 1;
flex-shrink: 1;
display: flex;
flex-direction: column;
margin-bottom: 5px;
position: relative;
width: 100%;
height: 100%;
.entries {
width: 100%;
min-height: 300px;
overflow-y: scroll;
overflow-x: hidden;
display: flex;
flex-direction: column;
}
.ban-entry {
flex-grow: 0;
flex-shrink: 0;
display: flex;
flex-direction: row;
justify-content: stretch;
&.header {
.column {
font-weight: bold;
&.column-time {
margin-right: 0!important;
}
}
}
&:not(.header) {
cursor: pointer;
&:hover {
background-color: #00000011;
}
&.selected {
background: blue;
&:hover {
background-color: #0000FFAA;
}
}
}
.column {
flex-grow: 1;
&.column-keys {
width: 25%;
display: flex;
flex-direction: column;
}
&.column-reason {
width: 25%;
}
&.column-creator {
width: 25%;
}
&.column-time {
width: 25%;
min-width: 230px;
max-width: 300px;
display: flex;
flex-direction: column;
margin-right: -15px; /* because of the scroll bar */
> div {
display: flex;
flex-direction: row;
}
a {
display: inline;
width: 100px;
}
}
}
&.ban-entry-global {
color: red;
}
&.ban-entry-own-bold {
font-weight: bold;
}
}
}
.bottom-menu {
display: flex;
flex-direction: row;
justify-content: space-between;
flex-grow: 0;
flex-shrink: 0;
margin-bottom: 5px;
.left {
display: flex;
flex-direction: row;
div {
margin-left: 2px;
margin-right: 2px;
}
}
input {
vertical-align: bottom;
}
.bmd-form-group {
padding-top: 0;
align-self: center;
margin-left: 20px;
}
}
}
}