1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00
phorge-phorge/webroot/rsrc/css/aphront/tokenizer.css
Chad Little 33edf8bfcb Clean up UI a little.
Summary: Mainly this changes the fonts and some minor navigation colors. I wanted to get rid of some of the 'girly blues' from Facebook and mute everything a little bit to match the change to Helvetica and new buttons.

Test Plan: Tested Manifest, Profiles, and other random pages I could find. Single and Multiple Navigations. http://phab1.pushlabs.net/

Reviewers: epriestley, btrahan

Reviewed By: btrahan

CC: vrana, aran, Korvin

Differential Revision: https://secure.phabricator.com/D3955
2012-11-12 13:15:46 -08:00

70 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;
}
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;
-webkit-border-radius: 3px;
-moz-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;
}