-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(navigation): Synchronize changes from server views
baw-server updated it's navigation to the new design style but also overtook where we left the client. These changes bring both designs to parity. See QutEcoacoustics/baw-server#313 Addresses #260
- Loading branch information
Showing
5 changed files
with
35 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,26 @@ | ||
left-nav-bar, right-nav-bar { | ||
ul.nav-pills > li { | ||
& > a, & > button { | ||
padding: 5px 10px; | ||
padding: 5px (1em/4); // approximately 1 standard space's width | ||
text-align: left; | ||
} | ||
} | ||
} | ||
|
||
right-nav-bar { | ||
a>.fa, a>.glyphicon { | ||
a .fa, a>.glyphicon { | ||
color: $text-color; | ||
} | ||
} | ||
|
||
left-nav-bar { | ||
.tooltip-wide { | ||
width: 200px; | ||
} | ||
|
||
@for $i from 0 through 4 { | ||
.indentation-#{$i} { | ||
$step: ($i * 10%); | ||
width: 100% - $step; | ||
margin-left: $step !important; | ||
font-size: 100% - ($step / 2); | ||
width: calc(100% - #{1em * $i}); | ||
margin-left: (1em * $i) !important; | ||
font-size: 100% - ($i * 3%); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters