Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions sao/src/theme/coog/sao.less
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
@color-light-blue: rgb(0, 174, 229); // #00aee5
@color-lighter-blue: rgb(162, 218, 244); // #a2daf4
@color-lightest-blue: rgb(231, 244, 252); // #E7F4FC
@color-hint-blue: rgb(247, 252, 255); // #F7FCFF
@color-lightest-red: rgb(255, 208, 205); // #ffd0cd

@coog-background: @color-white;
Expand Down Expand Up @@ -712,6 +713,45 @@ div.CodeMirror {
height: @coog-rule-engine-height;
}

///////////////////////////////////////////////////////////////////////////////
// Notebooks
///////////////////////////////////////////////////////////////////////////////
div.form-notebook > ul.nav.nav-tabs {
margin-bottom: 8px;
border-color: @color-lighter-blue;
> li {
> a {
padding: 8px 8px;
border-top-left-radius: 8px;
border-top-right-radius: 8px;
border: solid @color-lighter-blue 1px;
&:hover {
.coog-group-header-colors();
}
> span.badge-empty {
min-width: 0px;
padding: 0px 0px;
}
}

&:not(active) &:not(focus) > a {
box-shadow: none;
}
}
> li.active {
> a {
.coog-group-header-colors();
border: solid @color-light-blue 1px;
&:hover {
border-bottom: none;
border: solid @color-light-blue 1px;
background-color: @color-lighter-blue;
.coog-group-header-colors();
}
}
}
}

///////////////////////////////////////////////////////////////////////////////
// Pop up menu
///////////////////////////////////////////////////////////////////////////////
Expand Down