Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #2995 buttons and filter styles now applied in popups #41

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 0 additions & 4 deletions rudder-web/src/main/webapp/style/jquery-rudder-bridge.css
Expand Up @@ -346,10 +346,6 @@ input .ui-button {
margin: 2px 0px 2px 0px;
}

.ui-button:hover{
background-color: #EEEBE7;
}

.dataTables_wrapper .dataTables_paginate .ui-button:hover, .paginate_button_disabled:hover, .paginate_button:hover, .paginate_active:hover {
text-decoration:underline;
background-color: #EEEBE7;
Expand Down
15 changes: 13 additions & 2 deletions rudder-web/src/main/webapp/style/rudder.css
Expand Up @@ -227,9 +227,20 @@ button.largeButton {
}

.popupButton button {
background-color: #f8f8f8;
background: linear-gradient(#FAFAFA, #EAEAEA) repeat scroll 0 0 transparent;
border: 1px solid #b4b3a8;
transition: none 0s ease 0s;
margin: 2px 0px 2px 0px;
}

.popupButton button:hover {
background-color: #EEEBE7;
font-weight: bold;
color: #000;
background: none;
border-color: #FBCB09;
}

.popupButton input {
background-color: #f8f8f8;
border: 1px solid #b4b3a8;
Expand Down Expand Up @@ -532,6 +543,7 @@ div#Detail {

.dataTables_length select {
padding: 1px;
border: 1px solid #B4B3A8;
}

.dataTables_length {
Expand Down Expand Up @@ -1608,7 +1620,6 @@ div#refusePopup {
}

.popupButton {

padding: 5px;
float: right;
}
Expand Down