css and layout fixes. font path fix
This commit is contained in:
parent
191ba6e1b1
commit
3973236f6e
|
@ -180,12 +180,16 @@ function User_view($user_source, $admin_user_privilege, $freeloader, $user_angel
|
|||
User_groups_render($user_groups)
|
||||
))
|
||||
)),
|
||||
div('row space-top', array(
|
||||
div('col-md-12', array(
|
||||
buttons(array(
|
||||
$admin_user_privilege ? button(page_link_to('admin_user') . '&id=' . $user_source['UID'], '<span class="glyphicon glyphicon-edit"></span> ' . _("edit")) : '',
|
||||
$admin_user_privilege ? button(page_link_to('admin_user') . '&id=' . $user_source['UID'], glyph("edit") . _("edit")) : '',
|
||||
! $user_source['Gekommen'] ? button(page_link_to('admin_arrive') . '&arrived=' . $user_source['UID'], _("arrived")) : '',
|
||||
$its_me ? button(page_link_to_absolute('ical') . '&key=' . $user_source['api_key'], glyph('calendar') . _("iCal Export")) : '',
|
||||
$its_me ? button(page_link_to_absolute('shifts_json_export') . '&key=' . $user_source['api_key'], glyph('export') . _("JSON Export")) : '',
|
||||
$its_me ? button(page_link_to_absolute('user_myshifts') . '&reset', glyph('repeat') . _('Reset API key')) : ''
|
||||
))
|
||||
))
|
||||
)),
|
||||
($its_me || $admin_user_privilege) ? '<h2>' . _("Shifts") . '</h2>' : '',
|
||||
($its_me || $admin_user_privilege) ? table(array(
|
||||
|
|
|
@ -6316,3 +6316,6 @@ td.occupied {
|
|||
atd.occupied:hover {
|
||||
background-color: #c1e2b3;
|
||||
}
|
||||
.space-top {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
|
|
@ -6339,6 +6339,9 @@ td.occupied {
|
|||
atd.occupied:hover {
|
||||
background-color: #449d44;
|
||||
}
|
||||
.space-top {
|
||||
margin-top: 15px;
|
||||
}
|
||||
.text-primary,
|
||||
.text-primary:hover {
|
||||
color: #428bca;
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
@import "../vendor/bootstrap/less/bootstrap";
|
||||
|
||||
@icon-font-path: "../vendor/bootstrap/fonts/";
|
||||
|
||||
body {
|
||||
padding-top: 50px;
|
||||
}
|
||||
|
@ -15,3 +17,7 @@ td.free {
|
|||
td.occupied {
|
||||
.bg-success();
|
||||
}
|
||||
|
||||
.space-top {
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue