Skip to content

Commit

Permalink
Deploying to gh-pages from @ 3c3dde1 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
dlen committed Sep 15, 2023
1 parent d55ba4c commit 3900aa8
Show file tree
Hide file tree
Showing 235 changed files with 11,085 additions and 1,679 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

File renamed without changes.
75 changes: 75 additions & 0 deletions css/themes/default/api_authentication.css
Original file line number Diff line number Diff line change
Expand Up @@ -3168,6 +3168,81 @@ html {
.password-complexity .progress-bar.error {
background: #BDBDBD;
}
.password-complexity.with-goal {
position: relative;
margin-bottom: 1.2rem;
}
.password-complexity.with-goal .complexity-text {
display: flex;
font-size: 1rem;
line-height: 1.4rem;
color: #7C7C7C;
}
.password-complexity.with-goal .progress {
box-sizing: border-box;
display: block;
position: relative;
height: 1rem;
width: 100%;
}
.password-complexity.with-goal .progress-bar {
position: absolute;
border-radius: 0.1rem;
height: 0.2rem;
margin-top: 0.3rem;
display: block;
top: 0;
}
.password-complexity.with-goal .progress-bar.background {
width: 100%;
background: #BDBDBD;
z-index: 0;
}
.password-complexity.with-goal .progress-bar.foreground {
width: 0;
background: #DD6A00;
z-index: 10;
}
.password-complexity.with-goal .progress-bar.foreground.required {
background: #D40101;
}
.password-complexity.with-goal .progress-bar.foreground.reached {
background: #009900;
}
.password-complexity.with-goal .progress-bar.target {
width: 0;
background: #FEF0BF;
z-index: 5;
}
.password-complexity.with-goal .progress-bar.target.required {
background: #FFA6A6;
}
.password-complexity.with-goal .target-entropy {
position: absolute;
top: 0.7rem;
width: 0;
height: 0;
border: 6px solid transparent;
border-top: 0;
border-bottom-color: #BDBDBD;
}
.password-complexity.with-goal .target-entropy.recommended {
border-bottom-color: #DD6A00;
}
.password-complexity.with-goal .target-entropy.required {
border-bottom-color: #D40101;
}
.password-complexity.with-goal .target-entropy.reached {
border-bottom-color: #009900;
}
.password-complexity.with-goal .target-entropy .tooltip {
position: absolute;
top: -0.3rem;
left: -1rem;
width: 2rem;
height: 1.2rem;
z-index: 20;
}
.password-hints {
margin: 0.5em 0 1em 0;
}
Expand Down
192 changes: 192 additions & 0 deletions css/themes/default/ext_app.css
Original file line number Diff line number Diff line change
Expand Up @@ -4708,6 +4708,123 @@ iframe.cachette {
.chips.new {
background-color: #2894DF;
}
.range-wrapper {
width: 100%;
display: flex;
flex-direction: column;
gap: 0.8rem;
padding-bottom: 2rem;
}
.range-wrapper .range-labels {
display: flex;
width: 100%;
}
.range-wrapper .range-labels label {
font-size: 1.4rem;
font-weight: 700;
flex: 1 1 0;
}
.range-wrapper .range-labels label:first-child {
color: #A40000;
text-align: left;
}
.range-wrapper .range-labels label:last-child {
color: #0EAA00;
text-align: right;
}
.range-wrapper .range-input-wrapper {
position: relative;
display: flex;
flex-direction: column;
gap: 1.6rem;
}
.range-wrapper .range-input-wrapper .range-input {
height: 1rem;
width: 100%;
background: linear-gradient(to right, #A40000, #FFA724, #0EAA00);
border-radius: 0.5rem;
appearance: none;
outline: none;
}
.range-wrapper .range-input-wrapper .range-input::-webkit-slider-container {
min-block-size: 1rem;
}
.range-wrapper .range-input-wrapper .range-input::-webkit-slider-runnable-track {
height: 1rem;
}
.range-wrapper .range-input-wrapper .range-input::-webkit-slider-thumb {
appearance: none;
position: relative;
z-index: 1;
width: 1.6rem;
height: 1.6rem;
border-radius: 0.8rem;
background: #F8F8F8;
border: 0.1rem solid #E0E0E0;
transform: translate(-0.2rem, -0.3rem);
cursor: pointer;
}
.range-wrapper .range-input-wrapper .range-options {
display: flex;
justify-content: space-around;
writing-mode: horizontal-tb;
width: inherit;
text-align: center;
}
.range-wrapper .range-input-wrapper .range-options .range-option {
position: absolute;
padding: 0;
transform: translateX(-50%);
cursor: pointer;
white-space: nowrap;
}
.range-wrapper .range-input-wrapper .range-options .range-option:hover {
font-weight: 700;
}
.range-wrapper .range-input-wrapper .range-options .range-option::before {
content: '';
position: absolute;
display: block;
top: -2.5rem;
left: 50%;
width: 0.8rem;
height: 0.8rem;
border-radius: 0.4rem;
background: rgba(255, 255, 255, 0.5);
z-index: 0;
transform: translateX(-50%);
}
.range-wrapper .range-input-wrapper .range-options .range-option.range-option--active {
font-weight: 700;
color: #000000;
padding: 0.3rem 0.6rem;
background: #F8F8F8;
border: 0.1rem solid #E0E0E0;
margin-top: -0.4rem;
border-radius: 0.3rem;
}
.range-wrapper .range-input-wrapper .range-options .range-option.range-option--active::before {
display: none;
}
.range-wrapper .range-input-wrapper .range-options .range-option:first-child {
text-align: left;
transform: translateX(0%);
}
.range-wrapper .range-input-wrapper .range-options .range-option:first-child::before {
content: '';
left: 0.1rem;
transform: translateX(0);
}
.range-wrapper .range-input-wrapper .range-options .range-option:last-child {
text-align: right;
transform: translateX(-100%);
}
.range-wrapper .range-input-wrapper .range-options .range-option:last-child::before {
content: '';
left: unset;
right: 0.1rem;
transform: translateX(0);
}
.panel.aside .activity div.actions {
margin-top: 1.6rem;
text-align: center;
Expand Down Expand Up @@ -5246,6 +5363,81 @@ iframe.cachette {
.password-complexity .progress-bar.error {
background: #BDBDBD;
}
.password-complexity.with-goal {
position: relative;
margin-bottom: 1.2rem;
}
.password-complexity.with-goal .complexity-text {
display: flex;
font-size: 1rem;
line-height: 1.4rem;
color: #7C7C7C;
}
.password-complexity.with-goal .progress {
box-sizing: border-box;
display: block;
position: relative;
height: 1rem;
width: 100%;
}
.password-complexity.with-goal .progress-bar {
position: absolute;
border-radius: 0.1rem;
height: 0.2rem;
margin-top: 0.3rem;
display: block;
top: 0;
}
.password-complexity.with-goal .progress-bar.background {
width: 100%;
background: #BDBDBD;
z-index: 0;
}
.password-complexity.with-goal .progress-bar.foreground {
width: 0;
background: #DD6A00;
z-index: 10;
}
.password-complexity.with-goal .progress-bar.foreground.required {
background: #D40101;
}
.password-complexity.with-goal .progress-bar.foreground.reached {
background: #009900;
}
.password-complexity.with-goal .progress-bar.target {
width: 0;
background: #FEF0BF;
z-index: 5;
}
.password-complexity.with-goal .progress-bar.target.required {
background: #FFA6A6;
}
.password-complexity.with-goal .target-entropy {
position: absolute;
top: 0.7rem;
width: 0;
height: 0;
border: 6px solid transparent;
border-top: 0;
border-bottom-color: #BDBDBD;
}
.password-complexity.with-goal .target-entropy.recommended {
border-bottom-color: #DD6A00;
}
.password-complexity.with-goal .target-entropy.required {
border-bottom-color: #D40101;
}
.password-complexity.with-goal .target-entropy.reached {
border-bottom-color: #009900;
}
.password-complexity.with-goal .target-entropy .tooltip {
position: absolute;
top: -0.3rem;
left: -1rem;
width: 2rem;
height: 1.2rem;
z-index: 20;
}
.password-hints {
margin: 0.5em 0 1em 0;
}
Expand Down
75 changes: 75 additions & 0 deletions css/themes/default/ext_authentication.css
Original file line number Diff line number Diff line change
Expand Up @@ -3168,6 +3168,81 @@ html {
.password-complexity .progress-bar.error {
background: #BDBDBD;
}
.password-complexity.with-goal {
position: relative;
margin-bottom: 1.2rem;
}
.password-complexity.with-goal .complexity-text {
display: flex;
font-size: 1rem;
line-height: 1.4rem;
color: #7C7C7C;
}
.password-complexity.with-goal .progress {
box-sizing: border-box;
display: block;
position: relative;
height: 1rem;
width: 100%;
}
.password-complexity.with-goal .progress-bar {
position: absolute;
border-radius: 0.1rem;
height: 0.2rem;
margin-top: 0.3rem;
display: block;
top: 0;
}
.password-complexity.with-goal .progress-bar.background {
width: 100%;
background: #BDBDBD;
z-index: 0;
}
.password-complexity.with-goal .progress-bar.foreground {
width: 0;
background: #DD6A00;
z-index: 10;
}
.password-complexity.with-goal .progress-bar.foreground.required {
background: #D40101;
}
.password-complexity.with-goal .progress-bar.foreground.reached {
background: #009900;
}
.password-complexity.with-goal .progress-bar.target {
width: 0;
background: #FEF0BF;
z-index: 5;
}
.password-complexity.with-goal .progress-bar.target.required {
background: #FFA6A6;
}
.password-complexity.with-goal .target-entropy {
position: absolute;
top: 0.7rem;
width: 0;
height: 0;
border: 6px solid transparent;
border-top: 0;
border-bottom-color: #BDBDBD;
}
.password-complexity.with-goal .target-entropy.recommended {
border-bottom-color: #DD6A00;
}
.password-complexity.with-goal .target-entropy.required {
border-bottom-color: #D40101;
}
.password-complexity.with-goal .target-entropy.reached {
border-bottom-color: #009900;
}
.password-complexity.with-goal .target-entropy .tooltip {
position: absolute;
top: -0.3rem;
left: -1rem;
width: 2rem;
height: 1.2rem;
z-index: 20;
}
.password-hints {
margin: 0.5em 0 1em 0;
}
Expand Down
Loading

0 comments on commit 3900aa8

Please sign in to comment.