GUAC-1406: Add user filtering on settings tab.

This commit is contained in:
James Muehlner
2015-12-02 22:29:35 -08:00
parent 87925d9dc6
commit 400afcba64
14 changed files with 147 additions and 47 deletions

View File

@@ -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');
}

View File

@@ -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;
}