mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
be73558156
Summary: Adds a slight blue border, radius, and shadow to inputs and textareas (small). Better padding for legibility as well. Test Plan: Review a number of forms Reviewers: epriestley, vrana, btrahan Reviewed By: btrahan CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4383
69 lines
1.2 KiB
CSS
69 lines
1.2 KiB
CSS
/**
|
|
* @provides aphront-tokenizer-control-css
|
|
* @requires aphront-typeahead-control-css
|
|
*/
|
|
|
|
div.jx-tokenizer {
|
|
background: transparent;
|
|
position: relative;
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
div.jx-tokenizer-container {
|
|
background: #fff;
|
|
border: 1px solid #96A6C5;
|
|
position: relative;
|
|
width: 100%;
|
|
padding: 0 2px;
|
|
border-radius: 3px;
|
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
|
|
}
|
|
|
|
var.jx-tokenizer-metrics {
|
|
position: absolute;
|
|
left: 20px;
|
|
top: 20px;
|
|
}
|
|
|
|
input.jx-tokenizer-input {
|
|
border: 1px solid transparent;
|
|
border-width: 1px 0px;
|
|
padding: 3px;
|
|
outline: none;
|
|
float: left;
|
|
}
|
|
|
|
span.jx-tokenizer-x-placeholder {
|
|
padding: 0 2px;
|
|
}
|
|
|
|
a.jx-tokenizer-token {
|
|
padding: 2px 0 2px 5px;
|
|
border: 1px solid #a4bdec;
|
|
margin: 3px 2px 0 4px;
|
|
background: #dee7f8;
|
|
float: left;
|
|
cursor: text;
|
|
font-size: 12px;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
a.jx-tokenizer-token:hover {
|
|
text-decoration: none;
|
|
background: #bbcef1;
|
|
cursor: text;
|
|
}
|
|
|
|
a.jx-tokenizer-token a.jx-tokenizer-x {
|
|
color: #627aad;
|
|
font-family: Arial, sans-serif;
|
|
font-weight: normal;
|
|
cursor: pointer;
|
|
padding: 0 4px;
|
|
}
|
|
|
|
a.jx-tokenizer-token a.jx-tokenizer-x:hover {
|
|
text-decoration: none;
|
|
}
|
|
|