forked from science-ation/science-ation
Improve responsive design
This commit is contained in:
parent
f03b94d5b5
commit
1cf7e7b9c0
@ -372,10 +372,9 @@ function send_header($title = '', $nav = null, $icon = null, $titletranslated =
|
|||||||
echo i18n($config['fairname']); ?></title>
|
echo i18n($config['fairname']); ?></title>
|
||||||
|
|
||||||
<link rel="stylesheet" href="https://code.jquery.com/ui/1.14.1/themes/base/jquery-ui.css">
|
<link rel="stylesheet" href="https://code.jquery.com/ui/1.14.1/themes/base/jquery-ui.css">
|
||||||
<link rel="stylesheet" href="<?= $config['SFIABDIRECTORY'] ?>/theme/<?= $config['theme'] ?>/sfiab.css" type="text/css" media="all" />
|
<link rel="stylesheet" href="<?= $config['SFIABDIRECTORY'] ?>/theme/<?= $config['theme'] ?>/style.css" type="text/css" media="all" />
|
||||||
<link rel="stylesheet" href="<?= $config['SFIABDIRECTORY'] ?>/tableeditor.css" type="text/css" media="all" />
|
<link rel="stylesheet" href="<?= $config['SFIABDIRECTORY'] ?>/theme/<?= $config['theme'] ?>/tableeditor.css" type="text/css" media="all" />
|
||||||
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet" />
|
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet" />
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
@ -389,6 +388,7 @@ function send_header($title = '', $nav = null, $icon = null, $titletranslated =
|
|||||||
<script src="https://code.jquery.com/jquery-migrate-3.5.2.js"></script>
|
<script src="https://code.jquery.com/jquery-migrate-3.5.2.js"></script>
|
||||||
|
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.tablesorter/2.32.0/js/jquery.tablesorter.min.js" integrity="sha512-O/JP2r8BG27p5NOtVhwqsSokAwEP5RwYgvEzU9G6AfNjLYqyt2QT8jqU1XrXCiezS50Qp1i3ZtCQWkHZIRulGA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.tablesorter/2.32.0/js/jquery.tablesorter.min.js" integrity="sha512-O/JP2r8BG27p5NOtVhwqsSokAwEP5RwYgvEzU9G6AfNjLYqyt2QT8jqU1XrXCiezS50Qp1i3ZtCQWkHZIRulGA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/TableDnD/0.9.1/jquery.tablednd.js" integrity="sha256-d3rtug+Hg1GZPB7Y/yTcRixO/wlI78+2m08tosoRn7A=" crossorigin="anonymous"></script>
|
||||||
|
|
||||||
<script src="https://code.jquery.com/ui/1.14.1/jquery-ui.min.js"></script>
|
<script src="https://code.jquery.com/ui/1.14.1/jquery-ui.min.js"></script>
|
||||||
<script type="text/javascript" src="<?= $config['SFIABDIRECTORY'] ?>/js/sfiab.js"></script>
|
<script type="text/javascript" src="<?= $config['SFIABDIRECTORY'] ?>/js/sfiab.js"></script>
|
||||||
@ -601,9 +601,9 @@ function send_header($title = '', $nav = null, $icon = null, $titletranslated =
|
|||||||
if ($icon && theme_icon($icon)) {
|
if ($icon && theme_icon($icon)) {
|
||||||
echo '<td width="40">';
|
echo '<td width="40">';
|
||||||
echo theme_icon($icon);
|
echo theme_icon($icon);
|
||||||
echo '</td><td>';
|
echo '</td><td id="page-title">';
|
||||||
} else
|
} else
|
||||||
echo '<td>';
|
echo '<td id="page-title">';
|
||||||
|
|
||||||
if ($title && !$titletranslated)
|
if ($title && !$titletranslated)
|
||||||
echo '<h2>' . i18n($title) . '</h2>';
|
echo '<h2>' . i18n($title) . '</h2>';
|
||||||
@ -686,8 +686,8 @@ function send_popup_header($title = '')
|
|||||||
<title><?= i18n($title) ?></title>
|
<title><?= i18n($title) ?></title>
|
||||||
<link rel="stylesheet" href="https://code.jquery.com/ui/1.14.1/themes/base/jquery-ui.css">
|
<link rel="stylesheet" href="https://code.jquery.com/ui/1.14.1/themes/base/jquery-ui.css">
|
||||||
<!--<link rel="stylesheet" href="<?= $config['SFIABDIRECTORY'] ?>/theme/<?= $config['theme'] ?>/jquery-ui-1.7.2.custom.css" type="text/css" media="all" />-->
|
<!--<link rel="stylesheet" href="<?= $config['SFIABDIRECTORY'] ?>/theme/<?= $config['theme'] ?>/jquery-ui-1.7.2.custom.css" type="text/css" media="all" />-->
|
||||||
<link rel="stylesheet" href="<?= $config['SFIABDIRECTORY'] ?>/theme/<?= $config['theme'] ?>/sfiab.css" type="text/css" media="all" />
|
<link rel="stylesheet" href="<?= $config['SFIABDIRECTORY'] ?>/theme/<?= $config['theme'] ?>/style.css" type="text/css" media="all" />
|
||||||
<link media=all href="<?= $config['SFIABDIRECTORY'] ?>/tableeditor.css" type=text/css rel=stylesheet>
|
<link media=all href="<?= $config['SFIABDIRECTORY'] ?>/theme/<?= $config['theme'] ?>/tableeditor.css" type=text/css rel=stylesheet>
|
||||||
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
|
||||||
rel="stylesheet">
|
rel="stylesheet">
|
||||||
</head>
|
</head>
|
||||||
@ -699,6 +699,7 @@ function send_popup_header($title = '')
|
|||||||
<script type="text/javascript" src="<?= $config['SFIABDIRECTORY'] ?>/js/sfiab.js"></script>
|
<script type="text/javascript" src="<?= $config['SFIABDIRECTORY'] ?>/js/sfiab.js"></script>
|
||||||
|
|
||||||
<script type="text/javascript" src="<?= $config['SFIABDIRECTORY'] ?>/theme/<?= $config['theme'] ?>/theme-script.js"></script>
|
<script type="text/javascript" src="<?= $config['SFIABDIRECTORY'] ?>/theme/<?= $config['theme'] ?>/theme-script.js"></script>
|
||||||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/TableDnD/0.9.1/jquery.tablednd.js" integrity="sha256-d3rtug+Hg1GZPB7Y/yTcRixO/wlI78+2m08tosoRn7A=" crossorigin="anonymous"></script>
|
||||||
<div id="notice_area" class="notice_area"></div>
|
<div id="notice_area" class="notice_area"></div>
|
||||||
|
|
||||||
<?
|
<?
|
||||||
|
@ -103,7 +103,7 @@ if ($q->rowCount()) {
|
|||||||
echo '<br />';
|
echo '<br />';
|
||||||
echo "<form method=\"post\" action=\"register_participants_safety.php\">\n";
|
echo "<form method=\"post\" action=\"register_participants_safety.php\">\n";
|
||||||
echo "<input type=\"hidden\" name=\"action\" value=\"save\">\n";
|
echo "<input type=\"hidden\" name=\"action\" value=\"save\">\n";
|
||||||
echo "<table class=\"tableedit\">\n";
|
echo "<table class=\"tableedit safety_questions\">\n";
|
||||||
$num = 1;
|
$num = 1;
|
||||||
while ($r = $q->fetch(PDO::FETCH_OBJ)) {
|
while ($r = $q->fetch(PDO::FETCH_OBJ)) {
|
||||||
$trclass = ($num % 2 == 0 ? 'odd' : 'even');
|
$trclass = ($num % 2 == 0 ? 'odd' : 'even');
|
||||||
|
@ -2,9 +2,7 @@ html{
|
|||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
body
|
body {
|
||||||
{
|
|
||||||
|
|
||||||
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
font-size: small;
|
font-size: small;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@ -13,20 +11,34 @@ body
|
|||||||
background: #e0e0ff;
|
background: #e0e0ff;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
input, textarea, select
|
input,
|
||||||
{
|
textarea,
|
||||||
|
select {
|
||||||
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
font-size: small;
|
font-size: small;
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
overflow-x:scroll;
|
width: 100%;
|
||||||
|
overflow: scroll;
|
||||||
|
display:block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#main-content {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#page-title {
|
||||||
|
vertical-align: bottom;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tableview {
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-spacing: 1px;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
td {
|
td {
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
@ -72,29 +84,22 @@ table tr.odd {
|
|||||||
padding: 5px;
|
padding: 5px;
|
||||||
font-size: 1.0em;
|
font-size: 1.0em;
|
||||||
box-shadow: 2px 2px 2px black;
|
box-shadow: 2px 2px 2px black;
|
||||||
|
border-radius: 0.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#main {
|
#main {
|
||||||
|
|
||||||
|
|
||||||
background: #f1eeff;
|
background: #f1eeff;
|
||||||
padding: 3px;
|
padding: 10px;
|
||||||
border: 2px solid Silver;
|
|
||||||
min-height: 600px;
|
min-height: 600px;
|
||||||
width: 99%;
|
border-radius: 0 0 0.5rem 0.5rem;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#mainwhere {
|
#mainwhere {
|
||||||
margin-right: 10px;
|
|
||||||
background: #EEEEFF;
|
background: #EEEEFF;
|
||||||
padding: 3px;
|
padding: 0.5rem;
|
||||||
border-top: 2px solid Silver;
|
border-radius: 0.5rem 0.5rem 0 0;
|
||||||
border-left: 2px solid Silver;
|
font-size: 1em;
|
||||||
border-right: 2px solid Silver;
|
|
||||||
font-size: 0.85em;
|
|
||||||
width: 99%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -109,18 +114,21 @@ h1 {
|
|||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 1.6em;
|
font-size: 1.6em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: .3em;
|
margin-bottom: .3em;
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
font-size: 1.4em;
|
font-size: 1.4em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
margin-bottom: .2em;
|
margin-bottom: .2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
h4 {
|
h4 {
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
@ -278,6 +286,15 @@ tr.externalaward {
|
|||||||
color: #0000AA;
|
color: #0000AA;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.safety_questions tr {
|
||||||
|
width: 20px;
|
||||||
|
overflow: scroll;
|
||||||
|
}
|
||||||
|
|
||||||
|
.safety_questions>* {
|
||||||
|
font-size: 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
.adminconfigtable td {
|
.adminconfigtable td {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@ -471,6 +488,7 @@ div.ui-tabs ul.ui-tabs-nav {
|
|||||||
#registration_list {
|
#registration_list {
|
||||||
background: black;
|
background: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
#menu-toggle-button {
|
#menu-toggle-button {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
@ -486,7 +504,7 @@ div.ui-tabs ul.ui-tabs-nav {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#sidebar.active~#main-content {
|
#sidebar.active~#main-content {
|
||||||
opacity: 0.7;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
#menu-toggle-button:hover {
|
#menu-toggle-button:hover {
|
||||||
@ -541,8 +559,8 @@ div.ui-tabs ul.ui-tabs-nav {
|
|||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr 1fr;
|
grid-template-columns: 1fr 1fr;
|
||||||
}
|
}
|
||||||
adminconfigtable
|
|
||||||
.thematic-break{
|
adminconfigtable .thematic-break {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -22,11 +22,6 @@ input {
|
|||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
border-spacing: 1px;
|
border-spacing: 1px;
|
||||||
color: black;
|
color: black;
|
||||||
margin-left: 20px;
|
|
||||||
margin-right: 20px;
|
|
||||||
border: 0px;
|
|
||||||
font-size: 0.8em;
|
|
||||||
;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.tableview td {
|
.tableview td {
|
Loading…
x
Reference in New Issue
Block a user