1
0
Fork 0
mirror of synced 2024-07-07 07:25:56 +12:00
appwrite/public/styles/comps/database.less

165 lines
3.8 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;
background: #efefef;
height: 2px;
}
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;
2019-08-17 18:09:09 +12:00
background-color: #f5f5f5;
margin: -20px -20px 0 -20px;
padding: 10px 20px;
border-bottom: solid 1px #e1e2e2;
font-weight: 600;
}
2019-08-18 17:25:32 +12:00
.empty {
height: 160px;
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 {
background-color: #f5f5f5;
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;
background: #f5f5f5;
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 {
background: #f5f5f5;
margin: 0 -20px -20px -20px;
padding: 20px;
}
.button {
margin: 0 -20px;
padding: 0 20px!important;
text-align: inherit;
color: @config-color-focus;
width: 100%;
font-size: 15px;
line-height: 55px;
box-sizing: content-box;
i {
.func-margin-end(8px);
}
&:hover {
border: none;
background: @config-color-focus-fade;
}
}
.wrapper {
}
.items {
2019-08-18 17:25:32 +12:00
margin: 0 -20px;
height: 260px;
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 {
background: red;
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;
}
}
}
}
}