diff --git a/apps/block_scout_web/assets/css/components/_api.scss b/apps/block_scout_web/assets/css/components/_api.scss index ad56455253..c663993798 100644 --- a/apps/block_scout_web/assets/css/components/_api.scss +++ b/apps/block_scout_web/assets/css/components/_api.scss @@ -26,6 +26,17 @@ $api-doc-list-item-view-more-color: $api-doc-list-item-title-color !default; grid-template-rows: 1fr 1fr 1fr; padding: 30px; row-gap: 25px; + + @include media-breakpoint-down(md) { + grid-template-columns: 1fr 1fr; + grid-template-rows: 1fr 1fr 1fr 1fr; + } + + @include media-breakpoint-down(sm) { + grid-auto-flow: row; + grid-template-columns: 1fr; + grid-template-rows: none; + } } .api-anchors-list-item { @@ -70,6 +81,10 @@ $api-doc-list-item-view-more-color: $api-doc-list-item-title-color !default; .api-doc-list-item-contents { display: flex; justify-content: space-between; + + @include media-breakpoint-down(sm) { + flex-direction: column; + } } .api-doc-list-item-title { @@ -85,6 +100,8 @@ $api-doc-list-item-view-more-color: $api-doc-list-item-title-color !default; font-size: 12px; line-height: 1.2; margin-bottom: 20px; + word-break: break-all; + word-wrap: break-word; > strong { font-weight: 700; @@ -104,6 +121,13 @@ $api-doc-list-item-view-more-color: $api-doc-list-item-title-color !default; flex-direction: column; flex-grow: 1; margin-left: 50px; + + @include media-breakpoint-down(sm) { + flex-direction: row; + justify-content: space-between; + margin-left: 0; + padding-top: 25px; + } } .api-doc-list-item-controls-badges { @@ -125,8 +149,101 @@ $api-doc-list-item-view-more-color: $api-doc-list-item-title-color !default; cursor: pointer; font-size: 14px; margin-top: auto; + white-space: nowrap; .fa { margin-left: 5px; } +} + +[aria-expanded="false"] { + .api-doc-list-item-controls-view-more-open { + display: block; + } + .api-doc-list-item-controls-view-more-close { + display: none; + } +} + +[aria-expanded="true"] { + .api-doc-list-item-controls-view-more-open { + display: none; + } + .api-doc-list-item-controls-view-more-close { + display: block; + } +} + +.api-doc-parameters-container { + border-top: 1px solid $base-border-color; + margin-top: 20px; + padding-top: $card-vertical-padding; +} + +.api-doc-parameters-list { + border-bottom: 1px solid $base-border-color; + margin-bottom: $card-vertical-padding; + padding-bottom: $card-vertical-padding / 2; + overflow-x: auto; +} + +.api-doc-parameters-list-title { + color: #333; + font-size: 16px; + font-weight: 500; + line-height: 1.2; + margin: 0 0 15px; + white-space: nowrap; +} + +.api-doc-parameters-list-item { + margin-bottom: 15px; + + &:last-child { + margin-bottom: 0; + } + + @include media-breakpoint-down(sm) { + margin-bottom: 30px; + + [class*="col-"] { + margin-bottom: 8px; + + &:last-child { + margin-bottom: 0; + } + } + } +} + +.api-doc-parameters-list-item-title { + color: #333; + font-size: 14px; + font-weight: 500; + line-height: 1.2; + margin: 0 0 8px; +} + +.api-doc-parameters-list-item-subtitle { + color: #aaa; + font-size: 13px; + font-weight: 400; + line-height: 1.2; + margin: 0; +} + +.api-doc-parameters-list-item-description { + color: #333; + font-size: 14px; + font-weight: 400; + line-height: 1.2; + margin: 0 0 8px; + + &:last-child { + margin-bottom: 0; + } + + strong { + font-weight: 700; + } } \ No newline at end of file diff --git a/apps/block_scout_web/lib/block_scout_web/templates/api_docs/_action_tile.html.eex b/apps/block_scout_web/lib/block_scout_web/templates/api_docs/_action_tile.html.eex index 5174adde28..f7611e9f54 100644 --- a/apps/block_scout_web/lib/block_scout_web/templates/api_docs/_action_tile.html.eex +++ b/apps/block_scout_web/lib/block_scout_web/templates/api_docs/_action_tile.html.eex @@ -18,217 +18,242 @@ <%= gettext "GET" %> <%= gettext "POST" %> - More Details + + More Details + Hide Details + +
<%= gettext "string" %> <%= gettext "(query)" %>
+<%= gettext "A string with the name of the module to be invoked." %>
+<%= gettext "Must be set to:" %> <%= @module_name %> +
<%= gettext "string" %> <%= gettext "(query)" %>
+<%= gettext "A string with the name of the action to be invoked." %>
+<%= gettext "Must be set to:" %> <%= @action.name %>
+<%= required_param.type %> <%= gettext "(query)" %>
+<%= required_param.description %>
+<%= optional_param.type %> <%= gettext "(query)" %>
+<%= optional_param.description %>
+ +" - class="m-2" - >+
<%= gettext "Response Body" %>
+<%= response.description %>+
" class="m-2" + data-json='<%= response.example_value %>' >
" - class="m-2" - >-
<%= response.description %>-