Initial Commit
This commit is contained in:
parent
53eb92e9af
commit
270ab7d11f
15341 changed files with 700234 additions and 0 deletions
|
@ -0,0 +1,52 @@
|
|||
/* AlertBox Styles */
|
||||
|
||||
.alert-box {
|
||||
flex: var(--fixed-size);
|
||||
}
|
||||
|
||||
.alert-box__content {
|
||||
padding: var(--standard-padding);
|
||||
}
|
||||
|
||||
.alert-box__text {
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
.alert-box__button-box {
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.alert-box__button {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.alert-box__icon {
|
||||
flex: var(--fixed-size);
|
||||
width: var(--icon-size);
|
||||
height: var(--icon-size);
|
||||
margin-right: var(--icon-standard-margin);
|
||||
}
|
||||
|
||||
.dark .alert-box__icon.icon-info {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/status-info-dark.png");
|
||||
}
|
||||
|
||||
.light .alert-box__icon.icon-info {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/status-info-light.png");
|
||||
}
|
||||
|
||||
.dark .alert-box__icon.icon-warning {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/status-warning-dark.png");
|
||||
}
|
||||
|
||||
.light .alert-box__icon.icon-warning {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/status-warning-light.png");
|
||||
}
|
||||
|
||||
.dark .alert-box__icon.icon-alert {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/status-error-dark.png");
|
||||
}
|
||||
|
||||
.light .alert-box__icon.icon-alert {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/status-error-light.png");
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/AlertBox.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/AlertBox.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 85516056fd2579c45b10c08bc3c52a08
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,100 @@
|
|||
/* BaseChangeEntry Styles */
|
||||
|
||||
.base-change-list-element {
|
||||
height: var(--list-entry-height);
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.base-change-list-element__container {
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.base-change-list-element__buttons,
|
||||
.base-change-list-element__icons {
|
||||
align-items: center;
|
||||
flex: var(--fixed-size);
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.base-change-list-element__button,
|
||||
.base-change-list-element__icon {
|
||||
flex: var(--fixed-size);
|
||||
width: var(--icon-size);
|
||||
height: var(--icon-size);
|
||||
margin-right: var(--icon-standard-margin);
|
||||
}
|
||||
|
||||
.base-change-list-element__container:hover .base-change-list-element__button {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.base-change-list-element__button,
|
||||
.base-change-list-element__container:hover .base-change-list-element__button.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.base-change-list-element__file-name {
|
||||
flex: 0 0 auto;
|
||||
margin: 0 var(--half-standard-margin) 0 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.base-change-list-element__file-path {
|
||||
flex: 0 1 auto;
|
||||
font-size: var(--list-entry-path-font-size);
|
||||
padding: 0;
|
||||
margin: 1px var(--half-standard-margin) 0 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.dark .base-change-list-element__file-path {
|
||||
color: var(--dark-list-entry-path-text-color);
|
||||
}
|
||||
|
||||
.light .base-change-list-element__file-path {
|
||||
color: var(--light-list-entry-path-text-color);
|
||||
}
|
||||
|
||||
/* File status icons */
|
||||
|
||||
.dark .base-change-list-element__icon.added {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/added-file-dark.png");
|
||||
}
|
||||
|
||||
.light .base-change-list-element__icon.added {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/added-file-light.png");
|
||||
}
|
||||
|
||||
.dark .base-change-list-element__icon.moved {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/moved-file-dark.png");
|
||||
}
|
||||
|
||||
.light .base-change-list-element__icon.moved {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/moved-file-light.png");
|
||||
}
|
||||
|
||||
.dark .base-change-list-element__icon.edited {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/edited-file-dark.png");
|
||||
}
|
||||
|
||||
.light .base-change-list-element__icon.edited {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/edited-file-light.png");
|
||||
}
|
||||
|
||||
.dark .base-change-list-element__icon.deleted {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/deleted-file-dark.png");
|
||||
}
|
||||
|
||||
.light .base-change-list-element__icon.deleted {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/deleted-file-light.png");
|
||||
}
|
||||
|
||||
.dark .base-change-list-element__icon.conflicted {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/conflicted-file-dark.png");
|
||||
}
|
||||
|
||||
.light .base-change-list-element__icon.conflicted {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/conflicted-file-light.png");
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 1e9148bf9d78e0943aeac7855e43585e
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,19 @@
|
|||
/* BetterTextField Styles */
|
||||
|
||||
.unity-better-text-field__placeholder {
|
||||
position: absolute;
|
||||
margin: 0;
|
||||
padding: 2px 3px 3px;
|
||||
}
|
||||
|
||||
.dark .unity-better-text-field__placeholder {
|
||||
color: var(--dark-placeholder-text-color);
|
||||
}
|
||||
|
||||
.light .unity-better-text-field__placeholder {
|
||||
color: var(--light-placeholder-text-color);
|
||||
}
|
||||
|
||||
.unity-better-text-field #unity-text-input {
|
||||
overflow: hidden;
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/BetterTextField.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/BetterTextField.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 1526405b75c937f4b9f26bef99e5e692
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,17 @@
|
|||
/* ChangesGroupHeader Styles */
|
||||
|
||||
.changes-group-header__title-bar {
|
||||
flex-direction: row;
|
||||
margin: var(--half-standard-margin) 0;
|
||||
}
|
||||
|
||||
.changes-group-header__name {
|
||||
-unity-text-align: middle-left;
|
||||
-unity-font-style: bold;
|
||||
flex: 1 1 auto;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.changes-group-header__overflow-button {
|
||||
margin-right: 0;
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/ChangesGroupHeader.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/ChangesGroupHeader.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 7f8119d919033424caea4da5a9f91a88
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,29 @@
|
|||
/* ChangesTabPageView Styles */
|
||||
|
||||
.changes-tab-page-view__text-field {
|
||||
/* 36px (3 * 12px lines of text) + 5px in default padding + 1px extra */
|
||||
height: 42px;
|
||||
|
||||
margin: var(--standard-margin) 0 0;
|
||||
}
|
||||
|
||||
.changes-tab-page-view__text-field .unity-text-field__input {
|
||||
-unity-text-align: upper-left;
|
||||
}
|
||||
|
||||
.changes-tab-page-view__publish-button {
|
||||
align-self: center;
|
||||
width: 128px;
|
||||
justify-content: center;
|
||||
margin-top: var(--standard-margin);
|
||||
}
|
||||
|
||||
.changes-tab-page-view__search-bar {
|
||||
margin-bottom: var(--half-standard-margin);
|
||||
margin-top: var(--standard-margin);
|
||||
}
|
||||
|
||||
.changes-tab-page-view__list-view {
|
||||
flex-basis: 288px;
|
||||
margin-bottom: var(--standard-margin);
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/ChangesTabPageView.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/ChangesTabPageView.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 105b0e05b7ff8d147ad5c7aeed41e3b7
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,17 @@
|
|||
/* FloatingDialogue Styles */
|
||||
|
||||
.unity-floating-dialogue {
|
||||
position: absolute;
|
||||
border-width: 1px;
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
.dark .unity-floating-dialogue {
|
||||
background-color: #383838;
|
||||
border-color: rgba(35, 35, 35, 1);
|
||||
}
|
||||
|
||||
.light .unity-floating-dialogue {
|
||||
background-color: #C2C2C2;
|
||||
border-color: rgba(107, 107, 107, 1);
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/FloatingDialogue.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/FloatingDialogue.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: b6078429dfca1ea4ea1b81a864670a1c
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,7 @@
|
|||
/* FloatingMenu Styles */
|
||||
|
||||
.unity-floating-menu {
|
||||
min-width: 144px;
|
||||
min-height: 28px;
|
||||
flex: 1 1 auto;
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/FloatingMenu.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/FloatingMenu.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 04ac82a2c43d10f4790e0c720502e3bf
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,26 @@
|
|||
/* FloatingMenuItem Styles */
|
||||
|
||||
.unity-floating-menu-item {
|
||||
justify-content: center;
|
||||
padding: 0 var(--standard-padding);
|
||||
}
|
||||
|
||||
.dark .unity-floating-menu-item:hover,
|
||||
.dark .unity-floating-menu-item:focus {
|
||||
background-color: var(--dark-button-hover-focus-bg-color);
|
||||
}
|
||||
|
||||
.light .unity-floating-menu-item:hover,
|
||||
.light .unity-floating-menu-item:focus {
|
||||
background-color: var(--light-button-hover-focus-bg-color);
|
||||
}
|
||||
|
||||
.dark .unity-floating-menu-item:active,
|
||||
.dark .unity-floating-menu-item:hover:active {
|
||||
background-color: var(--dark-button-active-bg-color);
|
||||
}
|
||||
|
||||
.light .unity-floating-menu-item:active,
|
||||
.light .unity-floating-menu-item:hover:active {
|
||||
background-color: var(--light-button-active-bg-color);
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/FloatingMenuItem.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/FloatingMenuItem.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 217de72323dece74caf1db54dfacfac5
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,60 @@
|
|||
/* HistoryEntryComponent Styles */
|
||||
|
||||
.history-entry-component__container {
|
||||
margin-top: var(--standard-margin);
|
||||
}
|
||||
|
||||
.history-entry-component__profile-background {
|
||||
flex: var(--fixed-size);
|
||||
width: var(--large-icon-size);
|
||||
height: var(--large-icon-size);
|
||||
margin-right: var(--standard-margin);
|
||||
border-radius: var(--half-large-icon-size);
|
||||
background-color: #018d98;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.history-entry-component__profile-initial {
|
||||
padding: 0;
|
||||
-unity-text-align: middle-center;
|
||||
font-size: var(--profile-icon-font-size);
|
||||
}
|
||||
|
||||
.history-entry-component__top-row {
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: var(--large-icon-size);
|
||||
}
|
||||
|
||||
.history-entry-component__top-row .row {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.history-entry-component__author-name,
|
||||
.history-entry-component__timestamp,
|
||||
.history-entry-component__revision-id,
|
||||
.history-entry-component__commit-message {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.history-entry-component__commit-message {
|
||||
white-space: normal;
|
||||
margin: var(--standard-margin) 0;
|
||||
}
|
||||
|
||||
.history-entry-component__changed-files-count {
|
||||
-unity-text-align: middle-left;
|
||||
-unity-font-style: bold;
|
||||
flex: 1 1 auto;
|
||||
padding-left: 0;
|
||||
margin-top: var(--standard-margin);
|
||||
}
|
||||
|
||||
.history-entry-component .divider-horizontal {
|
||||
margin-top: var(--standard-margin);
|
||||
}
|
||||
|
||||
.history-entry-component__changed-files {
|
||||
flex-basis: 288px;
|
||||
margin-bottom: var(--standard-margin);
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 60eaebd1e96ce8641b789b30cdcda09b
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,99 @@
|
|||
/* IconButton Styles */
|
||||
|
||||
.unity-icon-button {
|
||||
flex: var(--fixed-size);
|
||||
width: var(--icon-size);
|
||||
height: var(--icon-size);
|
||||
border-radius: var(--half-icon-size);
|
||||
background-color: var(--no-color);
|
||||
}
|
||||
|
||||
.dark .unity-icon-button.btn-overflow {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/more-vert-dark.png");
|
||||
}
|
||||
|
||||
.light .unity-icon-button.btn-overflow {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/more-vert-light.png");
|
||||
}
|
||||
|
||||
.dark .unity-icon-button.btn-undo {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/undo-dark.png");
|
||||
}
|
||||
|
||||
.light .unity-icon-button.btn-undo {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/undo-light.png");
|
||||
}
|
||||
|
||||
.dark .unity-icon-button.btn-revert {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/revert-asset-dark.png");
|
||||
}
|
||||
|
||||
.light .unity-icon-button.btn-revert {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/revert-asset-light.png");
|
||||
}
|
||||
|
||||
.dark .unity-icon-button.btn-back {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/back-dark.png");
|
||||
}
|
||||
|
||||
.light .unity-icon-button.btn-back {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/back-light.png");
|
||||
}
|
||||
|
||||
.dark .unity-icon-button.btn-show {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/show-dark.png");
|
||||
}
|
||||
|
||||
.light .unity-icon-button.btn-show {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/show-light.png");
|
||||
}
|
||||
|
||||
.dark .unity-icon-button.btn-merge {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/merge-dark.png");
|
||||
}
|
||||
|
||||
.light .unity-icon-button.btn-merge {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/merge-light.png");
|
||||
}
|
||||
|
||||
.dark .unity-icon-button.btn-choose-remote {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/choose-remote-dark.png");
|
||||
}
|
||||
|
||||
.light .unity-icon-button.btn-choose-remote {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/choose-remote-light.png");
|
||||
}
|
||||
|
||||
.dark .unity-icon-button.btn-choose-mine {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/choose-mine-dark.png");
|
||||
}
|
||||
|
||||
.light .unity-icon-button.btn-choose-mine {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/choose-mine-light.png");
|
||||
}
|
||||
|
||||
.dark .unity-icon-button.btn-diff {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/diff-dark.png");
|
||||
}
|
||||
|
||||
.light .unity-icon-button.btn-diff {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/diff-light.png");
|
||||
}
|
||||
|
||||
.dark .unity-icon-button:focus {
|
||||
background-color: var(--dark-button-hover-focus-bg-color);
|
||||
}
|
||||
|
||||
.light .unity-icon-button:focus {
|
||||
background-color: var(--light-button-hover-focus-bg-color);
|
||||
}
|
||||
|
||||
.dark .unity-icon-button:active,
|
||||
.dark .unity-icon-button:hover:active {
|
||||
background-color: var(--dark-button-active-bg-color);
|
||||
}
|
||||
|
||||
.light .unity-icon-button:active,
|
||||
.light .unity-icon-button:hover:active {
|
||||
background-color: var(--light-button-active-bg-color);
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/IconButton.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/IconButton.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 9ca8b1bbe392af949a4fc3018e3c886e
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,19 @@
|
|||
/* IconTextButton Styles */
|
||||
|
||||
.unity-icon-text-button {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.unity-icon-text-button__image {
|
||||
flex: var(--fixed-size);
|
||||
width: var(--icon-size);
|
||||
height: var(--icon-size);
|
||||
}
|
||||
|
||||
.light .unity-icon-text-button.icon-publish .unity-icon-text-button__image {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/publish-light.png");
|
||||
}
|
||||
|
||||
.dark .unity-icon-text-button.icon-publish .unity-icon-text-button__image {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/publish-dark.png");
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/IconTextButton.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/IconTextButton.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 8bc914db5850edc46bde70b885ad2aa8
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,19 @@
|
|||
/* ListNotice Styles */
|
||||
|
||||
.list-notice__container {
|
||||
height: 32px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.list-notice__icon {
|
||||
flex: var(--fixed-size);
|
||||
width: var(--icon-size);
|
||||
height: var(--icon-size);
|
||||
background-color: darkslategrey;
|
||||
margin-right: var(--icon-standard-margin);
|
||||
}
|
||||
|
||||
.list-notice__text {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/ListNotice.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/ListNotice.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 82f99126211a3fe44a96c111768733a3
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,13 @@
|
|||
/* MainView Styles */
|
||||
|
||||
.main-page-view {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.main-page-view__top-bar {
|
||||
margin: var(--half-standard-margin) var(--standard-margin);
|
||||
}
|
||||
|
||||
.main-page-view__tab-view {
|
||||
margin: 0 var(--standard-margin);
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/MainPageView.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/MainPageView.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 7af1720245a987d4b87094fc00ed8a94
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,21 @@
|
|||
/* Paginator Styles */
|
||||
|
||||
.paginator__content {
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin: var(--half-standard-margin) 0;
|
||||
}
|
||||
|
||||
.paginator__page-text {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.paginator__back-button {
|
||||
border-width: 0;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.paginator__forwards-button {
|
||||
border-width: 0;
|
||||
margin-right: 0;
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/Paginator.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/Paginator.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 5b40af3dccff15f47b68101c84087977
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,20 @@
|
|||
/* ProgressView Styles */
|
||||
|
||||
.progress-view__label {
|
||||
margin: var(--standard-margin);
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.progress-view__button {
|
||||
margin: 0 var(--standard-margin) 0 0;
|
||||
}
|
||||
|
||||
.progress-view__progress-bar {
|
||||
margin: 0 var(--standard-margin);
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.progress-view__progress-bar .unity-progress-bar__progress {
|
||||
background-image: none;
|
||||
background-color: #388AFD;
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/ProgressView.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/ProgressView.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 6057b0c434179144c9316241a7bc8f2f
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,68 @@
|
|||
/* SearchBar Styles */
|
||||
|
||||
.unity-search-bar {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.unity-search-bar__search-field {
|
||||
width: auto;
|
||||
flex: 1 1 auto;
|
||||
font-size: 12px;
|
||||
padding: 1px;
|
||||
border-radius: 2px;
|
||||
margin: 1px 0;
|
||||
}
|
||||
|
||||
.unity-search-bar__search-field #unity-text-input {
|
||||
padding: 0;
|
||||
margin-top: 1px;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.unity-search-bar__search-field #unity-search {
|
||||
flex: var(--fixed-size);
|
||||
height: var(--icon-size);
|
||||
width: var(--icon-size);
|
||||
}
|
||||
|
||||
.dark .unity-search-bar__search-field #unity-search {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/search-dark.png");
|
||||
}
|
||||
|
||||
.light .unity-search-bar__search-field #unity-search {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/search-light.png");
|
||||
}
|
||||
|
||||
.unity-search-bar__search-field #unity-cancel {
|
||||
flex: var(--fixed-size);
|
||||
height: var(--icon-size);
|
||||
width: var(--icon-size);
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.dark .unity-search-bar__search-field #unity-cancel {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/clear-dark.png");
|
||||
}
|
||||
|
||||
.light .unity-search-bar__search-field #unity-cancel {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/clear-light.png");
|
||||
}
|
||||
|
||||
.unity-search-bar__search-field #unity-cancel.unity-search-field-base__cancel-button--off {
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
.unity-search-bar__placeholder {
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
left: 20px;
|
||||
}
|
||||
|
||||
.dark .unity-search-bar__placeholder {
|
||||
color: var(--dark-placeholder-text-color);
|
||||
}
|
||||
|
||||
.light .unity-search-bar__placeholder {
|
||||
color: var(--light-placeholder-text-color);
|
||||
}
|
||||
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/SearchBar.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/SearchBar.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 099a86cc24e116c41815daf0c97e89ff
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,15 @@
|
|||
/* StartPageView Styles */
|
||||
|
||||
.start-page-view__title {
|
||||
margin: var(--standard-margin) var(--standard-margin);
|
||||
white-space: normal;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.start-page-view__button {
|
||||
margin: 0 var(--standard-margin);
|
||||
width: 100%;
|
||||
max-width: 128px;
|
||||
height: 24px;
|
||||
align-self: center;
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/StartPageView.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/StartPageView.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: a06574b6de1fa064e95a5635a03b712d
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,42 @@
|
|||
.unity-tab-view {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.unity-tab-view__content-container {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
|
||||
.unity-tab-view__toolbar {
|
||||
flex-direction: row;
|
||||
border-bottom-width: 1px;
|
||||
}
|
||||
|
||||
.dark .unity-tab-view__toolbar {
|
||||
border-color: var(--divider-dark);
|
||||
}
|
||||
|
||||
.light .unity-tab-view__toolbar {
|
||||
border-color: var(--divider-light);
|
||||
}
|
||||
|
||||
.unity-text-button.unity-tab-view__tab-header {
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
border-color: rgba(0, 0, 0, 0);
|
||||
border-width: 0;
|
||||
border-bottom-width: 2px;
|
||||
padding: 3px 0 2px;
|
||||
margin-right: var(--standard-margin);
|
||||
}
|
||||
|
||||
.unity-text-button.unity-tab-view__tab-header.active {
|
||||
border-color: #357CC0;
|
||||
background-color: var(--no-color);
|
||||
}
|
||||
|
||||
.dark .unity-text-button.unity-tab-view__tab-header.active:active {
|
||||
background-color: var(--no-color);
|
||||
}
|
||||
|
||||
.light .unity-text-button.unity-tab-view__tab-header.active:active {
|
||||
background-color: var(--no-color);
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/TabView.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/TabView.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 85edc31085b5b4446a25358f42c67726
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,25 @@
|
|||
/* TextButton Styles */
|
||||
|
||||
.unity-text-button {
|
||||
border-width: 0;
|
||||
padding: 3px 5px 2px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.dark .unity-text-button:focus {
|
||||
background-color: var(--dark-button-hover-focus-bg-color);
|
||||
}
|
||||
|
||||
.light .unity-text-button:focus {
|
||||
background-color: var(--light-button-hover-focus-bg-color);
|
||||
}
|
||||
|
||||
.dark .unity-text-button:active,
|
||||
.dark .unity-text-button:hover:active {
|
||||
background-color: var(--dark-button-active-bg-color);
|
||||
}
|
||||
|
||||
.light .unity-text-button:active,
|
||||
.light .unity-text-button:hover:active {
|
||||
background-color: var(--light-button-active-bg-color);
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/TextButton.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/TextButton.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 2d4eaba42964d3d42b83dcaaf21d31ad
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,6 @@
|
|||
/* ToggleableChangeEntry Styles */
|
||||
|
||||
.toggleable-change-list-element__toggle {
|
||||
padding: 0;
|
||||
margin: 0 var(--half-standard-margin) 0 var(--quarter-standard-margin);
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: ab00137e5c7e8d04eb464b23bd11c36d
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,36 @@
|
|||
/* TopBar Styles */
|
||||
|
||||
.top-bar {
|
||||
flex: var(--fixed-size);
|
||||
}
|
||||
|
||||
.top-bar__icon {
|
||||
width: var(--icon-size);
|
||||
height: var(--icon-size);
|
||||
margin-right: var(--icon-standard-margin);
|
||||
}
|
||||
|
||||
.top-bar__container,
|
||||
.top-bar__back {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.top-bar__overflow-button {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.top-bar__back-button {
|
||||
margin-right: var(--icon-standard-margin);
|
||||
}
|
||||
|
||||
.top-bar__back {
|
||||
margin-right: var(--standard-margin);
|
||||
}
|
||||
|
||||
.dark .top-bar__icon {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/collaborate-dark.png");
|
||||
}
|
||||
|
||||
.light .top-bar__icon {
|
||||
background-image: resource("Packages/com.unity.collab-proxy/Editor/Assets/Icons/collaborate-light.png");
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/TopBar.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/TopBar.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: d5e79efd9cf63ef468d0d843ce3bd96f
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
|
@ -0,0 +1,77 @@
|
|||
/* Global Styles */
|
||||
|
||||
/* can't use :root here for some reason -- the variables get lost when switching between changes and history tabs */
|
||||
* {
|
||||
--standard-margin: 8px;
|
||||
--half-standard-margin: 4px;
|
||||
--quarter-standard-margin: 2px;
|
||||
--standard-padding: var(--standard-margin);
|
||||
|
||||
--icon-size: 16px;
|
||||
--half-icon-size: 8px;
|
||||
--large-icon-size: 22px;
|
||||
--half-large-icon-size: 11px;
|
||||
--icon-standard-margin: var(--half-standard-margin);
|
||||
|
||||
--list-entry-height: 25px;
|
||||
--list-entry-path-font-size: 10px;
|
||||
--dark-list-entry-path-text-color: #949494;
|
||||
--light-list-entry-path-text-color: #6B6B6B;
|
||||
|
||||
--profile-icon-font-size: 13px;
|
||||
|
||||
--no-color: rgba(0, 0, 0, 0);
|
||||
--dark-placeholder-text-color: #7D7D7D;
|
||||
--light-placeholder-text-color: #7D7D7D;
|
||||
|
||||
/* Colours used for custom buttons that don't have a border */
|
||||
--dark-button-hover-focus-bg-color: #303030;
|
||||
--light-button-hover-focus-bg-color: #B2B2B2;
|
||||
--dark-button-active-bg-color: #484848;
|
||||
--light-button-active-bg-color: #8F8F8F;
|
||||
|
||||
--divider-dark: #5F5F5F;
|
||||
--divider-light: #9A9A9A;
|
||||
|
||||
--fixed-size: 0 0 auto;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.divider-horizontal {
|
||||
height: 1px;
|
||||
}
|
||||
|
||||
.dark .divider-horizontal {
|
||||
background-color: var(--divider-dark);
|
||||
}
|
||||
|
||||
.light .divider-horizontal {
|
||||
background-color: var(--divider-light);
|
||||
}
|
||||
|
||||
.divider-vertical {
|
||||
width: 1px;
|
||||
}
|
||||
|
||||
.dark .divider-vertical {
|
||||
background-color: var(--divider-dark);
|
||||
}
|
||||
|
||||
.light .divider-vertical {
|
||||
background-color: var(--divider-light);
|
||||
}
|
||||
|
||||
.row {
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.column {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.grow {
|
||||
flex-grow: 1;
|
||||
}
|
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/styles.uss.meta
generated
Normal file
11
Library/PackageCache/com.unity.collab-proxy@1.3.9/Editor/Assets/Styles/styles.uss.meta
generated
Normal file
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: c7accf430e3622a47899ea1ca1cb7d63
|
||||
ScriptedImporter:
|
||||
internalIDToNameTable: []
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
script: {fileID: 12385, guid: 0000000000000000e000000000000000, type: 0}
|
||||
disableValidation: 0
|
Loading…
Add table
Add a link
Reference in a new issue