1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-08-03 03:37:52 +02:00

#64 Admin Responsive - Next Round

This commit is contained in:
Awilum
2014-05-08 23:30:00 +04:00
parent fd3a16d72f
commit 7357d1c26a
3 changed files with 6 additions and 2 deletions

View File

@@ -569,4 +569,8 @@ td, th {
.users-btns > div:nth-child(2) { .users-btns > div:nth-child(2) {
margin-top: 15px; margin-top: 15px;
} }
.page-users .btn-cancel {
margin-bottom: 20px;
}
} }

View File

@@ -63,7 +63,7 @@
<![endif]--> <![endif]-->
</head> </head>
<body> <body class="page-<?php echo Request::get('id'); ?>">
<nav class="navbar navbar-default navbar-inverse" role="navigation"> <nav class="navbar navbar-default navbar-inverse" role="navigation">
<div class="container"> <div class="container">

View File

@@ -92,7 +92,7 @@
echo ( echo (
Html::br(). Html::br().
Form::submit('edit_profile', __('Save', 'users'), array('class' => 'btn btn-phone btn-primary')).Html::nbsp(2). Form::submit('edit_profile', __('Save', 'users'), array('class' => 'btn btn-phone btn-primary')).Html::nbsp(2).
Html::anchor(__('Cancel', 'users'), 'index.php?id=users', array('title' => __('Cancel', 'users'), 'class' => 'btn btn-phone btn-default')). Html::anchor(__('Cancel', 'users'), 'index.php?id=users', array('title' => __('Cancel', 'users'), 'class' => 'btn btn-phone btn-cancel btn-default')).
Form::close() Form::close()
); );