1
0
Fork 0
mirror of synced 2024-06-27 02:31:04 +12:00

Merge branch 'feat-database-indexing' of github.com:appwrite/appwrite into feat-custom-id

This commit is contained in:
Eldad Fux 2021-08-05 11:00:26 +03:00
commit 4f031a0d03
3 changed files with 20 additions and 5 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -623,6 +623,19 @@ input[type=checkbox], input[type=radio] {
.input-copy {
position: relative;
&::before {
content: '';
display: block;
position: absolute;
height: 50px;
background: var(--config-color-fade-light);
width: 50px;
right: 0;
border-radius: 8px;
z-index: 1;
margin: 1px;
}
input,
textarea {
.func-padding-end(65px);
@ -632,16 +645,18 @@ input[type=checkbox], input[type=radio] {
.copy {
position: absolute;
z-index: 2;
top: 0;
.func-end(0);
border: solid 1px var(--config-color-fade-light);
// border: solid 1px var(--config-color-fade-light);
.func-border-start(1px, var(--config-color-fade-light));
height: ~"calc(100% - 2px)";
width: 50px;
line-height: 50px;
text-align: center;
background: var(--config-color-background-focus);
margin: 0;
border-radius: 0 10px 10px 0;
margin: 1px;
border-radius: 0 9px 9px 0;
}
}