mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
committed by
Martin Kosek
parent
ed6299a0ad
commit
316309c136
@@ -108,6 +108,18 @@ textarea[readonly] {
|
|||||||
margin: -4px 0 0 1px;
|
margin: -4px 0 0 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.prev-icon {
|
||||||
|
background-image: url(images/ui-icons_bbbbbb_256x240.png);
|
||||||
|
background-position: -96px -16px;
|
||||||
|
margin: -4px 0 0 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.next-icon {
|
||||||
|
background-image: url(images/ui-icons_bbbbbb_256x240.png);
|
||||||
|
background-position: -32px -16px;
|
||||||
|
margin: -4px 0 0 1px;
|
||||||
|
}
|
||||||
|
|
||||||
.ipa-icon {
|
.ipa-icon {
|
||||||
font-size: 0.7em;
|
font-size: 0.7em;
|
||||||
padding-right: 0.3em;
|
padding-right: 0.3em;
|
||||||
@@ -1173,6 +1185,11 @@ body.info-page {
|
|||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
height: 30px;
|
height: 30px;
|
||||||
|
line-height: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hbac-test-header .search-filter {
|
||||||
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hbac-test-content {
|
.hbac-test-content {
|
||||||
@@ -1185,7 +1202,7 @@ body.info-page {
|
|||||||
|
|
||||||
.hbac-test-footer {
|
.hbac-test-footer {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
height: 25px;
|
height: 29px;
|
||||||
left: 0;
|
left: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
@@ -1200,6 +1217,11 @@ body.info-page {
|
|||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.hbac-test-title,
|
||||||
|
.hbac-test-title ~ label {
|
||||||
|
margin-right: 5px !important;
|
||||||
|
}
|
||||||
|
|
||||||
div.facet[data-entity=hbactest] .content-table tbody {
|
div.facet[data-entity=hbactest] .content-table tbody {
|
||||||
bottom: 68px;
|
bottom: 68px;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -182,7 +182,7 @@ IPA.hbac.test_facet = function(spec) {
|
|||||||
that.prev_button = IPA.button({
|
that.prev_button = IPA.button({
|
||||||
name: 'prev',
|
name: 'prev',
|
||||||
label: '@i18n:widget.prev',
|
label: '@i18n:widget.prev',
|
||||||
icon: 'ui-icon ui-icon-triangle-1-w',
|
icon: 'prev-icon',
|
||||||
click: function() {
|
click: function() {
|
||||||
if (!that.prev_button.hasClass('action-button-disabled')) {
|
if (!that.prev_button.hasClass('action-button-disabled')) {
|
||||||
that.prev();
|
that.prev();
|
||||||
@@ -197,7 +197,7 @@ IPA.hbac.test_facet = function(spec) {
|
|||||||
that.next_button = IPA.button({
|
that.next_button = IPA.button({
|
||||||
name: 'next',
|
name: 'next',
|
||||||
label: '@i18n:widget.next',
|
label: '@i18n:widget.next',
|
||||||
icon: 'ui-icon ui-icon-triangle-1-e',
|
icon: 'next-icon',
|
||||||
click: function() {
|
click: function() {
|
||||||
if (!that.next_button.hasClass('action-button-disabled')) {
|
if (!that.next_button.hasClass('action-button-disabled')) {
|
||||||
that.next();
|
that.next();
|
||||||
@@ -605,7 +605,7 @@ IPA.hbac.test_run_facet = function(spec) {
|
|||||||
that.prev_button = IPA.button({
|
that.prev_button = IPA.button({
|
||||||
name: 'prev',
|
name: 'prev',
|
||||||
label: '@i18n:widget.prev',
|
label: '@i18n:widget.prev',
|
||||||
icon: 'ui-icon ui-icon-triangle-1-w',
|
icon: 'prev-icon',
|
||||||
click: function() {
|
click: function() {
|
||||||
if (!that.prev_button.hasClass('action-button-disabled')) {
|
if (!that.prev_button.hasClass('action-button-disabled')) {
|
||||||
that.prev();
|
that.prev();
|
||||||
|
|||||||
Reference in New Issue
Block a user