namespace Unity.Multiplayer.Center.Window.UI
{
///
/// Style common to the multiplayer center, excepted for the getting started tab (which needs shared style)
///
internal static class StyleClasses
{
/// Game spec standard question
public const string QuestionView = "question-view";
/// Game spec mandatory question, highlighted
public const string MandatoryQuestion = "mandatory-question";
/// Description of game spec section
public const string QuestionText = "question-text";
/// Part of game spec questionnaire that contains several questions
public const string QuestionSection = "question-section";
/// Part of game spec questionnaire that contains several questions
public const string QuestionSectionNoScrollbar = "question-section__no-scrollbar";
/// Thicker button to go to a next step; e.g. Install packages
public const string NextStepButton = "next-step-button";
/// The splitview that is used in Recommendation and Getting Started Tab
public const string MainSplitView = "main-split-view";
/// The right container of the main split view
public const string MainSplitViewRight = "main-split-view-right";
/// The left container of the main split view
public const string MainSplitViewLeft = "main-split-view-left";
/// The style for the Headline that is used in the main views
public const string ViewHeadline = "view-headline";
}
}