Browse Source

Fix underlined links and input spacing

Rashid Khan 12 years ago
parent
commit
a4e49fb0cc

+ 1 - 1
docs/kibana/configuration/config.js.asciidoc

@@ -11,7 +11,7 @@ must be set before kibana is run for the first time.
 The URL to your elasticsearch server. You almost certainly don't
 The URL to your elasticsearch server. You almost certainly don't
 want +http://localhost:9200+ here. Even if Kibana and Elasticsearch are on
 want +http://localhost:9200+ here. Even if Kibana and Elasticsearch are on
 the same host. By default this will attempt to reach ES at the same host you have
 the same host. By default this will attempt to reach ES at the same host you have
-elasticsearch installed on. You probably want to set it to the FQDN of your
+kibana installed on. You probably want to set it to the FQDN of your
 elasticsearch host
 elasticsearch host
 // src/config.js:15
 // src/config.js:15
 
 

+ 2 - 2
src/app/panels/histogram/module.html

@@ -35,8 +35,8 @@
   </style>
   </style>
   <div>
   <div>
     <span ng-show='panel.options'>
     <span ng-show='panel.options'>
-      <a class="link underline small" ng-show='panel.options' ng-click="options=!options">
-        <i ng-show="!options" class="icon-caret-right"></i><i ng-show="options" class="icon-caret-down"></i> View
+      <a class="link small" ng-show='panel.options' ng-click="options=!options">
+        View <i ng-show="!options" class="icon-caret-right"></i><i ng-show="options" class="icon-caret-down"></i>
       </a> |&nbsp
       </a> |&nbsp
     </span>
     </span>
     <span ng-show='panel.zoomlinks && data'>
     <span ng-show='panel.zoomlinks && data'>

+ 9 - 4
src/app/panels/query/query.css

@@ -7,16 +7,21 @@
 }
 }
 .begin-query {
 .begin-query {
   position:absolute;
   position:absolute;
-  left:13px;
+  left:10px;
   top:5px;
   top:5px;
 }
 }
 .end-query {
 .end-query {
   position:absolute;
   position:absolute;
-  right:15px;
+  right:10px;
   top:5px;
   top:5px;
 }
 }
+
+.end-query i, .begin-query i {
+  margin: 0px;
+}
+
 .panel-query {
 .panel-query {
-  padding-left: 35px !important;
+  padding-left: 25px !important;
   height: 31px !important;
   height: 31px !important;
   -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
   -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
   -moz-box-sizing: border-box;    /* Firefox, other Gecko */
   -moz-box-sizing: border-box;    /* Firefox, other Gecko */
@@ -28,7 +33,7 @@
 }
 }
 
 
 .form-search:hover .has-remove {
 .form-search:hover .has-remove {
-  padding-left: 50px !important;
+  padding-left: 40px !important;
 }
 }
 .remove-query {
 .remove-query {
   opacity: 0;
   opacity: 0;

File diff suppressed because it is too large
+ 0 - 0
src/css/bootstrap.dark.min.css


File diff suppressed because it is too large
+ 0 - 0
src/css/bootstrap.light.min.css


+ 4 - 0
src/vendor/bootstrap/less/bootswatch.dark.less

@@ -519,6 +519,10 @@ legend, label {
 // MISC
 // MISC
 // -----------------------------------------------------
 // -----------------------------------------------------
 
 
+a:hover {
+	text-decoration: none;
+}
+
 .well, .hero-unit {
 .well, .hero-unit {
 	.border-radius(0px);
 	.border-radius(0px);
 }
 }

+ 4 - 0
src/vendor/bootstrap/less/bootswatch.light.less

@@ -530,6 +530,10 @@ legend {
 // MISC
 // MISC
 // -----------------------------------------------------
 // -----------------------------------------------------
 
 
+a:hover {
+	text-decoration: none;
+}
+
 .hero-unit {
 .hero-unit {
 	border: none;
 	border: none;
 	.border-radius(0);
 	.border-radius(0);

Some files were not shown because too many files changed in this diff