Disable selection on ui elements

This commit is contained in:
Mo Bitar
2017-11-25 12:45:00 -06:00
parent 75f4df0fc8
commit 2c3181fe3d
4 changed files with 20 additions and 14 deletions

View File

@@ -4,6 +4,8 @@ ul.section-menu-bar {
padding-left: 6px;
padding-right: 21px;
user-select: none;
background-color: #f1f1f1;
color: $selected-text-color;
height: 28px;
@@ -23,7 +25,7 @@ ul.section-menu-bar {
font-size: 13px;
font-weight: bold;
user-select: none;
// user-select: none;
&.full-width {
width: 100%;

View File

@@ -6,6 +6,8 @@
max-width: 350px;
min-width: 170px;
user-select: none;
$notes-title-bar-height: 148px;
#notes-title-bar {

View File

@@ -1,5 +1,5 @@
.selectable {
user-select: all;
user-select: text !important;
}
.clear {

View File

@@ -1,18 +1,20 @@
.tags {
flex: 1 10%;
max-width: 180px;
min-width: 100px;
width: 180px;
flex: 1 10%;
max-width: 180px;
min-width: 100px;
width: 180px;
$tags-title-bar-height: 55px;
user-select: none;
#tags-title-bar {
color: black;
height: $tags-title-bar-height;
padding-left: 12px;
padding-right: 12px;
font-size: 12px;
color: rgba(black, 0.8);
$tags-title-bar-height: 55px;
#tags-title-bar {
color: black;
height: $tags-title-bar-height;
padding-left: 12px;
padding-right: 12px;
font-size: 12px;
color: rgba(black, 0.8);
}
#tags-content {