slight refinments for inputs and
This commit is contained in:
parent
07eeb32caf
commit
0d2c5696c5
@ -467,7 +467,7 @@ instance Yesod UniWorX where
|
|||||||
$(widgetFile "standalone/showHide")
|
$(widgetFile "standalone/showHide")
|
||||||
$(widgetFile "standalone/inputs")
|
$(widgetFile "standalone/inputs")
|
||||||
withUrlRenderer $(hamletFile "templates/default-layout-wrapper.hamlet")
|
withUrlRenderer $(hamletFile "templates/default-layout-wrapper.hamlet")
|
||||||
|
|
||||||
-- The page to be redirected to when authentication is required.
|
-- The page to be redirected to when authentication is required.
|
||||||
authRoute _ = Just $ AuthR LoginR
|
authRoute _ = Just $ AuthR LoginR
|
||||||
|
|
||||||
|
|||||||
@ -1,8 +1,6 @@
|
|||||||
.tab-group {
|
.tab-group {
|
||||||
/* box-shadow: 0 0 0 18px white, 0 0 0 20px #b3b7c1; */
|
|
||||||
border-top: 2px solid #dcdcdc;
|
border-top: 2px solid #dcdcdc;
|
||||||
padding-top: 30px;
|
padding-top: 30px;
|
||||||
margin-top: 40px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.tab-group-openers {
|
.tab-group-openers {
|
||||||
|
|||||||
@ -68,11 +68,7 @@
|
|||||||
<td>Do 18.04.18
|
<td>Do 18.04.18
|
||||||
<td>NotGraded
|
<td>NotGraded
|
||||||
<tr .no-hover.no-stripe>
|
<tr .no-hover.no-stripe>
|
||||||
<td>
|
<td colspan="4">
|
||||||
<td>
|
|
||||||
<td>
|
|
||||||
<td>
|
|
||||||
<td>
|
|
||||||
<a href="/course/S2018/ffp/ex/new" #modal-toggler__new-sheet>Neues Übungsblatt anlegen
|
<a href="/course/S2018/ffp/ex/new" #modal-toggler__new-sheet>Neues Übungsblatt anlegen
|
||||||
<div .tab data-tab-name="Übungsgruppen">
|
<div .tab data-tab-name="Übungsgruppen">
|
||||||
<h3 .tab-title>Übungsgruppen
|
<h3 .tab-title>Übungsgruppen
|
||||||
@ -87,16 +83,14 @@
|
|||||||
<th>Anmeldung bis
|
<th>Anmeldung bis
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>Gruppe 1
|
||||||
<a href="#">Gruppe 1
|
|
||||||
<td>Montag 10:00 - 12:00
|
<td>Montag 10:00 - 12:00
|
||||||
<td>N/A
|
<td>N/A
|
||||||
<td>2/10
|
<td>2/10
|
||||||
<td>Tutor1 Tutoren
|
<td>Tutor1 Tutoren
|
||||||
<td>Do 21.02.2019, 19:00
|
<td>Do 21.02.2019, 19:00
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>Gruppe 2
|
||||||
<a href="#">Gruppe 2
|
|
||||||
<td>Montag 12:00 - 14:00
|
<td>Montag 12:00 - 14:00
|
||||||
<td>N/A
|
<td>N/A
|
||||||
<td>0/10
|
<td>0/10
|
||||||
|
|||||||
@ -244,4 +244,3 @@ a.btn.btn-info:hover,
|
|||||||
.alert-debug {
|
.alert-debug {
|
||||||
background-color: rgb(240, 30, 240);
|
background-color: rgb(240, 30, 240);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -44,26 +44,12 @@ input[type="password"],
|
|||||||
input[type="url"],
|
input[type="url"],
|
||||||
input[type="number"],
|
input[type="number"],
|
||||||
input[type="email"] {
|
input[type="email"] {
|
||||||
/*
|
/* from bulma.css */
|
||||||
background-color: rgba(0, 0, 0, 0.05);
|
|
||||||
padding: 7px 3px 7px;
|
|
||||||
outline: 0;
|
|
||||||
border: 0;
|
|
||||||
border-bottom: 2px solid var(--darkbase);
|
|
||||||
box-shadow: 0 2px 13px rgba(0, 0, 0, 0.05);
|
|
||||||
color: var(--fontbase);
|
|
||||||
transition: all .1s;
|
|
||||||
font-size: 16px;
|
|
||||||
min-width: 400px;
|
|
||||||
*/
|
|
||||||
|
|
||||||
/* from bulma */
|
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
border-color: #dbdbdb;
|
border-color: #dbdbdb;
|
||||||
color: #363636;
|
color: #363636;
|
||||||
box-shadow: inset 0 1px 2px rgba(10,10,10,.1);
|
box-shadow: inset 0 2px 3px 1px rgba(50,50,50,.1);
|
||||||
min-width: 400px;
|
min-width: 400px;
|
||||||
width: 100%;
|
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
border: 1px solid transparent;
|
border: 1px solid transparent;
|
||||||
@ -83,6 +69,12 @@ input[type="email"] {
|
|||||||
|
|
||||||
.form-group--required {
|
.form-group--required {
|
||||||
|
|
||||||
|
label::before {
|
||||||
|
content: '*';
|
||||||
|
position: absolute;
|
||||||
|
left: -14px;
|
||||||
|
}
|
||||||
|
|
||||||
input, textarea {
|
input, textarea {
|
||||||
border-bottom-color: var(--lighterbase);
|
border-bottom-color: var(--lighterbase);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user