mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-24 16:55:09 +08:00
Fix markup
This commit is contained in:
parent
18a8be43f5
commit
e714787c38
6 changed files with 28 additions and 27 deletions
|
@ -510,19 +510,20 @@
|
|||
}
|
||||
|
||||
function initProjectsViewModeSwitch() {
|
||||
$('input[name=projects-view-mode-selector]').off().on('change', function() {
|
||||
if ($(this).val() === projectsViewMode) {
|
||||
return;
|
||||
}
|
||||
projectsViewMode = $(this).val();
|
||||
if (projectsChanged) {
|
||||
refreshCurrentView();
|
||||
}
|
||||
projectsChanged = false;
|
||||
})
|
||||
.on('click', function() {
|
||||
$(this).next().click();
|
||||
});
|
||||
$('input[name=projects-view-mode-selector]').off()
|
||||
.on('change', function() {
|
||||
if ($(this).val() === projectsViewMode) {
|
||||
return;
|
||||
}
|
||||
projectsViewMode = $(this).val();
|
||||
if (projectsChanged) {
|
||||
refreshCurrentView();
|
||||
}
|
||||
projectsChanged = false;
|
||||
})
|
||||
.on('click', function() {
|
||||
$(this).next().click();
|
||||
});
|
||||
}
|
||||
|
||||
function initSorting() {
|
||||
|
|
|
@ -55,11 +55,11 @@ $infinity: 9999999;
|
|||
//==============================================================================
|
||||
|
||||
// Grayscale Colors in bootstrap
|
||||
$gray-darker: $color-black;
|
||||
$gray-dark: $color-emperor;
|
||||
$gray: $color-emperor;
|
||||
$gray-light: $color-dove-gray;
|
||||
$gray-lighter: $color-concrete;
|
||||
$gray-darker: $color-black;
|
||||
$gray-dark: $color-emperor;
|
||||
$gray: $color-emperor;
|
||||
$gray-light: $color-dove-gray;
|
||||
$gray-lighter: $color-concrete;
|
||||
|
||||
// Scaffolding
|
||||
// $body-bg: $color-concrete;
|
||||
|
|
|
@ -18,4 +18,4 @@
|
|||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -40,7 +40,7 @@ $color-module-hover: $brand-primary;
|
|||
}
|
||||
|
||||
.projects-view-mode-switch {
|
||||
margin: 8px 10px 12px ;
|
||||
margin: 8px 10px 12px;
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -78,7 +78,7 @@ $color-module-hover: $brand-primary;
|
|||
|
||||
#update-canvas {
|
||||
|
||||
.canvas-header{
|
||||
.canvas-header {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -219,8 +219,8 @@
|
|||
textarea {
|
||||
border: 1px solid transparent;
|
||||
box-shadow: none;
|
||||
overflow: hidden;
|
||||
outline: none;
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
|
||||
&:focus {
|
||||
|
|
|
@ -399,11 +399,11 @@ a[data-toggle="tooltip"] {
|
|||
}
|
||||
|
||||
.navbar-without-sidebar{
|
||||
padding-left: 0;
|
||||
margin-left: 0px;
|
||||
-webkit-transition: all 0.5s ease;
|
||||
-moz-transition: all 0.5s ease;
|
||||
padding-left: 0;
|
||||
-o-transition: all 0.5s ease;
|
||||
-moz-transition: all 0.5s ease;
|
||||
-webkit-transition: all 0.5s ease;
|
||||
transition: all 0.5s ease;
|
||||
}
|
||||
|
||||
|
@ -499,7 +499,7 @@ a[data-toggle="tooltip"] {
|
|||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
& > .sci-btn-group {
|
||||
> .sci-btn-group {
|
||||
margin-right: 30px;
|
||||
}
|
||||
}
|
||||
|
@ -921,7 +921,7 @@ ul.content-activities {
|
|||
.protocol-button {
|
||||
|
||||
.sci-btn-group {
|
||||
float: left
|
||||
float: left;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue