[Mahara-contributors] [Bug 1933940] Re: Raw Resume views are not displaying headers

2021-10-27 Thread Robert Lyon
** Changed in: mahara
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: mahara-contributors
https://bugs.launchpad.net/bugs/1933940

Title:
  Raw Resume views are not displaying headers

Status in Mahara:
  Fix Released

Bug description:
  When creating a theme based On RAW than the view with entries from the
  resume won't show up.

  The card titles are not displaying.
  To fix that two lines have to be copied from default Theme to RAW Theme or to 
the Theme based on Raw

  /* From Default - visibility of header in cards accordion */

  .card-header a:not(.secondary-link),.collapsible legend 
a:not(.secondary-link) {
color:#556d32;
  }

  .card-header a:not(.secondary-link).collapsed,.collapsible legend 
a:not(.secondary-link).collapsed {
background-color:transparent;
color:#475c2a;
  }
   
  /* End Default */

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1933940/+subscriptions


___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1933940] Re: Raw Resume views are not displaying headers

2021-08-01 Thread Robert Lyon
** Changed in: mahara
   Status: In Progress => Fix Committed

** Changed in: mahara
   Importance: Undecided => Medium

** Changed in: mahara
Milestone: None => 21.10.0

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: mahara-contributors
https://bugs.launchpad.net/bugs/1933940

Title:
  Raw Resume views are not displaying headers

Status in Mahara:
  Fix Committed

Bug description:
  When creating a theme based On RAW than the view with entries from the
  resume won't show up.

  The card titles are not displaying.
  To fix that two lines have to be copied from default Theme to RAW Theme or to 
the Theme based on Raw

  /* From Default - visibility of header in cards accordion */

  .card-header a:not(.secondary-link),.collapsible legend 
a:not(.secondary-link) {
color:#556d32;
  }

  .card-header a:not(.secondary-link).collapsed,.collapsible legend 
a:not(.secondary-link).collapsed {
background-color:transparent;
color:#475c2a;
  }
   
  /* End Default */

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1933940/+subscriptions


___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


Re: [Mahara-contributors] [Bug 1933940] Re: Raw Resume views are not displaying headers

2021-07-28 Thread LisAndi - Andi Becker - http://lisandi.com
Awesome, thanks!
I will test it out

With kind regards,
* Andi *

>
>

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: mahara-contributors
https://bugs.launchpad.net/bugs/1933940

Title:
  Raw Resume views are not displaying headers

Status in Mahara:
  In Progress

Bug description:
  When creating a theme based On RAW than the view with entries from the
  resume won't show up.

  The card titles are not displaying.
  To fix that two lines have to be copied from default Theme to RAW Theme or to 
the Theme based on Raw

  /* From Default - visibility of header in cards accordion */

  .card-header a:not(.secondary-link),.collapsible legend 
a:not(.secondary-link) {
color:#556d32;
  }

  .card-header a:not(.secondary-link).collapsed,.collapsible legend 
a:not(.secondary-link).collapsed {
background-color:transparent;
color:#475c2a;
  }
   
  /* End Default */

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1933940/+subscriptions


___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1933940] Re: Raw Resume views are not displaying headers

2021-07-28 Thread Evonne Cheung
It seems the scss files are missing from that attachment so I couldn't
replicate the issue. But I have put in a patch where new variables are
added into custom-variables.scss to cover the card-secondary and
separate it from default card styling. This means you can just change
the variables which should hopefully change all the places it's used in,
and limit the need for the custom override.

// Cards
$card-border-color: #ddd !default;
$card-header-bg:#f9f9f9 !default;
$card-header-color: $theme-text-color !default;
$card-footer-bg:#f5f5f5 !default;

$card-secondary-header-bg:  transparent !default;
$card-secondary-header-color:   $theme-text-color !default;
$card-secondary-border-color:   #ddd !default;
$card-secondary-border-width:   2px !default;

** Changed in: mahara
   Status: Incomplete => Fix Committed

** Changed in: mahara
   Status: Fix Committed => In Progress

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: mahara-contributors
https://bugs.launchpad.net/bugs/1933940

Title:
  Raw Resume views are not displaying headers

Status in Mahara:
  In Progress

Bug description:
  When creating a theme based On RAW than the view with entries from the
  resume won't show up.

  The card titles are not displaying.
  To fix that two lines have to be copied from default Theme to RAW Theme or to 
the Theme based on Raw

  /* From Default - visibility of header in cards accordion */

  .card-header a:not(.secondary-link),.collapsible legend 
a:not(.secondary-link) {
color:#556d32;
  }

  .card-header a:not(.secondary-link).collapsed,.collapsible legend 
a:not(.secondary-link).collapsed {
background-color:transparent;
color:#475c2a;
  }
   
  /* End Default */

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1933940/+subscriptions


___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


Re: [Mahara-contributors] [Bug 1933940] Re: Raw Resume views are not displaying headers

2021-07-17 Thread LisAndi - Andi Becker - http://lisandi.com
The Montessori Theme based on Raw


On Sat, Jul 17, 2021 at 11:25 AM Kristina Hoeppner <
1933...@bugs.launchpad.net> wrote:

