Commit a74dfa6e authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Fix header overflow for big title

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent e7e07fab
...@@ -307,7 +307,7 @@ table { ...@@ -307,7 +307,7 @@ table {
} }
.btn-sign-in { .btn-sign-in {
margin-top: 5px; margin-top: 7px;
text-shadow: none; text-shadow: none;
} }
......
...@@ -97,7 +97,6 @@ header { ...@@ -97,7 +97,6 @@ header {
border-bottom: 1px solid #EEE; border-bottom: 1px solid #EEE;
padding-right: 35px; padding-right: 35px;
height: $header-height; height: $header-height;
overflow: hidden;
.title { .title {
position: relative; position: relative;
...@@ -131,6 +130,7 @@ header { ...@@ -131,6 +130,7 @@ header {
} }
.search-input { .search-input {
width: 220px;
background-image: image-url("icon-search.png"); background-image: image-url("icon-search.png");
background-repeat: no-repeat; background-repeat: no-repeat;
background-position: 10px; background-position: 10px;
...@@ -151,10 +151,6 @@ header { ...@@ -151,10 +151,6 @@ header {
} }
} }
.search .search-input {
width: 300px;
}
@mixin collapsed-header { @mixin collapsed-header {
.header-logo { .header-logo {
width: $sidebar_collapsed_width; width: $sidebar_collapsed_width;
...@@ -171,19 +167,11 @@ header { ...@@ -171,19 +167,11 @@ header {
} }
} }
@media (max-width: 1200px) { @media (max-width: $screen-md-max) {
.search .search-input { header .container .title {
width: 200px; max-width: 43%;
}
}
@media (max-width: $screen-xs-max) {
#nprogress .spinner {
right: 35px !important;
} }
}
@media (max-width: $screen-md-max) {
.header-collapsed, .header-expanded { .header-collapsed, .header-expanded {
@include collapsed-header; @include collapsed-header;
} }
...@@ -200,15 +188,10 @@ header { ...@@ -200,15 +188,10 @@ header {
@media (max-width: $screen-xs-max) { @media (max-width: $screen-xs-max) {
header .container { header .container {
border-width: 0;
font-size: 18px; font-size: 18px;
.title { .title {
@include str-truncated(70%); max-width: 70%;
}
.navbar-collapse {
margin-top: 47px;
} }
.navbar-nav { .navbar-nav {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment