| summaryrefslogtreecommitdiff | 
diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/css/src/map-editor/toolbox.scss | 4 | ||||
| -rw-r--r-- | src/map-editor/src/View/MainMenu.elm | 2 | ||||
| -rw-r--r-- | src/map-editor/src/View/MessageBoard/Error.elm | 4 | ||||
| -rw-r--r-- | src/map-editor/src/View/MessageBoard/Help.elm | 4 | ||||
| -rw-r--r-- | src/map-editor/src/View/MessageBoard/Help/Guide.elm | 2 | ||||
| -rw-r--r-- | src/map-editor/src/View/SubMenu.elm | 2 | ||||
| -rw-r--r-- | src/map-editor/src/View/SubMenu/Settings.elm | 4 | ||||
| -rw-r--r-- | src/map-editor/src/View/SubMenu/Status.elm | 4 | ||||
| -rw-r--r-- | src/map-editor/src/View/SubMenu/Status/CharacterInfo.elm | 2 | ||||
| -rw-r--r-- | src/map-editor/src/View/SubMenu/Tiles.elm | 4 | ||||
| -rw-r--r-- | src/map-editor/src/View/Toolbox.elm | 10 | 
11 files changed, 21 insertions, 21 deletions
| diff --git a/src/css/src/map-editor/toolbox.scss b/src/css/src/map-editor/toolbox.scss index 16d54e8..2398796 100644 --- a/src/css/src/map-editor/toolbox.scss +++ b/src/css/src/map-editor/toolbox.scss @@ -3,7 +3,7 @@  @import 'constants'; -.map-toolbox +.toolbox  {     left: 0;     top: $BELOW-MAIN-MENU; @@ -22,7 +22,7 @@     justify-content: space-between;  } -.map-toolbox-actions +.toolbox-actions  {     display: flex;     flex-flow: row wrap; diff --git a/src/map-editor/src/View/MainMenu.elm b/src/map-editor/src/View/MainMenu.elm index fd5801e..317250d 100644 --- a/src/map-editor/src/View/MainMenu.elm +++ b/src/map-editor/src/View/MainMenu.elm @@ -29,7 +29,7 @@ get_html : (Html.Html Struct.Event.Type)  get_html =     (Html.div        [ -         (Html.Attributes.class "map-main-menu") +         (Html.Attributes.class "main-menu")        ]        (           ( diff --git a/src/map-editor/src/View/MessageBoard/Error.elm b/src/map-editor/src/View/MessageBoard/Error.elm index 5e961a7..947586e 100644 --- a/src/map-editor/src/View/MessageBoard/Error.elm +++ b/src/map-editor/src/View/MessageBoard/Error.elm @@ -24,8 +24,8 @@ get_html : (  get_html model error =     (Html.div        [ -         (Html.Attributes.class "map-message-board"), -         (Html.Attributes.class "map-error") +         (Html.Attributes.class "message-board"), +         (Html.Attributes.class "error")        ]        [           (Html.text (Struct.Error.to_string error)) diff --git a/src/map-editor/src/View/MessageBoard/Help.elm b/src/map-editor/src/View/MessageBoard/Help.elm index 4225518..3bc8f3c 100644 --- a/src/map-editor/src/View/MessageBoard/Help.elm +++ b/src/map-editor/src/View/MessageBoard/Help.elm @@ -22,8 +22,8 @@ get_html : Struct.Model.Type -> (Html.Html Struct.Event.Type)  get_html model =     (Html.div        [ -         (Html.Attributes.class "map-message-board"), -         (Html.Attributes.class "map-message-board-help") +         (Html.Attributes.class "message-board"), +         (Html.Attributes.class "message-board-help")        ]        (           case model.help_request of diff --git a/src/map-editor/src/View/MessageBoard/Help/Guide.elm b/src/map-editor/src/View/MessageBoard/Help/Guide.elm index 526abf0..36d1e50 100644 --- a/src/map-editor/src/View/MessageBoard/Help/Guide.elm +++ b/src/map-editor/src/View/MessageBoard/Help/Guide.elm @@ -17,7 +17,7 @@ get_header_html title =        []        [           (Html.div -            [(Html.Attributes.class "map-help-guide-icon")] +            [(Html.Attributes.class "help-guide-icon")]              []           ),           (Html.text title) diff --git a/src/map-editor/src/View/SubMenu.elm b/src/map-editor/src/View/SubMenu.elm index 6962620..89ea92f 100644 --- a/src/map-editor/src/View/SubMenu.elm +++ b/src/map-editor/src/View/SubMenu.elm @@ -42,7 +42,7 @@ get_html model =     case (Struct.UI.try_getting_displayed_tab model.ui) of        (Just tab) ->           (Html.div -            [(Html.Attributes.class "map-sub-menu")] +            [(Html.Attributes.class "sub-menu")]              [(get_inner_html model tab)]           ) diff --git a/src/map-editor/src/View/SubMenu/Settings.elm b/src/map-editor/src/View/SubMenu/Settings.elm index 1661053..bd0561c 100644 --- a/src/map-editor/src/View/SubMenu/Settings.elm +++ b/src/map-editor/src/View/SubMenu/Settings.elm @@ -30,8 +30,8 @@ get_html : Struct.Model.Type -> (Html.Html Struct.Event.Type)  get_html model =     (Html.div        [ -         (Html.Attributes.class "map-tabmenu-content"), -         (Html.Attributes.class "map-tabmenu-settings-tab") +         (Html.Attributes.class "tabmenu-content"), +         (Html.Attributes.class "tabmenu-settings-tab")        ]        [           (scale_button (0.75) "Zoom -"), diff --git a/src/map-editor/src/View/SubMenu/Status.elm b/src/map-editor/src/View/SubMenu/Status.elm index 795b603..69f5842 100644 --- a/src/map-editor/src/View/SubMenu/Status.elm +++ b/src/map-editor/src/View/SubMenu/Status.elm @@ -22,8 +22,8 @@ get_html : Struct.Model.Type -> (Html.Html Struct.Event.Type)  get_html model =     (Html.div        [ -         (Html.Attributes.class "map-footer-tabmenu-content"), -         (Html.Attributes.class "map-footer-tabmenu-content-status") +         (Html.Attributes.class "tabmenu-content"), +         (Html.Attributes.class "tabmenu-content-status")        ]        [           (case (Struct.UI.get_previous_action model.ui) of diff --git a/src/map-editor/src/View/SubMenu/Status/CharacterInfo.elm b/src/map-editor/src/View/SubMenu/Status/CharacterInfo.elm index 646bb53..6bfca87 100644 --- a/src/map-editor/src/View/SubMenu/Status/CharacterInfo.elm +++ b/src/map-editor/src/View/SubMenu/Status/CharacterInfo.elm @@ -25,7 +25,7 @@ get_html : (  get_html player_ix char =     (Html.div        [ -         (Html.Attributes.class "map-tabmenu-character-info") +         (Html.Attributes.class "tabmenu-character-info")        ]        [           (Html.text ("Focusing:")), diff --git a/src/map-editor/src/View/SubMenu/Tiles.elm b/src/map-editor/src/View/SubMenu/Tiles.elm index 4c5c71a..c2bb171 100644 --- a/src/map-editor/src/View/SubMenu/Tiles.elm +++ b/src/map-editor/src/View/SubMenu/Tiles.elm @@ -46,8 +46,8 @@ get_html : (Html.Html Struct.Event.Type)  get_html =     (Html.div        [ -         (Html.Attributes.class "map-tabmenu-content"), -         (Html.Attributes.class "map-tabmenu-tiles-tab") +         (Html.Attributes.class "tabmenu-content"), +         (Html.Attributes.class "tabmenu-tiles-tab")        ]        (List.map           (get_icon_html) diff --git a/src/map-editor/src/View/Toolbox.elm b/src/map-editor/src/View/Toolbox.elm index cea1192..ff64b56 100644 --- a/src/map-editor/src/View/Toolbox.elm +++ b/src/map-editor/src/View/Toolbox.elm @@ -19,7 +19,7 @@ get_template_icon_html : Struct.Tile.Instance -> (Html.Html Struct.Event.Type)  get_template_icon_html template =     (Html.div        [ -         (Html.Attributes.class "map-toolbox-template"), +         (Html.Attributes.class "toolbox-template"),           (Html.Attributes.class "map-tiled"),           (Html.Attributes.class "map-tile"),           (Html.Attributes.class "map-tile-variant-0") @@ -53,7 +53,7 @@ get_mode_button current mode =  get_modes_menu_html : Struct.Toolbox.Type -> (Html.Html Struct.Event.Type)  get_modes_menu_html tb =     (Html.div -      [(Html.Attributes.class "map-toolbox-modes")] +      [(Html.Attributes.class "toolbox-modes")]        (List.map           (get_mode_button (Struct.Toolbox.get_mode tb))           (Struct.Toolbox.get_modes) @@ -86,7 +86,7 @@ get_shape_button current shape =  get_shapes_menu_html : Struct.Toolbox.Type -> (Html.Html Struct.Event.Type)  get_shapes_menu_html tb =     (Html.div -      [(Html.Attributes.class "map-toolbox-shapes")] +      [(Html.Attributes.class "toolbox-shapes")]        (List.map           (get_shape_button (Struct.Toolbox.get_shape tb))           (Struct.Toolbox.get_shapes) @@ -96,7 +96,7 @@ get_shapes_menu_html tb =  get_others_menu_html : (Html.Html Struct.Event.Type)  get_others_menu_html =     (Html.div -      [(Html.Attributes.class "map-toolbox-others")] +      [(Html.Attributes.class "toolbox-others")]        [           (Html.button              [(Html.Events.onClick Struct.Event.ClearSelectionRequested)] @@ -115,7 +115,7 @@ get_others_menu_html =  get_html : Struct.Toolbox.Type -> (Html.Html Struct.Event.Type)  get_html tb =     (Html.div -      [(Html.Attributes.class "map-toolbox")] +      [(Html.Attributes.class "toolbox")]        [           (get_template_icon_html (Struct.Toolbox.get_template tb)),           (get_modes_menu_html tb), | 


