Hash :
7fa2d795
Author :
Thomas de Grivel
Date :
2021-12-10T17:28:15
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
/* This file is for your main application CSS */
@import "../node_modules/bootstrap/scss/bootstrap.scss";
@import "../node_modules/font-awesome/scss/font-awesome.scss";
@import "./flash.scss";
/* user */
textarea#user_description,
textarea#organisation_description,
textarea#repository_description {
min-height: 10em;
}
textarea#user_ssh_keys,
textarea#repository_deploy_keys {
font-family: monospace;
min-height: 20em;
overflow-x: scroll;
overflow-y: scroll;
}
pre.ssh_keys {
max-width: 20em;
white-space: pre-wrap;
}
pre.admin_ssh_keys {
max-width: 40em;
white-space: pre-wrap;
}
/* repository */
#repo_title {
a {
text-decoration: none;
color: black;
}
a:hover {
color: blue;
}
}
.file-content {
border: solid 1px #ccc;
padding: 1.5em;
margin: 1em;
width: 94%;
}
.invalid-feedback {
display: inherit;
}
/* LiveView specific classes for your customization */
.phx-no-feedback.invalid-feedback,
.phx-no-feedback .invalid-feedback {
display: none;
}
.phx-click-loading {
opacity: 0.5;
transition: opacity 1s ease-out;
}
.phx-disconnected{
cursor: wait;
}
.phx-disconnected *{
pointer-events: none;
}
.phx-modal {
opacity: 1!important;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0,0,0);
background-color: rgba(0,0,0,0.4);
}
.phx-modal-content {
background-color: #fefefe;
margin: 15vh auto;
padding: 20px;
border: 1px solid #888;
width: 80%;
}
.phx-modal-close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.phx-modal-close:hover,
.phx-modal-close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}