mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-11 23:47:42 +00:00
GUAC-1406: Add user filtering on settings tab.
This commit is contained in:
@@ -20,7 +20,7 @@
|
||||
* THE SOFTWARE.
|
||||
*/
|
||||
|
||||
button.add-user,
|
||||
a.button.add-user,
|
||||
a.button.add-connection,
|
||||
a.button.add-connection-group {
|
||||
font-size: 0.8em;
|
||||
@@ -28,7 +28,7 @@ a.button.add-connection-group {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
button.add-user::before,
|
||||
a.button.add-user::before,
|
||||
a.button.add-connection::before,
|
||||
a.button.add-connection-group::before {
|
||||
|
||||
@@ -45,7 +45,7 @@ a.button.add-connection-group::before {
|
||||
|
||||
}
|
||||
|
||||
button.add-user::before {
|
||||
a.button.add-user::before {
|
||||
background-image: url('images/action-icons/guac-user-add.png');
|
||||
}
|
||||
|
||||
|
@@ -34,3 +34,45 @@
|
||||
text-align: center;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
.settings .toolbar {
|
||||
|
||||
/* IE10 */
|
||||
display: -ms-flexbox;
|
||||
-ms-flex-align: center;
|
||||
-ms-flex-direction: row;
|
||||
|
||||
/* Ancient Mozilla */
|
||||
display: -moz-box;
|
||||
-moz-box-align: center;
|
||||
-moz-box-orient: horizontal;
|
||||
|
||||
/* Ancient WebKit */
|
||||
display: -webkit-box;
|
||||
-webkit-box-align: center;
|
||||
-webkit-box-orient: horizontal;
|
||||
|
||||
/* Old WebKit */
|
||||
display: -webkit-flex;
|
||||
-webkit-align-items: center;
|
||||
-webkit-flex-direction: row;
|
||||
|
||||
/* W3C */
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
|
||||
}
|
||||
|
||||
.settings .toolbar .action-buttons {
|
||||
margin-right: 0.25em;
|
||||
}
|
||||
|
||||
.settings .toolbar .filter {
|
||||
-ms-flex: 1 1 auto;
|
||||
-moz-box-flex: 1;
|
||||
-webkit-box-flex: 1;
|
||||
-webkit-flex: 1 1 auto;
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user