Archaius Bug when i try to note student

Archaius Bug when i try to note student

by Alex Pruneau -
Number of replies: 6
Hello i have this bug in my moodle 3.1.1 and the archaius theme last update.

Do you have a idea if we can fix it fast ?

You can see my screenshot,  i can see a little space when i try to note my student. But when i change for a other theme its fine.






Average of ratings: -
In reply to Alex Pruneau

Re: Archaius Bug when i try to note student

by Mary Evans -
Picture of Core developers Picture of Documentation writers Picture of Peer reviewers Picture of Plugin developers Picture of Testers

Hi Alex,

As nice as this theme is, the problem is that it does not carry the CSS that styles those button elements, becasue the parent theme is Base theme and NOT Bootstrapbase

So you need to add the following to

.btn {
    border-radius: 4px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset, 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: inline-block;
    line-height: 20px;
    margin-bottom: 0;
    padding: 4px 12px;
    text-align: center;
    transition: all 0.5s ease 0s;
    vertical-align: middle;
}
.btn-primary {
    background-color: #005aa8;
    background-image: linear-gradient(to bottom, #0070a8, #0038a8);
    background-repeat: repeat-x;
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    color: #ffffff;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

Hope this helps?

Mary

In reply to Mary Evans

Re: Archaius Bug when i try to note student

by Alex Pruneau -

Thank you Mary for your solution. But this one modify the buttom "Note". My problem is in the second screenshot. When i click to note and i acces to the second page for note my student i cant see the whole page.


I show you in the Essential screen and after the Archaius theme.









Thank you
Alex

In reply to Alex Pruneau

Re: Archaius Bug when i try to note student

by Daniel Munera -

Hi Alex,


The main problem is that I haven't had time to test my theme in this version of Moodle, but let me try to replicate the problem. Could you paste here the URL where yo got the error?

NOTE: I guess the problem is related with JS.

Best regards,

Daniel.

In reply to Daniel Munera

Re: Archaius Bug when i try to note student

by Alex Pruneau -

The Url is : https://MYWEBSITE/moodle/mod/assign/view.php?id=2756&action=grader


Link of video :


And :



In reply to Alex Pruneau

Re: Archaius Bug when i try to note student

by Daniel Munera -

Hi Again Alex,


I think I found the problem, it is a problem between my theme and the assign CSS, I made some modifications and they seems to fix the problem:


Extra CSS to fix the problem

You can add this CSS to your custom css option.

(Administration => Appearance => Themes => Archaius => Advance)

Code

/* Fix problem with grader inside assign*/
.path-mod-assign [data-region="grade-panel"]{
  position: relative;
  margin-top: 50px;
}

.myclear {
	clear: both;
}
.path-mod-assign.pagelayout-embedded{
  overflow: auto;
}

.path-mod-assign [data-region="grade-actions-panel"]{
  position: fixed;
  background: #fbfbfb;
}
Let me know if this works for you, so I can add these changes in a new release I am planning. 


 Best regards, 

Daniel.

Aside

Thanks to sent me a direct message to let me know about the problem, I am very bad following the forums because I don't know how to configure the digest to send me information when the topic is related with Archaius (my bad sorry).

You can use the bug tracker of the project to report problems as well, which is on github. I use github repos all day, so, probably I am going to reply faster there.

https://github.com/dmuneras/moodle-theme_archaius/issues
Average of ratings: Useful (1)
In reply to Daniel Munera

Re: Archaius Bug when i try to note student

by Alex Pruneau -

Well thank you Daniel it's work perfectly.


Next time i will go to the tracker