1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 17:28:51 +02:00
phorge-phorge/webroot/rsrc/css/aphront/tokenizer.css

182 lines
3.2 KiB
CSS
Raw Normal View History

2011-01-25 22:48:05 +01:00
/**
* @provides aphront-tokenizer-control-css
* @requires aphront-typeahead-control-css
* @requires phui-tag-view-css
2011-01-25 22:48:05 +01:00
*/
body div.jx-tokenizer {
2011-01-25 22:48:05 +01:00
background: transparent;
position: relative;
width: 100%;
overflow: hidden;
2011-01-25 22:48:05 +01:00
}
body div.jx-tokenizer-container {
2011-01-25 22:48:05 +01:00
position: relative;
display: block;
padding: 0 0 2px 0;
min-height: 30px;
height: auto;
}
2011-01-25 22:48:05 +01:00
var.jx-tokenizer-metrics {
position: absolute;
left: 20px;
top: 20px;
}
body input.jx-tokenizer-input {
2011-01-25 22:48:05 +01:00
border: 1px solid transparent;
border-width: 1px 0px;
padding: 3px;
2011-01-25 22:48:05 +01:00
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;
2011-01-25 22:48:05 +01:00
}
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;
2011-01-25 22:48:05 +01:00
}
a.jx-tokenizer-token {
padding: 2px 6px;
border: 1px solid {$lightblueborder};
2011-01-25 22:48:05 +01:00
margin: 3px 2px 0 4px;
background-color: {$sh-bluebackground};
2011-01-25 22:48:05 +01:00
float: left;
cursor: pointer;
border-radius: 3px;
color: {$sh-bluetext};
min-height: 16px;
2011-01-25 22:48:05 +01:00
}
a.jx-tokenizer-token:hover {
text-decoration: none;
border-color: {$sh-blueborder};
2011-01-25 22:48:05 +01:00
}
.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;
}