first commit
This commit is contained in:
@@ -0,0 +1,140 @@
|
||||
.collapse {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.hide {
|
||||
visibility: hidden;
|
||||
}
|
||||
|
||||
.row {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.row-reverse {
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
|
||||
.column {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.flex-container {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.grow {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.grow-max {
|
||||
flex-grow: 10;
|
||||
}
|
||||
|
||||
.parent-vertical-center{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.elements-vertical-center{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.horizontally-centered {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.align-end {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.align-center{
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.align-vertical-center{
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.align-start {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.main {
|
||||
margin-top: 10px;
|
||||
padding-left: 25px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
|
||||
.title {
|
||||
margin: 10px 0px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.error {
|
||||
color: #FF0000;
|
||||
}
|
||||
|
||||
.anchor {
|
||||
color: #2196F3;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
background-color: transparent;
|
||||
border-width: 0px;
|
||||
}
|
||||
|
||||
.classic-button {
|
||||
padding: 7px;
|
||||
margin-top: 10px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
.alert-label {
|
||||
color: red;
|
||||
}
|
||||
|
||||
.footer {
|
||||
position: absolute;
|
||||
margin: 20px 10px 0px 10px;
|
||||
bottom: 5px;
|
||||
}
|
||||
|
||||
.container {
|
||||
padding: 10px;
|
||||
border-bottom-width: 1px;
|
||||
border-bottom-color: #999999;
|
||||
}
|
||||
|
||||
.container.last {
|
||||
border-bottom-width: 0px;
|
||||
}
|
||||
|
||||
.sub-section {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
Button {
|
||||
cursor: link;
|
||||
}
|
||||
|
||||
Label {
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
TextField {
|
||||
margin-left: 0px;
|
||||
margin-top: 3px;
|
||||
margin-right: 10px;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
|
||||
Toggle {
|
||||
margin-left: 0px;
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: bdf4f3d05dd541fa829ffa06bfbc8d0c
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
@@ -0,0 +1,36 @@
|
||||
@import "Base.uss";
|
||||
|
||||
#container {
|
||||
margin-top: 20px;
|
||||
margin-right: 20px;
|
||||
margin-bottom: 20px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
#footer {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
margin-top: 15px;
|
||||
margin-left: 20px;
|
||||
}
|
||||
|
||||
#title {
|
||||
-unity-font-style: bold;
|
||||
margin-bottom: 20px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
#progressControlsContainer {
|
||||
height: 15px;
|
||||
}
|
||||
|
||||
Label {
|
||||
white-space: normal;
|
||||
margin-bottom: 20px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
Button {
|
||||
width: 80px;
|
||||
height: 25px;
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 3073089003718474ab284d743790fbb2
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
@@ -0,0 +1,28 @@
|
||||
@import "Base.uss";
|
||||
|
||||
.organization-section {
|
||||
margin: 10px 0px;
|
||||
}
|
||||
|
||||
.organization-right {
|
||||
width: auto;
|
||||
min-width: 70px;
|
||||
margin-left: 0px;
|
||||
}
|
||||
|
||||
.organization-left{
|
||||
flex: auto;
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
#openUnityDashboardButton {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
height: 30px;
|
||||
color: white;
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
#joinSingleOrganizationButton{
|
||||
height: 19px;
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 642639f75f2dfbd4ab01e6708b58f304
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
@@ -0,0 +1,5 @@
|
||||
@import "Base.uss";
|
||||
|
||||
#Status {
|
||||
color: red;
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e05b9be8556f5ae41aa78140b83146d5
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
@@ -0,0 +1,25 @@
|
||||
@import "Base.uss";
|
||||
|
||||
.sign-in-buttons {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
#iconUnity, #iconEmail {
|
||||
width: 32px;
|
||||
height: 32px
|
||||
}
|
||||
|
||||
#unityIDButton {
|
||||
color: white;
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
#signUpLabel{
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
#privacyStatement {
|
||||
align-self: flex-start;
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: c673e4e20ea67ab40a4661592f51aa99
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
@@ -0,0 +1,32 @@
|
||||
@import "Base.uss";
|
||||
|
||||
#windowContainer {
|
||||
height: 100%;
|
||||
flex-grow: 1;
|
||||
flex-direction: row;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
#loginContainer TextField {
|
||||
flex-direction: column;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
#emailNotification, #passwordNotification {
|
||||
height: 15px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
#progressContainer {
|
||||
height: 15px;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
#signIn,
|
||||
#back {
|
||||
width: 125px;
|
||||
}
|
||||
|
||||
#signUpNeededNotificationLabel{
|
||||
color: red;
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: b37675bc656348c429a6c56b2eda1345
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
@@ -0,0 +1,31 @@
|
||||
@import "Base.uss";
|
||||
|
||||
#TabView,
|
||||
#ContentArea {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
#TabArea {
|
||||
margin-top: 10px;
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
.tab-button {
|
||||
padding-bottom: 2px;
|
||||
margin-bottom: 0px;
|
||||
border-width: 0px;
|
||||
border-radius: 0px;
|
||||
|
||||
font-size: 15px;
|
||||
background-color: rgba(1, 1, 1, 0);
|
||||
}
|
||||
|
||||
#TabArea .tab-button:hover {
|
||||
border-bottom-color: #2196F3;
|
||||
border-bottom-width: 0.25px;
|
||||
}
|
||||
|
||||
#TabArea .tab-button.active {
|
||||
border-bottom-color: #2196F3;
|
||||
border-bottom-width: 1.5px;
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 88da5407899aaaf448a40c85888108ae
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
@@ -0,0 +1,26 @@
|
||||
@import "Base.uss";
|
||||
|
||||
#configurationServerInfoSection {
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
#spinnerLabel {
|
||||
margin-left: 2px;
|
||||
}
|
||||
|
||||
#connectedLabel {
|
||||
-unity-text-align: middle-right;
|
||||
}
|
||||
|
||||
#credentialsOk {
|
||||
-unity-text-align: middle-right;
|
||||
}
|
||||
|
||||
#plasticConfigurationTitle {
|
||||
font-size: 18px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.credentials {
|
||||
width: 265px;
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 1cd69f37df825af4385cd9efe745fc30
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
@@ -0,0 +1,11 @@
|
||||
@import "Base.uss";
|
||||
|
||||
#wait {
|
||||
margin-top: 20px;
|
||||
padding-top: 40px;
|
||||
}
|
||||
|
||||
#progressContainer {
|
||||
padding-top: 3px;
|
||||
margin-right: 50%;
|
||||
}
|
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 90945345530e7174eb4f0575a0bec0bf
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
Reference in New Issue
Block a user