A game about forced loneliness, made by TACStudios
at master 69 lines 2.7 kB view raw
1namespace Unity.Multiplayer.Center.Onboarding 2{ 3 /// <summary> 4 /// Common style classes that can be accessed from the quickstart sections 5 /// </summary> 6 public static class StyleConstants 7 { 8 /// <summary> 9 /// Green checkmark to reflect a success 10 /// Applicable to <c>VisualElement</c> to show a success state 11 /// </summary> 12 public const string CheckmarkClass = "checkmark-icon"; 13 14 /// <summary> 15 /// The style that enables to have foldable sections in the getting started tab. 16 /// Applicable to <c>Foldout</c> 17 /// </summary> 18 public const string OnBoardingSectionFoldout = "section-foldout"; 19 20 /// <summary> 21 /// Default style for an onboarding section 22 /// Apply to the top level element (Root) in Onboarding section 23 /// Applicable to <c>VisualElement</c> 24 /// </summary> 25 public const string OnBoardingSectionClass = "onboarding-section"; 26 27 /// <summary> 28 /// Default style for the title of an onboarding section 29 /// Apply to the title visual element (<c>Label</c>) in Onboarding section 30 /// </summary> 31 public const string OnboardingSectionTitle = "onboarding-section-title"; 32 33 /// <summary> 34 /// Button inside the header of a onboarding-section 35 /// Applicable to <c>Button</c> 36 /// </summary> 37 public const string OnBoardingSectionMainButton = "onboarding-section-mainbutton"; 38 39 /// <summary> 40 /// Button inside the header of a onboarding-section 41 /// Applicable to <c>Label</c> 42 /// </summary> 43 public const string OnBoardingShortDescription = "onboarding-section-short-description"; 44 45 /// <summary> 46 /// A button that opens a documentation page 47 /// Applicable to <c>Button</c> 48 /// </summary> 49 public const string DocButtonClass = "doc-button"; 50 51 /// <summary> 52 /// An element that will take all the remaining space in a flex container 53 /// Applicable to <c>VisualElement</c> 54 /// </summary> 55 public const string FlexSpaceClass = "flex-spacer"; 56 57 /// <summary> 58 /// Horizontal flex container 59 /// Applicable to <c>VisualElement</c> 60 /// </summary> 61 public const string HorizontalContainerClass = "horizontal-container"; 62 63 /// <summary> 64 /// Darker background color in dark mode, lighter in light mode 65 /// Applicable to <c>VisualElement</c> 66 /// </summary> 67 public const string HighlightBackgroundClass = "highlight-background-color"; 68 } 69}