You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
310 lines
5.5 KiB
310 lines
5.5 KiB
/*
|
|
* # Semantic - Input
|
|
* http://github.com/jlukic/semantic-ui/
|
|
*
|
|
*
|
|
* Copyright 2013 Contributors
|
|
* Released under the MIT license
|
|
* http://opensource.org/licenses/MIT
|
|
*
|
|
*/
|
|
|
|
/*******************************
|
|
Standard
|
|
*******************************/
|
|
|
|
/*--------------------
|
|
Inputs
|
|
---------------------*/
|
|
|
|
.ui.input {
|
|
display: inline-block;
|
|
position: relative;
|
|
color: rgba(0, 0, 0, 0.7);
|
|
}
|
|
|
|
.ui.input input {
|
|
width: 100%;
|
|
font-family: "Helvetica Neue", "Helvetica", Arial;
|
|
margin: 0em;
|
|
padding: 0.85em 1.2em;
|
|
font-size: 0.875em;
|
|
background-color: #FFFFFF;
|
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
|
outline: none;
|
|
color: rgba(0, 0, 0, 0.7);
|
|
border-radius: 0.3125em;
|
|
-webkit-transition: background-color 0.3s ease-out,
|
|
-webkit-box-shadow 0.2s ease,
|
|
border-color 0.2s ease;
|
|
transition: background-color 0.3s ease-out,
|
|
box-shadow 0.2s ease,
|
|
border-color 0.2s ease;
|
|
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
/*--------------------
|
|
Placeholder
|
|
---------------------*/
|
|
|
|
/* browsers require these rules separate */
|
|
|
|
.ui.input::-web inputkit-input-placeholder {
|
|
color: #BBBBBB;
|
|
}
|
|
|
|
.ui.input::-moz input-placeholder {
|
|
color: #BBBBBB;
|
|
}
|
|
|
|
/*******************************
|
|
States
|
|
*******************************/
|
|
|
|
/*--------------------
|
|
Active
|
|
---------------------*/
|
|
|
|
.ui.input input:active,
|
|
.ui.input.down input {
|
|
border-color: rgba(0, 0, 0, 0.3);
|
|
background-color: #FAFAFA;
|
|
}
|
|
|
|
/*--------------------
|
|
Loading
|
|
---------------------*/
|
|
|
|
.ui.loading.input > .icon {
|
|
background: url(../images/loader-mini.gif) no-repeat 50% 50%;
|
|
}
|
|
|
|
.ui.loading.input > .icon:before,
|
|
.ui.loading.input > .icon:after {
|
|
display: none;
|
|
}
|
|
|
|
/*--------------------
|
|
Focus
|
|
---------------------*/
|
|
|
|
.ui.input.focus input,
|
|
.ui.input input:focus {
|
|
border-color: rgba(0, 0, 0, 0.2);
|
|
color: rgba(0, 0, 0, 0.85);
|
|
}
|
|
|
|
.ui.input.focus input input::-webkit-input-placeholder,
|
|
.ui.input input:focus input::-webkit-input-placeholder {
|
|
color: #AAAAAA;
|
|
}
|
|
|
|
.ui.input.focus input input::-moz-placeholder,
|
|
.ui.input input:focus input::-moz-placeholder {
|
|
color: #AAAAAA;
|
|
}
|
|
|
|
/*--------------------
|
|
Error
|
|
---------------------*/
|
|
|
|
.ui.input.error input {
|
|
background-color: #FFFAFA;
|
|
border-color: #E7BEBE;
|
|
color: #D95C5C;
|
|
}
|
|
|
|
/* Error Placeholder */
|
|
|
|
.ui.input.error input ::-webkit-input-placeholder {
|
|
color: rgba(255, 80, 80, 0.4);
|
|
}
|
|
|
|
.ui.input.error input ::-moz-placeholder {
|
|
color: rgba(255, 80, 80, 0.4);
|
|
}
|
|
|
|
.ui.input.error input :focus::-webkit-input-placeholder {
|
|
color: rgba(255, 80, 80, 0.7);
|
|
}
|
|
|
|
.ui.input.error input :focus::-moz-placeholder {
|
|
color: rgba(255, 80, 80, 0.7);
|
|
}
|
|
|
|
/*******************************
|
|
Variations
|
|
*******************************/
|
|
|
|
/*--------------------
|
|
Transparent
|
|
---------------------*/
|
|
|
|
.ui.transparent.input input {
|
|
border: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
/*--------------------
|
|
Icon
|
|
---------------------*/
|
|
|
|
.ui.icon.input > .icon {
|
|
cursor: default;
|
|
position: absolute;
|
|
opacity: 0.5;
|
|
top: 0px;
|
|
right: 0px;
|
|
margin: 0em;
|
|
width: 2.6em;
|
|
height: 100%;
|
|
padding-top: 0.82em;
|
|
text-align: center;
|
|
border-radius: 0em 0.3125em 0.3125em 0em;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
-ms-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
-webkit-transition: opacity 0.3s ease-out;
|
|
transition: opacity 0.3s ease-out;
|
|
}
|
|
|
|
.ui.icon.input > .link.icon {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.ui.icon.input input {
|
|
padding-right: 3em !important;
|
|
}
|
|
|
|
.ui.icon.input > .circular.icon {
|
|
top: 0.35em;
|
|
right: 0.5em;
|
|
}
|
|
|
|
/* Left Side */
|
|
|
|
.ui.left.icon.input > .icon {
|
|
right: auto;
|
|
left: 1px;
|
|
border-radius: 0.3125em 0em 0em 0.3125em;
|
|
}
|
|
|
|
.ui.left.icon.input > .circular.icon {
|
|
right: auto;
|
|
left: 0.5em;
|
|
}
|
|
|
|
.ui.left.icon.input > input {
|
|
padding-left: 3em !important;
|
|
padding-right: 1.2em !important;
|
|
}
|
|
|
|
/* Focus */
|
|
|
|
.ui.icon.input > input:focus ~ .icon {
|
|
opacity: 1;
|
|
}
|
|
|
|
/*--------------------
|
|
Labeled
|
|
---------------------*/
|
|
|
|
.ui.labeled.input .corner.label {
|
|
top: 1px;
|
|
right: 1px;
|
|
font-size: 0.55em;
|
|
border-top-right-radius: 0.3125em;
|
|
}
|
|
|
|
.ui.labeled.input .corner.label > .icon {
|
|
margin: 0.4em 0em 0em 2em;
|
|
}
|
|
|
|
.ui.labeled.input input {
|
|
padding-right: 2.5em !important;
|
|
}
|
|
|
|
/* Spacing with corner label */
|
|
|
|
.ui.labeled.icon.input:not(.left) > input {
|
|
padding-right: 3.25em !important;
|
|
}
|
|
|
|
.ui.labeled.icon.input:not(.left) > .icon {
|
|
margin-right: 1.25em;
|
|
}
|
|
|
|
/*--------------------
|
|
Action
|
|
---------------------*/
|
|
|
|
.ui.action.input {
|
|
display: table;
|
|
}
|
|
|
|
.ui.action.input > input {
|
|
display: table-cell;
|
|
border-top-right-radius: 0px !important;
|
|
border-bottom-right-radius: 0px !important;
|
|
border-right: none;
|
|
}
|
|
|
|
.ui.action.input > .button,
|
|
.ui.action.input > .buttons,
|
|
{
|
|
display: table-cell;
|
|
border-top-left-radius: 0px;
|
|
border-bottom-left-radius: 0px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.ui.action.input > .button > .icon,
|
|
.ui.action.input > .buttons > .button > .icon {
|
|
display: inline;
|
|
vertical-align: top;
|
|
}
|
|
|
|
/*--------------------
|
|
Fluid
|
|
---------------------*/
|
|
|
|
.ui.fluid.input {
|
|
display: block;
|
|
}
|
|
|
|
/*--------------------
|
|
Size
|
|
---------------------*/
|
|
|
|
.ui.mini.input {
|
|
font-size: 0.8125rem;
|
|
}
|
|
|
|
.ui.small.input {
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.ui.input {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.ui.large.input {
|
|
font-size: 1.125rem;
|
|
}
|
|
|
|
.ui.big.input {
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
.ui.huge.input {
|
|
font-size: 1.375rem;
|
|
}
|
|
|
|
.ui.massive.input {
|
|
font-size: 1.5rem;
|
|
}
|