-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from realtimeregister/tools
Tools
- Loading branch information
Showing
37 changed files
with
1,193 additions
and
543 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
modules/registrars/realtimeregister/src/Assets/Css/actions.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.action-group { | ||
margin: 0.75rem; | ||
display: flex; | ||
flex-direction: column; | ||
gap: 0.75rem; | ||
} | ||
.action-item { | ||
cursor: pointer; | ||
} |
45 changes: 45 additions & 0 deletions
45
modules/registrars/realtimeregister/src/Assets/Css/autorenew.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
.autorenew .failed_updates, | ||
.autorenew .failed_domains, | ||
.autorenew .processed_updates { | ||
display: none; | ||
} | ||
|
||
.autorenew .processed_updates { | ||
font-weight: bold; | ||
} | ||
|
||
.autorenew .failed_updates { | ||
margin-top: 10px; | ||
color: red; | ||
font-weight: bold; | ||
} | ||
|
||
.autorenew .failed_domains { | ||
max-height: 170px; | ||
overflow-y: scroll; | ||
margin-top: 15px; | ||
background-color: #f7e9e9; | ||
padding: 15px; | ||
border-radius: 3px; | ||
} | ||
|
||
.autorenew .failed_domains p { | ||
margin-top: 10px; | ||
margin-bottom: 0; | ||
} | ||
|
||
.autorenew .failed_domains p:first-child { | ||
margin-top: 0; | ||
} | ||
|
||
.autorenew .amount { | ||
font-weight: bold; | ||
} | ||
|
||
#renew_form .submit { | ||
margin: 1rem 0; | ||
} | ||
|
||
.autorenew .is-active { | ||
display: block; | ||
} |
53 changes: 53 additions & 0 deletions
53
modules/registrars/realtimeregister/src/Assets/Css/general.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
@keyframes move { | ||
0% { | ||
background-position: 0 0; | ||
} | ||
100% { | ||
background-position: 50px 50px; | ||
} | ||
} | ||
|
||
.rtr-progress-bar { | ||
display: none; | ||
background-color: #f1f0e8; | ||
position: relative; | ||
height: 30px; | ||
overflow: hidden; | ||
border-radius: 3px; | ||
} | ||
|
||
.rtr-progress-bar .progress-label { | ||
color: white; | ||
text-align: center; | ||
height: 30px; | ||
background-color: #2261a3; | ||
width: 5%; | ||
line-height: 30px; | ||
position: relative; | ||
} | ||
|
||
.rtr-progress-bar .progress-label .complete:after { | ||
display: none; | ||
} | ||
|
||
.rtr-progress-bar .progress-label:after { | ||
content: ""; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
bottom: 0; | ||
right: 0; | ||
z-index: 1; | ||
background-size: 50px 50px; | ||
background-image: linear-gradient( | ||
45deg, | ||
rgba(255, 255, 255, 0.2) 25%, | ||
transparent 25%, | ||
transparent 50%, | ||
rgba(255, 255, 255, 0.2) 50%, | ||
rgba(255, 255, 255, 0.2) 75%, | ||
transparent 75%, | ||
transparent | ||
); | ||
animation: move 2s linear infinite; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.