feat ContextMenu: Rename and Delete

This commit is contained in:
Mahdi Dibaiee
2015-09-03 15:02:46 +04:30
parent ee6f5d6ffb
commit 79ae4c1a47
94 changed files with 4211 additions and 2216 deletions

4
src/less/styles/all.less Normal file
View File

@ -0,0 +1,4 @@
@import 'texts';
@import 'shadows';
@import 'buttons';
@import 'forms';

View 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;
}
}

View 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;
}

View File

@ -0,0 +1,7 @@
.shadow-bottom {
box-shadow: 0 1px 2px @dark-transparent;
}
.shadow {
box-shadow: 0 0 4px @dark-transparent;
}

View 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;
}