> ** Changed in: mahara
>Status: New => Incomplete
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1933940
>
> Title:
>   Raw Resume views are not displaying headers
>
> Status in Mahara:
>   Incomplete
>
> Bug description:
>   When creating a theme based On RAW than the view with entries from the
>   resume won't show up.
>
>   The card titles are not displaying.
>   To fix that two lines have to be copied from default Theme to RAW Theme
> or to the Theme based on Raw
>
>   /* From Default - visibility of header in cards accordion */
>
>   .card-header a:not(.secondary-link),.collapsible legend
> a:not(.secondary-link) {
> color:#556d32;
>   }
>
>   .card-header a:not(.secondary-link).collapsed,.collapsible legend
> a:not(.secondary-link).collapsed {
> background-color:transparent;
> color:#475c2a;
>   }
>
>   /* End Default */
>
> To manage notifications about this bug go to:
> https://bugs.launchpad.net/mahara/+bug/1933940/+subscriptions
>
>


** Attachment added: 
"download-2021.7.17_15.6.20-m-xyz-contact-(c3.lisandi.com).tar.gz"
   
https://bugs.launchpad.net/bugs/1933940/+attachment/5511532/+files/download-2021.7.17_15.6.20-m-xyz-contact-%28c3.lisandi.com%29.tar.gz

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: mahara-contributors
https://bugs.launchpad.net/bugs/1933940

Title:
  Raw Resume views are not displaying headers

Status in Mahara:
  Incomplete

Bug description:
  When creating a theme based On RAW than the view with entries from the
  resume won't show up.

  The card titles are not displaying.
  To fix that two lines have to be copied from default Theme to RAW Theme or to 
the Theme based on Raw

  /* From Default - visibility of header in cards accordion */

  .card-header a:not(.secondary-link),.collapsible legend 
a:not(.secondary-link) {
color:#556d32;
  }

  .card-header a:not(.secondary-link).collapsed,.collapsible legend 
a:not(.secondary-link).collapsed {
background-color:transparent;
color:#475c2a;
  }
   
  /* End Default */

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1933940/+subscriptions


___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1933940] Re: Raw Resume views are not displaying headers

2021-07-16 Thread Kristina Hoeppner
** Changed in: mahara
   Status: New => Incomplete

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: mahara-contributors
https://bugs.launchpad.net/bugs/1933940

Title:
  Raw Resume views are not displaying headers

Status in Mahara:
  Incomplete

Bug description:
  When creating a theme based On RAW than the view with entries from the
  resume won't show up.

  The card titles are not displaying.
  To fix that two lines have to be copied from default Theme to RAW Theme or to 
the Theme based on Raw

  /* From Default - visibility of header in cards accordion */

  .card-header a:not(.secondary-link),.collapsible legend 
a:not(.secondary-link) {
color:#556d32;
  }

  .card-header a:not(.secondary-link).collapsed,.collapsible legend 
a:not(.secondary-link).collapsed {
background-color:transparent;
color:#475c2a;
  }
   
  /* End Default */

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1933940/+subscriptions


___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1933940] Re: Raw Resume views are not displaying headers

2021-07-05 Thread Evonne Cheung
Would you be able to provide more information for the bug? When you're
creating the theme based on Raw, are you changing the card-heading-bg?
There are variations as to how different combinations may work, as a
base Raw sets the card-heading to inherit from its parent, it may be
inheriting a color based on its parent and is same as the background
color, causing it not to be seen. If you can give us a better
understanding of how you're using it, perhaps we can put into Raw a
variable that might better suit its purpose. Attach screenshots or even
the theme itself you created would be super helpful.

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: mahara-contributors
https://bugs.launchpad.net/bugs/1933940

Title:
  Raw Resume views are not displaying headers

Status in Mahara:
  New

Bug description:
  When creating a theme based On RAW than the view with entries from the
  resume won't show up.

  The card titles are not displaying.
  To fix that two lines have to be copied from default Theme to RAW Theme or to 
the Theme based on Raw

  /* From Default - visibility of header in cards accordion */

  .card-header a:not(.secondary-link),.collapsible legend 
a:not(.secondary-link) {
color:#556d32;
  }

  .card-header a:not(.secondary-link).collapsed,.collapsible legend 
a:not(.secondary-link).collapsed {
background-color:transparent;
color:#475c2a;
  }
   
  /* End Default */

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1933940/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp


[Mahara-contributors] [Bug 1933940] Re: Raw Resume views are not displaying headers

2021-06-30 Thread Robert Lyon
** Changed in: mahara
 Assignee: (unassigned) => Evonne Cheung (evonne)

-- 
You received this bug notification because you are a member of Mahara
Contributors, which is subscribed to Mahara.
Matching subscriptions: mahara-contributors
https://bugs.launchpad.net/bugs/1933940

Title:
  Raw Resume views are not displaying headers

Status in Mahara:
  New

Bug description:
  When creating a theme based On RAW than the view with entries from the
  resume won't show up.

  The card titles are not displaying.
  To fix that two lines have to be copied from default Theme to RAW Theme or to 
the Theme based on Raw

  /* From Default - visibility of header in cards accordion */

  .card-header a:not(.secondary-link),.collapsible legend 
a:not(.secondary-link) {
color:#556d32;
  }

  .card-header a:not(.secondary-link).collapsed,.collapsible legend 
a:not(.secondary-link).collapsed {
background-color:transparent;
color:#475c2a;
  }
   
  /* End Default */

To manage notifications about this bug go to:
https://bugs.launchpad.net/mahara/+bug/1933940/+subscriptions

___
Mailing list: https://launchpad.net/~mahara-contributors
Post to : mahara-contributors@lists.launchpad.net
Unsubscribe : https://launchpad.net/~mahara-contributors
More help   : https://help.launchpad.net/ListHelp