| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- .tight-form {
- border-top: 1px solid $tight-form-border;
- border-left: 1px solid $tight-form-border;
- border-right: 1px solid $tight-form-border;
- background: $tight-form-bg;
- &.last {
- border-bottom: 1px solid $tight-form-border;
- }
- &.borderless {
- background: transparent;
- border: none;
- }
- .checkbox-label {
- display: inline;
- padding-right: 4px;
- margin-bottom: 0;
- cursor: pointer;
- }
- }
- .tight-form-container-no-item-borders {
- border: 1px solid $tight-form-border;
- border-bottom: none;
- .tight-form, .tight-form-item, [type=text].tight-form-input, [type=text].tight-form-clear-input {
- border: none;
- }
- }
- .spaced-form {
- .tight-form {
- margin: 7px 0;
- }
- }
- .borderless {
- .tight-form-item,
- .tight-form-input {
- border: none;
- }
- }
- .tight-form-container {
- border-bottom: 1px solid $tight-form-border;
- }
- .tight-form-btn {
- padding: 7px 12px;
- }
- .tight-form-list {
- list-style: none;
- margin: 0;
- >li {
- float: left;
- }
- }
- .tight-form-flex-wrapper {
- display: flex;
- flex-direction: row;
- float: none !important;
- }
- .grafana-metric-options {
- margin-top: 25px;
- }
- .tight-form-item {
- padding: 8px 7px;
- box-sizing: content-box;
- display: inline-block;
- font-weight: normal;
- border-right: 1px solid $tight-form-border;
- display: inline-block;
- color: $text-color;
- .has-open-function & {
- padding-top: 25px;
- }
- .tight-form-disabled & {
- color: $link-color-disabled;
- a {
- color: $link-color-disabled;
- }
- }
- &:hover, &:focus {
- text-decoration: none;
- }
- &a:hover {
- background: $tight-form-func-bg;
- }
- &.last {
- border-right: none;
- }
- }
- .tight-form-item-icon {
- i {
- width: 15px;
- text-align: center;
- display: inline-block;
- }
- }
- .tight-form-func {
- background: $tight-form-func-bg;
- &.show-function-controls {
- padding-top: 5px;
- min-width: 100px;
- text-align: center;
- }
- }
- input[type=text].tight-form-func-param {
- background: transparent;
- border: none;
- margin: 0;
- padding: 0;
- }
- input[type=text].tight-form-clear-input {
- padding: 8px 7px;
- border: none;
- margin: 0px;
- background: transparent;
- border-radius: 0;
- border-right: 1px solid $tight-form-border;
- }
- [type=text],
- [type=email],
- [type=number],
- [type=password] {
- &.tight-form-input {
- background-color: $input-bg;
- border: none;
- border-right: 1px solid $tight-form-border;
- margin: 0px;
- border-radius: 0;
- padding: 8px 6px;
- height: 100%;
- box-sizing: border-box;
- &.last {
- border-right: none;
- }
- }
- }
- input[type=checkbox].tight-form-checkbox {
- margin: 0;
- }
- .tight-form-textarea {
- height: 200px;
- margin: 0;
- box-sizing: border-box;
- }
- select.tight-form-input {
- border: none;
- border-right: 1px solid $tight-form-border;
- background-color: $input-bg;
- margin: 0px;
- border-radius: 0;
- height: 36px;
- padding: 9px 3px;
- &.last {
- border-right: none;
- }
- }
- .tight-form-func-controls {
- display: none;
- text-align: center;
- .fa-arrow-left {
- float: left;
- position: relative;
- top: 2px;
- }
- .fa-arrow-right {
- float: right;
- position: relative;
- top: 2px;
- }
- .fa-remove {
- margin-left: 10px;
- }
- }
- .tight-form-radio {
- input[type=radio] {
- margin: 0;
- }
- label {
- display: inline;
- }
- }
- .tight-form-section {
- margin-bottom: 20px;
- margin-right: 40px;
- vertical-align: top;
- display: inline-block;
- .tight-form {
- margin-left: 20px;
- }
- }
- .tight-form-align {
- padding-left: 66px;
- }
- .tight-form-item-large { width: 115px; }
- .tight-form-item-xlarge { width: 150px; }
- .tight-form-item-xxlarge { width: 200px; }
- .tight-form-input.tight-form-item-xxlarge {
- width: 215px;
- }
- .tight-form-inner-box {
- margin: 20px 0 20px 148px;
- display: inline-block;
- }
|