Keyboard shortcuts optimizations (#70)

Folder list focused state
This commit is contained in:
RainLoop Team 2014-04-13 04:32:07 +04:00
parent d961fa480a
commit 0fad66c452
53 changed files with 2231 additions and 1181 deletions

View file

@ -23,6 +23,12 @@
@import "../../vendors/bootstrap/less/button-groups.less";
@import "../../vendors/bootstrap/less/alerts.less";
@import "../../vendors/bootstrap/less/navs.less";
@import "../../vendors/bootstrap/less/navbar.less";
@import "../../vendors/bootstrap/less/breadcrumbs.less";
// @import "../../vendors/bootstrap/less/pagination.less";
// @import "../../vendors/bootstrap/less/pager.less";
@import "../../vendors/bootstrap/less/modals.less";
@import "../../vendors/bootstrap/less/tooltip.less";
@import "../../vendors/bootstrap/less/popovers.less";

View file

@ -54,13 +54,22 @@
color: #333;
.e-identity {
color: #333;
text-decoration: none;
font-weight: bold;
&:hover {
color: #333;
text-decoration: none;
}
&.multiply {
cursor: pointer;
border-bottom: 1px dashed #555;
}
}
.e-row {
line-height: 30px;
}

View file

@ -4,6 +4,9 @@
.b-folders {
&.focused .b-content {
}
.b-toolbar {
position: absolute;
top: 0;
@ -75,10 +78,14 @@
color: #000;
cursor: pointer;
&:hover, &.selected, &.droppableHover {
&:hover, &.selected, &.focused, &.droppableHover {
background-color: #555;
color: #fff;
}
&.focused {
background-color: #888;
color: #fff;
}
}
&.system {

View file

@ -1,10 +1,8 @@
.popups {
.b-shortcuts-content {
&.modal {
width: 1025px;
width: 700px;
}
.modal-header {
background-color: #fff;
}

View file

@ -115,6 +115,8 @@ html.rgba.textshadow {
.tooltip {
font-size: 14px;
z-index: 2000 !important;
&.in {
.opacity(100);
}
@ -203,6 +205,10 @@ select {
color: #b94a48;
}
.nav-tabs > li > a {
color: #555;
}
html.no-rgba .modal {
border-width: 0px !important;
}