1
0
Fork 0
mirror of synced 2024-07-04 14:10:33 +12:00
appwrite/public/styles/comps/database.less

164 lines
3.9 KiB
Plaintext
Raw Normal View History

2019-08-17 18:09:09 +12:00
.console {
.database {
.row {
//height: 500px;
.col {
2019-08-18 17:25:32 +12:00
height: 452px;
2019-08-17 18:09:09 +12:00
&:after {
width: 2px;
2019-08-21 18:55:51 +12:00
.func-end(20px);
2019-08-17 18:09:09 +12:00
}
}
}
hr {
margin: 0 -20px;
2020-02-12 10:55:00 +13:00
background: var(--config-color-background);
height: 1px;
2019-08-17 18:09:09 +12:00
}
2019-08-22 11:08:22 +12:00
h3 {
2019-08-17 18:09:09 +12:00
font-size: 13px;
line-height: 20px;
2019-08-18 17:25:32 +12:00
height: 20px;
2020-02-12 10:55:00 +13:00
background-color: var(--config-color-fade-super);
2019-08-17 18:09:09 +12:00
margin: -20px -20px 0 -20px;
padding: 10px 20px;
2020-02-12 10:55:00 +13:00
border-bottom: solid 1px var(--config-color-background);
2019-08-17 18:09:09 +12:00
font-weight: 600;
}
2019-08-18 17:25:32 +12:00
.empty {
2020-02-12 10:55:00 +13:00
height: 162px;
2019-08-18 17:25:32 +12:00
font-size: 12px;
text-align: center;
margin: 50px 0;
2019-08-22 11:08:22 +12:00
h4 {
font-size: 13px;
font-weight: 600;
2019-08-18 17:25:32 +12:00
line-height: 120px;
}
}
2019-08-17 18:09:09 +12:00
.search {
2020-02-12 10:55:00 +13:00
background-color: var(--config-color-fade-super);
2019-08-17 18:09:09 +12:00
margin: 0 -20px 0 -20px;
padding: 10px 15px;
input {
height: 40px;
background-color: #fff;
2019-08-17 23:45:43 +12:00
border-radius: 25px;
padding-top: 0;
padding-bottom: 0;
2019-08-17 18:09:09 +12:00
}
}
.code {
2019-08-18 17:25:32 +12:00
height: 411px;
2020-02-12 10:55:00 +13:00
background: var(--config-color-fade-super);
2019-08-17 18:09:09 +12:00
margin: 0 -20px -20px -20px;
2019-08-18 17:25:32 +12:00
padding: 20px;
width: ~"calc(100% - 10px)";
.ide {
overflow: scroll;
height: 451px;
margin: -20px;
box-shadow: none;
border-radius: 0;
}
2019-08-17 18:09:09 +12:00
}
.paging {
2020-02-12 10:55:00 +13:00
background: var(--config-color-fade-super);
2019-08-17 18:09:09 +12:00
margin: 0 -20px -20px -20px;
padding: 20px;
}
.button {
margin: 0 -20px;
padding: 0 20px!important;
text-align: inherit;
2020-02-11 06:04:57 +13:00
color: var(--config-color-focus);
2019-08-17 18:09:09 +12:00
width: 100%;
font-size: 15px;
line-height: 55px;
box-sizing: content-box;
i {
.func-margin-end(8px);
}
&:hover {
border: none;
2020-02-11 06:04:57 +13:00
background: var(--config-color-focus-fade);
2019-08-17 18:09:09 +12:00
}
}
.wrapper {
}
.items {
2019-08-18 17:25:32 +12:00
margin: 0 -20px;
2020-03-10 08:40:15 +13:00
height: 262px;
2019-08-17 18:09:09 +12:00
overflow-x: hidden;
overflow-y: scroll;
2019-08-18 17:25:32 +12:00
form {
opacity: 0;
position: relative;
button {
position: absolute;
top: 0;
bottom: 0;
.func-start(0);
.func-end(0);
width: 100%;
height: 45px;
border-radius: 0;
cursor: pointer;
}
}
2019-08-17 18:09:09 +12:00
li {
2019-08-18 17:25:32 +12:00
padding: 0;
margin: 0 0;
2019-08-17 18:09:09 +12:00
line-height: 45px;
font-size: 15px;
.func-padding-start(50px);
2019-08-18 17:25:32 +12:00
.func-padding-end(30px);
position: relative;
2019-08-17 18:09:09 +12:00
i {
2019-08-18 17:25:32 +12:00
position: absolute;
2019-08-17 18:09:09 +12:00
display: none;
2019-08-18 17:25:32 +12:00
.func-end(10px);
}
.name {
display: inline-block;
width: 100%;
height: 28px;
2019-08-17 18:09:09 +12:00
}
2019-08-22 10:41:48 +12:00
&:hover, &.selected {
2019-08-17 18:09:09 +12:00
background: #f5f5f5;
i {
display: block;
}
}
&:last-child {
border-bottom: none;
}
}
}
}
}