mirror of
https://github.com/google/nomulus.git
synced 2025-06-27 06:44:51 +02:00
mv com/google/domain/registry google/registry
This change renames directories in preparation for the great package rename. The repository is now in a broken state because the code itself hasn't been updated. However this should ensure that git correctly preserves history for each file.
This commit is contained in:
parent
a41677aea1
commit
5012893c1d
2396 changed files with 0 additions and 0 deletions
50
java/google/registry/ui/css/BUILD
Normal file
50
java/google/registry/ui/css/BUILD
Normal file
|
@ -0,0 +1,50 @@
|
|||
package(default_visibility = ["//java/com/google/domain/registry:registry_project"])
|
||||
|
||||
load("//third_party/closure/stylesheets:closure_css_library.bzl", "closure_css_library")
|
||||
load("//third_party/closure/stylesheets:closure_css_binary.bzl", "closure_css_binary")
|
||||
|
||||
|
||||
filegroup(
|
||||
name = "css_files",
|
||||
srcs = glob(["*.css"]),
|
||||
)
|
||||
|
||||
closure_css_library(
|
||||
name = "kd_components_lib",
|
||||
srcs = ["kd_components.css"],
|
||||
)
|
||||
|
||||
|
||||
closure_css_library(
|
||||
name = "registry_lib",
|
||||
srcs = [
|
||||
"console.css",
|
||||
"forms.css",
|
||||
"registry.css",
|
||||
],
|
||||
deps = [":kd_components_lib"],
|
||||
)
|
||||
|
||||
closure_css_library(
|
||||
name = "registrar_lib",
|
||||
srcs = [
|
||||
"contact-settings.css",
|
||||
"contact-us.css",
|
||||
"dashboard.css",
|
||||
"epp.css",
|
||||
"resources.css",
|
||||
"security-settings.css",
|
||||
],
|
||||
deps = [":registry_lib"],
|
||||
)
|
||||
|
||||
closure_css_binary(
|
||||
name = "registrar_bin",
|
||||
deps = [":registrar_lib"],
|
||||
)
|
||||
|
||||
closure_css_binary(
|
||||
name = "registrar_dbg",
|
||||
debug = 1,
|
||||
deps = [":registrar_lib"],
|
||||
)
|
102
java/google/registry/ui/css/console.css
Normal file
102
java/google/registry/ui/css/console.css
Normal file
|
@ -0,0 +1,102 @@
|
|||
.description {
|
||||
display: block;
|
||||
clear: both;
|
||||
font-size: 12px;
|
||||
color: #999;
|
||||
line-height: 140%;
|
||||
}
|
||||
|
||||
.whoAreYou {
|
||||
width: 50%;
|
||||
margin: 5em auto;
|
||||
}
|
||||
|
||||
/* Console disabled page. */
|
||||
.whoAreYou-disabled {
|
||||
width: 50%;
|
||||
margin: 5em auto;
|
||||
}
|
||||
|
||||
.whoAreYou-disabled p img {
|
||||
display: block;
|
||||
margin: 3em auto;
|
||||
}
|
||||
|
||||
.whoAreYou-disabled h1 {
|
||||
border-top: solid 1px #ebebeb;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
/* XXX: Should be re-enabled when search works. */
|
||||
#kd-search {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* XXX: Should be generalized for use throughout console. */
|
||||
div.domain-registrar-contact div.tooltip {
|
||||
visibility: hidden;
|
||||
/* XXX: Should have auto-width. */
|
||||
width: 110px;
|
||||
left: -55px;
|
||||
height: 1em;
|
||||
white-space: nowrap;
|
||||
position: relative;
|
||||
color: white;
|
||||
background: #2d2d2d;
|
||||
padding: 0.5em;
|
||||
z-index: 2000;
|
||||
margin-top: -30px;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
div.domain-registrar-contact div.tooltip .pointer {
|
||||
outline: none;
|
||||
display: block;
|
||||
position: relative;
|
||||
bottom: -7px;
|
||||
left: 55px;
|
||||
margin: 0 0 0 -5px;
|
||||
width: 0;
|
||||
height: 0;
|
||||
line-height: 0px;
|
||||
font-size: 0px;
|
||||
/* This sets the tooptip pointer color */
|
||||
border-bottom: transparent;
|
||||
border-left: 5px solid transparent;
|
||||
border-right: 5px solid transparent;
|
||||
border-top: 5px solid #2d2d2d;
|
||||
}
|
||||
|
||||
.reg-cryingAndroid {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.reg-bullets {
|
||||
padding-left: 1em;
|
||||
list-style: disc inside;
|
||||
}
|
||||
|
||||
.reg-payment p {
|
||||
max-width: 45em;
|
||||
}
|
||||
|
||||
/* Note: Empty definitions are for class name minimization. */
|
||||
|
||||
.reg-payment-form {}
|
||||
|
||||
.reg-payment-form-method {}
|
||||
|
||||
.reg-payment-form-method.kd-formerror {
|
||||
border: none;
|
||||
}
|
||||
|
||||
.reg-payment-form-method-info {}
|
||||
|
||||
.reg-payment-form-submit {}
|
||||
|
||||
.reg-payment-form-loader {
|
||||
vertical-align: middle;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.reg-payment-again {}
|
58
java/google/registry/ui/css/contact-settings.css
Normal file
58
java/google/registry/ui/css/contact-settings.css
Normal file
|
@ -0,0 +1,58 @@
|
|||
.domain-registrar-contacts {
|
||||
vertical-align: top;
|
||||
text-align: top;
|
||||
}
|
||||
|
||||
.domain-registrar-contact {
|
||||
display: table-cell;
|
||||
padding-right: 4em;
|
||||
padding-bottom: 2em;
|
||||
}
|
||||
|
||||
.domain-registrar-contact div {
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
|
||||
.domain-registrar-contact + br {
|
||||
display: table-row;
|
||||
}
|
||||
|
||||
.domain-registrar-contact-name {
|
||||
font-weight: bold;
|
||||
display: inline;
|
||||
padding-right: 30px;
|
||||
}
|
||||
|
||||
.domain-registrar-contact-name i {
|
||||
float: right;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.domain-registrar-contact-name i.domain-registrar-contact-visible-in-whois {
|
||||
background: url('/assets/images/visibleOn_16.png') no-repeat right;
|
||||
}
|
||||
|
||||
/** Postal style for address. */
|
||||
td.setting-group-compact div.contact-address-city,
|
||||
td.setting-group-compact div.contact-address-state,
|
||||
td.setting-group-compact div.contact-address-zip,
|
||||
td.setting-group-compact div.contact-address-cc {
|
||||
width: initial;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
/** Back to regular box flow for phone. */
|
||||
td.setting-group-compact input#phoneNumber {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vertical align shim for contact tds. Using border here instead of
|
||||
* padding since this is a table and padding is ignored.
|
||||
*
|
||||
* @see td.setting p
|
||||
*/
|
||||
td.domain-registrar-contacts {
|
||||
border-top: solid 0.5em white;
|
||||
}
|
17
java/google/registry/ui/css/contact-us.css
Normal file
17
java/google/registry/ui/css/contact-us.css
Normal file
|
@ -0,0 +1,17 @@
|
|||
#domain-registrar-contact-us
|
||||
.description * {
|
||||
color: #999 !important;
|
||||
line-height: 140%;
|
||||
}
|
||||
|
||||
#domain-registrar-contact-us p {
|
||||
margin-bottom: 1.5em;
|
||||
line-height: 140%;
|
||||
}
|
||||
|
||||
#registry-phone {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding: 1em;
|
||||
background-color: #eaeaea;
|
||||
}
|
63
java/google/registry/ui/css/dashboard.css
Normal file
63
java/google/registry/ui/css/dashboard.css
Normal file
|
@ -0,0 +1,63 @@
|
|||
#domain-registrar-dashboard {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#domain-registrar-dashboard p {
|
||||
color: grey;
|
||||
}
|
||||
|
||||
#domain-registrar-dashboard super {
|
||||
color: red;
|
||||
font-size: 0.5em;
|
||||
vertical-align: super;
|
||||
font-weight: bold;
|
||||
padding-left: 0.5em;
|
||||
}
|
||||
|
||||
#domain-registrar-dashboard table {
|
||||
border-collapse: collapse;
|
||||
margin: 3em auto;
|
||||
}
|
||||
|
||||
#domain-registrar-dashboard div.dashbox {
|
||||
width: 230px;
|
||||
min-width: 230px;
|
||||
height: 260px;
|
||||
padding: 1em 2em;
|
||||
margin: 0 1.5em;
|
||||
color: #777;
|
||||
border-radius: 10px;
|
||||
background-color: #f9f9f9;
|
||||
text-align: center;
|
||||
line-height: 140%;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
#domain-registrar-dashboard div.dashbox h2 {
|
||||
font-weight: bold;
|
||||
color: #555;
|
||||
margin: 2em auto 1em auto;
|
||||
}
|
||||
|
||||
#domain-registrar-dashboard div.dashbox a {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
#domain-registrar-dashboard table img {
|
||||
display: block;
|
||||
margin: 1em auto;
|
||||
padding: 1em auto;
|
||||
}
|
||||
|
||||
#domain-registrar-dashboard table + p {
|
||||
margin: 2em auto;
|
||||
width: 75%;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#domain-registrar-dashboard p img {
|
||||
margin-right: 1em;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
}
|
1
java/google/registry/ui/css/demo_css.css
Normal file
1
java/google/registry/ui/css/demo_css.css
Normal file
File diff suppressed because one or more lines are too long
61
java/google/registry/ui/css/epp.css
Normal file
61
java/google/registry/ui/css/epp.css
Normal file
|
@ -0,0 +1,61 @@
|
|||
/* EPP styles */
|
||||
|
||||
.reg-add:before {
|
||||
content: '+ ';
|
||||
}
|
||||
|
||||
.contact h1 {
|
||||
width: 650px;
|
||||
background: url('/assets/images/ic_contacts_blue_12.png') no-repeat 0 0.7em;
|
||||
padding-left: 2em;
|
||||
margin-left: 0.75em;
|
||||
}
|
||||
|
||||
/* Remove button. */
|
||||
#contact-postalInfo table button {
|
||||
margin: 1em;
|
||||
float: right;
|
||||
}
|
||||
|
||||
#contact-postalInfoHeader {
|
||||
color: #777;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#contact-postalInfo .info {
|
||||
font-size: 11px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
#contact-postalInfo table {
|
||||
margin: 0 0 1em 0;
|
||||
padding: 1em;
|
||||
}
|
||||
|
||||
#contact-postalInfo tr {
|
||||
margin: auto 2em;
|
||||
}
|
||||
|
||||
#contact-postalInfo tr:first-child {
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
#contact-postalInfo tr:last-child {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
#contact-postalInfo table,
|
||||
#contact-postalInfo input[readonly],
|
||||
#contact-postalInfo textarea[readonly] {
|
||||
background-color: #f1f1f1;
|
||||
border-color: #f1f1f1;
|
||||
}
|
||||
|
||||
#contact-postalInfoHeader button {
|
||||
display: block;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
#contact-postalInfoHeader button[disabled] {
|
||||
display: none;
|
||||
}
|
182
java/google/registry/ui/css/forms.css
Normal file
182
java/google/registry/ui/css/forms.css
Normal file
|
@ -0,0 +1,182 @@
|
|||
form.set,
|
||||
form.item,
|
||||
div.set,
|
||||
div.item {
|
||||
width: 700px;
|
||||
}
|
||||
|
||||
.set table,
|
||||
.item table {
|
||||
width: 100%;
|
||||
border-collapse: separate;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
/* Going to play some games here to get section leads to float left,
|
||||
* followed by their next rows in floated right column. */
|
||||
.item table,
|
||||
.set table {
|
||||
padding-top: 2em;
|
||||
margin-top: 1em;
|
||||
border-top: solid 1px #ebebeb;
|
||||
}
|
||||
|
||||
.set tr,
|
||||
.item tr {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
min-height: 28px;
|
||||
}
|
||||
|
||||
.set td,
|
||||
.item td {
|
||||
padding: 0.5em 0;
|
||||
}
|
||||
|
||||
.item tr.section-lead th h2,
|
||||
.item tr.section-lead th h3 {
|
||||
font-size: 1em;
|
||||
font-weight: bold;
|
||||
color: #15c;
|
||||
}
|
||||
|
||||
tr.subsection h3::first-letter {
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.set td:first-child,
|
||||
.item td:first-child {
|
||||
width: 260px;
|
||||
}
|
||||
|
||||
.set td:first-child span.description,
|
||||
.item td:first-child span.description {
|
||||
width: 170px;
|
||||
}
|
||||
|
||||
|
||||
/* Setting groups and labels. */
|
||||
|
||||
.set .kd-settings-pane-section td {
|
||||
border-bottom: solid 1px #ebebeb;
|
||||
}
|
||||
|
||||
td.setting-group-compact {
|
||||
padding-left: 0.5em;
|
||||
}
|
||||
|
||||
.setting-group-compact div {
|
||||
line-height: 140%;
|
||||
}
|
||||
|
||||
.item label {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.set label + input {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
.kd-settings-pane-section td label.setting-label {
|
||||
padding-top: 0.5em;
|
||||
}
|
||||
|
||||
td.label {
|
||||
width: 70%;
|
||||
}
|
||||
|
||||
/* Compact sequence of labels. */
|
||||
.setting label + label {
|
||||
margin-left: 2em;
|
||||
}
|
||||
|
||||
form label,
|
||||
.setting-label {
|
||||
line-height: 13px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.setting label {
|
||||
display: inline-block;
|
||||
font-weight: normal;
|
||||
margin-right: 1em;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
div.checkbox-with-label {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
|
||||
/* Controls */
|
||||
|
||||
.set input:not([type="submit"]),
|
||||
.item input:not([type="submit"]) {
|
||||
width: 250px;
|
||||
padding: 0.5em;
|
||||
}
|
||||
|
||||
.item input[type='checkbox'],
|
||||
.item input[type='radio'] {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
input[readonly] {
|
||||
border: solid 1px white;
|
||||
margin-left: 0.5em;
|
||||
padding-top: 0 !important;
|
||||
padding-left: 0 !important;
|
||||
}
|
||||
|
||||
.setting input[type=radio] {
|
||||
}
|
||||
|
||||
.setting input[type=radio],
|
||||
.setting input[type=checkbox] {
|
||||
position: relative;
|
||||
top: -3px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Consistent top space in second column items. Input elements need to
|
||||
* switch from using margin to padding when they're edit toggled, so that
|
||||
* the text doesn't move. The other elements are just defined here for
|
||||
* consistency.
|
||||
* @see td.domain-registrar-contacts
|
||||
*/
|
||||
input[readonly],
|
||||
td.setting p {
|
||||
margin-top: 0.5em;
|
||||
margin-left: 0.5em;
|
||||
}
|
||||
|
||||
.item button[disabled] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
div.checkbox-with-label input[type='checkbox']
|
||||
div.checkbox-with-label input[type='checkbox'] + label {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
/*
|
||||
* 3 line street has just inputs in a row
|
||||
* @see td padding-bottom
|
||||
*/
|
||||
.setting input + input,
|
||||
.setting div {
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.setting div {
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
||||
.setting input[type='checkbox'] {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.setting input + button,
|
||||
.setting-item-list {
|
||||
margin-left: 0.5em;
|
||||
}
|
4737
java/google/registry/ui/css/kd_components.css
Normal file
4737
java/google/registry/ui/css/kd_components.css
Normal file
File diff suppressed because it is too large
Load diff
10
java/google/registry/ui/css/registrar_imports_raw.css
Normal file
10
java/google/registry/ui/css/registrar_imports_raw.css
Normal file
|
@ -0,0 +1,10 @@
|
|||
@import 'kd_components.css';
|
||||
@import 'registry.css';
|
||||
@import 'console.css';
|
||||
@import 'forms.css';
|
||||
@import 'epp.css';
|
||||
@import 'dashboard.css';
|
||||
@import 'resources.css';
|
||||
@import 'security-settings.css';
|
||||
@import 'contact-settings.css';
|
||||
@import 'contact-us.css';
|
306
java/google/registry/ui/css/registry.css
Normal file
306
java/google/registry/ui/css/registry.css
Normal file
|
@ -0,0 +1,306 @@
|
|||
body {
|
||||
overflow-x: hidden;
|
||||
overflow-y: hidden !important;
|
||||
font-family: Arial, sans-serif;
|
||||
font-size: 13px;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
h1 {
|
||||
width: 100%;
|
||||
font-size: 1.5em;
|
||||
/* Bottom padding to get the paragraph text and Billing & resources to
|
||||
* line up. */
|
||||
padding: 0.75em 0.75em 3px 0;
|
||||
}
|
||||
|
||||
#kd-social a,
|
||||
#kd-social a:visited,
|
||||
#reg-content a,
|
||||
#reg-content a:visited {
|
||||
color: #15c;
|
||||
}
|
||||
|
||||
pre {
|
||||
font-family: monospace;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
table {
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
||||
td {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
/* Set some explicit form styles so there's no jumping during toggle
|
||||
* from readonly to editable. */
|
||||
input, textarea {
|
||||
border-style: solid;
|
||||
border-color: lightgrey;
|
||||
border-width: 1px;
|
||||
}
|
||||
|
||||
input[readonly], textarea[readonly] {
|
||||
resize: none;
|
||||
border-color: white;
|
||||
}
|
||||
|
||||
textarea {
|
||||
margin: 1em 0;
|
||||
font-family: monospace;
|
||||
font-size: 13px;
|
||||
border: solid 1px #ddd;
|
||||
}
|
||||
|
||||
textarea[readonly] {
|
||||
background-color: #eaeaea;
|
||||
}
|
||||
|
||||
hr {
|
||||
border: none;
|
||||
border-top: solid 1px #ebebeb;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#kd-googlebar {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
min-width: 985px;
|
||||
padding: 1em 2em;
|
||||
white-space: nowrap;
|
||||
height: 37px;
|
||||
}
|
||||
|
||||
#kd-googlebar a.logo,
|
||||
#kd-searchfield,
|
||||
#kd-searchbutton {
|
||||
position: static;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#kd-search {
|
||||
width: 470px;
|
||||
margin-top: 2px;
|
||||
padding-top: 0px;
|
||||
padding-left: 3em;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
#kd-search form {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
input#kd-searchfield,
|
||||
#kd-searchbutton {
|
||||
height: 29px;
|
||||
border: none;
|
||||
}
|
||||
|
||||
input#kd-searchfield {
|
||||
width: 400px;
|
||||
font-size: 12pt;
|
||||
}
|
||||
|
||||
#kd-searchbutton {
|
||||
border-top-left-radius: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
}
|
||||
|
||||
#kd-social {
|
||||
position: fixed;
|
||||
top: 1.25em;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
#kd-social .kd-name {
|
||||
float: none;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.kd-name a:before {
|
||||
content: ' | ';
|
||||
color: #999;
|
||||
}
|
||||
|
||||
/* Logo */
|
||||
a.logo {
|
||||
vertical-align: top;
|
||||
font-size: 30px;
|
||||
font-weight: 300;
|
||||
font-family: "open sans", sans-serif;
|
||||
color: #63666a;
|
||||
}
|
||||
|
||||
a.logo * {
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
a.logo img {
|
||||
/* Get the baseline of "Google" and "Registry" to line up. */
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
/* Reg prefix. */
|
||||
|
||||
.reg-user-id {
|
||||
display: block;
|
||||
height: 1.5em;
|
||||
padding: 0;
|
||||
margin-top: -10px;
|
||||
}
|
||||
|
||||
/* Misc. */
|
||||
|
||||
#loady {
|
||||
position: absolute;
|
||||
top: 5px;
|
||||
right: -30px;
|
||||
}
|
||||
|
||||
.eppResponse {
|
||||
color: #333;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.kd-appbar {
|
||||
padding: 1em 0;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
li.kd-menulistitem {
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
#reg-nav.shown {
|
||||
display: inherit;
|
||||
}
|
||||
|
||||
/* Begin fixed headers and nav selectors */
|
||||
#reg-app {
|
||||
float: left;
|
||||
margin-top: 64px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.kd-butterbar {
|
||||
position: absolute;
|
||||
display: block;
|
||||
margin-left: inherit;
|
||||
}
|
||||
|
||||
.kd-butterbar.shown {
|
||||
-webkit-transform: translateX(-50%);
|
||||
-ms-transform: translateX(-50%);
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.kd-appbar {
|
||||
padding: 0.75em 0;
|
||||
}
|
||||
|
||||
#reg-app-buttons {
|
||||
/* Same as in reg-content below. Lines the left edge of the
|
||||
appbuttons and content area with the 'R' in Registry. */
|
||||
padding-left: 173px;
|
||||
}
|
||||
|
||||
.kd-content-sidebar {
|
||||
margin-left: 15px;
|
||||
padding-left: 0;
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
#reg-nav {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 128px;
|
||||
width: 155px;
|
||||
margin: 0 25px 0 0;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
#reg-navlist li {
|
||||
margin-left: 0;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
#reg-navlist li ul {
|
||||
margin-left: 0em;
|
||||
padding-left: 2em;
|
||||
}
|
||||
|
||||
.reg-navlist-sub {
|
||||
padding-left: 3px;
|
||||
}
|
||||
|
||||
#reg-navlist a {
|
||||
margin-left: 0;
|
||||
padding-left: 2em;
|
||||
border-left: solid 3px white;
|
||||
}
|
||||
|
||||
#reg-navlist li ul,
|
||||
#reg-navlist a {
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
#reg-navlist li ul li {
|
||||
margin-left: -2em;
|
||||
}
|
||||
|
||||
#reg-navlist li ul li a {
|
||||
padding-left: 3em;
|
||||
}
|
||||
|
||||
#reg-navlist a.domain-active-nav {
|
||||
border-left: solid 3px red;
|
||||
font-weight: bold;
|
||||
color: #bf624B;
|
||||
}
|
||||
|
||||
#reg-content-and-footer {
|
||||
position: absolute;
|
||||
top: 105px;
|
||||
left: 173px;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding: 25px 0 1em 0;
|
||||
overflow-y: scroll !important;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
#reg-content {
|
||||
margin-bottom: 100px;
|
||||
}
|
||||
|
||||
#reg-content,
|
||||
.pageFooter {
|
||||
width: 75%;
|
||||
}
|
||||
|
||||
#debug {
|
||||
position: absolute;
|
||||
top: 127px;
|
||||
right: 0;
|
||||
width: 15%;
|
||||
border-left: solid 1px grey;
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
/* End fixed headers and nav selectors */
|
||||
|
||||
#reg-content,
|
||||
#reg-login {
|
||||
min-height: 400px;
|
||||
}
|
||||
|
||||
.reg-select {
|
||||
margin-left: 23px;
|
||||
}
|
28
java/google/registry/ui/css/resources.css
Normal file
28
java/google/registry/ui/css/resources.css
Normal file
|
@ -0,0 +1,28 @@
|
|||
#domain-registrar-resources h2 {
|
||||
border-top: solid 1px #eee;
|
||||
padding-top: 1em;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
#domain-registrar-resources h2 img {
|
||||
vertical-align: middle;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
#domain-registrar-resources h2 + p,
|
||||
#domain-registrar-resources button,
|
||||
#domain-registrar-resources em {
|
||||
margin-left: 34px; /* Folder icon + ^^ 10px more */
|
||||
}
|
||||
|
||||
#domain-registrar-resources h2 + p {
|
||||
padding-top: 1em;
|
||||
}
|
||||
|
||||
#domain-registrar-resources a {
|
||||
color: white !important;
|
||||
}
|
||||
|
||||
#domain-registrar-resources em {
|
||||
color: red;
|
||||
}
|
67
java/google/registry/ui/css/security-settings.css
Normal file
67
java/google/registry/ui/css/security-settings.css
Normal file
|
@ -0,0 +1,67 @@
|
|||
/** Security Settings */
|
||||
#domain-registrar-phone-passcode,
|
||||
#domain-registrar-phone-passcode input {
|
||||
color: #3D9200;
|
||||
}
|
||||
|
||||
div#ips div.ip {
|
||||
width: 209px;
|
||||
}
|
||||
|
||||
#newIp {
|
||||
width: 187px;
|
||||
margin-left: 0.5em;
|
||||
}
|
||||
|
||||
div#ips.editing div.ip input,
|
||||
div#ips.editing div.ip button[type=button] {
|
||||
display: inline-block;
|
||||
height: 27px;
|
||||
line-height: 27px;
|
||||
background: #ebebeb;
|
||||
vertical-align: top;
|
||||
border: none;
|
||||
border-bottom: solid 3px white;
|
||||
}
|
||||
|
||||
div#ips.editing div.ip input {
|
||||
width: 169px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
color: #555;
|
||||
padding-left: 5px ! important;
|
||||
}
|
||||
|
||||
div#ips.editing div.ip input[readonly] {
|
||||
margin-left: 0.5em;
|
||||
}
|
||||
|
||||
div#ips.editing div.ip button[type=button] {
|
||||
float: right;
|
||||
margin-left: -2px;
|
||||
width: 30px;
|
||||
min-width: 30px;
|
||||
height: 30px;
|
||||
color: grey;
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
div#ips.editing div.ip button[type=button]:hover {
|
||||
-webkit-box-shadow: none;
|
||||
-moz-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
div#ips.editing div.ip button[type=button] i {
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
div#ips.editing .kd-errormessage {
|
||||
margin-left: 0.5em;
|
||||
}
|
||||
|
||||
.item td.certificate h4 {
|
||||
margin-top: 1em;
|
||||
text-transform: lowercase;
|
||||
border: solid 1px red;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue