Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Morpheus/stylesheets/ui/_navs.less')
-rw-r--r--plugins/Morpheus/stylesheets/ui/_navs.less59
1 files changed, 59 insertions, 0 deletions
diff --git a/plugins/Morpheus/stylesheets/ui/_navs.less b/plugins/Morpheus/stylesheets/ui/_navs.less
new file mode 100644
index 0000000000..e274dde0e1
--- /dev/null
+++ b/plugins/Morpheus/stylesheets/ui/_navs.less
@@ -0,0 +1,59 @@
+// Most of this is Bootstrap code and can be removed when switching to Bootstrap
+
+.nav {
+ margin-bottom: 20px;
+ padding-left: 0; // Override default ul/ol
+ list-style: none;
+
+ > li {
+ position: relative;
+ display: block;
+
+ > a {
+ position: relative;
+ display: block;
+ padding: 11px 70px;
+ text-decoration: none;
+ }
+ }
+}
+// .clearfix
+.nav:before, .nav:after {
+ display: table;
+ content: " ";
+}
+.nav:after {
+ clear: both;
+}
+
+.nav-pills {
+ > li {
+ float: left;
+ border: 1px solid @color-silver-l80;
+ border-left: 0;
+
+ &:first-child {
+ border-radius: 3px 0 0 3px;
+ border: 1px solid @color-silver-l80;
+ }
+ &:last-child {
+ border-radius: 0 3px 3px 0;
+ }
+
+ > a {
+ color: @theme-color-link;
+ background-color: @color-silver-l95;
+
+ &:hover,
+ &:focus {
+ background-color: @color-silver-l85;
+ }
+ }
+
+ &.active > a {
+ color: @theme-color-text;
+ background-color: @theme-color-background-base;
+ cursor: default;
+ }
+ }
+}