mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
1c84d2719c
Summary: Ref T8099, Ref T8614. Reasonable attempt at a larger font size PostProcessor, will need additional UI cleanup (places where we fix height) but overall very decent. Test Plan: Use lots of the UI elements with new font sizes. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T8099, T8614 Differential Revision: https://secure.phabricator.com/D13457
181 lines
3.2 KiB
CSS
181 lines
3.2 KiB
CSS
/**
|
|
* @provides aphront-tokenizer-control-css
|
|
* @requires aphront-typeahead-control-css
|
|
* @requires phui-tag-view-css
|
|
*/
|
|
|
|
body div.jx-tokenizer {
|
|
background: transparent;
|
|
position: relative;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
body div.jx-tokenizer-container {
|
|
position: relative;
|
|
display: block;
|
|
padding: 0 0 2px 0;
|
|
min-height: 30px;
|
|
height: auto;
|
|
}
|
|
|
|
var.jx-tokenizer-metrics {
|
|
position: absolute;
|
|
left: 20px;
|
|
top: 20px;
|
|
}
|
|
|
|
body input.jx-tokenizer-input {
|
|
border: 1px solid transparent;
|
|
border-width: 1px 0px;
|
|
padding: 3px;
|
|
outline: none;
|
|
float: left;
|
|
width: 100%;
|
|
border-shadow: none;
|
|
box-shadow: none;
|
|
-webkit-box-shadow: none;
|
|
font-size: {$normalfontsize};
|
|
color: #333;
|
|
height: 26px;
|
|
}
|
|
|
|
body input.jx-tokenizer-input:focus {
|
|
box-shadow: none;
|
|
-webkit-box-shadow: none;
|
|
border-color: transparent;
|
|
}
|
|
|
|
body input.jx-typeahead-placeholder {
|
|
margin-left: 4px;
|
|
color: {$greytext};
|
|
}
|
|
|
|
a.jx-tokenizer-x {
|
|
margin-left: 4px;
|
|
color: {$bluetext};
|
|
float: right;
|
|
}
|
|
|
|
a.jx-tokenizer-x:hover {
|
|
color: {$darkbluetext};
|
|
text-decoration: none;
|
|
}
|
|
|
|
a.jx-tokenizer-token {
|
|
padding: 2px 6px;
|
|
border: 1px solid {$lightblueborder};
|
|
margin: 3px 2px 0 4px;
|
|
background-color: {$sh-bluebackground};
|
|
float: left;
|
|
cursor: pointer;
|
|
border-radius: 3px;
|
|
color: {$sh-bluetext};
|
|
min-height: 16px;
|
|
}
|
|
|
|
a.jx-tokenizer-token:hover {
|
|
text-decoration: none;
|
|
border-color: {$sh-blueborder};
|
|
}
|
|
|
|
.jx-tokenizer-token .phui-icon-view {
|
|
display: inline-block;
|
|
margin: 2px 4px -3px 0;
|
|
color: {$sh-blueicon};
|
|
}
|
|
|
|
a.jx-tokenizer-token-function {
|
|
border-color: {$sh-lightgreyborder};
|
|
background: #fff;
|
|
}
|
|
|
|
a.jx-tokenizer-token-function:hover {
|
|
background: #fff;
|
|
}
|
|
|
|
a.jx-tokenizer-token-disabled {
|
|
background-color: {$sh-disabledbackground};
|
|
border-color: {$sh-lightdisabledborder};
|
|
color: {$sh-disabledtext};
|
|
}
|
|
|
|
a.jx-tokenizer-token-disabled:hover {
|
|
border-color: {$sh-disabledborder};
|
|
background-color: {$sh-disabledbackground};
|
|
}
|
|
|
|
.jx-tokenizer-token-disabled .phui-icon-view {
|
|
color: {$sh-disabledicon};
|
|
}
|
|
|
|
a.jx-tokenizer-token-invalid {
|
|
border-color: {$sh-lightredborder};
|
|
background: {$sh-redbackground};
|
|
color: {$sh-redtext};
|
|
}
|
|
|
|
a.jx-tokenizer-token-invalid:hover {
|
|
border-color: {$sh-redborder};
|
|
background: {$sh-redbackground};
|
|
}
|
|
|
|
.jx-tokenizer-token-invalid .phui-icon-view {
|
|
color: {$sh-redicon};
|
|
}
|
|
|
|
.tokenizer-result {
|
|
position: relative;
|
|
padding: 5px 8px 5px 28px;
|
|
}
|
|
|
|
.tokenizer-result .phui-icon-view {
|
|
display: inline-block;
|
|
width: 24px;
|
|
height: 24px;
|
|
position: absolute;
|
|
top: 5px;
|
|
left: 8px;
|
|
}
|
|
|
|
.tokenizer-result-closed {
|
|
color: {$greytext};
|
|
}
|
|
|
|
.tokenizer-closed {
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.jx-tokenizer-frame .button.tokenizer-browse-button {
|
|
display: none;
|
|
}
|
|
|
|
.jx-tokenizer-frame.has-browse .button.tokenizer-browse-button {
|
|
display: block;
|
|
}
|
|
|
|
.jx-tokenizer-frame.has-browse {
|
|
position: relative;
|
|
}
|
|
|
|
.jx-tokenizer-frame.has-browse div.jx-tokenizer-container {
|
|
padding-right: 32px;
|
|
}
|
|
|
|
.button.tokenizer-browse-button {
|
|
position: absolute;
|
|
top: 1px;
|
|
right: 1px;
|
|
bottom: 1px;
|
|
border-radius: 0;
|
|
border-right: none;
|
|
border-top: none;
|
|
border-bottom: none;
|
|
padding: 0;
|
|
width: 30px;
|
|
}
|
|
|
|
.button.tokenizer-browse-button .phui-icon-view {
|
|
top: 7px;
|
|
left: 9px;
|
|
}
|