This commit is contained in:
Mo Bitar
2016-12-26 01:35:05 -06:00
parent 9f13f659cc
commit b4fb7395cb
6 changed files with 39 additions and 36 deletions

View File

@@ -74,9 +74,43 @@
} }
.section-menu {
padding-top: 0px;
width: 100%;
position: absolute;
padding-left: inherit;
padding-right: inherit;
left: 0;
right: 0;
bottom: 0px;
background-color: #f1f1f1;
color: $selected-text-color;
// padding-top: 5px;
height: 28px;
cursor: default;
ol, ul {
margin-top: 7px;
margin-bottom: 10px;
}
ul {
li {
text-align: left;
a {
font-size: 13px;
font-weight: bold;
padding: 0 0;
}
}
}
}
.menu-right-container { .menu-right-container {
float: right; float: right;
margin-top: 3px; margin-top: -2px;
color: white; color: white;
white-space: nowrap; white-space: nowrap;
width: 70%; width: 70%;

View File

@@ -114,7 +114,6 @@
} }
.markdown { .markdown {
margin-top: 6px;
margin-left: 15px; margin-left: 15px;
float: right; float: right;
text-align: right; text-align: right;
@@ -129,33 +128,6 @@
z-index: 100; z-index: 100;
} }
.editor-menu {
padding-top: 0px;
width: 100%;
position: absolute;
padding-left: inherit;
padding-right: inherit;
left: 0;
right: 0;
bottom: 0px;
background-color: #f1f1f1;
color: $selected-text-color;
padding-top: 5px;
height: 28px;
cursor: default;
ul {
li {
text-align: left;
a {
font-size: 13px;
font-weight: bold;
padding: 0 0;
}
}
}
}
ol { ol {
list-style-type: decimal; list-style-type: decimal;
@@ -183,10 +155,6 @@ ol {
margin-bottom: 0; margin-bottom: 0;
list-style: none; list-style: none;
} }
ol, ul {
margin-top: 0;
margin-bottom: 10px;
}
.nav-pills>li { .nav-pills>li {
float: left; float: left;

View File

@@ -15,6 +15,7 @@
position: relative; position: relative;
margin: 0 -20px; margin: 0 -20px;
width: auto; width: auto;
padding-top: 1px;
margin-top: 14px; margin-top: 14px;
} }

View File

@@ -6,7 +6,7 @@
"ng-disabled" => "ctrl.note.locked", "ng-change" => "ctrl.nameChanged()", "ng-focus" => "ctrl.onNameFocus()", "ng-disabled" => "ctrl.note.locked", "ng-change" => "ctrl.nameChanged()", "ng-focus" => "ctrl.onNameFocus()",
"select-on-click" => "true"} "select-on-click" => "true"}
.save-status {{ctrl.noteStatus}} .save-status {{ctrl.noteStatus}}
.editor-menu .section-menu
%ul.nav.nav-pills %ul.nav.nav-pills
%li.dropdown %li.dropdown
%a.dropdown-toggle{"ng-click" => "ctrl.clickedMenu()"} %a.dropdown-toggle{"ng-click" => "ctrl.clickedMenu()"}

View File

@@ -6,7 +6,7 @@
%br %br
.filter-section .filter-section
%input.filter-bar{"select-on-click" => "true", "ng-model" => "ctrl.noteFilter.text", "placeholder" => "Filter", "ng-change" => "ctrl.filterTextChanged()", "lowercase" => "true"} %input.filter-bar{"select-on-click" => "true", "ng-model" => "ctrl.noteFilter.text", "placeholder" => "Filter", "ng-change" => "ctrl.filterTextChanged()", "lowercase" => "true"}
.editor-menu.tag-menu-bar .section-menu.tag-menu-bar
%ul.nav.nav-pills %ul.nav.nav-pills
%li.dropdown %li.dropdown
%a.dropdown-toggle{"ng-click" => "ctrl.showMenu = !ctrl.showMenu"} %a.dropdown-toggle{"ng-click" => "ctrl.showMenu = !ctrl.showMenu"}

File diff suppressed because one or more lines are too long