Skip to content
Snippets Groups Projects
Commit 3748efe9 authored by Eike Cochu's avatar Eike Cochu
Browse files

updated css rules for explorer windows sizing, added media query

parent ac1b6235
No related branches found
No related tags found
No related merge requests found
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
<a tabindex="0" ui-sref="words"><span class="mnemonic">W</span>ords</a> <a tabindex="0" ui-sref="words"><span class="mnemonic">W</span>ords</a>
</li> </li>
</ul> </ul>
<form class="navbar-form navbar-left" role="search" ng-hide="state.name === 'index'" ng-cloak> <form class="navbar-form navbar-left search-form" role="search" ng-hide="state.name === 'index'" ng-cloak>
<div class="form-group has-feedback"> <div class="form-group has-feedback">
<input tabindex="0" type="text" class="form-control" placeholder="Search..." ng-model="rootModels.search" ng-enter="menubarSearch(rootModels.search)" id="menuSearchBox"> <input tabindex="0" type="text" class="form-control" placeholder="Search..." ng-model="rootModels.search" ng-enter="menubarSearch(rootModels.search)" id="menuSearchBox">
<i class="form-control-feedback glyphicon glyphicon-search text-muted"></i> <i class="form-control-feedback glyphicon glyphicon-search text-muted"></i>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* Vipra Application * Vipra Application
* Directives * Directives
******************************************************************************/ ******************************************************************************/
/* globals angular, Vipra, bootbox, $ */ /* globals angular, Vipra, bootbox */
(function() { (function() {
"use strict"; "use strict";
...@@ -118,7 +118,7 @@ ...@@ -118,7 +118,7 @@
highcharts: '=' highcharts: '='
}, },
link: function($scope, $element) { link: function($scope, $element) {
$scope.$watch('highcharts', function(newVal) { $scope.$watch('highcharts', function() {
$element.highcharts($scope.highcharts); $element.highcharts($scope.highcharts);
}); });
} }
......
...@@ -252,6 +252,7 @@ a:hover { ...@@ -252,6 +252,7 @@ a:hover {
background: #f9f9f9; background: #f9f9f9;
padding: @sidebar-padding; padding: @sidebar-padding;
height: 100%; height: 100%;
min-width: 250px;
> * + * { > * + * {
margin-top: 5px; margin-top: 5px;
} }
...@@ -596,4 +597,10 @@ entity-menu { ...@@ -596,4 +597,10 @@ entity-menu {
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak, .ng-hide { [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak, .ng-hide {
display: none !important; display: none !important;
}
@media screen and (max-width: 900px) {
.search-form {
display: none;
}
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment