removing icons
We'll later replace them with a new scheme. For now, this is the simplest UI The intention is to look unfinished, so people don't comment on how poor it looks.
@ -9,10 +9,6 @@ appdir = $(IPA_DATA_DIR)/static
|
|||||||
app_DATA = \
|
app_DATA = \
|
||||||
add.js \
|
add.js \
|
||||||
associate.js \
|
associate.js \
|
||||||
but-reset.png \
|
|
||||||
but-update.png \
|
|
||||||
but-selected.png \
|
|
||||||
but-unselected.png \
|
|
||||||
ipa_logo_180x50.png \
|
ipa_logo_180x50.png \
|
||||||
ipa.js \
|
ipa.js \
|
||||||
ipa.css \
|
ipa.css \
|
||||||
@ -59,28 +55,6 @@ app_DATA = \
|
|||||||
ui-icons_ededed_256x240.png \
|
ui-icons_ededed_256x240.png \
|
||||||
ui-icons_ffcf29_256x240.png \
|
ui-icons_ffcf29_256x240.png \
|
||||||
ui-icons_ffffff_256x240.png \
|
ui-icons_ffffff_256x240.png \
|
||||||
group_details.png \
|
|
||||||
host_details.png \
|
|
||||||
hostgroup_details.png \
|
|
||||||
netgroup_details.png \
|
|
||||||
service_details.png \
|
|
||||||
user_details.png \
|
|
||||||
group_member.png \
|
|
||||||
host_member.png \
|
|
||||||
hostgroup_member.png \
|
|
||||||
netgroup_member.png \
|
|
||||||
service_member.png \
|
|
||||||
user_member.png \
|
|
||||||
group_enroll.png \
|
|
||||||
host_enroll.png \
|
|
||||||
hostgroup_enroll.png \
|
|
||||||
netgroup_enroll.png \
|
|
||||||
service_enroll.png \
|
|
||||||
user_enroll.png \
|
|
||||||
search.png \
|
|
||||||
taskgroup_details.png \
|
|
||||||
rolegroup_details.png \
|
|
||||||
rolegroup_member.png \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
|
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 401 B |
Before Width: | Height: | Size: 423 B |
Before Width: | Height: | Size: 1.6 KiB |
@ -208,13 +208,13 @@ function ipa_entity_generate_views(obj_name, container, switch_view)
|
|||||||
title: 'search',
|
title: 'search',
|
||||||
text: 'Search',
|
text: 'Search',
|
||||||
click: switch_view
|
click: switch_view
|
||||||
}).prepend('<img src="search.png"/>'));
|
}));
|
||||||
|
|
||||||
ul.append($('<li></li>', {
|
ul.append($('<li></li>', {
|
||||||
text: 'Details',
|
text: 'Details',
|
||||||
title: 'details',
|
title: 'details',
|
||||||
click: switch_view
|
click: switch_view
|
||||||
}).prepend('<img src="' + obj_name +'_details.png"/>'));
|
}).prepend('| '));
|
||||||
|
|
||||||
var attribute_members = ipa_objs[obj_name].attribute_members;
|
var attribute_members = ipa_objs[obj_name].attribute_members;
|
||||||
for (attr in attribute_members) {
|
for (attr in attribute_members) {
|
||||||
@ -227,7 +227,7 @@ function ipa_entity_generate_views(obj_name, container, switch_view)
|
|||||||
title: m,
|
title: m,
|
||||||
text:label,
|
text:label,
|
||||||
click: switch_view
|
click: switch_view
|
||||||
}).prepend('<img src="' + ipa_objs[m].name + '_member.png"/>'));
|
}).prepend('| '));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -253,9 +253,7 @@ function ipa_entity_quick_links(tr, attr, value, entry_attrs) {
|
|||||||
nav_push_state(state);
|
nav_push_state(state);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}).append($('<img/>', {
|
}).appendTo(td);
|
||||||
src: obj_name+'_details.png'
|
|
||||||
})).appendTo(td);
|
|
||||||
|
|
||||||
var attribute_members = ipa_objs[obj_name].attribute_members;
|
var attribute_members = ipa_objs[obj_name].attribute_members;
|
||||||
for (attr_name in attribute_members) {
|
for (attr_name in attribute_members) {
|
||||||
@ -267,6 +265,7 @@ function ipa_entity_quick_links(tr, attr, value, entry_attrs) {
|
|||||||
$("<a/>", {
|
$("<a/>", {
|
||||||
href: '#'+m,
|
href: '#'+m,
|
||||||
title: label,
|
title: label,
|
||||||
|
text: label,
|
||||||
click: function(m) {
|
click: function(m) {
|
||||||
return function() {
|
return function() {
|
||||||
var state = {};
|
var state = {};
|
||||||
@ -277,9 +276,7 @@ function ipa_entity_quick_links(tr, attr, value, entry_attrs) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}(m)
|
}(m)
|
||||||
}).append($('<img/>', {
|
}).append(' | ' ).appendTo(td);
|
||||||
src: m+'_member.png'
|
|
||||||
})).appendTo(td);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Before Width: | Height: | Size: 1017 B |
Before Width: | Height: | Size: 998 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 724 B |
Before Width: | Height: | Size: 599 B |
Before Width: | Height: | Size: 657 B |
Before Width: | Height: | Size: 834 B |
Before Width: | Height: | Size: 794 B |
Before Width: | Height: | Size: 751 B |
@ -274,6 +274,7 @@ span.main-separator{
|
|||||||
.entity-views li {
|
.entity-views li {
|
||||||
display:inline;
|
display:inline;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
padding: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.strikethrough { text-decoration: line-through; }
|
.strikethrough { text-decoration: line-through; }
|
||||||
|
Before Width: | Height: | Size: 521 B |
Before Width: | Height: | Size: 522 B |
Before Width: | Height: | Size: 379 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 956 B |
Before Width: | Height: | Size: 1017 B |
Before Width: | Height: | Size: 560 B |
Before Width: | Height: | Size: 561 B |
Before Width: | Height: | Size: 409 B |
Before Width: | Height: | Size: 561 B |
Before Width: | Height: | Size: 561 B |
Before Width: | Height: | Size: 480 B |
Before Width: | Height: | Size: 964 B |
Before Width: | Height: | Size: 933 B |
Before Width: | Height: | Size: 944 B |
Before Width: | Height: | Size: 561 B |
Before Width: | Height: | Size: 894 B |
Before Width: | Height: | Size: 826 B |
Before Width: | Height: | Size: 894 B |