2017-03-16 15:29:07 +00:00
/ * *
* @ file
* States element styles .
*
* @ see / webform / test_element_states
* /
. webform-states-table td {
white-space : nowrap ;
}
2018-11-23 12:29:20 +00:00
tr . webform-states-table--state {
2017-03-16 15:29:07 +00:00
border-top : 2px solid # a6a6a6 ;
}
2018-11-23 12:29:20 +00:00
tr . webform-states-table--state : first-child {
2017-03-16 15:29:07 +00:00
border-top : inherit ;
}
2018-11-23 12:29:20 +00:00
tr . webform-states-table--state td select {
2017-03-16 15:29:07 +00:00
width : inherit ;
max-width : inherit ;
}
2018-11-23 12:29:20 +00:00
. webform-states-table--state td . webform-states-table--state select ,
2017-03-16 15:29:07 +00:00
. webform-states-table--condition select ,
. webform-states-table--condition input [ type = "text" ] {
width : 100 % ;
max-width : 100 % ;
}
2018-11-23 12:29:20 +00:00
. webform-states-table--condition input [ type = "text" ] {
margin-top : 4px ;
}
2017-03-16 15:29:07 +00:00
. webform-states-table . image-button {
margin : 0 ;
}
2018-11-23 12:29:20 +00:00
. webform-states-table th . webform-states-table--operations ,
. webform-states-table td . webform-states-table--operations {
2017-03-16 15:29:07 +00:00
padding : 0 2px ;
vertical-align : middle ;
}
2018-11-23 12:29:20 +00:00
. webform-states-table td . webform-states-table--operations input {
2017-03-16 15:29:07 +00:00
margin : 0 2px ;
}
2018-11-23 12:29:20 +00:00
. webform-states-table td . webform-states-table--operations input {
2017-03-16 15:29:07 +00:00
opacity : 0 . 4 ;
}
2018-11-23 12:29:20 +00:00
. webform-states-table td . webform-states-table--operations input : hover ,
. webform-states-table td . webform-states-table--operations input : focus ,
. webform-states-table td . webform-states-table--operations input : active {
2017-03-16 15:29:07 +00:00
opacity : 1 ;
background : none ;
}
/ * *
* Suppress table drag warnings .
* /
. webform-states-table . tabledrag-changed-warning ,
. webform-states-table . tabledrag-changed {
display : none ! important ; /* Must use !important because .tabledrag-changed 'display' is set via JavaScript */
}
2019-01-24 08:00:03 +00:00
/ * *
* Limit results in jQuery UI Autocomplete
*
* https : / / stackoverflow . com / questions / 7617373 / limit-results-in-jquery-ui-autocomplete
* /
. ui-autocomplete {
max-height : 200px ;
overflow-y : auto ;
overflow-x : hidden ;
}