feat ContextMenu: Rename and Delete
This commit is contained in:
4
src/less/styles/all.less
Normal file
4
src/less/styles/all.less
Normal file
@ -0,0 +1,4 @@
|
||||
@import 'texts';
|
||||
@import 'shadows';
|
||||
@import 'buttons';
|
||||
@import 'forms';
|
21
src/less/styles/buttons.less
Normal file
21
src/less/styles/buttons.less
Normal file
@ -0,0 +1,21 @@
|
||||
button {
|
||||
border: none;
|
||||
background: none;
|
||||
}
|
||||
|
||||
.btn {
|
||||
padding: 6px 3rem;
|
||||
|
||||
border: 1px solid @gray;
|
||||
|
||||
border-radius: @radius;
|
||||
|
||||
.light-medium;
|
||||
|
||||
background: @light-gray;
|
||||
color: @dark;
|
||||
|
||||
&.success {
|
||||
background: @success;
|
||||
}
|
||||
}
|
15
src/less/styles/forms.less
Normal file
15
src/less/styles/forms.less
Normal file
@ -0,0 +1,15 @@
|
||||
input {
|
||||
border: 1px solid @gray;
|
||||
|
||||
background: @light-gray;
|
||||
|
||||
border-radius: 4px;
|
||||
|
||||
height: 32px;
|
||||
|
||||
box-sizing: border-box;
|
||||
|
||||
padding: 5px 1rem;
|
||||
|
||||
.light-medium;
|
||||
}
|
7
src/less/styles/shadows.less
Normal file
7
src/less/styles/shadows.less
Normal file
@ -0,0 +1,7 @@
|
||||
.shadow-bottom {
|
||||
box-shadow: 0 1px 2px @dark-transparent;
|
||||
}
|
||||
|
||||
.shadow {
|
||||
box-shadow: 0 0 4px @dark-transparent;
|
||||
}
|
31
src/less/styles/texts.less
Normal file
31
src/less/styles/texts.less
Normal file
@ -0,0 +1,31 @@
|
||||
.regular-medium {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.regular-medium {
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
.light-medium, .light-big, .light-small {
|
||||
font-weight: @light;
|
||||
}
|
||||
|
||||
.light-medium {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
|
||||
.light-big {
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
.light-small {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
|
||||
.thin-small {
|
||||
font-weight: @thin;
|
||||
}
|
||||
|
||||
.thin-small {
|
||||
font-size: 1.4rem;
|
||||
}
|
Reference in New Issue
Block a user