Commit be5a2878 authored by Yassine Doghri's avatar Yassine Doghri
Browse files

fix(layouts): replace holy-grail layout with tailwind config + widen public podcast layout

- add rounded classes with conditional border-radius depending on screen width
- add ring-castopod
class to use on focus states
parent 93214007
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ if (! function_exists('hint_tooltip')) {
        $tooltip =
            '<span data-toggle="tooltip" data-placement="bottom" tabindex="0" title="' .
            $hintText .
            '" class="inline-block text-gray-500 align-middle outline-none focus:ring';
            '" class="inline-block text-gray-500 align-middle focus:ring-castopod';

        if ($class !== '') {
            $tooltip .= ' ' . $class;
+0 −1
Original line number Diff line number Diff line
@@ -23,7 +23,6 @@ return [
    'explicit' => 'Explicit',
    'mediumDate' => '{0,date,medium}',
    'powered_by' => 'Powered by {castopod}',
    'actions' => 'Actions',
    'pageInfo' => 'Page {currentPage} out of {pageCount}',
    'go_back' => 'Go back',
    'play_episode_button' => [
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ return [
        one {# person}
        other {# persons}
    }',
    'persons_list' => 'Persons',
    'persons_list' => 'Persons for {episodeTitle}',
    'back_to_episodes' => 'Back to episodes of {podcast}',
    'comments' => 'Comments',
    'activity' => 'Activity',
+1 −1
Original line number Diff line number Diff line
@@ -56,7 +56,7 @@ export class XMLEditor extends LitElement {
  }

  static styles = css`
    .cm-wrap {
    .cm-editor {
      border-radius: 0.5rem;
      overflow: hidden;
      border: 3px solid #000000;
+4 −0
Original line number Diff line number Diff line
@@ -13,6 +13,10 @@
  &:hover {
    @apply underline;
  }

  &:focus {
    @apply ring-castopod;
  }
}

.breadcrumb-item.active {
Loading