mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fixed tab and dialog widths.
The width of the 1st level tab has been modified to expand according to the size of the tab label. The width of the adder dialogs have been increased to allow longer button labels. Ticket #1825
This commit is contained in:
@@ -63,7 +63,6 @@ IPA.entity_factories.permission = function() {
|
|||||||
facet_group: 'privilege'
|
facet_group: 'privilege'
|
||||||
}).
|
}).
|
||||||
adder_dialog({
|
adder_dialog({
|
||||||
width: 500,
|
|
||||||
height: 400,
|
height: 400,
|
||||||
sections: [
|
sections: [
|
||||||
{
|
{
|
||||||
|
@@ -34,7 +34,7 @@ IPA.dialog = function(spec) {
|
|||||||
that.name = spec.name;
|
that.name = spec.name;
|
||||||
that.id = spec.id;
|
that.id = spec.id;
|
||||||
that.title = spec.title;
|
that.title = spec.title;
|
||||||
that.width = spec.width || 400;
|
that.width = spec.width || 500;
|
||||||
that.height = spec.height;
|
that.height = spec.height;
|
||||||
|
|
||||||
that.buttons = {};
|
that.buttons = {};
|
||||||
|
@@ -105,7 +105,6 @@ IPA.entity_factories.dnszone = function() {
|
|||||||
standard_association_facets().
|
standard_association_facets().
|
||||||
adder_dialog({
|
adder_dialog({
|
||||||
factory: IPA.dnszone_adder_dialog,
|
factory: IPA.dnszone_adder_dialog,
|
||||||
width: 500,
|
|
||||||
height: 300,
|
height: 300,
|
||||||
fields: [
|
fields: [
|
||||||
{
|
{
|
||||||
|
@@ -120,7 +120,6 @@ IPA.entity_factories.host = function () {
|
|||||||
standard_association_facets().
|
standard_association_facets().
|
||||||
adder_dialog({
|
adder_dialog({
|
||||||
factory: IPA.host_adder_dialog,
|
factory: IPA.host_adder_dialog,
|
||||||
width: 400,
|
|
||||||
height: 250,
|
height: 250,
|
||||||
sections: [
|
sections: [
|
||||||
{
|
{
|
||||||
|
@@ -291,7 +291,7 @@ div.tabs {
|
|||||||
-moz-border-radius: 0 !important;
|
-moz-border-radius: 0 !important;
|
||||||
-webkit-border-radius: 0 !important;
|
-webkit-border-radius: 0 !important;
|
||||||
font-family: "Overpass Bold","Liberation Sans", Arial, sans-serif;
|
font-family: "Overpass Bold","Liberation Sans", Arial, sans-serif;
|
||||||
width: 5em;
|
min-width: 5em;
|
||||||
height: 20px;
|
height: 20px;
|
||||||
color: #858585;
|
color: #858585;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
@@ -1223,7 +1223,7 @@ table.scrollable tbody {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.host-adder-dialog th.hostname {
|
.host-adder-dialog th.hostname {
|
||||||
width: 110px;
|
width: 200px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.host-adder-dialog td.hostname {
|
.host-adder-dialog td.hostname {
|
||||||
|
@@ -52,7 +52,6 @@ IPA.entity_factories.pwpolicy = function() {
|
|||||||
other_field: 'cn'
|
other_field: 'cn'
|
||||||
},
|
},
|
||||||
'cospriority'],
|
'cospriority'],
|
||||||
width: 400,
|
|
||||||
height: 250
|
height: 250
|
||||||
}).
|
}).
|
||||||
build();
|
build();
|
||||||
|
@@ -71,7 +71,6 @@ IPA.entity_factories.service = function() {
|
|||||||
standard_association_facets().
|
standard_association_facets().
|
||||||
adder_dialog({
|
adder_dialog({
|
||||||
factory: IPA.service_add_dialog,
|
factory: IPA.service_add_dialog,
|
||||||
width: 500,
|
|
||||||
height: 300
|
height: 300
|
||||||
}).
|
}).
|
||||||
build();
|
build();
|
||||||
|
Reference in New Issue
Block a user