Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

moved inline css into stylesheet #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions dist/css/query-editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
width: 75px;
}


.gf-form-textarea {
min-width: 350px !important;
.gf-form-bosun {
align-items:flex-start;
-webkit-align-items: flex-start;
-ms-flex-align: flex-start;
width: 80%;
}
4 changes: 2 additions & 2 deletions dist/partials/query.editor.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<query-editor-row query-ctrl="ctrl">
<div class="gf-form-inline" style="align-items:flex-start;">
<div class="gf-form" style="width:80%;align-items:flex-start;">
<div class="gf-form gf-form-bosun">
<label class="gf-form-label query-keyword">
Query:
<tip>You can enter any Bosun query here</tip>
Expand All @@ -19,7 +19,7 @@
</div>


<div class="gf-form" style="width:20%;">
<div class="gf-form">
<label class="gf-form-label query-keyword width-8">
Alias:
<tip>Use patterns like $tag_tagname to replace part of the alias for a tag value</tip>
Expand Down
8 changes: 5 additions & 3 deletions src/css/query-editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
width: 75px;
}


.gf-form-textarea {
min-width: 350px !important;
.gf-form-bosun {
align-items:flex-start;
-webkit-align-items: flex-start;
-ms-flex-align: flex-start;
width: 80%;
}
4 changes: 2 additions & 2 deletions src/partials/query.editor.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<query-editor-row query-ctrl="ctrl">
<div class="gf-form-inline" style="align-items:flex-start;">
<div class="gf-form" style="width:80%;align-items:flex-start;">
<div class="gf-form gf-form-bosun">
<label class="gf-form-label query-keyword">
Query:
<tip>You can enter any Bosun query here</tip>
Expand All @@ -19,7 +19,7 @@
</div>


<div class="gf-form" style="width:20%;">
<div class="gf-form">
<label class="gf-form-label query-keyword width-8">
Alias:
<tip>Use patterns like $tag_tagname to replace part of the alias for a tag value</tip>
Expand Down