Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
4ab3542c
Commit
4ab3542c
authored
Feb 16, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ux(): fixes
parent
5a67ca25
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
60 deletions
+10
-60
public/sass/base/_forms.scss
+8
-59
public/vendor/tagsinput/bootstrap-tagsinput.js
+2
-1
No files found.
public/sass/base/_forms.scss
View file @
4ab3542c
...
@@ -25,6 +25,7 @@ legend {
...
@@ -25,6 +25,7 @@ legend {
}
}
}
}
// Reset height since textareas have rows
// Set font for forms
// Set font for forms
label
,
label
,
input
,
input
,
...
@@ -45,70 +46,18 @@ label {
...
@@ -45,70 +46,18 @@ label {
display
:
block
;
display
:
block
;
}
}
// // Form controls
input
,
// // -------------------------
select
{
//
background-color
:
$input-bg
;
// // Shared size and type resets
color
:
$input-color
;
// select,
border
:
none
;
// textarea,
box-shadow
:
none
;
// input[type="text"],
}
// input[type="password"],
// input[type="datetime"],
// input[type="datetime-local"],
// input[type="date"],
// input[type="month"],
// input[type="time"],
// input[type="week"],
// input[type="number"],
// input[type="email"],
// input[type="url"],
// input[type="search"],
// input[type="tel"],
// input[type="color"],
// .uneditable-input {
// display: inline-block;
// height: $input-height;
// line-height: $input-line-height;
// padding: 4px 6px;
// font-size: $font-size-base;
// color: $input-color;
// vertical-align: top;
// }
// Reset height since textareas have rows
textarea
{
textarea
{
height
:
auto
;
height
:
auto
;
}
}
// // Everything else
// textarea,
// input[type="text"],
// input[type="password"],
// input[type="datetime"],
// input[type="datetime-local"],
// input[type="date"],
// input[type="month"],
// input[type="time"],
// input[type="week"],
// input[type="number"],
// input[type="email"],
// input[type="url"],
// input[type="search"],
// input[type="tel"],
// input[type="color"] {
// background-color: $input-bg;
// border: 1px solid $input-border-color;
// @include box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
// @include transition("border linear .2s, box-shadow linear .2s");
//
// // Focus state
// &:focus {
// border-color: rgba(82,168,236, .8);
// outline: 0;
// @include box-shadow("inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6)");
// }
// }
// Reset width of input images, buttons, radios, checkboxes
// Reset width of input images, buttons, radios, checkboxes
input
[
type
=
"file"
],
input
[
type
=
"file"
],
input
[
type
=
"image"
],
input
[
type
=
"image"
],
...
...
public/vendor/tagsinput/bootstrap-tagsinput.js
View file @
4ab3542c
...
@@ -35,7 +35,8 @@
...
@@ -35,7 +35,8 @@
this
.
inputSize
=
Math
.
max
(
1
,
this
.
placeholderText
.
length
);
this
.
inputSize
=
Math
.
max
(
1
,
this
.
placeholderText
.
length
);
this
.
$container
=
$
(
'<div class="bootstrap-tagsinput"></div>'
);
this
.
$container
=
$
(
'<div class="bootstrap-tagsinput"></div>'
);
this
.
$input
=
$
(
'<input size="'
+
this
.
inputSize
+
'" type="text" placeholder="'
+
this
.
placeholderText
+
'"/>'
).
appendTo
(
this
.
$container
);
this
.
$input
=
$
(
'<input class="tight-form-input" size="'
+
this
.
inputSize
+
'" type="text" placeholder="'
+
this
.
placeholderText
+
'"/>'
).
appendTo
(
this
.
$container
);
this
.
$element
.
after
(
this
.
$container
);
this
.
$element
.
after
(
this
.
$container
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment