From c1849bc256a3fdfa159db8605f3059b05392d581 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 30 May 2017 12:54:12 +0530 Subject: [PATCH 001/766] a test for commit --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8fab221122..88206c8c7e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ -gstudio -======= + + gstudio +========= gstudio is an implementation of http://www.gnu.org/software/gnowsys/ which is a Node Description Framework (NDF). It is a frame-based From 3d0be7dcc65afac6952c96ea8623fe8ef1b1f7bd Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Thu, 29 Jun 2017 11:55:48 +0530 Subject: [PATCH 002/766] Added view for searching usin Elasticsearch --- gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 360 +++++++++++++++++++ 1 file changed, 360 insertions(+) create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py new file mode 100644 index 0000000000..79ab124902 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -0,0 +1,360 @@ +from django.shortcuts import render +from django.http import HttpResponseRedirect +from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger +from elasticsearch import Elasticsearch +import re +import json +from gnowsys_ndf.ndf.forms import SearchForm + +es = Elasticsearch(['http://elsearch:changeit@gsearch:9200']) +author_map = {} +group_map = {} + +with open('/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/authormap.json') as fe: + author_map = json.load(fe) + +with open('/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/groupmap.json') as fe: + group_map = json.load(fe) + +hits = "" +med_list = [] #med_list is the list which will be passed to the html file. +res1_list = [] +res_list = [] +results = [] + +def get_search(request): + + #if request.method == 'GET': + form = SearchForm(request.GET) + #return render(request, 'esearch/sform.html', {'form':form}) + #if form.is_valid(): + #retrieving the query text in search box + query = request.GET.get("query") + if(query): + print(query) + query_display = "" + group = request.GET.get('group') + select = request.GET.get('select') + + if(select=="Author"): + resultSet = [] + resultSet = optimized_get_contributions("author_index", select, group, query) + hits = "

No of docs found: %d

" % len(resultSet) + med_list = get_search_results(resultSet) + if(group == "all"): + res_list = ['

Showing contributions of user %s in all groups:

' % (query), hits] + else: + res_list = ['

Showing contributions of user %s in group %s":

' % (query,group_map[str(group)]), hits] + + else: + if(select=="all"): + select = "Author,image,video,text,application,audio,NotMedia" + + phsug_name = get_suggestion_body(query,field_value = "name.trigram",slop_value = 2,field_name_value = "name") + phsug_content = get_suggestion_body(query,field_value = "content.trigram",slop_value = 3,field_name_value = "content") + phsug_tags = get_suggestion_body(query,field_value = "tags.trigram",slop_value = 2,field_name_value = "tags") + + queryNameInfo = [0,0.0,"",""] #[queryNameInfo[0],queryNameInfo[1],queryNameInfo[2],query_display_name] + queryContentInfo = [0,0.0,"",""] + queryTagsInfo = [0,0.0,"",""] + + dqlis = [] # a list conatining all the text inserted within double quotes + q = "" # a string to hold the text not enclosed within "" + + #including quotes + if('"' in query): + l = re.split('(")', query) # this will split the query into tokens where delemiter is " and the delimiter is itself a token + qlist = list(filter(lambda a: a!='', l)) + + itr = 0 + while(itr0): + query_body = '{ "query": {"bool": { "should": [' + for quot in dqlis: + query_body += ('{"multi_match": {"query": "%s", "fields": ["name^3", "altnames", "content^2", "tags"], "type": "phrase"}},' % (quot)) + if(q!=''): + query_body += ('{"multi_match": {"query": "%s", "fields": ["name^3", "altnames", "content^2", "tags"], "type": "best_fields"}},' % (q)) + query_body += (']}}, "from": 0, "size": 100}') + query_body = eval(query_body) + #res = es.search(index='nroer_pro', doc_type=select, body=eval(query_body)) + query_display = query + + else: + + get_suggestion(phsug_name, queryNameInfo, select, query,"name") + if(queryNameInfo[2]!=query): + get_suggestion(phsug_content, queryContentInfo, select, query,"content") + if(queryNameInfo[2]!=query and queryContentInfo[2]!=query): + get_suggestion(phsug_tags, queryTagsInfo, select, query,"tags") + + print (queryNameInfo[0],queryContentInfo[0],queryTagsInfo[0]) + query_display = "" + + #what if all are 1 and 2/3 names are same but the third one has higher score + if((queryNameInfo[0]==1 and queryNameInfo[2]==query) or (queryContentInfo[0]==1 and queryContentInfo[2]==query) or (queryTagsInfo[0]==1 and queryTagsInfo[2]==query)): + #if the original query is the query to be searched + query_display = query + elif(queryNameInfo[0]==0 and queryContentInfo[0]==0 and queryTagsInfo[0]==0): + #if we didnt find any suggestion, neither did we find the query already indexed->query remains same + query_display = query + else: #if we found a suggestion + res1_list = ['Search instead for %s'%(query)] #if the user still wants to search for the original query he asked for + if(queryNameInfo[1]>=queryContentInfo[1] and queryNameInfo[1]>=queryTagsInfo[1]): #comparing the scores of name,content,tags suggestions and finding the max of the three + query = queryNameInfo[2] + query_display = queryNameInfo[3] #what query to display on the search result screen + if(queryContentInfo[1]>queryNameInfo[1] and queryContentInfo[1]>=queryTagsInfo[1]): + query = queryContentInfo[2] + query_display = queryContentInfo[3] + if(queryTagsInfo[1]>queryContentInfo[1] and queryTagsInfo[1]>queryNameInfo[1]): + query = queryTagsInfo[2] + query_display = queryTagsInfo[3] + + if(queryNameInfo[0]==0 and queryContentInfo[0]==0 and queryTagsInfo[0]==0):#if we didnt find any suggestion, neither did we find the query already indexed + query_body = {"query": { + "multi_match": { #first do a multi_match + "query" : query, + "type": "best_fields", #when multiple words are there in the query, try to search for those words in a single field + "fields": ["name^3", "altnames", "content^2", "tags"], #in which field to search the query + "minimum_should_match": "30%" + } + }, + "rescore": { #rescoring the top 50 results of multi_match + "window_size": 50, + "query": { + "rescore_query": { + "bool": { #rescoring using match phrase + "should": [ + {"match_phrase": {"name": { "query": query, "slop":2}}}, + {"match_phrase": {"altnames": { "query": query, "slop": 2}}}, + {"match_phrase": {"content": { "query": query, "slop": 4}}} + ] + } + } + } + }, + "from": 0, + "size": 100 + } + + else: #if we found a suggestion or if the query exists as a phrase in one of the name/content/tags field + query_body = {"query": { + "multi_match": { + "query": query, + "fields": ["name^3", "altnames", "content^2", "tags"], + "type": "phrase", #we are doing a match phrase on multi field. + "slop": 5 + } + }, + "from": 0, + "size": 100 + } + + resultSet = optimized_get_contributions("nroer_pro", select, group, query_body) + hits = "

No of docs found: %d

" % len(resultSet) + if(group=="all"): + res_list = ['

Showing results for %s :Showing results for %s in group "%s":

' % (query_display,group_map[str(group)]), hits] + med_list = get_search_results(resultSet) + + paginator = Paginator(med_list, 10) + page = request.GET.get('page') + try: + results = paginator.page(page) + except PageNotAnInteger: + results = paginator.page(1) + except EmptyPage: + results = paginator.page(paginator.num_pages) + + # if(len(res1_list)>0): + # return render(request, 'esearch/sform.html', {'form': form, 'header':res_list, 'alternate': res1_list, 'content': results}) + return render(request, 'ndf/sform.html', {'form': form, 'header':res_list, 'content': results}) + + print("going to render") + return render(request, 'ndf/sform.html', {'form': form}) + + +def get_suggestion_body(query,field_value,slop_value,field_name_value): + phrase_suggest = { #json body of phrase suggestion in name field + "suggest": { + "text": query, #the query for which we want to find suggestion + "phrase": { + "field": field_value, #in which indexed field to find the suggestion + "gram_size": 3, #this is the max shingle size + "max_errors": 2, #the maximum number of terms that can be misspelt in the query + "direct_generator": [ { + "field": field_value, + #"suggest_mode": "missing", + "min_word_length": 2, + "prefix_length": 0, #misspelling in a single word may exist in the first letter itself + "suggest_mode":"missing" #search for suggestions only if the query isnt present in the index + } ], + "highlight": { #to highlight the suggested word + "pre_tag": "", + "post_tag": "" + }, + "collate": { #this is used to check if the returned suggestion exists in the index + "query": { + "inline": { + "match_phrase": { #matching the returned suggestions with the existing index + "{{field_name}}": { + "query": "{{suggestion}}", + "slop": slop_value + } + } + } + }, + "params": {"field_name": field_name_value}, + "prune": True #to enable collate_match of suggestions + } + }, + } + } + return phrase_suggest + +def get_suggestion(suggestion_body, queryInfo, doc_types, query,field): + res = es.suggest(body=suggestion_body, index='nroer_pro') #first we search for suggestion in the name field as it has the highest priority + print(res) + if(len(res['suggest'][0]['options'])>0): #if we get a suggestion means the phrase doesnt exist in the index + for sugitem in res['suggest'][0]['options']: + if sugitem['collate_match'] == True: #we find the suggestion with collate_match = True + queryInfo[0] = 1 + queryInfo[1] = sugitem['score'] + queryInfo[2] = sugitem['text'] + queryInfo[3] = sugitem['highlighted'] #the query to be displayed onto the search results screen + break + else: #should slop be included in the search part here? + query_body = {"query":{"match_phrase":{field: query,}}} + if(es.search(index='nroer_pro',doc_type=doc_types,body=query_body)['hits']['total']>0): + queryInfo[0] = 1 #set queryNameInfo[0] = 1 when we found a suggestion or we found a hit in the indexed data + queryInfo[2] = query + + +def get_search_results(resultArray): + med_list = [doc['_source'] for doc in resultArray] + # for doc in resultArray: + # med_list.append(doc['_source']) + # if('if_file' in doc['_source'].keys()): + # s = doc['_source']['name'] + # if '.' in s: + # l = s.index('.') + # else: + # l = len(s) + # med_list.append([doc['_id'],s[0:l],doc['_source']['if_file']['original']['relurl'],doc['_score'],doc['_source']['content']]) #printing only the id for the time being along with the node name + # else: + # med_list.append([doc['_id'],doc['_source']['name'],None,doc['_score'],doc['_source']['content']]) + return med_list + +def resources_in_group(res,group): + results = [] + group_id = str(group) + for i in res["hits"]["hits"]: + if "group_set" in i["_source"].keys(): + k = [] + for g_id in (i["_source"]["group_set"]): + k.append(g_id["$oid"]) + if group_id in k: + results.append(i) + return results + +def optimized_get_contributions(index_name, select, group, query): + siz = 100 + if(index_name == "author_index"): + try: + doctype = author_map[str(query)] + except: + return [] + else: + body = { + "query":{ + "match_all":{} + }, + "from": 0, + "size": siz + } + + elif(index_name == "nroer_pro"): + doctype = select + body = query + + resultSet = [] + temp = [] + i = 0 + + while(True): + body['from'] = i + res = es.search(index = index_name, doc_type = doctype, body = body) + l = len(res["hits"]["hits"]) + print (body) + if(l==0): + return [] + if l > 0 and l <= siz: + if(group == "all"): + resultSet.extend(res["hits"]["hits"]) + else: + temp = resources_in_group(res,group) + resultSet.extend(temp) + if l < siz: + break + i+=siz + + return resultSet + + +# def advanced_search(request): + +# form = AdvancedSearchForm() +# return render(request,"esearch/advanced_search.html",{'form':form}) + + + +def get_contributions(select,group,author_name): + #author_name+='\n' + i = 0 + doc_types = ['image','video','text','application','audio','NotMedia'] + try: + sql_id = author_map[str(author_name)] + except: + return [] + else: + resultSet = [] + while(True): + body = { + "query":{ + "match_all":{} + }, + "from":i, + "size":100 + } + res = es.search(index = "nroer_pro",body = body) + l = len(res["hits"]["hits"]) + if l > 0: + for doc in (res['hits']['hits']): + #is it possible that an author has contributed to a paper that does not belong to any group + if ("group_set" in (doc["_source"]).keys()) and ("contributors" in (doc["_source"]).keys()): + group_set = [] + for group_id in doc["_source"]["group_set"]: + group_set.append(group_id["$oid"]) + contributors = doc["_source"]["contributors"] + if group == "all": + if sql_id in contributors: #and doc["_source"]["type"] in doc_types: + resultSet.append(doc) + + else: + if (sql_id in contributors) and (group in group_set): #and doc["_source"]["type"] in doc_types: + resultSet.append(doc) + else: + break + i+=100 + return resultSet \ No newline at end of file From 6ecd8f4f8f1e8ec7662b53933a96385252d481da Mon Sep 17 00:00:00 2001 From: root Date: Thu, 29 Jun 2017 16:31:00 +0530 Subject: [PATCH 003/766] added form for search functionality --- gnowsys-ndf/gnowsys_ndf/ndf/forms.py | 36 +++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py index 97f8181d3e..b63dc0e272 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py @@ -1,5 +1,5 @@ import datetime - +import json from django import forms from django_mongokit.forms import DocumentForm from django.contrib.auth.forms import PasswordChangeForm, SetPasswordForm @@ -10,6 +10,40 @@ from registration.forms import RegistrationForm from passwords.fields import PasswordField +CHOICES=[("all",'All'),("Author",'Users'),("image",'Images'),("video",'Video'),("text",'Text'),("audio","Audio")] +GROUP_CHOICES=[] +GROUP_CHOICES.append(("all","All")) +group_map = {} +attribute_map = {} +ATTRIBUTE_CHOICES = [("--Select--","--Select--"),("educationaluse","Educational use"),("interactivitytype","Interactivity type"),("educationalsubject","Educational subject"),("educationallevel","Educational Level"),("source","Source"),("audience","Audience"),("educationalalignment","Educational alignment"),] + +secondlevel_choices = [] + +with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/groupmap.json", 'r') as gm: + group_map = json.load(gm) + +with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/attribute_map.json") as am: + attribute_map = json.load(am) + +for i in ATTRIBUTE_CHOICES: + if i[0] != '--Select--': + l = [] + for val in attribute_map[i[0]]: + tup = (val,val) + l.append(tup) + secondlevel_choices.append(l) + +for l in group_map.keys(): + tup = (l, group_map[l]) + tup = tuple(tup) + GROUP_CHOICES.append(tup) + +class SearchForm(forms.Form): + query = forms.CharField(label = '', widget = forms.TextInput(attrs={'placeholder': 'Search for'}), error_messages = False) + group = forms.ChoiceField(label = "Group", widget = forms.Select, choices = GROUP_CHOICES) + select = forms.ChoiceField(label = "Filter", widget = forms.Select, choices = CHOICES) + + class NodeForm(DocumentForm): tags = forms.CharField(max_length=250) From 60f2a98725e10df2bb6fb5ab3bcf3068e1e66768 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Mon, 3 Jul 2017 15:36:26 +0530 Subject: [PATCH 004/766] Search functionality using Elasticsearch --- .../gnowsys_ndf/ndf/templates/ndf/sform.html | 46 +++++ gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 193 ++++++------------ requirements.txt | 3 +- 3 files changed, 114 insertions(+), 128 deletions(-) create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html new file mode 100644 index 0000000000..0bd034442c --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html @@ -0,0 +1,46 @@ +{% extends "ndf/gbase.html" %} +{% block title %} Elastic Search {% endblock %} +{% block body_content %} + + + +
+
+ {{form}} + +
+
+ +


+{% for c in header %} +

{{c|safe}}

+{% endfor %} + +
+
    +{% for c in content %} +
  • {% include 'ndf/card_group.html' with node=c %}
  • +{% endfor %} +
+
+ + + +{% endblock %} \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index 79ab124902..c0f7ee77d8 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -1,10 +1,12 @@ +import re +import json from django.shortcuts import render from django.http import HttpResponseRedirect from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger from elasticsearch import Elasticsearch -import re -import json from gnowsys_ndf.ndf.forms import SearchForm +from gnowsys_ndf.ndf.models import * +from gnowsys_ndf.settings import GSTUDIO_SITE_NAME es = Elasticsearch(['http://elsearch:changeit@gsearch:9200']) author_map = {} @@ -17,18 +19,14 @@ group_map = json.load(fe) hits = "" -med_list = [] #med_list is the list which will be passed to the html file. -res1_list = [] -res_list = [] -results = [] +med_list = [] #contains all the search results +res_list = [] #contains the header of the search results +results = [] #contains a single page's results +author_index = "author_" + GSTUDIO_SITE_NAME def get_search(request): - #if request.method == 'GET': form = SearchForm(request.GET) - #return render(request, 'esearch/sform.html', {'form':form}) - #if form.is_valid(): - #retrieving the query text in search box query = request.GET.get("query") if(query): print(query) @@ -37,14 +35,13 @@ def get_search(request): select = request.GET.get('select') if(select=="Author"): - resultSet = [] - resultSet = optimized_get_contributions("author_index", select, group, query) - hits = "

No of docs found: %d

" % len(resultSet) + resultSet = search_query(author_index, select, group, query) + hits = "

No of docs found: %d

" % len(resultSet) med_list = get_search_results(resultSet) if(group == "all"): - res_list = ['

Showing contributions of user %s in all groups:

' % (query), hits] + res_list = ['

Showing contributions of user %s in all groups:

' % (query), hits] else: - res_list = ['

Showing contributions of user %s in group %s":

' % (query,group_map[str(group)]), hits] + res_list = ['

Showing contributions of user %s in group %s":

' % (query,group_map[str(group)]), hits] else: if(select=="all"): @@ -58,7 +55,7 @@ def get_search(request): queryContentInfo = [0,0.0,"",""] queryTagsInfo = [0,0.0,"",""] - dqlis = [] # a list conatining all the text inserted within double quotes + dqlis = [] # a list containing all the text inserted within double quotes q = "" # a string to hold the text not enclosed within "" #including quotes @@ -86,17 +83,16 @@ def get_search(request): if(q!=''): query_body += ('{"multi_match": {"query": "%s", "fields": ["name^3", "altnames", "content^2", "tags"], "type": "best_fields"}},' % (q)) query_body += (']}}, "from": 0, "size": 100}') - query_body = eval(query_body) - #res = es.search(index='nroer_pro', doc_type=select, body=eval(query_body)) + query_body = eval(query_body) query_display = query else: - get_suggestion(phsug_name, queryNameInfo, select, query,"name") + get_suggestion(phsug_name, queryNameInfo, select, query, "name") if(queryNameInfo[2]!=query): - get_suggestion(phsug_content, queryContentInfo, select, query,"content") + get_suggestion(phsug_content, queryContentInfo, select, query, "content") if(queryNameInfo[2]!=query and queryContentInfo[2]!=query): - get_suggestion(phsug_tags, queryTagsInfo, select, query,"tags") + get_suggestion(phsug_tags, queryTagsInfo, select, query, "tags") print (queryNameInfo[0],queryContentInfo[0],queryTagsInfo[0]) query_display = "" @@ -120,47 +116,50 @@ def get_search(request): query = queryTagsInfo[2] query_display = queryTagsInfo[3] - if(queryNameInfo[0]==0 and queryContentInfo[0]==0 and queryTagsInfo[0]==0):#if we didnt find any suggestion, neither did we find the query already indexed - query_body = {"query": { - "multi_match": { #first do a multi_match - "query" : query, - "type": "best_fields", #when multiple words are there in the query, try to search for those words in a single field - "fields": ["name^3", "altnames", "content^2", "tags"], #in which field to search the query - "minimum_should_match": "30%" - } - }, - "rescore": { #rescoring the top 50 results of multi_match - "window_size": 50, - "query": { - "rescore_query": { - "bool": { #rescoring using match phrase - "should": [ - {"match_phrase": {"name": { "query": query, "slop":2}}}, - {"match_phrase": {"altnames": { "query": query, "slop": 2}}}, - {"match_phrase": {"content": { "query": query, "slop": 4}}} - ] - } - } + + + if(queryNameInfo[0]==0 and queryContentInfo[0]==0 and queryTagsInfo[0]==0):#if we didnt find any suggestion, neither did we find the query already indexed + query_body = {"query": { + "multi_match": { #first do a multi_match + "query" : query, + "type": "best_fields", #when multiple words are there in the query, try to search for those words in a single field + "fields": ["name^3", "altnames", "content^2", "tags"], #in which field to search the query + "minimum_should_match": "30%" } }, - "from": 0, - "size": 100 - } - - else: #if we found a suggestion or if the query exists as a phrase in one of the name/content/tags field - query_body = {"query": { - "multi_match": { - "query": query, - "fields": ["name^3", "altnames", "content^2", "tags"], - "type": "phrase", #we are doing a match phrase on multi field. - "slop": 5 + "rescore": { #rescoring the top 50 results of multi_match + "window_size": 50, + "query": { + "rescore_query": { + "bool": { #rescoring using match phrase + "should": [ + {"match_phrase": {"name": { "query": query, "slop":2}}}, + {"match_phrase": {"altnames": { "query": query, "slop": 2}}}, + {"match_phrase": {"content": { "query": query, "slop": 4}}} + ] + } } - }, - "from": 0, - "size": 100 - } - - resultSet = optimized_get_contributions("nroer_pro", select, group, query_body) + } + }, + "from": 0, + "size": 100 + } + + else: #if we found a suggestion or if the query exists as a phrase in one of the name/content/tags field + query_body = {"query": { + "multi_match": { + "query": query, + "fields": ["name^3", "altnames", "content^2", "tags"], + "type": "phrase", #we are doing a match phrase on multi field. + "slop": 5 + } + }, + "from": 0, + "size": 100 + } + + query_display = query + resultSet = search_query(GSTUDIO_SITE_NAME, select, group, query_body) hits = "

No of docs found: %d

" % len(resultSet) if(group=="all"): res_list = ['

Showing results for %s :0): - # return render(request, 'esearch/sform.html', {'form': form, 'header':res_list, 'alternate': res1_list, 'content': results}) + return render(request, 'ndf/sform.html', {'form': form, 'header':res_list, 'content': results}) - print("going to render") return render(request, 'ndf/sform.html', {'form': form}) -def get_suggestion_body(query,field_value,slop_value,field_name_value): +def get_suggestion_body(query, field_value, slop_value, field_name_value): phrase_suggest = { #json body of phrase suggestion in name field "suggest": { "text": query, #the query for which we want to find suggestion @@ -224,7 +221,7 @@ def get_suggestion_body(query,field_value,slop_value,field_name_value): return phrase_suggest def get_suggestion(suggestion_body, queryInfo, doc_types, query,field): - res = es.suggest(body=suggestion_body, index='nroer_pro') #first we search for suggestion in the name field as it has the highest priority + res = es.suggest(body=suggestion_body, index=GSTUDIO_SITE_NAME) #first we search for suggestion in the name field as it has the highest priority print(res) if(len(res['suggest'][0]['options'])>0): #if we get a suggestion means the phrase doesnt exist in the index for sugitem in res['suggest'][0]['options']: @@ -236,24 +233,13 @@ def get_suggestion(suggestion_body, queryInfo, doc_types, query,field): break else: #should slop be included in the search part here? query_body = {"query":{"match_phrase":{field: query,}}} - if(es.search(index='nroer_pro',doc_type=doc_types,body=query_body)['hits']['total']>0): + if(es.search(index=GSTUDIO_SITE_NAME, doc_type=doc_types, body=query_body)['hits']['total']>0): queryInfo[0] = 1 #set queryNameInfo[0] = 1 when we found a suggestion or we found a hit in the indexed data queryInfo[2] = query def get_search_results(resultArray): med_list = [doc['_source'] for doc in resultArray] - # for doc in resultArray: - # med_list.append(doc['_source']) - # if('if_file' in doc['_source'].keys()): - # s = doc['_source']['name'] - # if '.' in s: - # l = s.index('.') - # else: - # l = len(s) - # med_list.append([doc['_id'],s[0:l],doc['_source']['if_file']['original']['relurl'],doc['_score'],doc['_source']['content']]) #printing only the id for the time being along with the node name - # else: - # med_list.append([doc['_id'],doc['_source']['name'],None,doc['_score'],doc['_source']['content']]) return med_list def resources_in_group(res,group): @@ -268,9 +254,9 @@ def resources_in_group(res,group): results.append(i) return results -def optimized_get_contributions(index_name, select, group, query): +def search_query(index_name, select, group, query): siz = 100 - if(index_name == "author_index"): + if(index_name == author_index): try: doctype = author_map[str(query)] except: @@ -284,7 +270,7 @@ def optimized_get_contributions(index_name, select, group, query): "size": siz } - elif(index_name == "nroer_pro"): + elif(index_name == GSTUDIO_SITE_NAME): doctype = select body = query @@ -294,7 +280,7 @@ def optimized_get_contributions(index_name, select, group, query): while(True): body['from'] = i - res = es.search(index = index_name, doc_type = doctype, body = body) + res = es.search(index = index_name, body = body) l = len(res["hits"]["hits"]) print (body) if(l==0): @@ -311,50 +297,3 @@ def optimized_get_contributions(index_name, select, group, query): return resultSet - -# def advanced_search(request): - -# form = AdvancedSearchForm() -# return render(request,"esearch/advanced_search.html",{'form':form}) - - - -def get_contributions(select,group,author_name): - #author_name+='\n' - i = 0 - doc_types = ['image','video','text','application','audio','NotMedia'] - try: - sql_id = author_map[str(author_name)] - except: - return [] - else: - resultSet = [] - while(True): - body = { - "query":{ - "match_all":{} - }, - "from":i, - "size":100 - } - res = es.search(index = "nroer_pro",body = body) - l = len(res["hits"]["hits"]) - if l > 0: - for doc in (res['hits']['hits']): - #is it possible that an author has contributed to a paper that does not belong to any group - if ("group_set" in (doc["_source"]).keys()) and ("contributors" in (doc["_source"]).keys()): - group_set = [] - for group_id in doc["_source"]["group_set"]: - group_set.append(group_id["$oid"]) - contributors = doc["_source"]["contributors"] - if group == "all": - if sql_id in contributors: #and doc["_source"]["type"] in doc_types: - resultSet.append(doc) - - else: - if (sql_id in contributors) and (group in group_set): #and doc["_source"]["type"] in doc_types: - resultSet.append(doc) - else: - break - i+=100 - return resultSet \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 459b35f07f..da35094f92 100644 --- a/requirements.txt +++ b/requirements.txt @@ -59,6 +59,7 @@ waitress==0.8.10 bs4==0.0.1 html==1.16 checksumdir==1.1.0 - # version needed to overwrite on all above intermediate installs pymongo==2.8 +elasticsearch==5.4.0 + From f356cd7eb5f041466f0617205b870482bc78e91a Mon Sep 17 00:00:00 2001 From: Dhananjay Mantri Date: Mon, 3 Jul 2017 15:45:33 +0530 Subject: [PATCH 005/766] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 88206c8c7e..c9c13a6161 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ - gstudio -========= +gstudio +======= gstudio is an implementation of http://www.gnu.org/software/gnowsys/ which is a Node Description Framework (NDF). It is a frame-based From 7351c43ef32b0d7fe80b1086f87dbb5970077bc4 Mon Sep 17 00:00:00 2001 From: Dhananjay Mantri Date: Mon, 3 Jul 2017 15:46:50 +0530 Subject: [PATCH 006/766] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index c9c13a6161..8fab221122 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,3 @@ - gstudio ======= From f832ffe027285db3becc9c1f3f68782e699c019f Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Wed, 5 Jul 2017 16:02:07 +0530 Subject: [PATCH 007/766] Modified init script of elasticsearch --- gnowsys-ndf/gnowsys_ndf/es_init.py | 163 +++++++ gnowsys-ndf/gnowsys_ndf/req_body.json | 466 ++++++++++++++++++++ gnowsys-ndf/gnowsys_ndf/req_body_gtype.json | 29 ++ 3 files changed, 658 insertions(+) create mode 100644 gnowsys-ndf/gnowsys_ndf/es_init.py create mode 100644 gnowsys-ndf/gnowsys_ndf/req_body.json create mode 100644 gnowsys-ndf/gnowsys_ndf/req_body_gtype.json diff --git a/gnowsys-ndf/gnowsys_ndf/es_init.py b/gnowsys-ndf/gnowsys_ndf/es_init.py new file mode 100644 index 0000000000..424590f4b5 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/es_init.py @@ -0,0 +1,163 @@ +from bson import json_util +import os +import sys +import json +from elasticsearch import Elasticsearch +from gnowsys_ndf.ndf.models import * +from gnowsys_ndf.settings import GSTUDIO_SITE_NAME + +# reload(sys) # Reload does the trick! +# sys.setdefaultencoding('UTF8') +es = Elasticsearch("http://elsearch:changeit@gsearch:9200") + +# doc_type = "" +author_map = {} +group_map = {} +author_index = "author_" + GSTUDIO_SITE_NAME +index = GSTUDIO_SITE_NAME +gsystemtype_index = "node_type_" + GSTUDIO_SITE_NAME + +system_type_map = {} +id_attribute_map = {} +id_relation_map = {} + + +def index_docs(all_docs): + k = 0 + for node in all_docs: + if(node._type == "GSystem"): + try: + node.get_neighbourhood(node.member_of) + except Exception as e: + print(e) + else: + pass + + doc = json.dumps(node, default=json_util.default) #convert mongoDB objectt to a JSON string + #doc = json.loads(doc,object_hook=json_util.object_hook) ->get back mongoDB object from JSON string + document = json.loads(doc) #convert JSON string to a python dictionary + #doc = json.dumps(document) #convert python dictionary to JSON string + if("name" in document.keys()): + document["id"] = document.pop("_id") + document["type"] = document.pop("_type") + if("object_type" in document.keys()): + document["object_type"] = str(document["object_type"]) + if("property_order" in document.keys()): + document["property_order"] = str(document["property_order"]) + if("object_value" in document.keys()): + document["object_value"] = str(document["object_value"]) #for consistent mapping + + create_map(document) + if(document["type"] == "GSystemType"): + create_advanced_map(document) + doc_type = get_document_type(document) + print("indexing document %d with id: %s" % (k,document["id"]["$oid"])) + es.index(index=index, doc_type=doc_type, id=document["id"]["$oid"], body=document) + if "contributors" in document.keys(): + contributors = document["contributors"] + for contributor_id in contributors: + es.index(index = author_index, doc_type = contributor_id, id=document["id"]["$oid"], body = document) + + if(document["type"] == "GSystem"): + for type_ids in document['member_of']: + es.index(index = gsystemtype_index, doc_type = type_ids["$oid"], id = document["id"]["$oid"], body = document) + print("indexed document %d with id: %s" % (k,document["id"]["$oid"])) + k+=1 + +def get_document_type(document): + types_arr = ["Author", "GAttribute", "GRelation", "AttributeType", "Filehive", "RelationType", "Group","GSystemType"] + if document["type"]=="GSystem": + if('if_file' in document.keys()): + if document["if_file"]["mime_type"] is not None: + data = document["if_file"]["mime_type"].split("/") + doc_type = data[0] + else: + doc_type = "NotMedia" + else: + doc_type = "NotMedia" + #doc_type = "GSystem" + elif (document["type"] in types_arr): + doc_type = document["type"] + else: + doc_type = "DontCare" + return doc_type + + +def create_advanced_map(document): + system_type_map[document["name"]] = document["id"]["$oid"] + + attribute_type_set = [] + for attribute in document["attribute_type_set"]: + attribute_type_set.append(attribute["name"]) + relation_type_set = [] + for relation in document["relation_type_set"]: + relation_type_set.append(relation["name"]) + id_attribute_map[document["id"]["$oid"]] = attribute_type_set + id_relation_map[document["id"]["$oid"]] = relation_type_set + +def create_map(document): + if "name" in document.keys(): + if document["type"]=="Author": + author_map[document["name"]] = document["created_by"] + if document["type"]=="Group": + group_map[document["id"]["$oid"]]=document["name"] + + +def main(): + print("Starting the indexing process") + + if(es.indices.exists(index)): + print("Deleting the existing index:"+index+" for reindexing") + res = es.indices.delete(index=index) + print("The delete response is %s " % res) + if(es.indices.exists(author_index)): + print("Deleting the existing author_index:"+author_index +" for reindexing") + res = es.indices.delete(index=author_index) + print("The delete response is %s " % res) + if(es.indices.exists(gsystemtype_index)): + print("Deleting the existing gtype index: "+ index+ "for reindexing") + res = es.indices.delete(index=gsystemtype_index) + print(res) + + with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/req_body.json") as req_body: + request_body = json.load(req_body) + with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/req_body_gtype.json") as req_body_type: + request_body_gtype = json.load(req_body_type) + + res = es.indices.create(index=index, body=request_body) + print("Response for index creation") + print(res) + + res = es.indices.create(index=gsystemtype_index, body=request_body_gtype) + print("Response for index creation") + print(res) + + res = es.indices.create(index=author_index, body=request_body_gtype) + print("Response for index creation") + print(res) + + all_docs = node_collection.find() + index_docs(all_docs).addOption(Bytes.QUERYOPTION_NOTIMEOUT) + + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mapping_files/authormap_clix.json","w") + json.dump(author_map,f,indent=4) + f.close() + + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mapping_files/groupmap_clix.json","w") + json.dump(group_map,f,indent=4) + f.close() + + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mapping_files/gsystemtype_map.json","w") + json.dump(system_type_map,f,indent=4) + f.close() + + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mapping_files/attribute_map.json","w") + json.dump(id_attribute_map,f,indent=4) + f.close() + + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mapping_files/relation_map.json","w") + json.dump(id_relation_map,f,indent=4) + f.close() + + +main() \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/req_body.json b/gnowsys-ndf/gnowsys_ndf/req_body.json new file mode 100644 index 0000000000..3fb2933fe9 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/req_body.json @@ -0,0 +1,466 @@ +{ + "settings": { + "index.mapping.total_fields.limit": 5000, + "number_of_shards": 1, + "number_of_replicas": 0, + "analysis": { + "analyzer": { + "trigram": { + "type": "custom", + "tokenizer": "standard", + "stopwords": "_english_", + "filter": [ + "standard", + "lowercase", + "shingle" + ], + "char_filter": ["html_strip"] + } + }, + "filter": { + "shingle": { + "type": "shingle", + "min_shingle_size": 2, + "max_shingle_size": 3 + } + } + } + }, + "mappings": { + "Author": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "image": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "video": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "text": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "application": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "audio": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "NotMedia": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "Filehive": { + "properties": { + "filename": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "RelationType": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "Group": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "AttributeType": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "GAttribute": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/req_body_gtype.json b/gnowsys-ndf/gnowsys_ndf/req_body_gtype.json new file mode 100644 index 0000000000..c319aae42b --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/req_body_gtype.json @@ -0,0 +1,29 @@ +{ + "settings": { + "index.mapping.total_fields.limit": 10000, + "number_of_shards": 1, + "number_of_replicas": 0, + "analysis": { + "analyzer": { + "trigram": { + "type": "custom", + "tokenizer": "standard", + "stopwords": "_english_", + "filter": [ + "standard", + "lowercase", + "shingle" + ], + "char_filter": ["html_strip"] + } + }, + "filter": { + "shingle": { + "type": "shingle", + "min_shingle_size": 2, + "max_shingle_size": 3 + } + } + } + } +} \ No newline at end of file From e7f54d95465a0bdc9253e8d3e180d71b017be6a0 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Wed, 5 Jul 2017 16:16:14 +0530 Subject: [PATCH 008/766] Modified init script --- gnowsys-ndf/gnowsys_ndf/es_init.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/es_init.py b/gnowsys-ndf/gnowsys_ndf/es_init.py index 424590f4b5..c554195c83 100644 --- a/gnowsys-ndf/gnowsys_ndf/es_init.py +++ b/gnowsys-ndf/gnowsys_ndf/es_init.py @@ -136,8 +136,8 @@ def main(): print("Response for index creation") print(res) - all_docs = node_collection.find() - index_docs(all_docs).addOption(Bytes.QUERYOPTION_NOTIMEOUT) + all_docs = node_collection.find(TIMEOUT=False) + index_docs(all_docs) f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mapping_files/authormap_clix.json","w") json.dump(author_map,f,indent=4) From 206d78c44ee903e137b55dbda11a869beb228425 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Wed, 5 Jul 2017 16:35:01 +0530 Subject: [PATCH 009/766] modfications in the init script --- gnowsys-ndf/gnowsys_ndf/es_init.py | 2 +- gnowsys-ndf/gnowsys_ndf/req_body_gtype.json | 10 +--------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/es_init.py b/gnowsys-ndf/gnowsys_ndf/es_init.py index c554195c83..0f8237902a 100644 --- a/gnowsys-ndf/gnowsys_ndf/es_init.py +++ b/gnowsys-ndf/gnowsys_ndf/es_init.py @@ -8,7 +8,7 @@ # reload(sys) # Reload does the trick! # sys.setdefaultencoding('UTF8') -es = Elasticsearch("http://elsearch:changeit@gsearch:9200") +es = Elasticsearch("http://elsearch:changeit@gsearch:9200", TIMEOUT=False) # doc_type = "" author_map = {} diff --git a/gnowsys-ndf/gnowsys_ndf/req_body_gtype.json b/gnowsys-ndf/gnowsys_ndf/req_body_gtype.json index c319aae42b..e98c856c21 100644 --- a/gnowsys-ndf/gnowsys_ndf/req_body_gtype.json +++ b/gnowsys-ndf/gnowsys_ndf/req_body_gtype.json @@ -11,18 +11,10 @@ "stopwords": "_english_", "filter": [ "standard", - "lowercase", - "shingle" + "lowercase" ], "char_filter": ["html_strip"] } - }, - "filter": { - "shingle": { - "type": "shingle", - "min_shingle_size": 2, - "max_shingle_size": 3 - } } } } From b254918adedde2028e857758f3db30f98443256c Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Thu, 6 Jul 2017 15:43:20 +0530 Subject: [PATCH 010/766] Improved pagination and filters --- gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 287 ++++++++++--------- 1 file changed, 149 insertions(+), 138 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index c0f7ee77d8..719ad26340 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -1,5 +1,6 @@ import re import json +import os from django.shortcuts import render from django.http import HttpResponseRedirect from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger @@ -12,11 +13,15 @@ author_map = {} group_map = {} -with open('/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/authormap.json') as fe: - author_map = json.load(fe) +if(os.path.isdir('/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings')): + with open('/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/authormap_clix.json') as fe: + author_map = json.load(fe) -with open('/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/groupmap.json') as fe: - group_map = json.load(fe) + with open('/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/groupmap_clix.json') as fe: + group_map = json.load(fe) + +else: + print("No mapping found!") hits = "" med_list = [] #contains all the search results @@ -25,150 +30,155 @@ author_index = "author_" + GSTUDIO_SITE_NAME def get_search(request): - + global med_list + global res_list + global results form = SearchForm(request.GET) query = request.GET.get("query") if(query): - print(query) - query_display = "" - group = request.GET.get('group') - select = request.GET.get('select') - - if(select=="Author"): - resultSet = search_query(author_index, select, group, query) - hits = "

No of docs found: %d

" % len(resultSet) - med_list = get_search_results(resultSet) - if(group == "all"): - res_list = ['

Showing contributions of user %s in all groups:

' % (query), hits] - else: - res_list = ['

Showing contributions of user %s in group %s":

' % (query,group_map[str(group)]), hits] + page = request.GET.get("page") + if(page is None): + print(query) + query_display = "" + group = request.GET.get('group') + select = request.GET.get('select') - else: - if(select=="all"): - select = "Author,image,video,text,application,audio,NotMedia" - - phsug_name = get_suggestion_body(query,field_value = "name.trigram",slop_value = 2,field_name_value = "name") - phsug_content = get_suggestion_body(query,field_value = "content.trigram",slop_value = 3,field_name_value = "content") - phsug_tags = get_suggestion_body(query,field_value = "tags.trigram",slop_value = 2,field_name_value = "tags") - - queryNameInfo = [0,0.0,"",""] #[queryNameInfo[0],queryNameInfo[1],queryNameInfo[2],query_display_name] - queryContentInfo = [0,0.0,"",""] - queryTagsInfo = [0,0.0,"",""] - - dqlis = [] # a list containing all the text inserted within double quotes - q = "" # a string to hold the text not enclosed within "" - - #including quotes - if('"' in query): - l = re.split('(")', query) # this will split the query into tokens where delemiter is " and the delimiter is itself a token - qlist = list(filter(lambda a: a!='', l)) + if(select=="Author"): + resultSet = search_query(author_index, select, group, query) + hits = "

No of docs found: %d

" % len(resultSet) + med_list = get_search_results(resultSet) + if(group == "all"): + res_list = ['

Showing contributions of user %s in all groups:

' % (query), hits] + else: + res_list = ['

Showing contributions of user %s in group %s":

' % (query,group_map[str(group)]), hits] - itr = 0 - while(itr0): - query_body = '{ "query": {"bool": { "should": [' - for quot in dqlis: - query_body += ('{"multi_match": {"query": "%s", "fields": ["name^3", "altnames", "content^2", "tags"], "type": "phrase"}},' % (quot)) - if(q!=''): - query_body += ('{"multi_match": {"query": "%s", "fields": ["name^3", "altnames", "content^2", "tags"], "type": "best_fields"}},' % (q)) - query_body += (']}}, "from": 0, "size": 100}') - query_body = eval(query_body) - query_display = query - else: - - get_suggestion(phsug_name, queryNameInfo, select, query, "name") - if(queryNameInfo[2]!=query): - get_suggestion(phsug_content, queryContentInfo, select, query, "content") - if(queryNameInfo[2]!=query and queryContentInfo[2]!=query): - get_suggestion(phsug_tags, queryTagsInfo, select, query, "tags") - - print (queryNameInfo[0],queryContentInfo[0],queryTagsInfo[0]) - query_display = "" - - #what if all are 1 and 2/3 names are same but the third one has higher score - if((queryNameInfo[0]==1 and queryNameInfo[2]==query) or (queryContentInfo[0]==1 and queryContentInfo[2]==query) or (queryTagsInfo[0]==1 and queryTagsInfo[2]==query)): - #if the original query is the query to be searched - query_display = query - elif(queryNameInfo[0]==0 and queryContentInfo[0]==0 and queryTagsInfo[0]==0): - #if we didnt find any suggestion, neither did we find the query already indexed->query remains same + if(select=="all"): + select = "Author,image,video,text,application,audio,NotMedia" + + phsug_name = get_suggestion_body(query, field_value = "name.trigram", slop_value = 2, field_name_value = "name") + phsug_content = get_suggestion_body(query, field_value = "content.trigram", slop_value = 3, field_name_value = "content") + phsug_tags = get_suggestion_body(query, field_value = "tags.trigram", slop_value = 2, field_name_value = "tags") + + queryNameInfo = [0, 0.0, "", ""] #[queryNameInfo[0],queryNameInfo[1],queryNameInfo[2],query_display_name] + queryContentInfo = [0, 0.0, "", ""] + queryTagsInfo = [0, 0.0, "", ""] + + dqlis = [] # a list containing all the text inserted within double quotes + q = "" # a string to hold the text not enclosed within "" + + #including quotes + if('"' in query): + l = re.split('(")', query) # this will split the query into tokens where delemiter is " and the delimiter is itself a token + qlist = list(filter(lambda a: a!='', l)) + + itr = 0 + while(itr0): + query_body = '{ "query": {"bool": { "should": [' + for quot in dqlis: + query_body += ('{"multi_match": {"query": "%s", "fields": ["name^3", "altnames", "content^2", "tags"], "type": "phrase"}},' % (quot)) + if(q!=''): + query_body += ('{"multi_match": {"query": "%s", "fields": ["name^3", "altnames", "content^2", "tags"], "type": "best_fields"}},' % (q)) + query_body += (']}}, "from": 0, "size": 100}') + query_body = eval(query_body) query_display = query - else: #if we found a suggestion - res1_list = ['Search instead for %s'%(query)] #if the user still wants to search for the original query he asked for - if(queryNameInfo[1]>=queryContentInfo[1] and queryNameInfo[1]>=queryTagsInfo[1]): #comparing the scores of name,content,tags suggestions and finding the max of the three - query = queryNameInfo[2] - query_display = queryNameInfo[3] #what query to display on the search result screen - if(queryContentInfo[1]>queryNameInfo[1] and queryContentInfo[1]>=queryTagsInfo[1]): - query = queryContentInfo[2] - query_display = queryContentInfo[3] - if(queryTagsInfo[1]>queryContentInfo[1] and queryTagsInfo[1]>queryNameInfo[1]): - query = queryTagsInfo[2] - query_display = queryTagsInfo[3] - - - - if(queryNameInfo[0]==0 and queryContentInfo[0]==0 and queryTagsInfo[0]==0):#if we didnt find any suggestion, neither did we find the query already indexed - query_body = {"query": { - "multi_match": { #first do a multi_match - "query" : query, - "type": "best_fields", #when multiple words are there in the query, try to search for those words in a single field - "fields": ["name^3", "altnames", "content^2", "tags"], #in which field to search the query - "minimum_should_match": "30%" + + else: + + get_suggestion(phsug_name, queryNameInfo, select, query, "name") + if(queryNameInfo[2]!=query): + get_suggestion(phsug_content, queryContentInfo, select, query, "content") + if(queryNameInfo[2]!=query and queryContentInfo[2]!=query): + get_suggestion(phsug_tags, queryTagsInfo, select, query, "tags") + + print (queryNameInfo[0],queryContentInfo[0],queryTagsInfo[0]) + query_display = "" + + #what if all are 1 and 2/3 names are same but the third one has higher score + if((queryNameInfo[0]==1 and queryNameInfo[2]==query) or (queryContentInfo[0]==1 and queryContentInfo[2]==query) or (queryTagsInfo[0]==1 and queryTagsInfo[2]==query)): + #if the original query is the query to be searched + query_display = query + elif(queryNameInfo[0]==0 and queryContentInfo[0]==0 and queryTagsInfo[0]==0): + #if we didnt find any suggestion, neither did we find the query already indexed->query remains same + query_display = query + else: #if we found a suggestion + res1_list = ['Search instead for %s'%(query)] #if the user still wants to search for the original query he asked for + if(queryNameInfo[1]>=queryContentInfo[1] and queryNameInfo[1]>=queryTagsInfo[1]): #comparing the scores of name,content,tags suggestions and finding the max of the three + query = queryNameInfo[2] + query_display = queryNameInfo[3] #what query to display on the search result screen + if(queryContentInfo[1]>queryNameInfo[1] and queryContentInfo[1]>=queryTagsInfo[1]): + query = queryContentInfo[2] + query_display = queryContentInfo[3] + if(queryTagsInfo[1]>queryContentInfo[1] and queryTagsInfo[1]>queryNameInfo[1]): + query = queryTagsInfo[2] + query_display = queryTagsInfo[3] + + + + if(queryNameInfo[0]==0 and queryContentInfo[0]==0 and queryTagsInfo[0]==0):#if we didnt find any suggestion, neither did we find the query already indexed + query_body = {"query": { + "multi_match": { #first do a multi_match + "query" : query, + "type": "best_fields", #when multiple words are there in the query, try to search for those words in a single field + "fields": ["name^3", "altnames", "content^2", "tags"], #in which field to search the query + "minimum_should_match": "30%" + } + }, + "rescore": { #rescoring the top 50 results of multi_match + "window_size": 50, + "query": { + "rescore_query": { + "bool": { #rescoring using match phrase + "should": [ + {"match_phrase": {"name": { "query": query, "slop":2}}}, + {"match_phrase": {"altnames": { "query": query, "slop": 2}}}, + {"match_phrase": {"content": { "query": query, "slop": 4}}} + ] + } + } } }, - "rescore": { #rescoring the top 50 results of multi_match - "window_size": 50, - "query": { - "rescore_query": { - "bool": { #rescoring using match phrase - "should": [ - {"match_phrase": {"name": { "query": query, "slop":2}}}, - {"match_phrase": {"altnames": { "query": query, "slop": 2}}}, - {"match_phrase": {"content": { "query": query, "slop": 4}}} - ] - } + "from": 0, + "size": 100 + } + + else: #if we found a suggestion or if the query exists as a phrase in one of the name/content/tags field + query_body = {"query": { + "multi_match": { + "query": query, + "fields": ["name^3", "altnames", "content^2", "tags"], + "type": "phrase", #we are doing a match phrase on multi field. + "slop": 5 } - } - }, - "from": 0, - "size": 100 - } - - else: #if we found a suggestion or if the query exists as a phrase in one of the name/content/tags field - query_body = {"query": { - "multi_match": { - "query": query, - "fields": ["name^3", "altnames", "content^2", "tags"], - "type": "phrase", #we are doing a match phrase on multi field. - "slop": 5 - } - }, - "from": 0, - "size": 100 - } - - query_display = query - resultSet = search_query(GSTUDIO_SITE_NAME, select, group, query_body) - hits = "

No of docs found: %d

" % len(resultSet) - if(group=="all"): - res_list = ['

Showing results for %s :Showing results for %s in group "%s":

' % (query_display,group_map[str(group)]), hits] - med_list = get_search_results(resultSet) + }, + "from": 0, + "size": 100 + } + query_display = query + resultSet = search_query(GSTUDIO_SITE_NAME, select, group, query_body) + hits = "

No of docs found: %d

" % len(resultSet) + if(group=="all"): + res_list = ['

Showing results for %s :Showing results for %s in group "%s":

' % (query_display,group_map[str(group)]), hits] + med_list = get_search_results(resultSet) + paginator = Paginator(med_list, 10) page = request.GET.get('page') + print(page) try: results = paginator.page(page) except PageNotAnInteger: @@ -239,8 +249,8 @@ def get_suggestion(suggestion_body, queryInfo, doc_types, query,field): def get_search_results(resultArray): - med_list = [doc['_source'] for doc in resultArray] - return med_list + reslist = [doc['_source'] for doc in resultArray] + return reslist def resources_in_group(res,group): results = [] @@ -272,6 +282,7 @@ def search_query(index_name, select, group, query): elif(index_name == GSTUDIO_SITE_NAME): doctype = select + print(doctype) body = query resultSet = [] @@ -280,7 +291,7 @@ def search_query(index_name, select, group, query): while(True): body['from'] = i - res = es.search(index = index_name, body = body) + res = es.search(index = index_name, doc_type=doctype, body = body) l = len(res["hits"]["hits"]) print (body) if(l==0): From 2899e56d74449f99ab91b10195677d37725f91df Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Thu, 6 Jul 2017 15:48:11 +0530 Subject: [PATCH 011/766] Modified init script and form --- gnowsys-ndf/gnowsys_ndf/es_init.py | 2 +- gnowsys-ndf/gnowsys_ndf/ndf/forms.py | 17 ++++++++--------- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/es_init.py b/gnowsys-ndf/gnowsys_ndf/es_init.py index 0f8237902a..577823129b 100644 --- a/gnowsys-ndf/gnowsys_ndf/es_init.py +++ b/gnowsys-ndf/gnowsys_ndf/es_init.py @@ -136,7 +136,7 @@ def main(): print("Response for index creation") print(res) - all_docs = node_collection.find(TIMEOUT=False) + all_docs = node_collection.find(no_cursor_timeout=True).batch_size(5) index_docs(all_docs) f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mapping_files/authormap_clix.json","w") diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py index b63dc0e272..3e26fa992e 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py @@ -15,23 +15,22 @@ GROUP_CHOICES.append(("all","All")) group_map = {} attribute_map = {} -ATTRIBUTE_CHOICES = [("--Select--","--Select--"),("educationaluse","Educational use"),("interactivitytype","Interactivity type"),("educationalsubject","Educational subject"),("educationallevel","Educational Level"),("source","Source"),("audience","Audience"),("educationalalignment","Educational alignment"),] secondlevel_choices = [] -with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/groupmap.json", 'r') as gm: +with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/groupmap_clix.json", 'r') as gm: group_map = json.load(gm) with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/attribute_map.json") as am: attribute_map = json.load(am) -for i in ATTRIBUTE_CHOICES: - if i[0] != '--Select--': - l = [] - for val in attribute_map[i[0]]: - tup = (val,val) - l.append(tup) - secondlevel_choices.append(l) +# for i in ATTRIBUTE_CHOICES: +# if i[0] != '--Select--': +# l = [] +# for val in attribute_map[i[0]]: +# tup = (val,val) +# l.append(tup) +# secondlevel_choices.append(l) for l in group_map.keys(): tup = (l, group_map[l]) From 963a8b1532a1716cfd41299d19d0f3316cda7a41 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Thu, 6 Jul 2017 16:00:10 +0530 Subject: [PATCH 012/766] Modified rendering of cards --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html index 0bd034442c..72eca0153e 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html @@ -8,7 +8,6 @@ p {text-align:center;} div.pagination {display: block; width: 100%; margin: 0 auto; } div.form_class {text-align: right;} - #card_row li {display: inline;}
@@ -24,9 +23,11 @@ {% endfor %}
-
    +
      {% for c in content %} -
    • {% include 'ndf/card_group.html' with node=c %}
    • +
    • + {% include 'ndf/card_gsearch.html' with node=c %} +
    • {% endfor %}
From 8d4bd01c7f5627e0e0166e8d485db0fa493a622f Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Thu, 6 Jul 2017 16:14:08 +0530 Subject: [PATCH 013/766] Using a variable for the number of page results --- gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index 719ad26340..d59eeb9351 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -8,6 +8,7 @@ from gnowsys_ndf.ndf.forms import SearchForm from gnowsys_ndf.ndf.models import * from gnowsys_ndf.settings import GSTUDIO_SITE_NAME +from gnowsys_ndf.local_settings import GSTUDIO_NO_OF_OBJS_PP es = Elasticsearch(['http://elsearch:changeit@gsearch:9200']) author_map = {} @@ -176,7 +177,7 @@ def get_search(request): res_list = ['

Showing results for %s in group "%s":

' % (query_display,group_map[str(group)]), hits] med_list = get_search_results(resultSet) - paginator = Paginator(med_list, 10) + paginator = Paginator(med_list, GSTUDIO_NO_OF_OBJS_PP) page = request.GET.get('page') print(page) try: From 4cf010ef15b4812c3af376b96f4b1a79384a037b Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Thu, 6 Jul 2017 16:22:07 +0530 Subject: [PATCH 014/766] Using a variable for the number of page results --- gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index d59eeb9351..8b8f32e552 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -7,8 +7,7 @@ from elasticsearch import Elasticsearch from gnowsys_ndf.ndf.forms import SearchForm from gnowsys_ndf.ndf.models import * -from gnowsys_ndf.settings import GSTUDIO_SITE_NAME -from gnowsys_ndf.local_settings import GSTUDIO_NO_OF_OBJS_PP +from gnowsys_ndf.settings import GSTUDIO_SITE_NAME,GSTUDIO_NO_OF_OBJS_PP es = Elasticsearch(['http://elsearch:changeit@gsearch:9200']) author_map = {} From 60e1532a53eca932be7e62e908075699d695131d Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Thu, 6 Jul 2017 17:06:31 +0530 Subject: [PATCH 015/766] refined quotes search --- gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 77 ++++++++++---------- 1 file changed, 39 insertions(+), 38 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index 8b8f32e552..15bbe8a967 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -127,47 +127,48 @@ def get_search(request): - if(queryNameInfo[0]==0 and queryContentInfo[0]==0 and queryTagsInfo[0]==0):#if we didnt find any suggestion, neither did we find the query already indexed - query_body = {"query": { - "multi_match": { #first do a multi_match - "query" : query, - "type": "best_fields", #when multiple words are there in the query, try to search for those words in a single field - "fields": ["name^3", "altnames", "content^2", "tags"], #in which field to search the query - "minimum_should_match": "30%" + if(queryNameInfo[0]==0 and queryContentInfo[0]==0 and queryTagsInfo[0]==0):#if we didnt find any suggestion, neither did we find the query already indexed + query_body = {"query": { + "multi_match": { #first do a multi_match + "query" : query, + "type": "best_fields", #when multiple words are there in the query, try to search for those words in a single field + "fields": ["name^3", "altnames", "content^2", "tags"], #in which field to search the query + "minimum_should_match": "30%" + } + }, + "rescore": { #rescoring the top 50 results of multi_match + "window_size": 50, + "query": { + "rescore_query": { + "bool": { #rescoring using match phrase + "should": [ + {"match_phrase": {"name": { "query": query, "slop":2}}}, + {"match_phrase": {"altnames": { "query": query, "slop": 2}}}, + {"match_phrase": {"content": { "query": query, "slop": 4}}} + ] + } + } } }, - "rescore": { #rescoring the top 50 results of multi_match - "window_size": 50, - "query": { - "rescore_query": { - "bool": { #rescoring using match phrase - "should": [ - {"match_phrase": {"name": { "query": query, "slop":2}}}, - {"match_phrase": {"altnames": { "query": query, "slop": 2}}}, - {"match_phrase": {"content": { "query": query, "slop": 4}}} - ] - } + "from": 0, + "size": 100 + } + + else: #if we found a suggestion or if the query exists as a phrase in one of the name/content/tags field + query_body = {"query": { + "multi_match": { + "query": query, + "fields": ["name^3", "altnames", "content^2", "tags"], + "type": "phrase", #we are doing a match phrase on multi field. + "slop": 5 } - } - }, - "from": 0, - "size": 100 - } - - else: #if we found a suggestion or if the query exists as a phrase in one of the name/content/tags field - query_body = {"query": { - "multi_match": { - "query": query, - "fields": ["name^3", "altnames", "content^2", "tags"], - "type": "phrase", #we are doing a match phrase on multi field. - "slop": 5 - } - }, - "from": 0, - "size": 100 - } - - query_display = query + }, + "from": 0, + "size": 100 + } + + query_display = query + resultSet = search_query(GSTUDIO_SITE_NAME, select, group, query_body) hits = "

No of docs found: %d

" % len(resultSet) if(group=="all"): From 424f5d190ab3df35613c517a2072762b5143c54b Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Thu, 6 Jul 2017 18:06:38 +0530 Subject: [PATCH 016/766] Changed display of search page --- .../gnowsys_ndf/ndf/templates/ndf/sform.html | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html index 72eca0153e..3dc3b46dd2 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html @@ -6,18 +6,21 @@ ul.errorlist {display: none;} h3 {text-align:center;} p {text-align:center;} - div.pagination {display: block; width: 100%; margin: 0 auto; } - div.form_class {text-align: right;} + div.pagination {display: block; width: 10%; margin: 0 auto; }
- {{form}} - -
+
    +
  • {{form.query}}
  • +
  • {{form.group}}
  • +
  • {{form.select}}
  • +
  • +
+
-


+
{% for c in header %}

{{c|safe}}

{% endfor %} From c99c4a7b3795cc20ed3d7846d236ebd603cc2dff Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Fri, 7 Jul 2017 12:28:57 +0530 Subject: [PATCH 017/766] script for initialization of elasticsearch index --- gnowsys-ndf/gnowsys_ndf/es_init.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/es_init.py b/gnowsys-ndf/gnowsys_ndf/es_init.py index 577823129b..28cb5e6064 100644 --- a/gnowsys-ndf/gnowsys_ndf/es_init.py +++ b/gnowsys-ndf/gnowsys_ndf/es_init.py @@ -102,7 +102,6 @@ def create_map(document): if document["type"]=="Group": group_map[document["id"]["$oid"]]=document["name"] - def main(): print("Starting the indexing process") @@ -139,23 +138,23 @@ def main(): all_docs = node_collection.find(no_cursor_timeout=True).batch_size(5) index_docs(all_docs) - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mapping_files/authormap_clix.json","w") + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/authormap_clix.json","w") json.dump(author_map,f,indent=4) f.close() - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mapping_files/groupmap_clix.json","w") + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/groupmap_clix.json","w") json.dump(group_map,f,indent=4) f.close() - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mapping_files/gsystemtype_map.json","w") + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/gsystemtype_map.json","w") json.dump(system_type_map,f,indent=4) f.close() - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mapping_files/attribute_map.json","w") + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/attribute_map.json","w") json.dump(id_attribute_map,f,indent=4) f.close() - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mapping_files/relation_map.json","w") + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/relation_map.json","w") json.dump(id_relation_map,f,indent=4) f.close() From 414b795dec2fecd0f3fcc1977064a852814e3005 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Fri, 7 Jul 2017 15:47:35 +0530 Subject: [PATCH 018/766] Init script for mappings --- gnowsys-ndf/gnowsys_ndf/esinit_map.py | 62 +++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 gnowsys-ndf/gnowsys_ndf/esinit_map.py diff --git a/gnowsys-ndf/gnowsys_ndf/esinit_map.py b/gnowsys-ndf/gnowsys_ndf/esinit_map.py new file mode 100644 index 0000000000..f239227da5 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/esinit_map.py @@ -0,0 +1,62 @@ +from bson import json_util +import os +import sys +import json +from elasticsearch import Elasticsearch +from gnowsys_ndf.ndf.models import * + +es = Elasticsearch("http://elsearch:changeit@gsearch:9200") + +author_map = {} +group_map = {} +system_type_map = {} +id_attribute_map = {} +id_relation_map = {} + +def create_map(all_docs): + for node in all_docs: + if("name" in node): #only docs with names will be considered for mapping + if(node._type=="Author"): + author_map[node.name] = node.created_by + if(node._type=="Group"): + group_map[str(node._id)] = node.name + if(node._type == "GSystemType"): + create_advanced_map(node) + +def create_advanced_map(node): + system_type_map[node.name] = str(node._id) + attribute_type_set = [] + for attribute in node.attribute_type_set: + attribute_type_set.append(attribute["name"]) + relation_type_set = [] + for relation in node.relation_type_set: + relation_type_set.append(relation["name"]) + id_attribute_map[str(node._id)] = attribute_type_set + id_relation_map[str(node._id)] = relation_type_set + +def main(): + print("Starting the map creation process") + all_docs = node_collection.find(no_cursor_timeout=True).batch_size(5) + create_map(all_docs) + + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/authormap_clix.json","w") + json.dump(author_map,f,indent=4) + f.close() + + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/groupmap_clix.json","w") + json.dump(group_map,f,indent=4) + f.close() + + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/gsystemtype_map.json","w") + json.dump(system_type_map,f,indent=4) + f.close() + + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/attribute_map.json","w") + json.dump(id_attribute_map,f,indent=4) + f.close() + + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/relation_map.json","w") + json.dump(id_relation_map,f,indent=4) + f.close() + +main() \ No newline at end of file From 2839073f459f45493ed699095a7b3536ebf21aa1 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Fri, 7 Jul 2017 15:55:18 +0530 Subject: [PATCH 019/766] added groups in search --- gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index 15bbe8a967..5ddb641725 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -35,6 +35,9 @@ def get_search(request): global results form = SearchForm(request.GET) query = request.GET.get("query") + + ######### Drank ######### + if(query): page = request.GET.get("page") if(page is None): @@ -54,7 +57,7 @@ def get_search(request): else: if(select=="all"): - select = "Author,image,video,text,application,audio,NotMedia" + select = "Author,image,video,text,application,audio,Page,NotMedia,Group" phsug_name = get_suggestion_body(query, field_value = "name.trigram", slop_value = 2, field_name_value = "name") phsug_content = get_suggestion_body(query, field_value = "content.trigram", slop_value = 3, field_name_value = "content") @@ -168,7 +171,7 @@ def get_search(request): } query_display = query - + resultSet = search_query(GSTUDIO_SITE_NAME, select, group, query_body) hits = "

No of docs found: %d

" % len(resultSet) if(group=="all"): From d61144f1c39e7622566f3cbd101a5d7afa1d5435 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Fri, 7 Jul 2017 15:59:14 +0530 Subject: [PATCH 020/766] separated map creation --- gnowsys-ndf/gnowsys_ndf/es_init.py | 73 ++++++---------------------- gnowsys-ndf/gnowsys_ndf/ndf/forms.py | 2 +- 2 files changed, 17 insertions(+), 58 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/es_init.py b/gnowsys-ndf/gnowsys_ndf/es_init.py index 28cb5e6064..a01f4489f0 100644 --- a/gnowsys-ndf/gnowsys_ndf/es_init.py +++ b/gnowsys-ndf/gnowsys_ndf/es_init.py @@ -6,21 +6,16 @@ from gnowsys_ndf.ndf.models import * from gnowsys_ndf.settings import GSTUDIO_SITE_NAME -# reload(sys) # Reload does the trick! +##### use the below commented lines if you are working with Python 2.x ##### +# reload(sys) # sys.setdefaultencoding('UTF8') + es = Elasticsearch("http://elsearch:changeit@gsearch:9200", TIMEOUT=False) -# doc_type = "" -author_map = {} -group_map = {} author_index = "author_" + GSTUDIO_SITE_NAME index = GSTUDIO_SITE_NAME gsystemtype_index = "node_type_" + GSTUDIO_SITE_NAME - -system_type_map = {} -id_attribute_map = {} -id_relation_map = {} - +page_id = 0 def index_docs(all_docs): k = 0 @@ -33,10 +28,12 @@ def index_docs(all_docs): else: pass - doc = json.dumps(node, default=json_util.default) #convert mongoDB objectt to a JSON string + doc = json.dumps(node, default=json_util.default) #convert mongoDB object to a JSON string #doc = json.loads(doc,object_hook=json_util.object_hook) ->get back mongoDB object from JSON string + document = json.loads(doc) #convert JSON string to a python dictionary #doc = json.dumps(document) #convert python dictionary to JSON string + if("name" in document.keys()): document["id"] = document.pop("_id") document["type"] = document.pop("_type") @@ -47,9 +44,6 @@ def index_docs(all_docs): if("object_value" in document.keys()): document["object_value"] = str(document["object_value"]) #for consistent mapping - create_map(document) - if(document["type"] == "GSystemType"): - create_advanced_map(document) doc_type = get_document_type(document) print("indexing document %d with id: %s" % (k,document["id"]["$oid"])) es.index(index=index, doc_type=doc_type, id=document["id"]["$oid"], body=document) @@ -61,47 +55,30 @@ def index_docs(all_docs): if(document["type"] == "GSystem"): for type_ids in document['member_of']: es.index(index = gsystemtype_index, doc_type = type_ids["$oid"], id = document["id"]["$oid"], body = document) + print("indexed document %d with id: %s" % (k,document["id"]["$oid"])) k+=1 def get_document_type(document): - types_arr = ["Author", "GAttribute", "GRelation", "AttributeType", "Filehive", "RelationType", "Group","GSystemType"] + types_arr = ["Author", "GAttribute", "GRelation", "AttributeType", "Filehive", "RelationType", "Group", "GSystemType"] if document["type"]=="GSystem": + for ids in document['member_of']: #document is a member of the Page GSystemType + if(ids['$oid'] == page_id): + return "Page" if('if_file' in document.keys()): - if document["if_file"]["mime_type"] is not None: + if(document["if_file"]["mime_type"] is not None): data = document["if_file"]["mime_type"].split("/") doc_type = data[0] else: doc_type = "NotMedia" else: doc_type = "NotMedia" - #doc_type = "GSystem" elif (document["type"] in types_arr): doc_type = document["type"] else: doc_type = "DontCare" return doc_type - -def create_advanced_map(document): - system_type_map[document["name"]] = document["id"]["$oid"] - - attribute_type_set = [] - for attribute in document["attribute_type_set"]: - attribute_type_set.append(attribute["name"]) - relation_type_set = [] - for relation in document["relation_type_set"]: - relation_type_set.append(relation["name"]) - id_attribute_map[document["id"]["$oid"]] = attribute_type_set - id_relation_map[document["id"]["$oid"]] = relation_type_set - -def create_map(document): - if "name" in document.keys(): - if document["type"]=="Author": - author_map[document["name"]] = document["created_by"] - if document["type"]=="Group": - group_map[document["id"]["$oid"]]=document["name"] - def main(): print("Starting the indexing process") @@ -122,6 +99,9 @@ def main(): request_body = json.load(req_body) with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/req_body_gtype.json") as req_body_type: request_body_gtype = json.load(req_body_type) + with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/gsystemtype_map.json") as gtypemap: + gtype_map = json.load(gtypemap) + page_id = gtype_map["Page"] res = es.indices.create(index=index, body=request_body) print("Response for index creation") @@ -138,25 +118,4 @@ def main(): all_docs = node_collection.find(no_cursor_timeout=True).batch_size(5) index_docs(all_docs) - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/authormap_clix.json","w") - json.dump(author_map,f,indent=4) - f.close() - - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/groupmap_clix.json","w") - json.dump(group_map,f,indent=4) - f.close() - - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/gsystemtype_map.json","w") - json.dump(system_type_map,f,indent=4) - f.close() - - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/attribute_map.json","w") - json.dump(id_attribute_map,f,indent=4) - f.close() - - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/relation_map.json","w") - json.dump(id_relation_map,f,indent=4) - f.close() - - main() \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py index 3e26fa992e..a853b0e087 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py @@ -10,7 +10,7 @@ from registration.forms import RegistrationForm from passwords.fields import PasswordField -CHOICES=[("all",'All'),("Author",'Users'),("image",'Images'),("video",'Video'),("text",'Text'),("audio","Audio")] +CHOICES=[("all",'All'),("Author",'Users'),("image",'Images'),("video",'Video'),("text",'Text'),("audio","Audio"),("Page",'Page'),("Group",'Courses')] GROUP_CHOICES=[] GROUP_CHOICES.append(("all","All")) group_map = {} From 70d0e2206f0a0c29ff4c613eb0f46a620759fb17 Mon Sep 17 00:00:00 2001 From: ashwintayade10 Date: Tue, 11 Jul 2017 12:06:57 +0530 Subject: [PATCH 021/766] Advanced Triple Search form --- .../ndf/templates/ndf/advanced_search.html | 191 ++++++++++++++++++ gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py | 4 + gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 33 +++ 3 files changed, 228 insertions(+) create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/advanced_search.html diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/advanced_search.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/advanced_search.html new file mode 100644 index 0000000000..30901c7105 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/advanced_search.html @@ -0,0 +1,191 @@ + +{% extends "ndf/gbase.html" %} +{% block body_content %} + + + + +
+
+
+
+
+
+ +
+{% endblock %} \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py index 30272ba4ee..72f1f0dda0 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py @@ -36,6 +36,10 @@ # django's admin site url's (r'^admin/', include(admin.site.urls)), + url(r'^esearch/?', get_search, name="get_search"), + url(r'^advanced_form/?', get_advanced_search_form, name="advanced_search_form"), + url(r'^advanced_search/?', advanced_search, name="advanced_search"), + # --mobwrite-- commented for time being # (r'^raw/(?P.+)/', 'gnowsys_ndf.mobwrite.views.raw'), # (r'^r/(?P.+)/', 'gnowsys_ndf.mobwrite.views.raw'), diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index 5ddb641725..2945351dbe 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -312,3 +312,36 @@ def search_query(index_name, select, group, query): return resultSet +def get_advanced_search_form(request): + with open(mapping_directory+"/gsystemtype_map.json") as gm: + gsystemtype_map = json.load(gm) + + with open(mapping_directory+"/attribute_map.json") as am: + attribute_map = json.load(am) + + with open(mapping_directory+"/relation_map.json") as rm: + relation_map = json.load(rm) + + gsystemtype_map_str = json.dumps(gsystemtype_map) + attribute_map_str = json.dumps(attribute_map) + relation_map_str = json.dumps(relation_map) + return render(request, 'ndf/advanced_search.html',{"gsystemtype_map":gsystemtype_map_str,'attribute_map':attribute_map_str,'relation_map':relation_map_str}) + +def advanced_search(request): + node_type = request.GET.get("node_type") + arr_attributes = json.loads(request.GET["arr_attributes"]) + arr_relations = json.loads(request.GET["arr_relations"]) + + # global med_list + + # resultSet = search_query(index_name=gsystemtype_index, select=node_type, group="all",query="") # get all the docs in the gsystem index with type = node_type + # for doc in resultSet: + # src = doc['_source'] + # flag = True + # attribute_keys = {} + # for dictio in src['attribute_set']: + # attribute_keys[dictio.keys()[0]] = dictio[dictio.keys()[0]] + # print(attribute_keys) + # # for attr in arr_attributes.keys(): + # # if(attr in src['attribute_set']) + From 80304de0eefb4c5b2c3607f10a650cd33de3cf06 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Tue, 11 Jul 2017 23:40:07 +0530 Subject: [PATCH 022/766] refined indexing process --- gnowsys-ndf/gnowsys_ndf/es_init.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnowsys-ndf/gnowsys_ndf/es_init.py b/gnowsys-ndf/gnowsys_ndf/es_init.py index a01f4489f0..fac88985b5 100644 --- a/gnowsys-ndf/gnowsys_ndf/es_init.py +++ b/gnowsys-ndf/gnowsys_ndf/es_init.py @@ -10,7 +10,7 @@ # reload(sys) # sys.setdefaultencoding('UTF8') -es = Elasticsearch("http://elsearch:changeit@gsearch:9200", TIMEOUT=False) +es = Elasticsearch("http://elsearch:changeit@gsearch:9200", timeout=30) author_index = "author_" + GSTUDIO_SITE_NAME index = GSTUDIO_SITE_NAME From a78005a6f9e1fe9c54a4ba6b3118ebfd9c856dc2 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Tue, 11 Jul 2017 23:40:45 +0530 Subject: [PATCH 023/766] modified map creation for gsystem attributes and relations --- gnowsys-ndf/gnowsys_ndf/esinit_map.py | 48 ++++++++++++++++++++++----- 1 file changed, 40 insertions(+), 8 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/esinit_map.py b/gnowsys-ndf/gnowsys_ndf/esinit_map.py index f239227da5..dff258cae3 100644 --- a/gnowsys-ndf/gnowsys_ndf/esinit_map.py +++ b/gnowsys-ndf/gnowsys_ndf/esinit_map.py @@ -16,10 +16,33 @@ def create_map(all_docs): for node in all_docs: if("name" in node): #only docs with names will be considered for mapping - if(node._type=="Author"): + if(node._type == "Author"): author_map[node.name] = node.created_by - if(node._type=="Group"): - group_map[str(node._id)] = node.name + if(node._type == "Group"): + group_map[node.name] = str(node._id) + if(node._type == "GSystem"): + attr = []; rel = []; + for grid in node.member_of: + gid = str(grid) + if(gid not in system_type_map.values()): + id_attribute_map[gid] = [] + id_relation_map[gid] = [] + attr += id_attribute_map[gid] + rel += id_relation_map[gid] + + attr = list(set(attr)) + rel = list(set(rel)) + for grid in node.member_of: + gid = str(grid) + for attr_dict in node.attribute_set: + for key in attr_dict.keys(): + if(key not in attr): + id_attribute_map[gid].append(key) + for rel_dict in node.relation_set: + for key in rel_dict.keys(): + if(key not in rel): + id_relation_map[gid].append(key) + if(node._type == "GSystemType"): create_advanced_map(node) @@ -31,23 +54,32 @@ def create_advanced_map(node): relation_type_set = [] for relation in node.relation_type_set: relation_type_set.append(relation["name"]) - id_attribute_map[str(node._id)] = attribute_type_set - id_relation_map[str(node._id)] = relation_type_set + if(str(node._id) not in id_attribute_map.keys()): + id_attribute_map[str(node._id)] = [] + if(str(node._id) not in id_relation_map.keys()): + id_relation_map[str(node._id)] = [] + id_attribute_map[str(node._id)] += attribute_type_set + id_relation_map[str(node._id)] += relation_type_set def main(): print("Starting the map creation process") all_docs = node_collection.find(no_cursor_timeout=True).batch_size(5) create_map(all_docs) - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/authormap_clix.json","w") + for key,val in id_attribute_map.iteritems(): + id_attribute_map[key] = list(set(val)) + for key,val in id_relation_map.iteritems(): + id_relation_map[key] = list(set(val)) + + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/authormap.json","w") json.dump(author_map,f,indent=4) f.close() - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/groupmap_clix.json","w") + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/groupmap.json","w") json.dump(group_map,f,indent=4) f.close() - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/gsystemtype_map.json","w") + f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/gsystemtype.json","w") json.dump(system_type_map,f,indent=4) f.close() From f5d8f2d8b465173a7d9557ce7d115bc57bd3908e Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Tue, 11 Jul 2017 23:42:57 +0530 Subject: [PATCH 024/766] Added advanced search --- gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 100 ++++++++++++++----- 1 file changed, 74 insertions(+), 26 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index 2945351dbe..4d559f0749 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -1,8 +1,9 @@ +from bson import json_util import re import json import os from django.shortcuts import render -from django.http import HttpResponseRedirect +from django.http import HttpResponseRedirect, HttpResponse, StreamingHttpResponse from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger from elasticsearch import Elasticsearch from gnowsys_ndf.ndf.forms import SearchForm @@ -13,11 +14,11 @@ author_map = {} group_map = {} -if(os.path.isdir('/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings')): - with open('/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/authormap_clix.json') as fe: +mapping_directory = '/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings' +if(os.path.isdir(mapping_directory)): + with open(mapping_directory+'/authormap.json') as fe: author_map = json.load(fe) - - with open('/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/groupmap_clix.json') as fe: + with open(mapping_directory+'/groupmap.json') as fe: group_map = json.load(fe) else: @@ -27,37 +28,64 @@ med_list = [] #contains all the search results res_list = [] #contains the header of the search results results = [] #contains a single page's results +GSTUDIO_SITE_NAME = "nroer_pro" +append_to_url = "" author_index = "author_" + GSTUDIO_SITE_NAME +gsystemtype_index = "node_type_" + GSTUDIO_SITE_NAME + +GROUP_CHOICES=["All"] +for name in group_map.keys(): + GROUP_CHOICES.append(name) def get_search(request): global med_list global res_list global results + global append_to_url + form = SearchForm(request.GET) query = request.GET.get("query") - - ######### Drank ######### + form.query = query if(query): + print(query) + group = request.GET.get("group") + chkl = request.GET.getlist("groupspec") + print chkl + if(len(chkl)>0): + group = "All" + print "query in group ", group page = request.GET.get("page") if(page is None): print(query) query_display = "" - group = request.GET.get('group') - select = request.GET.get('select') - - if(select=="Author"): + #group = request.GET.get('group') + search_select = request.GET.get('search_select') + search_filter = request.GET.getlist('checks[]') + if(str(search_select) == '1'): + append_to_url = "" + select = "Author" resultSet = search_query(author_index, select, group, query) hits = "

No of docs found: %d

" % len(resultSet) med_list = get_search_results(resultSet) - if(group == "all"): + if(group == "All"): res_list = ['

Showing contributions of user %s in all groups:

' % (query), hits] else: - res_list = ['

Showing contributions of user %s in group %s":

' % (query,group_map[str(group)]), hits] + res_list = ['

Showing contributions of user %s in group %s":

' % (query, group), hits] else: - if(select=="all"): + append_to_url = "" + if(len(search_filter) == 0 or str(search_filter[0])=="all"): select = "Author,image,video,text,application,audio,Page,NotMedia,Group" + append_to_url += "&checks%5B%5D=all" + else: + select = "" + for i in range(0,len(search_filter)-1): + select += search_filter[i]+"," + append_to_url += "&checks%5B%5D="+search_filter[i] + append_to_url += "&checks%5B%5D="+search_filter[len(search_filter) - 1] + select += search_filter[len(search_filter) - 1] + print(select) phsug_name = get_suggestion_body(query, field_value = "name.trigram", slop_value = 2, field_name_value = "name") phsug_content = get_suggestion_body(query, field_value = "content.trigram", slop_value = 3, field_name_value = "content") @@ -174,10 +202,10 @@ def get_search(request): resultSet = search_query(GSTUDIO_SITE_NAME, select, group, query_body) hits = "

No of docs found: %d

" % len(resultSet) - if(group=="all"): + if(group=="All"): res_list = ['

Showing results for %s :Showing results for %s in group "%s":

' % (query_display,group_map[str(group)]), hits] + res_list = ['

Showing results for %s in group "%s":

' % (query_display, group), hits] med_list = get_search_results(resultSet) paginator = Paginator(med_list, GSTUDIO_NO_OF_OBJS_PP) @@ -190,10 +218,9 @@ def get_search(request): except EmptyPage: results = paginator.page(paginator.num_pages) + return render(request, 'ndf/sform.html', {'form': form, 'grpnam': group, 'grp': GROUP_CHOICES, 'header':res_list, 'content': results, 'append_to_url':append_to_url}) - return render(request, 'ndf/sform.html', {'form': form, 'header':res_list, 'content': results}) - - return render(request, 'ndf/sform.html', {'form': form}) + return render(request, 'ndf/sform.html', {'form': form, 'grp': GROUP_CHOICES}) def get_suggestion_body(query, field_value, slop_value, field_name_value): @@ -234,7 +261,7 @@ def get_suggestion_body(query, field_value, slop_value, field_name_value): } return phrase_suggest -def get_suggestion(suggestion_body, queryInfo, doc_types, query,field): +def get_suggestion(suggestion_body, queryInfo, doc_types, query, field): res = es.suggest(body=suggestion_body, index=GSTUDIO_SITE_NAME) #first we search for suggestion in the name field as it has the highest priority print(res) if(len(res['suggest'][0]['options'])>0): #if we get a suggestion means the phrase doesnt exist in the index @@ -258,14 +285,14 @@ def get_search_results(resultArray): def resources_in_group(res,group): results = [] - group_id = str(group) + group_id = group_map[group] for i in res["hits"]["hits"]: if "group_set" in i["_source"].keys(): k = [] for g_id in (i["_source"]["group_set"]): k.append(g_id["$oid"]) if group_id in k: - results.append(i) + results.append(i) return results def search_query(index_name, select, group, query): @@ -286,8 +313,11 @@ def search_query(index_name, select, group, query): elif(index_name == GSTUDIO_SITE_NAME): doctype = select - print(doctype) body = query + + elif(index_name == gsystemtype_index): + body = query + doctype = select resultSet = [] temp = [] @@ -301,7 +331,7 @@ def search_query(index_name, select, group, query): if(l==0): return [] if l > 0 and l <= siz: - if(group == "all"): + if(group == "All"): resultSet.extend(res["hits"]["hits"]) else: temp = resources_in_group(res,group) @@ -312,8 +342,9 @@ def search_query(index_name, select, group, query): return resultSet + def get_advanced_search_form(request): - with open(mapping_directory+"/gsystemtype_map.json") as gm: + with open(mapping_directory+"/gsystemtype.json") as gm: gsystemtype_map = json.load(gm) with open(mapping_directory+"/attribute_map.json") as am: @@ -332,6 +363,24 @@ def advanced_search(request): arr_attributes = json.loads(request.GET["arr_attributes"]) arr_relations = json.loads(request.GET["arr_relations"]) + query_body = "" + if(len(arr_attributes)>0 or len(arr_relations)>0): + query_body = '{ "query": {"bool": { "must": [' + for attr_name, atr_value in arr_attributes.iteritems(): + query_body += ('{"match": { "%s": "%s"}},' % (attr_name, atr_value)) + for rel_name, rel_value in arr_relations.iteritems(): + query_body += ('{"match": { "%s": "%s" }},' % (rel_name, rel_value)) + query_body += (']}}, "from": 0, "size": 100}') + query_body = eval(query_body) + + res = search_query(gsystemtype_index, node_type, "All", query_body) + med_list = get_search_results(res) + print len(med_list) + return HttpResponse(json.dumps({"results": med_list}), content_type="application/json") + + + + # global med_list # resultSet = search_query(index_name=gsystemtype_index, select=node_type, group="all",query="") # get all the docs in the gsystem index with type = node_type @@ -344,4 +393,3 @@ def advanced_search(request): # print(attribute_keys) # # for attr in arr_attributes.keys(): # # if(attr in src['attribute_set']) - From b6bc46897dda6a2a842a4e673510f4e54e951025 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Tue, 11 Jul 2017 23:43:55 +0530 Subject: [PATCH 025/766] modified rendering of form elements --- .../gnowsys_ndf/ndf/templates/ndf/sform.html | 42 ++++++++++++++++--- 1 file changed, 36 insertions(+), 6 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html index 3dc3b46dd2..7c989859c3 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html @@ -2,20 +2,51 @@ {% block title %} Elastic Search {% endblock %} {% block body_content %} + +
  • {{form.query}}
  • -
  • {{form.group}}
  • -
  • {{form.select}}
  • -
  • +
  • + +
  • +
  • {{form.search_select}}
  • +
    +
    + All + Users + Images + Video + Text + Audio + Page + Courses +
    +
@@ -29,7 +60,7 @@
    {% for c in content %}
  • - {% include 'ndf/card_gsearch.html' with node=c %} + {% include "ndf/card_group.html" with node=c %}
  • {% endfor %}
@@ -41,10 +72,9 @@ {% ifequal num content.number %} {{ num }} {% else %} - {{ num }} + {{ num }} {% endifequal %} {% endfor %}
- {% endblock %} \ No newline at end of file From 57e13bb24b1aadb67df74729b49e76b7c8132e17 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Tue, 11 Jul 2017 23:44:27 +0530 Subject: [PATCH 026/766] triple search --- .../ndf/templates/ndf/advanced_search.html | 37 +++++++++++++++++-- 1 file changed, 33 insertions(+), 4 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/advanced_search.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/advanced_search.html index 30901c7105..126041c6c6 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/advanced_search.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/advanced_search.html @@ -1,4 +1,3 @@ - {% extends "ndf/gbase.html" %} {% block body_content %} - + From be2892f9c913f847cfb9ba24dc8a00cdf6462ee1 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Tue, 11 Jul 2017 23:49:53 +0530 Subject: [PATCH 028/766] added new search filters --- gnowsys-ndf/gnowsys_ndf/ndf/forms.py | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py index a853b0e087..7bdc0006cb 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py @@ -11,36 +11,32 @@ from passwords.fields import PasswordField CHOICES=[("all",'All'),("Author",'Users'),("image",'Images'),("video",'Video'),("text",'Text'),("audio","Audio"),("Page",'Page'),("Group",'Courses')] +SEARCH_CHOICE = [(0,'Search for data'),(1,'Contributions of Author')] GROUP_CHOICES=[] +NODE_TYPE_CHOICES = [] +ATTRIBUTE_CHOICES = {} +RELATION_CHOICES = {} + GROUP_CHOICES.append(("all","All")) group_map = {} +gsystem_map = {} attribute_map = {} -secondlevel_choices = [] +relation_map = {} -with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/groupmap_clix.json", 'r') as gm: +with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/groupmap.json", 'r') as gm: group_map = json.load(gm) -with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/attribute_map.json") as am: - attribute_map = json.load(am) - -# for i in ATTRIBUTE_CHOICES: -# if i[0] != '--Select--': -# l = [] -# for val in attribute_map[i[0]]: -# tup = (val,val) -# l.append(tup) -# secondlevel_choices.append(l) - -for l in group_map.keys(): - tup = (l, group_map[l]) +for name,gid in group_map.iteritems(): + tup = (gid, name) tup = tuple(tup) GROUP_CHOICES.append(tup) class SearchForm(forms.Form): - query = forms.CharField(label = '', widget = forms.TextInput(attrs={'placeholder': 'Search for'}), error_messages = False) + query = forms.CharField(label = '', widget = forms.TextInput(attrs={'placeholder': 'Search for'})) group = forms.ChoiceField(label = "Group", widget = forms.Select, choices = GROUP_CHOICES) select = forms.ChoiceField(label = "Filter", widget = forms.Select, choices = CHOICES) + search_select = forms.ChoiceField(label = "Search for", widget= forms.Select, choices= SEARCH_CHOICE) class NodeForm(DocumentForm): From d2e8b1ef5b462877df0920a0026bc34bde45cb67 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Tue, 11 Jul 2017 23:50:34 +0530 Subject: [PATCH 029/766] urls for search added --- gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py index 72f1f0dda0..5ed5c91dec 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py @@ -14,10 +14,14 @@ from gnowsys_ndf.ndf.views.email_registration import password_reset_email, password_reset_error, GstudioEmailRegistrationForm from gnowsys_ndf.ndf.forms import UserChangeform, UserResetform from gnowsys_ndf.ndf.views.home import homepage, landing_page +from gnowsys_ndf.ndf.views.esearch import get_search, get_advanced_search_form, advanced_search + from gnowsys_ndf.ndf.views.methods import tag_info from gnowsys_ndf.ndf.views.custom_app_view import custom_app_view, custom_app_new_view from gnowsys_ndf.ndf.views import rpc_resources +from gnowsys_ndf.ndf.views.esearch import get_search, advanced_search + if GSTUDIO_SITE_NAME.lower() == 'clix': login_template = 'registration/login_clix.html' else: @@ -36,6 +40,9 @@ # django's admin site url's (r'^admin/', include(admin.site.urls)), + + #integrating esearch application in gstudio + url(r'^esearch/?', get_search, name="get_search"), url(r'^advanced_form/?', get_advanced_search_form, name="advanced_search_form"), url(r'^advanced_search/?', advanced_search, name="advanced_search"), @@ -49,11 +56,15 @@ # (r'^mobwrite/', 'gnowsys_ndf.mobwrite.views.mobwrite'), # --end of mobwrite + url(r'^esearch/?', get_search, name="get_search"), + #url(r'^esearch//?',advanced_search,name='advanced_search') + # url(r'^(?P[^/]+)/mailclient[/]error[/](?P[\w-]+)$', 'gnowsys_ndf.ndf.views.mailclient.mailclient_error_display', name='mailclient_error_display'), url(r'^$', homepage, {"group_id": "home"}, name="homepage"), url(r'^welcome/?', landing_page, name="landing_page"), - + #url(r'^esearch/advanced/?', get_triples, name="get_triples"), + url(r'^esearch/?', get_search, name="get_search"), url(r'^captcha/', include('captcha.urls')), (r'^', include('gnowsys_ndf.ndf.urls.captcha')), From 39b6810e24deb16c5c402d350a745abb96bdf163 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Tue, 11 Jul 2017 23:57:13 +0530 Subject: [PATCH 030/766] removed extra lines --- gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index 4d559f0749..0d07e1e985 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -28,7 +28,7 @@ med_list = [] #contains all the search results res_list = [] #contains the header of the search results results = [] #contains a single page's results -GSTUDIO_SITE_NAME = "nroer_pro" + append_to_url = "" author_index = "author_" + GSTUDIO_SITE_NAME gsystemtype_index = "node_type_" + GSTUDIO_SITE_NAME @@ -377,19 +377,3 @@ def advanced_search(request): med_list = get_search_results(res) print len(med_list) return HttpResponse(json.dumps({"results": med_list}), content_type="application/json") - - - - - # global med_list - - # resultSet = search_query(index_name=gsystemtype_index, select=node_type, group="all",query="") # get all the docs in the gsystem index with type = node_type - # for doc in resultSet: - # src = doc['_source'] - # flag = True - # attribute_keys = {} - # for dictio in src['attribute_set']: - # attribute_keys[dictio.keys()[0]] = dictio[dictio.keys()[0]] - # print(attribute_keys) - # # for attr in arr_attributes.keys(): - # # if(attr in src['attribute_set']) From f8f512a4e2175f6f3b769737667cd46dbd6bba53 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Tue, 11 Jul 2017 23:57:46 +0530 Subject: [PATCH 031/766] removed redundancy --- gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py index 5ed5c91dec..020a18f6fb 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py @@ -40,7 +40,6 @@ # django's admin site url's (r'^admin/', include(admin.site.urls)), - #integrating esearch application in gstudio url(r'^esearch/?', get_search, name="get_search"), @@ -56,9 +55,6 @@ # (r'^mobwrite/', 'gnowsys_ndf.mobwrite.views.mobwrite'), # --end of mobwrite - url(r'^esearch/?', get_search, name="get_search"), - #url(r'^esearch//?',advanced_search,name='advanced_search') - # url(r'^(?P[^/]+)/mailclient[/]error[/](?P[\w-]+)$', 'gnowsys_ndf.ndf.views.mailclient.mailclient_error_display', name='mailclient_error_display'), url(r'^$', homepage, {"group_id": "home"}, name="homepage"), From 0e99398acad2bfb59f4cce04eeb332a1a41c8354 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Wed, 12 Jul 2017 02:37:31 +0530 Subject: [PATCH 032/766] added alternate header --- gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 36 ++++++++++++++++---- 1 file changed, 30 insertions(+), 6 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index 0d07e1e985..551b1b7844 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -28,7 +28,8 @@ med_list = [] #contains all the search results res_list = [] #contains the header of the search results results = [] #contains a single page's results - +altinfo_list = [] +#GSTUDIO_SITE_NAME = "nroer_pro" append_to_url = "" author_index = "author_" + GSTUDIO_SITE_NAME gsystemtype_index = "node_type_" + GSTUDIO_SITE_NAME @@ -42,6 +43,7 @@ def get_search(request): global res_list global results global append_to_url + global altinfo_list form = SearchForm(request.GET) query = request.GET.get("query") @@ -137,6 +139,7 @@ def get_search(request): print (queryNameInfo[0],queryContentInfo[0],queryTagsInfo[0]) query_display = "" + altinfo_list = [] #what if all are 1 and 2/3 names are same but the third one has higher score if((queryNameInfo[0]==1 and queryNameInfo[2]==query) or (queryContentInfo[0]==1 and queryContentInfo[2]==query) or (queryTagsInfo[0]==1 and queryTagsInfo[2]==query)): #if the original query is the query to be searched @@ -145,6 +148,7 @@ def get_search(request): #if we didnt find any suggestion, neither did we find the query already indexed->query remains same query_display = query else: #if we found a suggestion + altinfo_list = ["

No results found for %s

" % (query)] res1_list = ['Search instead for %s'%(query)] #if the user still wants to search for the original query he asked for if(queryNameInfo[1]>=queryContentInfo[1] and queryNameInfo[1]>=queryTagsInfo[1]): #comparing the scores of name,content,tags suggestions and finding the max of the three query = queryNameInfo[2] @@ -155,7 +159,9 @@ def get_search(request): if(queryTagsInfo[1]>queryContentInfo[1] and queryTagsInfo[1]>queryNameInfo[1]): query = queryTagsInfo[2] query_display = queryTagsInfo[3] - + + #if(es.search(index=GSTUDIO_SITE_NAME, doc_type=select, body=query_body)['hits']['total']>0): + altinfo_list.append("

Showing results for %s

" % query_display) if(queryNameInfo[0]==0 and queryContentInfo[0]==0 and queryTagsInfo[0]==0):#if we didnt find any suggestion, neither did we find the query already indexed @@ -198,7 +204,7 @@ def get_search(request): "size": 100 } - query_display = query + # query_display = query resultSet = search_query(GSTUDIO_SITE_NAME, select, group, query_body) hits = "

No of docs found: %d

" % len(resultSet) @@ -207,6 +213,8 @@ def get_search(request): else: res_list = ['

Showing results for %s in group "%s":

' % (query_display, group), hits] med_list = get_search_results(resultSet) + if(len(altinfo_list)>0): + res_list = [hits] paginator = Paginator(med_list, GSTUDIO_NO_OF_OBJS_PP) page = request.GET.get('page') @@ -218,7 +226,7 @@ def get_search(request): except EmptyPage: results = paginator.page(paginator.num_pages) - return render(request, 'ndf/sform.html', {'form': form, 'grpnam': group, 'grp': GROUP_CHOICES, 'header':res_list, 'content': results, 'append_to_url':append_to_url}) + return render(request, 'ndf/sform.html', {'form': form, 'grpnam': group, 'grp': GROUP_CHOICES, 'header':res_list, 'alternate': altinfo_list ,'content': results, 'append_to_url':append_to_url}) return render(request, 'ndf/sform.html', {'form': form, 'grp': GROUP_CHOICES}) @@ -262,8 +270,7 @@ def get_suggestion_body(query, field_value, slop_value, field_name_value): return phrase_suggest def get_suggestion(suggestion_body, queryInfo, doc_types, query, field): - res = es.suggest(body=suggestion_body, index=GSTUDIO_SITE_NAME) #first we search for suggestion in the name field as it has the highest priority - print(res) + res = es.suggest(body=suggestion_body, index=GSTUDIO_SITE_NAME) #first we search for suggestion in the name field as it has the highest priority if(len(res['suggest'][0]['options'])>0): #if we get a suggestion means the phrase doesnt exist in the index for sugitem in res['suggest'][0]['options']: if sugitem['collate_match'] == True: #we find the suggestion with collate_match = True @@ -286,6 +293,7 @@ def get_search_results(resultArray): def resources_in_group(res,group): results = [] group_id = group_map[group] + print group_id for i in res["hits"]["hits"]: if "group_set" in i["_source"].keys(): k = [] @@ -377,3 +385,19 @@ def advanced_search(request): med_list = get_search_results(res) print len(med_list) return HttpResponse(json.dumps({"results": med_list}), content_type="application/json") + + + + + # global med_list + + # resultSet = search_query(index_name=gsystemtype_index, select=node_type, group="all",query="") # get all the docs in the gsystem index with type = node_type + # for doc in resultSet: + # src = doc['_source'] + # flag = True + # attribute_keys = {} + # for dictio in src['attribute_set']: + # attribute_keys[dictio.keys()[0]] = dictio[dictio.keys()[0]] + # print(attribute_keys) + # # for attr in arr_attributes.keys(): + # # if(attr in src['attribute_set']) From 38606141675180c776298a66978a1bc986c7ce7a Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Wed, 12 Jul 2017 11:31:33 +0530 Subject: [PATCH 033/766] added rendering of additional info --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html index 7c989859c3..8b5b1ee669 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html @@ -52,6 +52,11 @@
+ +{% for c in alternate %} +

{{c|safe}}

+{% endfor %} + {% for c in header %}

{{c|safe}}

{% endfor %} @@ -60,7 +65,7 @@
    {% for c in content %}
  • - {% include "ndf/card_group.html" with node=c %} + {% include "ndf/card_gsearch.html" with node=c %}
  • {% endfor %}
@@ -72,7 +77,7 @@ {% ifequal num content.number %} {{ num }} {% else %} - {{ num }} + {{ num }} {% endifequal %} {% endfor %} From b1c887a1063fb3bf0bd008f5ae4bb11ff93a7e04 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Wed, 12 Jul 2017 11:32:01 +0530 Subject: [PATCH 034/766] removed redundancy --- gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py index 020a18f6fb..cc6278f5bd 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py @@ -20,8 +20,6 @@ from gnowsys_ndf.ndf.views.custom_app_view import custom_app_view, custom_app_new_view from gnowsys_ndf.ndf.views import rpc_resources -from gnowsys_ndf.ndf.views.esearch import get_search, advanced_search - if GSTUDIO_SITE_NAME.lower() == 'clix': login_template = 'registration/login_clix.html' else: @@ -40,12 +38,6 @@ # django's admin site url's (r'^admin/', include(admin.site.urls)), - #integrating esearch application in gstudio - - url(r'^esearch/?', get_search, name="get_search"), - url(r'^advanced_form/?', get_advanced_search_form, name="advanced_search_form"), - url(r'^advanced_search/?', advanced_search, name="advanced_search"), - # --mobwrite-- commented for time being # (r'^raw/(?P.+)/', 'gnowsys_ndf.mobwrite.views.raw'), # (r'^r/(?P.+)/', 'gnowsys_ndf.mobwrite.views.raw'), @@ -61,6 +53,8 @@ url(r'^welcome/?', landing_page, name="landing_page"), #url(r'^esearch/advanced/?', get_triples, name="get_triples"), url(r'^esearch/?', get_search, name="get_search"), + url(r'^advanced_form/?', get_advanced_search_form, name="advanced_search_form"), + url(r'^advanced_search/?', advanced_search, name="advanced_search"), url(r'^captcha/', include('captcha.urls')), (r'^', include('gnowsys_ndf.ndf.urls.captcha')), From de0a9533e4888bec6582a305f4e2b6feba8a34c4 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Wed, 12 Jul 2017 19:14:54 +0530 Subject: [PATCH 035/766] Added detailed view and search support for triplesearch --- gnowsys-ndf/gnowsys_ndf/es_init.py | 14 ++-- gnowsys-ndf/gnowsys_ndf/esinit_map.py | 21 +++-- gnowsys-ndf/gnowsys_ndf/ndf/forms.py | 11 ++- .../ndf/templates/ndf/card_gsearch.html | 41 +++++++++ .../templates/ndf/result_detailed_view.html | 40 +++++++++ .../gnowsys_ndf/ndf/templates/ndf/sform.html | 23 +++-- gnowsys-ndf/gnowsys_ndf/ndf/urls/node.py | 8 +- gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 83 ++++++++++++------- gnowsys-ndf/gnowsys_ndf/ndf/views/node.py | 16 ++++ 9 files changed, 198 insertions(+), 59 deletions(-) create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_gsearch.html create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/result_detailed_view.html diff --git a/gnowsys-ndf/gnowsys_ndf/es_init.py b/gnowsys-ndf/gnowsys_ndf/es_init.py index fac88985b5..bb3746bedd 100644 --- a/gnowsys-ndf/gnowsys_ndf/es_init.py +++ b/gnowsys-ndf/gnowsys_ndf/es_init.py @@ -28,7 +28,7 @@ def index_docs(all_docs): else: pass - doc = json.dumps(node, default=json_util.default) #convert mongoDB object to a JSON string + doc = json.dumps(node, cls=NodeJSONEncoder) #convert mongoDB object to a JSON string #doc = json.loads(doc,object_hook=json_util.object_hook) ->get back mongoDB object from JSON string document = json.loads(doc) #convert JSON string to a python dictionary @@ -45,25 +45,25 @@ def index_docs(all_docs): document["object_value"] = str(document["object_value"]) #for consistent mapping doc_type = get_document_type(document) - print("indexing document %d with id: %s" % (k,document["id"]["$oid"])) - es.index(index=index, doc_type=doc_type, id=document["id"]["$oid"], body=document) + print("indexing document %d with id: %s" % (k,document["id"])) + es.index(index=index, doc_type=doc_type, id=document["id"], body=document) if "contributors" in document.keys(): contributors = document["contributors"] for contributor_id in contributors: - es.index(index = author_index, doc_type = contributor_id, id=document["id"]["$oid"], body = document) + es.index(index = author_index, doc_type = contributor_id, id=document["id"], body = document) if(document["type"] == "GSystem"): for type_ids in document['member_of']: - es.index(index = gsystemtype_index, doc_type = type_ids["$oid"], id = document["id"]["$oid"], body = document) + es.index(index = gsystemtype_index, doc_type = type_ids, id = document["id"], body = document) - print("indexed document %d with id: %s" % (k,document["id"]["$oid"])) + print("indexed document %d with id: %s" % (k,document["id"])) k+=1 def get_document_type(document): types_arr = ["Author", "GAttribute", "GRelation", "AttributeType", "Filehive", "RelationType", "Group", "GSystemType"] if document["type"]=="GSystem": for ids in document['member_of']: #document is a member of the Page GSystemType - if(ids['$oid'] == page_id): + if(ids == page_id): return "Page" if('if_file' in document.keys()): if(document["if_file"]["mime_type"] is not None): diff --git a/gnowsys-ndf/gnowsys_ndf/esinit_map.py b/gnowsys-ndf/gnowsys_ndf/esinit_map.py index dff258cae3..77c13793ed 100644 --- a/gnowsys-ndf/gnowsys_ndf/esinit_map.py +++ b/gnowsys-ndf/gnowsys_ndf/esinit_map.py @@ -1,5 +1,5 @@ from bson import json_util -import os +import os, errno import sys import json from elasticsearch import Elasticsearch @@ -45,6 +45,10 @@ def create_map(all_docs): if(node._type == "GSystemType"): create_advanced_map(node) + # if(node._type == "GSystem"): + # update_advanced_map(node) + + def create_advanced_map(node): system_type_map[node.name] = str(node._id) @@ -71,23 +75,28 @@ def main(): for key,val in id_relation_map.iteritems(): id_relation_map[key] = list(set(val)) - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/authormap.json","w") + mapping_directory = "/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings" + if not os.path.exists(mapping_directory): + print("creating mapping directory") + os.makedirs(mapping_directory) + + f = open(mapping_directory+"/authormap.json","w") json.dump(author_map,f,indent=4) f.close() - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/groupmap.json","w") + f = open(mapping_directory+"/groupmap.json","w") json.dump(group_map,f,indent=4) f.close() - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/gsystemtype.json","w") + f = open(mapping_directory+"/gsystemtype_map.json","w") json.dump(system_type_map,f,indent=4) f.close() - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/attribute_map.json","w") + f = open(mapping_directory+"/attribute_map.json","w") json.dump(id_attribute_map,f,indent=4) f.close() - f = open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/relation_map.json","w") + f = open(mapping_directory+"/relation_map.json","w") json.dump(id_relation_map,f,indent=4) f.close() diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py index 7bdc0006cb..446345f09a 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py @@ -18,12 +18,12 @@ RELATION_CHOICES = {} GROUP_CHOICES.append(("all","All")) +SEARCH_CHOICE = [(0,'Search for Data'),(1,'Contributions of an Author')] group_map = {} -gsystem_map = {} -attribute_map = {} - -relation_map = {} +mapping_directory = '/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings' +with open(mapping_directory+"/groupmap.json", 'r') as gm: + group_map = json.load(gm) with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/groupmap.json", 'r') as gm: group_map = json.load(gm) @@ -32,13 +32,12 @@ tup = tuple(tup) GROUP_CHOICES.append(tup) + class SearchForm(forms.Form): query = forms.CharField(label = '', widget = forms.TextInput(attrs={'placeholder': 'Search for'})) group = forms.ChoiceField(label = "Group", widget = forms.Select, choices = GROUP_CHOICES) - select = forms.ChoiceField(label = "Filter", widget = forms.Select, choices = CHOICES) search_select = forms.ChoiceField(label = "Search for", widget= forms.Select, choices= SEARCH_CHOICE) - class NodeForm(DocumentForm): tags = forms.CharField(max_length=250) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_gsearch.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_gsearch.html new file mode 100644 index 0000000000..23a948e2ba --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_gsearch.html @@ -0,0 +1,41 @@ +{% load static %} +{% load i18n %} + + + + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/result_detailed_view.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/result_detailed_view.html new file mode 100644 index 0000000000..85c5f06175 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/result_detailed_view.html @@ -0,0 +1,40 @@ +{% extends "ndf/gbase.html" %} +{% load i18n %} +{% load ndf_tags %} + +{% get_group_name groupid as group_name_tag %} + + +{% block title %} {{ node.member_of_names_list|join:", " }} - {{ node.name }} {% endblock %} +{% block head %} + + +{% endblock %} + + +{% block style %} + +{% endblock style %} + +{% block meta_content %} + + +{% endblock %} + + +{% block related_content %} +{% endblock %} + + + +{% block body_content %} +{# {{node.name}} #} + +{{node.name}} +{{node.if_file.mime_type}} +{% endblock %} + +{% block script%} + + +{% endblock %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html index 8b5b1ee669..ba9b6ea75b 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html @@ -15,10 +15,15 @@ div.pagination {display: block; width: 10%; margin: 0 auto; } #grid {width: 200px; padding-top: 5px;} #selid {width: 200px; padding-top: 5px} - #but {padding-top: 10px; margin-right: 0} - #fs {padding-top: 5px; width:200px;} + #but {padding-top: 10px; float: right;} + #filter { + /*float: left;*/ + padding-top: 5px; + } + #ss { + padding-top: 5px; width:200px; + } -
    @@ -34,11 +39,10 @@ {% endfor %} -
  • {{form.search_select}}
  • -
    +
  • {{form.search_select}}
  • All - Users + Users Images Video Text @@ -63,12 +67,13 @@
      -{% for c in content %} +{% for each in content %}
    • - {% include "ndf/card_gsearch.html" with node=c %} -
    • + {% include "ndf/card_gsearch.html" with node=each url_name="node_detail" first_arg=each.group_set.0 second_arg=each.id %} + {% endfor %}
    +
    @@ -68,9 +69,11 @@
      {% for each in content %} + {% if each.group_set.0 %}
    • {% include "ndf/card_gsearch.html" with node=each url_name="node_detail" first_arg=each.group_set.0 second_arg=each.id %} -
    • + + {% endif %} {% endfor %}
    From 3d76662232a1a0a6e603a865743ee0be00b32978 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Wed, 12 Jul 2017 21:26:21 +0530 Subject: [PATCH 043/766] removed unnecessary lines --- gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 22 ++++---------------- 1 file changed, 4 insertions(+), 18 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index 1267bd489a..1e8ff827ce 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -29,7 +29,7 @@ res_list = [] #contains the header of the search results results = [] #contains a single page's results altinfo_list = [] -#GSTUDIO_SITE_NAME = "nroer_pro" + append_to_url = "" author_index = "author_" + GSTUDIO_SITE_NAME gsystemtype_index = "node_type_" + GSTUDIO_SITE_NAME @@ -50,18 +50,15 @@ def get_search(request): form.query = query if(query): - print(query) + group = request.GET.get("group") chkl = request.GET.getlist("groupspec") - print chkl if(len(chkl)>0): group = "All" - print "query in group ", group page = request.GET.get("page") + if(page is None): - print(query) query_display = "" - #group = request.GET.get('group') search_select = request.GET.get('search_select') search_filter = request.GET.getlist('checks[]') if(str(search_select) == '1'): @@ -87,7 +84,6 @@ def get_search(request): append_to_url += "&checks%5B%5D="+search_filter[i] append_to_url += "&checks%5B%5D="+search_filter[len(search_filter) - 1] select += search_filter[len(search_filter) - 1] - print(select) phsug_name = get_suggestion_body(query, field_value = "name.trigram", slop_value = 2, field_name_value = "name") phsug_content = get_suggestion_body(query, field_value = "content.trigram", slop_value = 3, field_name_value = "content") @@ -115,8 +111,6 @@ def get_search(request): q += qlist[itr] itr += 1 - print(dqlis, q) - #dealing with the case when the user has given "" in the query if(len(dqlis)>0): query_body = '{ "query": {"bool": { "should": [' @@ -136,7 +130,6 @@ def get_search(request): if(queryNameInfo[2]!=query and queryContentInfo[2]!=query): get_suggestion(phsug_tags, queryTagsInfo, select, query, "tags") - print (queryNameInfo[0],queryContentInfo[0],queryTagsInfo[0]) query_display = "" altinfo_list = [] @@ -204,10 +197,8 @@ def get_search(request): "size": 100 } - # query_display = query resultSet = search_query(GSTUDIO_SITE_NAME, select, group, query_body) - #print "111111111111111111111",resultSet hits = "

    No of docs found: %d

    " % len(resultSet) if(group=="All"): res_list = ['

    Showing results for %s :0): #if we get a suggestion means the phrase doesnt exist in the index for sugitem in res['suggest'][0]['options']: if sugitem['collate_match'] == True: #we find the suggestion with collate_match = True @@ -294,7 +284,6 @@ def get_search_results(resultArray): def resources_in_group(res,group): results = [] group_id = group_map[group] - print group_id for i in res["hits"]["hits"]: if "group_set" in i["_source"].keys(): k = [] @@ -336,7 +325,6 @@ def search_query(index_name, select, group, query): body['from'] = i res = es.search(index = index_name, doc_type=doctype, body = body) l = len(res["hits"]["hits"]) - print (body) if(l==0): return [] if l > 0 and l <= siz: @@ -415,7 +403,6 @@ def advanced_search(request): rsub = es.get(index=GSTUDIO_SITE_NAME, id=rightid) except Exception as e: continue - print rsub["_source"]["name"] if(rsub["_source"]["name"] == rel_value): fl = 1 break @@ -425,6 +412,5 @@ def advanced_search(request): if(flag==0): med_list1.append(result) - print len(med_list1) return HttpResponse(json.dumps({"results": med_list1}), content_type="application/json") From ccf08d90de68ba9c895208d67c9c5ee29e8db697 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Wed, 12 Jul 2017 21:27:13 +0530 Subject: [PATCH 044/766] changed name of adv search form --- gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py index cc6278f5bd..d3da3de5fb 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py @@ -20,6 +20,8 @@ from gnowsys_ndf.ndf.views.custom_app_view import custom_app_view, custom_app_new_view from gnowsys_ndf.ndf.views import rpc_resources +from gnowsys_ndf.ndf.views.esearch import get_search,get_advanced_search_form,advanced_search + if GSTUDIO_SITE_NAME.lower() == 'clix': login_template = 'registration/login_clix.html' else: @@ -46,6 +48,7 @@ # (r'^new/$', 'gnowsys_ndf.mobwrite.views.new'), # (r'^mobwrite/', 'gnowsys_ndf.mobwrite.views.mobwrite'), # --end of mobwrite + #url(r'^esearch//?',advanced_search,name='advanced_search') # url(r'^(?P[^/]+)/mailclient[/]error[/](?P[\w-]+)$', 'gnowsys_ndf.ndf.views.mailclient.mailclient_error_display', name='mailclient_error_display'), @@ -53,11 +56,11 @@ url(r'^welcome/?', landing_page, name="landing_page"), #url(r'^esearch/advanced/?', get_triples, name="get_triples"), url(r'^esearch/?', get_search, name="get_search"), - url(r'^advanced_form/?', get_advanced_search_form, name="advanced_search_form"), + url(r'^advanced_form/?', get_advanced_search_form, name="get_advanced_search_form"), url(r'^advanced_search/?', advanced_search, name="advanced_search"), url(r'^captcha/', include('captcha.urls')), (r'^', include('gnowsys_ndf.ndf.urls.captcha')), - + #url(r'^esearch/get_mapping_json/(?P[^/]+)/?$', '', name=''), # all main apps (r'^(?P[^/]+)/mailclient', include('gnowsys_ndf.ndf.urls.mailclient')), (r'^(?P[^/]+)/analytics', include('gnowsys_ndf.ndf.urls.analytics')), From 0e737f604ddf1dd5f3f75bdcaa4ce6d9050f69f7 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Thu, 13 Jul 2017 14:11:56 +0530 Subject: [PATCH 045/766] Added thumbnail rendering in card --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_gsearch.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_gsearch.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_gsearch.html index 797031fbbf..599f81abde 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_gsearch.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_gsearch.html @@ -3,11 +3,9 @@
    - -
    DRAFT
    - + {{node.name|truncatechars:20}}
    From 75b43d305e317f59b1a817721ac1e9e04771268a Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Thu, 13 Jul 2017 14:13:00 +0530 Subject: [PATCH 046/766] modified search redirection --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html index d3d1ea02ab..27fb79edb0 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html @@ -164,9 +164,8 @@
  • Explore
  • -
    -
    From d7a38fffb34442b33bc834ae0310c5d39419fbdd Mon Sep 17 00:00:00 2001 From: VigneshN1997 Date: Thu, 13 Jul 2017 16:51:53 +0530 Subject: [PATCH 047/766] added GSTUDIO_DOCUMENT_MAPPING variable(path to mappings folder) --- doc/deployer/es_initialize.py | 4 ++-- doc/deployer/esinitialize_map.py | 3 ++- doc/deployer/update.py | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/doc/deployer/es_initialize.py b/doc/deployer/es_initialize.py index 376806ef30..d0f7f81b16 100644 --- a/doc/deployer/es_initialize.py +++ b/doc/deployer/es_initialize.py @@ -4,7 +4,7 @@ import json from elasticsearch import Elasticsearch from gnowsys_ndf.ndf.models import * -from gnowsys_ndf.settings import GSTUDIO_SITE_NAME +from gnowsys_ndf.settings import GSTUDIO_SITE_NAME, GSTUDIO_DOCUMENT_MAPPING ##### use the below commented lines if you are working with Python 2.x ##### # reload(sys) @@ -96,7 +96,7 @@ def main(): request_body = json.load(req_body) with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/req_body_gtype.json") as req_body_type: request_body_gtype = json.load(req_body_type) - with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/gsystemtype_map.json") as gtypemap: + with open(GSTUDIO_DOCUMENT_MAPPING+"/gsystemtype_map.json") as gtypemap: gtype_map = json.load(gtypemap) page_id = gtype_map["Page"] diff --git a/doc/deployer/esinitialize_map.py b/doc/deployer/esinitialize_map.py index 77c13793ed..218c3345b7 100644 --- a/doc/deployer/esinitialize_map.py +++ b/doc/deployer/esinitialize_map.py @@ -4,6 +4,7 @@ import json from elasticsearch import Elasticsearch from gnowsys_ndf.ndf.models import * +from gnowsys_ndf.settings import GSTUDIO_DOCUMENT_MAPPING es = Elasticsearch("http://elsearch:changeit@gsearch:9200") @@ -75,7 +76,7 @@ def main(): for key,val in id_relation_map.iteritems(): id_relation_map[key] = list(set(val)) - mapping_directory = "/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings" + mapping_directory = GSTUDIO_DOCUMENT_MAPPING if not os.path.exists(mapping_directory): print("creating mapping directory") os.makedirs(mapping_directory) diff --git a/doc/deployer/update.py b/doc/deployer/update.py index 5f7b7cd9e3..bf04865312 100644 --- a/doc/deployer/update.py +++ b/doc/deployer/update.py @@ -4,10 +4,10 @@ import json from elasticsearch import Elasticsearch from gnowsys_ndf.ndf.models import * -from gnowsys_ndf.settings import GSTUDIO_SITE_NAME +from gnowsys_ndf.settings import GSTUDIO_SITE_NAME,GSTUDIO_DOCUMENT_MAPPING es = Elasticsearch("http://elsearch:changeit@gsearch:9200") -mapping_directory = '/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings' +mapping_directory = GSTUDIO_DOCUMENT_MAPPING #during deleting or updating do we need need to set refresh=true to make the document available for search From 29e24d7466d1089321a8490e14b7fabe4993968a Mon Sep 17 00:00:00 2001 From: VigneshN1997 Date: Thu, 13 Jul 2017 16:52:41 +0530 Subject: [PATCH 048/766] checkboxes now persist after pagination --- .../gnowsys_ndf/ndf/templates/ndf/sform.html | 22 +++++++++++-------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html index 58a4c99bc7..d2a5111cc4 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html @@ -12,7 +12,7 @@ ul.errorlist {display: none;} h3 {text-align:center;} p {text-align:center;} - div.pagination {display: block; width: 10%; margin: 0 auto; } + div.pagination {display: block; width: 40%; margin: 0 auto; } #grid {width: 200px; padding-top: 5px;} #selid {width: 200px; padding-top: 5px} #but {padding-top: 10px; float: right;} @@ -41,14 +41,14 @@
  • {{form.search_select}}
  • - All - Users - Images - Video - Text - Audio - Page - Courses + All + Users + Images + Video + Text + Audio + Page + Courses
  • Advanced Search @@ -73,6 +73,10 @@
  • {% include "ndf/card_gsearch.html" with node=each url_name="node_detail" first_arg=each.group_set.0 second_arg=each.id %}
  • + {% else %} +
  • + {% include "ndf/card_gsearch.html" with node=each url_name="node_detail" first_arg="5752ad5a2e01310a05dca583" second_arg=each.id %} +
  • {% endif %} {% endfor %}

From 5155ac14dff493e0f6d3a9c7f8bc133eb7d382fe Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Thu, 13 Jul 2017 16:59:12 +0530 Subject: [PATCH 049/766] Changed orientation of search button --- doc/deployer/es_initialize.py | 4 +-- doc/deployer/esinitialize_map.py | 3 +- doc/deployer/update.py | 4 +-- .../gnowsys_ndf/ndf/templates/ndf/sform.html | 30 +++++++++++-------- 4 files changed, 24 insertions(+), 17 deletions(-) diff --git a/doc/deployer/es_initialize.py b/doc/deployer/es_initialize.py index 376806ef30..d0f7f81b16 100644 --- a/doc/deployer/es_initialize.py +++ b/doc/deployer/es_initialize.py @@ -4,7 +4,7 @@ import json from elasticsearch import Elasticsearch from gnowsys_ndf.ndf.models import * -from gnowsys_ndf.settings import GSTUDIO_SITE_NAME +from gnowsys_ndf.settings import GSTUDIO_SITE_NAME, GSTUDIO_DOCUMENT_MAPPING ##### use the below commented lines if you are working with Python 2.x ##### # reload(sys) @@ -96,7 +96,7 @@ def main(): request_body = json.load(req_body) with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/req_body_gtype.json") as req_body_type: request_body_gtype = json.load(req_body_type) - with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/gsystemtype_map.json") as gtypemap: + with open(GSTUDIO_DOCUMENT_MAPPING+"/gsystemtype_map.json") as gtypemap: gtype_map = json.load(gtypemap) page_id = gtype_map["Page"] diff --git a/doc/deployer/esinitialize_map.py b/doc/deployer/esinitialize_map.py index 77c13793ed..218c3345b7 100644 --- a/doc/deployer/esinitialize_map.py +++ b/doc/deployer/esinitialize_map.py @@ -4,6 +4,7 @@ import json from elasticsearch import Elasticsearch from gnowsys_ndf.ndf.models import * +from gnowsys_ndf.settings import GSTUDIO_DOCUMENT_MAPPING es = Elasticsearch("http://elsearch:changeit@gsearch:9200") @@ -75,7 +76,7 @@ def main(): for key,val in id_relation_map.iteritems(): id_relation_map[key] = list(set(val)) - mapping_directory = "/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings" + mapping_directory = GSTUDIO_DOCUMENT_MAPPING if not os.path.exists(mapping_directory): print("creating mapping directory") os.makedirs(mapping_directory) diff --git a/doc/deployer/update.py b/doc/deployer/update.py index 5f7b7cd9e3..bf04865312 100644 --- a/doc/deployer/update.py +++ b/doc/deployer/update.py @@ -4,10 +4,10 @@ import json from elasticsearch import Elasticsearch from gnowsys_ndf.ndf.models import * -from gnowsys_ndf.settings import GSTUDIO_SITE_NAME +from gnowsys_ndf.settings import GSTUDIO_SITE_NAME,GSTUDIO_DOCUMENT_MAPPING es = Elasticsearch("http://elsearch:changeit@gsearch:9200") -mapping_directory = '/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings' +mapping_directory = GSTUDIO_DOCUMENT_MAPPING #during deleting or updating do we need need to set refresh=true to make the document available for search diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html index 58a4c99bc7..cee417e36e 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html @@ -12,12 +12,13 @@ ul.errorlist {display: none;} h3 {text-align:center;} p {text-align:center;} - div.pagination {display: block; width: 10%; margin: 0 auto; } + div.pagination {display: block; width: 40%; margin: 0 auto; } #grid {width: 200px; padding-top: 5px;} #selid {width: 200px; padding-top: 5px} - #but {padding-top: 10px; float: right;} + #but { position:absolute; + top:50px; + right:0;} #filter { - /*float: left;*/ padding-top: 5px; } #ss { @@ -41,16 +42,17 @@
  • {{form.search_select}}
  • - All - Users - Images - Video - Text - Audio - Page - Courses + All + Users + Images + Video + Text + Audio + Page + Courses
    -
  • + + Advanced Search @@ -73,6 +75,10 @@
  • {% include "ndf/card_gsearch.html" with node=each url_name="node_detail" first_arg=each.group_set.0 second_arg=each.id %}
  • + {% else %} +
  • + {% include "ndf/card_gsearch.html" with node=each url_name="node_detail" first_arg="5752ad5a2e01310a05dca583" second_arg=each.id %} +
  • {% endif %} {% endfor %} From 1091fd2c8a91d7e4bee35d91bfb9f1538da77a29 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Thu, 13 Jul 2017 17:00:00 +0530 Subject: [PATCH 050/766] added new variable from settings --- gnowsys-ndf/gnowsys_ndf/ndf/forms.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py index 446345f09a..d60f3ea8ae 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py @@ -3,6 +3,7 @@ from django import forms from django_mongokit.forms import DocumentForm from django.contrib.auth.forms import PasswordChangeForm, SetPasswordForm +from gnowsys_ndf.settings import GSTUDIO_DOCUMENT_MAPPING from models import Node from models import GSystemType @@ -20,11 +21,11 @@ GROUP_CHOICES.append(("all","All")) SEARCH_CHOICE = [(0,'Search for Data'),(1,'Contributions of an Author')] group_map = {} -mapping_directory = '/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings' +mapping_directory = GSTUDIO_DOCUMENT_MAPPING with open(mapping_directory+"/groupmap.json", 'r') as gm: group_map = json.load(gm) -with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings/groupmap.json", 'r') as gm: +with open(mapping_directory+"/groupmap.json", 'r') as gm: group_map = json.load(gm) for name,gid in group_map.iteritems(): From f01efa0e178250b75d425d56354dc0153e18f1d6 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Thu, 13 Jul 2017 17:00:41 +0530 Subject: [PATCH 051/766] Added rendering of thumbnail and banner_pic --- .../ndf/templates/ndf/card_gsearch.html | 34 +++++++++++++++---- 1 file changed, 28 insertions(+), 6 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_gsearch.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_gsearch.html index 599f81abde..d3606336d6 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_gsearch.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_gsearch.html @@ -1,19 +1,41 @@ -{% load static %} {% load i18n %} +{% load ndf_tags %}
    - - {{node.name|truncatechars:20}} + + {% get_relation_value node.id 'has_thumbnail' as grel_dict %} + {% get_relation_value node.id 'has_banner_pic' as grel_dict_banner %} + {% if grel_dict_banner.grel_node.if_file.thumbnail.relurl %} + + {% elif grel_dict.grel_node.if_file.thumbnail.relurl and 'video' or "File" in node.if_file.mime_type %} + + {% elif node.if_file.thumbnail.relurl and 'video' in node.if_file.mime_type %} + + {% elif node.if_file.mid.relurl %} + + {% elif node.if_file.original.relurl and 'image' in node.if_file.mime_type %} + + {% elif node.fs_file_ids.2 and not 'video' in node.mime_type %} + + {% elif node.fs_file_ids.1 %} + + {% else%} + + {% endif %} + + {{node.name|truncatechars:20}}
    +
    - {{node.content}} + {{node.content|safe}}
    -
    - {{node.id}} +
    +
    +
    From eb5a158f7dd693189599a93eafeb53164e175751 Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Thu, 13 Jul 2017 17:01:31 +0530 Subject: [PATCH 052/766] sending checkbox list to template --- gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index 1e8ff827ce..bbfdabd10e 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -8,13 +8,13 @@ from elasticsearch import Elasticsearch from gnowsys_ndf.ndf.forms import SearchForm from gnowsys_ndf.ndf.models import * -from gnowsys_ndf.settings import GSTUDIO_SITE_NAME,GSTUDIO_NO_OF_OBJS_PP +from gnowsys_ndf.settings import GSTUDIO_SITE_NAME,GSTUDIO_NO_OF_OBJS_PP,GSTUDIO_DOCUMENT_MAPPING es = Elasticsearch(['http://elsearch:changeit@gsearch:9200']) author_map = {} group_map = {} -mapping_directory = '/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/mappings' +mapping_directory = GSTUDIO_DOCUMENT_MAPPING if(os.path.isdir(mapping_directory)): with open(mapping_directory+'/authormap.json') as fe: author_map = json.load(fe) @@ -217,9 +217,9 @@ def get_search(request): except EmptyPage: results = paginator.page(paginator.num_pages) - return render(request, 'ndf/sform.html', {'form': form, 'grpnam': group, 'grp': GROUP_CHOICES, 'header':res_list, 'alternate': altinfo_list ,'content': results, 'append_to_url':append_to_url}) + return render(request, 'ndf/sform.html', {'form': form, 'grpnam': group, 'grp': GROUP_CHOICES, 'searchop': search_filter, 'header':res_list, 'alternate': altinfo_list ,'content': results, 'append_to_url':append_to_url}) - return render(request, 'ndf/sform.html', {'form': form, 'grp': GROUP_CHOICES}) + return render(request, 'ndf/sform.html', {'form': form, 'grp': GROUP_CHOICES, 'searchop': []}) def get_suggestion_body(query, field_value, slop_value, field_name_value): From ecaef7879ec83f15bbb90a3411d13a1a264c241e Mon Sep 17 00:00:00 2001 From: dvjsm26 Date: Thu, 13 Jul 2017 17:05:04 +0530 Subject: [PATCH 053/766] made search_filter global --- gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index bbfdabd10e..d49d58557b 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -29,6 +29,7 @@ res_list = [] #contains the header of the search results results = [] #contains a single page's results altinfo_list = [] +search_filter = [] append_to_url = "" author_index = "author_" + GSTUDIO_SITE_NAME @@ -44,6 +45,7 @@ def get_search(request): global results global append_to_url global altinfo_list + global search_filter form = SearchForm(request.GET) query = request.GET.get("query") From 8923af4903a231e7b0c2177f4d9c016a07d5c9b4 Mon Sep 17 00:00:00 2001 From: VigneshN1997 Date: Sat, 15 Jul 2017 18:25:22 +0530 Subject: [PATCH 054/766] added documentation for updating indices --- doc/deployer/update.py | 66 +++++++++++++++++++++++++++++++++++++++--- 1 file changed, 62 insertions(+), 4 deletions(-) diff --git a/doc/deployer/update.py b/doc/deployer/update.py index bf04865312..d785ed0208 100644 --- a/doc/deployer/update.py +++ b/doc/deployer/update.py @@ -39,6 +39,11 @@ page_id = gsystemtype_map["Page"] def update_doc(node): + ''' + This function should be called from models.py whenever + a new node is created or an existing node is updated(not deleted) + Arguments: the mongoDB object + ''' global doc_type if(node._type == "GSystem"): try: @@ -73,7 +78,35 @@ def update_doc(node): else: indexDoc(document) + f = open(mapping_directory+"/authormap.json","w") + json.dump(author_map,f,indent=4) + f.close() + + f = open(mapping_directory+"/groupmap.json","w") + json.dump(group_map,f,indent=4) + f.close() + + f = open(mapping_directory+"/gsystemtype_map.json","w") + json.dump(gsystem_type_map,f,indent=4) + f.close() + + f = open(mapping_directory+"/attribute_map.json","w") + json.dump(id_attribute_map,f,indent=4) + f.close() + + f = open(mapping_directory+"/relation_map.json","w") + json.dump(id_relation_map,f,indent=4) + f.close() + + def update_author_index(document): + ''' + This function updates the author index, i.e. it + first gets the old document from elasticsearch index, + deletes that document from each contributor_id doc_type and indexes the + new updated document into every contributor doc_type in the new contributors list + Argument: the json file to be indexed + ''' if("contributors" in document.keys()): res = es.get(index=index,doc_type=doc_type,id=document["id"]["$oid"]) if(len(res["hits"]["hits"]) != 0): #check the syntax @@ -91,20 +124,32 @@ def update_author_index(document): def indexGroup(document): - if(document["name"] not in group_map): + ''' + This function indexes/updates those documents whose doc_type is Group. + It also updates the group_map + Argument: the json file to be indexed + ''' + if(document["name"] not in group_map.keys()): group_map[document["name"]] = document["id"]["$oid"] es.index(index=index, doc_type=doc_type, id=document["id"]["$oid"], body=document) def indexAuthor(document): + ''' + This function indexes/updates those documents whose doc_type is Group. + It also updates the author_map + Argument: the json file to be indexed + ''' if(document["name"] not in author_map.keys()): author_map[document["name"]] = document["created_by"] - contributors = document["contributors"] - for contributor_id in contributors: - es.index(index=author_index, doc_type=contributor_id,id=document["id"]["$oid"], body = document) es.index(index=index, doc_type=doc_type, id=document["id"]["$oid"], body=document) def indexGSystemType(document): + ''' + This function indexes/updates those documents whose doc_type is GSystemType + It updates the attribute map and relation map + Argument: the json file to be indexed + ''' if(document["name"] not in gsystemtype_map.keys()): gsystemtype_map[document["name"]] = document["id"]["$oid"] for attribute in document["attribute_type_set"]: @@ -116,6 +161,13 @@ def indexGSystemType(document): es.index(index=index, doc_type=doc_type, id=document["id"]["$oid"], body=document) def indexGSystem(document): + ''' + This function indexes/updates those documents whose type is GSystem + It also updates the attribute map and relation map + It also updates the GSystemType_index, i.e. the + index used for advanced search + Argument: the json file to be indexed + ''' es.index(index=index, doc_type=doc_type, id=document["id"]["$oid"], body=document) attr_set = [] reln_set = [] @@ -142,9 +194,15 @@ def indexGSystem(document): es.index(index = gsystemtype_index, doc_type = type_ids["$oid"], id = document["id"]["$oid"], body = document) def indexDoc(document): + ''' + For any other type of document, this function will index/update the document in the main index + ''' es.index(index=index, doc_type=doc_type, id=document["id"]["$oid"], body=document) def get_document_type(document): + ''' + This function is used to return the document type of a document + ''' types_arr = ["Author", "GAttribute", "GRelation", "AttributeType", "Filehive", "RelationType", "Group", "GSystemType"] if document["type"]=="GSystem": for ids in document['member_of']: #document is a member of the Page GSystemType From 4376c50665d9ffc4060c55f78d5e7ad2c3777981 Mon Sep 17 00:00:00 2001 From: VigneshN1997 Date: Sat, 15 Jul 2017 20:08:02 +0530 Subject: [PATCH 055/766] documented the mapping initialization file --- doc/deployer/esinitialize_map.py | 16 ++++++++++++++++ gnowsys-ndf/gnowsys_ndf/DOCUMENTATION-SEARCH | 2 +- gnowsys-ndf/gnowsys_ndf/ndf/forms.py | 4 +--- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/doc/deployer/esinitialize_map.py b/doc/deployer/esinitialize_map.py index 218c3345b7..91bf068145 100644 --- a/doc/deployer/esinitialize_map.py +++ b/doc/deployer/esinitialize_map.py @@ -15,6 +15,11 @@ id_relation_map = {} def create_map(all_docs): + ''' + This function is used to create 4 maps author_map, group_map,attribute map, relation map + Author map is used to search for the contributions of some author. Group map is used in forms.py to show the group filter. + + ''' for node in all_docs: if("name" in node): #only docs with names will be considered for mapping if(node._type == "Author"): @@ -23,6 +28,12 @@ def create_map(all_docs): group_map[node.name] = str(node._id) if(node._type == "GSystem"): attr = []; rel = []; + #here what we are doing is: if a GSystem node has member_of set as [A,B,C] + #suppose the possible attributes of A are x,y + #suppose the possible attributes of B are z + #suppose the possible attributes of C are w + #if the GSystem node contains any other attribute (p), then that has to be added to the attribute_map + #i.e. it will be added to attribute_set of A,B,C for grid in node.member_of: gid = str(grid) if(gid not in system_type_map.values()): @@ -52,6 +63,11 @@ def create_map(all_docs): def create_advanced_map(node): + ''' + This function is used for creating the gsystemtype_map, attribute_map and relation_map + attribute and relation map are a mapping between the gsystem type id and the possible attributes/relations + of that gsystem type. + ''' system_type_map[node.name] = str(node._id) attribute_type_set = [] for attribute in node.attribute_type_set: diff --git a/gnowsys-ndf/gnowsys_ndf/DOCUMENTATION-SEARCH b/gnowsys-ndf/gnowsys_ndf/DOCUMENTATION-SEARCH index db35e7fa9f..57307d278f 100644 --- a/gnowsys-ndf/gnowsys_ndf/DOCUMENTATION-SEARCH +++ b/gnowsys-ndf/gnowsys_ndf/DOCUMENTATION-SEARCH @@ -96,7 +96,7 @@ index_docs(all_docs) **If the document has “contributors” as a key then we are indexing the document into another index (author_index) with the type as author post greSQL ID. This is necessary if the user wants to search for the contributions of a particular author in a particular group or across all groups. *********************************************************************************************************************************** -******Documentation for esearch.py in views folder****** +******Documentation for esinitialize_map in views folder****** create_map(document): This function is used to create 2 maps. One is an author_map and other is a group_map. Author map is used to search for the contributions of some author. Group map is used in forms.py to show the group filter. create_advanced_map(document) : This function is used to create the gsystem type map, attribute map, relation map. All these 3 maps are used in advanced search. diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py index d60f3ea8ae..2f9d91e461 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py @@ -22,9 +22,7 @@ SEARCH_CHOICE = [(0,'Search for Data'),(1,'Contributions of an Author')] group_map = {} mapping_directory = GSTUDIO_DOCUMENT_MAPPING - -with open(mapping_directory+"/groupmap.json", 'r') as gm: - group_map = json.load(gm) +#group_map for letting users search for data in some group with open(mapping_directory+"/groupmap.json", 'r') as gm: group_map = json.load(gm) From 18f5e697e98b6697e6de7f99ba84dcb55d26480d Mon Sep 17 00:00:00 2001 From: VigneshN1997 Date: Sat, 15 Jul 2017 22:45:37 +0530 Subject: [PATCH 056/766] documented esearch.py(advanced search left) --- gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 50 +++++++++++++++++++- 1 file changed, 49 insertions(+), 1 deletion(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index d49d58557b..d94cfab7bc 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -40,6 +40,12 @@ GROUP_CHOICES.append(name) def get_search(request): + ''' + This function retrieves the search query from the search form and performs + the search with the help of other functions defined below and then sends the + results to sform.html for rendering. See the end of this function for + the control flow of how rendering is done + ''' global med_list global res_list global results @@ -91,7 +97,7 @@ def get_search(request): phsug_content = get_suggestion_body(query, field_value = "content.trigram", slop_value = 3, field_name_value = "content") phsug_tags = get_suggestion_body(query, field_value = "tags.trigram", slop_value = 2, field_name_value = "tags") - queryNameInfo = [0, 0.0, "", ""] #[queryNameInfo[0],queryNameInfo[1],queryNameInfo[2],query_display_name] + queryNameInfo = [0, 0.0, "", ""] #[flag,score,query_to_search,query_display_name] queryContentInfo = [0, 0.0, "", ""] queryTagsInfo = [0, 0.0, "", ""] @@ -219,12 +225,24 @@ def get_search(request): except EmptyPage: results = paginator.page(paginator.num_pages) + #for rendering we pass the group name selected, the different groups possible(GROUP_CHOICES), + #the search_filter(what filters are applied), the header(for what search query results are shown and how many results) + #alternate text(if suggestion is provided), the results array, the search_filter which has to be appended to url + # esearch.py sends results to -> sform.html sends one result at a time to -> card_gsearch.html for rendering of cards + #if a card is clicked, the result's group id and node id is sent to -> node.py(node_detail function) which renders the media + # by sending mongoDB node to ->result_detailed_view.html return render(request, 'ndf/sform.html', {'form': form, 'grpnam': group, 'grp': GROUP_CHOICES, 'searchop': search_filter, 'header':res_list, 'alternate': altinfo_list ,'content': results, 'append_to_url':append_to_url}) return render(request, 'ndf/sform.html', {'form': form, 'grp': GROUP_CHOICES, 'searchop': []}) def get_suggestion_body(query, field_value, slop_value, field_name_value): + ''' + This function is used to return the suggestion json body that will be passed to the suggest function of elasticsearch query DSL. + Arguments: query, field in which suggestion is to be found + “.trigram” to use trigram analyzer, + slop value, field in which suggestion is to be found + Returns: the suggestion body + ''' phrase_suggest = { #json body of phrase suggestion in name field "suggest": { "text": query, #the query for which we want to find suggestion @@ -263,6 +281,13 @@ def get_suggestion_body(query, field_value, slop_value, field_name_value): return phrase_suggest def get_suggestion(suggestion_body, queryInfo, doc_types, query, field): + ''' + Arguments: suggestion_body, queryInfo is an array which has flag(to check if we got a query to search for or not), + score(how close is the first suggestion to the query), doc_types(the type in which to search), + query, the field in which query is to be searched. + This function searches for suggestion and if suggestion is not found, it may mean that the query is already indexed + and if query is also not indexed, then the flag remains 0. If we find a suggestion or if the query is indexed, the flag is set to 1. + ''' res = es.suggest(body=suggestion_body, index=GSTUDIO_SITE_NAME) #first we search for suggestion in the name field as it has the highest priority if(len(res['suggest'][0]['options'])>0): #if we get a suggestion means the phrase doesnt exist in the index for sugitem in res['suggest'][0]['options']: @@ -280,10 +305,20 @@ def get_suggestion(suggestion_body, queryInfo, doc_types, query, field): def get_search_results(resultArray): + ''' + Arguments: the results array which contains all the search results along with id, type, + index name. We need to extract only the json source of the search results. + Returns: Array of json objects which will be passed to the html template for rendering. + ''' reslist = [doc['_source'] for doc in resultArray] return reslist def resources_in_group(res,group): + ''' + Arguments: the results json body which is returned by the es.search function. + The group filter(i.e. Get results from a particular group) + Returns: the search results pertaining to a group. + ''' results = [] group_id = group_map[group] for i in res["hits"]["hits"]: @@ -296,6 +331,15 @@ def resources_in_group(res,group): return results def search_query(index_name, select, group, query): + ''' + Arguments: name of the index in which to search the query,what type of results to show + (filter-images,audio,video,etc), in which groups to search, query + Returns: an array of json bodies(search results) + + This is the main function which does the search. If index_name passed to it is author_index, + the function searches for the contributions of a particular author and if the index name is + gsystemtype_index then the function returns all the GSystem nodes of that GSystemType + ''' siz = 100 if(index_name == author_index): try: @@ -343,6 +387,10 @@ def search_query(index_name, select, group, query): def get_advanced_search_form(request): + ''' + This function passes the 3 maps-> gsystemtype_map, attribute_map, relation_map to the + html template advanced_search.html for the rendering of the advanced search form + ''' with open(mapping_directory+"/gsystemtype_map.json") as gm: gsystemtype_map = json.load(gm) From 0e124eabaf57c8da591c2078910426b229113902 Mon Sep 17 00:00:00 2001 From: Kedar Aitawdekar Date: Tue, 1 Aug 2017 15:04:12 +0530 Subject: [PATCH 057/766] Updated elastic search documentation along with it's name and location --- .../developer/elastic-search.txt | 41 ++++++++++++------- 1 file changed, 27 insertions(+), 14 deletions(-) rename gnowsys-ndf/gnowsys_ndf/DOCUMENTATION-SEARCH => doc/developer/elastic-search.txt (87%) diff --git a/gnowsys-ndf/gnowsys_ndf/DOCUMENTATION-SEARCH b/doc/developer/elastic-search.txt similarity index 87% rename from gnowsys-ndf/gnowsys_ndf/DOCUMENTATION-SEARCH rename to doc/developer/elastic-search.txt index 57307d278f..dbfb6a1848 100644 --- a/gnowsys-ndf/gnowsys_ndf/DOCUMENTATION-SEARCH +++ b/doc/developer/elastic-search.txt @@ -1,29 +1,42 @@ -# To install elsticsearch container -> +# INSTALLING ELASTIC SEARCH CONTAINER: -curl should be installed beforehand +1. GETTING DOCKER IMAGE: + $ docker pull docker.elastic.co/elasticsearch/elasticsearch:5.4.0 -(1.) docker pull docker.elastic.co/elasticsearch/elasticsearch:5.4.0 -(2.) docker run -p 9200:9200 -e "http.host=0.0.0.0" -e "transport.host=127.0.0.1" docker.elastic.co/elasticsearch/elasticsearch:5.4.0 +2. CREATEING CONTAINER: + $ docker run -p 9200:9200 -e "http.host=0.0.0.0" -e "transport.host=127.0.0.1" docker.elastic.co/elasticsearch/elasticsearch:5.4.0 -Then create a superuser to use the elasticsearch instance(since a login is required to use the elasticsearch container) -Open the bash of elasticsearch and inside the bash -(3.) curl -XPOST 'http://elastic:changeme@localhost:9200/_xpack/security/user/elsearch?pretty' -H 'Content-Type:application/json' -d '{"password":"changeit","roles":["superuser"]}' -# Link the gstudio container with the elasticsearch container using the docker run: +3. CREATE A SUPERUSER TO USE THE ELASTIC SEARCH: + - A login is required to use the elasticsearch container. + - Open the bash of elasticsearch and run following inside the bash + $ curl -XPOST 'http://elastic:changeme@localhost:9200/_xpack/security/user/elsearch?pretty' -H 'Content-Type:application/json' -d '{"password": "", "roles": ["superuser"]}' + - NOTE: Make sure same passowrd is used at both places: + 1. GSTUDIO_ELASTIC_SEARCH_PASSWORD + 2. -(4.) docker run -itd --link elasticsearch_container_name:alias --name=gstudio-pilani -p 80:80 -p 8000:8000 -v linking_code_directory -v linking_data_directory image_id -The alias we gave was gsearch-> this alias is used while creating instance of elasticsearch in the program. +4. LINK THE GSTUDIO CONTAINER WITH THE ELASTICSEARCH CONTAINER (using the docker run): + + $ docker run -itd --link :alias --name= -p 80:80 -p 8000:8000 -v -v + +- NOTE: The alias we gave was gsearch -> this alias is used while creating instance of elasticsearch in the program. (--link flag is now deprecated) -Then in the gstudio container bash - -pip install elasticsearch : this will install the python elasticsearch client. +5. INSTALL THE PYTHON ELASTICSEARCH CLIENT (in the gstudio container): + $ pip install elasticsearch + + + +------------------------------------------------------------------------------------------ + + +# IMPLEMENTATION: -Our search url can be found in __init__.py file of urls folder. In the search form, the if filter Users is selected then the contributions of the user entered in the search box will be searched, else if any other filter is selected, normal search will happen. +- Our search url can be found in __init__.py file of urls folder. In the search form, the if filter Users is selected then the contributions of the user entered in the search box will be searched, else if any other filter is selected, normal search will happen. If group is also selected with Users filter, the contributions of that user in a particular group will be searched. *********************************************************************************************************************************** From 7c3980be8f0d84e08847d3616cbb2001e2741a42 Mon Sep 17 00:00:00 2001 From: Kedar Aitawdekar Date: Tue, 1 Aug 2017 15:06:34 +0530 Subject: [PATCH 058/766] Added missing variable GSTUDIO_DOCUMENT_MAPPING in settings.py --- gnowsys-ndf/gnowsys_ndf/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gnowsys-ndf/gnowsys_ndf/settings.py b/gnowsys-ndf/gnowsys_ndf/settings.py index 0aa7c32741..7b6852dadb 100755 --- a/gnowsys-ndf/gnowsys_ndf/settings.py +++ b/gnowsys-ndf/gnowsys_ndf/settings.py @@ -1026,6 +1026,7 @@ # GSTUDIO_BUDDY_LOGIN = False GSTUDIO_INSTITUTE_ID = '' +GSTUDIO_DOCUMENT_MAPPING = '' # # --- End of BUDDY Module --- From f3d0b87382caeb1cb5908b49bf0d43a7fd9d0b81 Mon Sep 17 00:00:00 2001 From: Kedar Aitawdekar Date: Tue, 22 Aug 2017 19:04:11 +0530 Subject: [PATCH 059/766] Removed unicode chars in esearch.py and added default group value for buddy urls --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/buddy.html | 4 ++-- gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/buddy.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/buddy.html index 4960c7d95f..99daa88d62 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/buddy.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/buddy.html @@ -1334,7 +1334,7 @@ function saveBuddies (selectedBuddiesArr) { $.ajax({ - url: "{% url 'update_buddies' group_id %}", + url: "{% url 'update_buddies' group_id|default:'home' %}", type: 'POST', data: { selected_buddies_list: JSON.stringify(selectedBuddiesArr), @@ -1389,7 +1389,7 @@ var buddyName = colorName.trim() + "-" + animalName.trim() + "-" + buddyInstCodeName; var auth_id = 0; $.ajax({ - url: "{% url 'get_buddy_auth_id_from_name' group_id %}", + url: "{% url 'get_buddy_auth_id_from_name' group_id|default:'home' %}", type: 'GET', data: {selected_buddy_username: buddyName}, success: function (data) { diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index d94cfab7bc..0f1cfcc6f2 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- from bson import json_util import re import json @@ -239,7 +240,7 @@ def get_search(request): def get_suggestion_body(query, field_value, slop_value, field_name_value): ''' This function is used to return the suggestion json body that will be passed to the suggest function of elasticsearch query DSL. - Arguments: query, field in which suggestion is to be found + “.trigram” to use trigram analyzer, + Arguments: query, field in which suggestion is to be found + "trigram" to use trigram analyzer, slop value, field in which suggestion is to be found Returns: the suggestion body ''' From 6a6faf4f167d793ea895c4d963b3d52e23201d15 Mon Sep 17 00:00:00 2001 From: Kedar Aitawdekar Date: Tue, 22 Aug 2017 19:13:58 +0530 Subject: [PATCH 060/766] Added a configurable variable GSTUDIO_ELASTIC_SEARCH to made elastic search on or off from UI --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html | 3 +++ gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py | 1 + gnowsys-ndf/gnowsys_ndf/settings.py | 1 + 3 files changed, 5 insertions(+) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html index 0c0e6c4a77..33fa654170 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html @@ -163,6 +163,8 @@
    {% endif %}
  • Explore
  • + + {% if site.ELASTIC_SEARCH %}
  • @@ -182,6 +184,7 @@
  • + {% endif %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py b/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py index 719cf47836..abbb1f4a8e 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py @@ -133,6 +133,7 @@ def get_site_variables(): site_var['ENABLE_USER_DASHBOARD'] = GSTUDIO_ENABLE_USER_DASHBOARD site_var['BUDDY_LOGIN'] = GSTUDIO_BUDDY_LOGIN site_var['INSTITUTE_ID'] = GSTUDIO_INSTITUTE_ID + site_var['ELASTIC_SEARCH'] = GSTUDIO_ELASTIC_SEARCH cache.set('site_var', site_var, 60 * 30) diff --git a/gnowsys-ndf/gnowsys_ndf/settings.py b/gnowsys-ndf/gnowsys_ndf/settings.py index 7b6852dadb..71a2709189 100755 --- a/gnowsys-ndf/gnowsys_ndf/settings.py +++ b/gnowsys-ndf/gnowsys_ndf/settings.py @@ -1027,6 +1027,7 @@ GSTUDIO_BUDDY_LOGIN = False GSTUDIO_INSTITUTE_ID = '' GSTUDIO_DOCUMENT_MAPPING = '' +GSTUDIO_ELASTIC_SEARCH = False # # --- End of BUDDY Module --- From 29794070b6086cc7654fd94eb4725289fb73abb4 Mon Sep 17 00:00:00 2001 From: Kedar Aitawdekar Date: Wed, 23 Aug 2017 18:33:09 +0530 Subject: [PATCH 061/766] try except for import from non elastic instance --- doc/deployer/esinitialize_map.py | 4 ++-- gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py | 16 ++++++++-------- gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 11 ++++++++--- 3 files changed, 18 insertions(+), 13 deletions(-) diff --git a/doc/deployer/esinitialize_map.py b/doc/deployer/esinitialize_map.py index 91bf068145..0270aef1e3 100644 --- a/doc/deployer/esinitialize_map.py +++ b/doc/deployer/esinitialize_map.py @@ -2,11 +2,11 @@ import os, errno import sys import json -from elasticsearch import Elasticsearch +# from elasticsearch import Elasticsearch from gnowsys_ndf.ndf.models import * from gnowsys_ndf.settings import GSTUDIO_DOCUMENT_MAPPING -es = Elasticsearch("http://elsearch:changeit@gsearch:9200") +# es = Elasticsearch("http://elsearch:changeit@gsearch:9200") author_map = {} group_map = {} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py index e4204feb5c..b8e566cd88 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py @@ -8,17 +8,13 @@ from registration.backends.default.views import ActivationView from jsonrpc import jsonrpc_site -# from gnowsys_ndf.ndf.forms import * from gnowsys_ndf.settings import GSTUDIO_SITE_NAME -from gnowsys_ndf.ndf.views.email_registration import password_reset_email, password_reset_error, GstudioEmailRegistrationForm from gnowsys_ndf.ndf.forms import UserChangeform, UserResetform +from gnowsys_ndf.ndf.views.email_registration import password_reset_email, password_reset_error, GstudioEmailRegistrationForm from gnowsys_ndf.ndf.views.home import homepage, landing_page -from gnowsys_ndf.ndf.views.esearch import get_search, get_advanced_search_form, advanced_search - from gnowsys_ndf.ndf.views.methods import tag_info from gnowsys_ndf.ndf.views.custom_app_view import custom_app_view, custom_app_new_view from gnowsys_ndf.ndf.views import rpc_resources - from gnowsys_ndf.ndf.views.esearch import get_search,get_advanced_search_form,advanced_search if GSTUDIO_SITE_NAME.lower() == 'clix': @@ -42,19 +38,23 @@ # (r'^new/$', 'gnowsys_ndf.mobwrite.views.new'), # (r'^mobwrite/', 'gnowsys_ndf.mobwrite.views.mobwrite'), # --end of mobwrite - #url(r'^esearch//?',advanced_search,name='advanced_search') # url(r'^(?P[^/]+)/mailclient[/]error[/](?P[\w-]+)$', 'gnowsys_ndf.ndf.views.mailclient.mailclient_error_display', name='mailclient_error_display'), url(r'^$', homepage, {"group_id": "home"}, name="homepage"), url(r'^welcome/?', landing_page, name="landing_page"), - #url(r'^esearch/advanced/?', get_triples, name="get_triples"), + + # Elastic Search + # url(r'^esearch/advanced/?', get_triples, name="get_triples"), url(r'^esearch/?', get_search, name="get_search"), url(r'^advanced_form/?', get_advanced_search_form, name="get_advanced_search_form"), url(r'^advanced_search/?', advanced_search, name="advanced_search"), + # url(r'^esearch//?',advanced_search,name='advanced_search') + # url(r'^esearch/get_mapping_json/(?P[^/]+)/?$', '', name=''), + # --END of Elastic Search + url(r'^captcha/', include('captcha.urls')), (r'^', include('gnowsys_ndf.ndf.urls.captcha')), - #url(r'^esearch/get_mapping_json/(?P[^/]+)/?$', '', name=''), # all main apps (r'^(?P[^/]+)/mailclient', include('gnowsys_ndf.ndf.urls.mailclient')), (r'^(?P[^/]+)/analytics', include('gnowsys_ndf.ndf.urls.analytics')), diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index 0f1cfcc6f2..e28aea5953 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -6,12 +6,16 @@ from django.shortcuts import render from django.http import HttpResponseRedirect, HttpResponse, StreamingHttpResponse from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger -from elasticsearch import Elasticsearch from gnowsys_ndf.ndf.forms import SearchForm from gnowsys_ndf.ndf.models import * from gnowsys_ndf.settings import GSTUDIO_SITE_NAME,GSTUDIO_NO_OF_OBJS_PP,GSTUDIO_DOCUMENT_MAPPING -es = Elasticsearch(['http://elsearch:changeit@gsearch:9200']) +try: + from elasticsearch import Elasticsearch + es = Elasticsearch(['http://elsearch:changeit@gsearch:9200']) +except Exception as e: + pass + author_map = {} group_map = {} @@ -47,6 +51,7 @@ def get_search(request): results to sform.html for rendering. See the end of this function for the control flow of how rendering is done ''' + global med_list global res_list global results @@ -370,7 +375,7 @@ def search_query(index_name, select, group, query): while(True): body['from'] = i - res = es.search(index = index_name, doc_type=doctype, body = body) + res = es.search(index=index_name, doc_type=doctype, body=body) l = len(res["hits"]["hits"]) if(l==0): return [] From cd3ec41986cef1704043f3c6d347e366419fb2f6 Mon Sep 17 00:00:00 2001 From: kedar2a Date: Fri, 1 Sep 2017 11:47:36 +0530 Subject: [PATCH 062/766] added api urls entry in __init__.py --- gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py index b8e566cd88..24cdf5e64c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py @@ -71,6 +71,7 @@ (r'^(?P[^/]+)/quiz', include('gnowsys_ndf.ndf.urls.quiz')), (r'^(?P[^/]+)/discussion', include('gnowsys_ndf.ndf.urls.discussion')), (r'^(?P[^/]+)/unit',include('gnowsys_ndf.ndf.urls.unit')), + (r'^api/v1',include('gnowsys_ndf.ndf.urls.api')), # Commented following url for khaal hackathon (r'^(?P[^/]+)/course', include('gnowsys_ndf.ndf.urls.course')), From f67376aced5752abc8ded1f8f016d6f3e629aaee Mon Sep 17 00:00:00 2001 From: kedar2a Date: Fri, 1 Sep 2017 11:49:05 +0530 Subject: [PATCH 063/766] added views and urls for api --- gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py | 8 ++ gnowsys-ndf/gnowsys_ndf/ndf/views/api.py | 111 +++++++++++++++++++++++ 2 files changed, 119 insertions(+) create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/views/api.py diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py new file mode 100644 index 0000000000..1f8f062228 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py @@ -0,0 +1,8 @@ +from django.conf.urls import patterns, url + +urlpatterns = patterns('gnowsys_ndf.ndf.views.api', + # GET: api/v1//// + url(r'^/(?P[^/]+)/(?P[^/]+)/(?P[^/]+)/?$', 'api_get_group_gst_nodes', name='(?P[\w-]+)'), +) + + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py new file mode 100644 index 0000000000..90298835b6 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py @@ -0,0 +1,111 @@ +''' -- imports from python libraries -- ''' +import json +from bson.json_util import dumps + +''' -- imports from installed packages -- ''' +try: + from bson import ObjectId +except ImportError: # old pymongo + from pymongo.objectid import ObjectId + + +from django.http import HttpResponseRedirect, HttpResponse +from django.contrib.auth.admin import User +# from django.shortcuts import render_to_response +# from django.template import RequestContext +# from django.contrib.auth.decorators import login_required +# from django.core.urlresolvers import reverse + +''' -- imports from application folders/files -- ''' +from gnowsys_ndf.ndf.models import GSystemType, GSystem #, Group, Node, GSystem #, Triple +from gnowsys_ndf.ndf.models import NodeJSONEncoder +from gnowsys_ndf.ndf.models import node_collection,triple_collection +from gnowsys_ndf.ndf.views.methods import get_group_name_id + + +def api_get_group_gst_nodes(request, group_name_or_id, gst_name_or_id, username_or_id): + # GET: api/v1//// + # import ipdb; ipdb.set_trace() + exception_occured = '' + try: + group_id = ObjectId(group_name_or_id) + except Exception as e: + group_name, group_id = get_group_name_id(group_name_or_id) + + try: + gst_id = ObjectId(gst_name_or_id) + except Exception as e: + gst_name, gst_id = GSystemType.get_gst_name_id(gst_name_or_id) + + # import ipdb; ipdb.set_trace() + username_or_id_int = 0 + try: + username_or_id_int = int(username_or_id) + except Exception as e: + pass + + # user_id = User.objects.get(username=unicode(username_or_id)).id + + auth_obj = node_collection.one({'_type': u'Author', '$or': [{'name': unicode(username_or_id)}, {'created_by': username_or_id_int} ] }) + if auth_obj: + user_id = auth_obj.created_by + else: + return HttpResponse('Requested user does not exists.', content_type='text/plain') + + gst_all_fields_dict = {i: 1 for i, j in GSystem.structure.iteritems()} + gst_api_fields_dict = { "_id": 1, "name": 1, "altnames": 1, "language": 1, "content": 1, "if_file": 1, "tags": 1, "location": 1, "created_by": 1, "modified_by": 1, "contributors": 1, "legal": 1, "rating": 1, "created_at": 1, "last_update": 1, "collection_set": 1, "post_node": 1, "prior_node": 1, "access_policy": 1, "status": 1, "group_set": 1, "member_of": 1, "type_of": 1, + # "relation_set": 1, "attribute_set": 1, + } + + # GET parameters: + human = eval(request.GET.get('human', '0')) + + gst_fields = gst_api_fields_dict if human else gst_all_fields_dict + + all_resources = node_collection.find({ + '_type': 'GSystem', + 'group_set': ObjectId(group_id), + 'member_of': ObjectId(gst_id), + 'created_by': user_id, + 'status': u'PUBLISHED', + 'access_policy': 'PUBLIC' + }, gst_fields) + + + if human: + gst_fields = gst_api_fields_dict + user_fields = ['created_by', 'modified_by', 'contributors'] + + # converting ids to human readable names: + # Django User: + all_users = [] + for each_field in user_fields: + all_users += all_resources.distinct(each_field) + all_users = list(set(all_users)) + + userid_name_dict_cur = node_collection.find({'_type': u'Author', 'created_by': {'$in': all_users}}, {'name': 1, 'created_by': 1, '_id': 0}) + userid_name_dict = {i['created_by']: i['name'] for i in userid_name_dict_cur} + + sample_gs = GSystem() + attributes = sample_gs.get_possible_attributes([gst_id]) + + python_cur_list = [] + python_cur_list_append = python_cur_list.append + for each_gst in all_resources: + # attaching attributes: + for key, value in attributes.iteritems(): + each_gst[key] = value['data_type'] + each_gst[key] = value['object_value'] + + # mapping user id to username. + for each_field in user_fields: + each_gst[each_field] = [userid_name_dict[i] for i in each_gst[each_field]] if isinstance(each_gst[each_field], list) else userid_name_dict[each_gst[each_field]] + + python_cur_list_append(each_gst) + + json_result = json.dumps(python_cur_list, cls=NodeJSONEncoder) + + else: + json_result = dumps(all_resources) + + return HttpResponse(json_result, content_type='application/json') \ No newline at end of file From e196817091d849ac0eeca9ac4a1863cc7a820391 Mon Sep 17 00:00:00 2001 From: kedar2a Date: Fri, 1 Sep 2017 11:49:32 +0530 Subject: [PATCH 064/766] added server_setttings in .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 809728341e..09cc87e14a 100644 --- a/.gitignore +++ b/.gitignore @@ -92,6 +92,7 @@ mathjax/ *~ wikidata/ *local_settings.py +*server_settings.py img/ media/ From 07be645a34467dd86acebbb44ad13006a2a6c9a3 Mon Sep 17 00:00:00 2001 From: kedar2a Date: Sat, 2 Sep 2017 20:44:00 +0530 Subject: [PATCH 065/766] added initial url supporting view --- gnowsys-ndf/gnowsys_ndf/ndf/views/api.py | 85 ++++++++++++++++++++---- 1 file changed, 71 insertions(+), 14 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py index 90298835b6..22a4f6b942 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py @@ -1,5 +1,6 @@ ''' -- imports from python libraries -- ''' import json +import bson from bson.json_util import dumps ''' -- imports from installed packages -- ''' @@ -27,15 +28,18 @@ def api_get_group_gst_nodes(request, group_name_or_id, gst_name_or_id, username_ # GET: api/v1//// # import ipdb; ipdb.set_trace() exception_occured = '' + oid_name_dict = {} try: group_id = ObjectId(group_name_or_id) except Exception as e: group_name, group_id = get_group_name_id(group_name_or_id) + oid_name_dict[group_id] = group_name try: gst_id = ObjectId(gst_name_or_id) except Exception as e: gst_name, gst_id = GSystemType.get_gst_name_id(gst_name_or_id) + oid_name_dict[gst_id] = gst_name # import ipdb; ipdb.set_trace() username_or_id_int = 0 @@ -48,36 +52,60 @@ def api_get_group_gst_nodes(request, group_name_or_id, gst_name_or_id, username_ auth_obj = node_collection.one({'_type': u'Author', '$or': [{'name': unicode(username_or_id)}, {'created_by': username_or_id_int} ] }) if auth_obj: + oid_name_dict[auth_obj._id] = auth_obj.name user_id = auth_obj.created_by else: return HttpResponse('Requested user does not exists.', content_type='text/plain') - gst_all_fields_dict = {i: 1 for i, j in GSystem.structure.iteritems()} + gsystem_structure_dict = GSystem.structure + gsystem_keys = gsystem_structure_dict.keys() + + gst_all_fields_dict = {i: 1 for i in gsystem_keys} gst_api_fields_dict = { "_id": 1, "name": 1, "altnames": 1, "language": 1, "content": 1, "if_file": 1, "tags": 1, "location": 1, "created_by": 1, "modified_by": 1, "contributors": 1, "legal": 1, "rating": 1, "created_at": 1, "last_update": 1, "collection_set": 1, "post_node": 1, "prior_node": 1, "access_policy": 1, "status": 1, "group_set": 1, "member_of": 1, "type_of": 1, # "relation_set": 1, "attribute_set": 1, } + sample_gs = GSystem() + attributes = sample_gs.get_possible_attributes([gst_id]) + + query_dict = { + '_type': 'GSystem', + 'group_set': ObjectId(group_id), + 'member_of': ObjectId(gst_id), + 'created_by': user_id, + 'status': u'PUBLISHED', + 'access_policy': 'PUBLIC', + # 'if_file.mime_type': {'$regex': 'video', '$options': 'i'} + } + # GET parameters: + get_parameters_dict = request.GET.dict() + + for key, val in get_parameters_dict.iteritems(): + if ('gs_' in key): + stripped_key = key.lstrip('gs_').split('.')[0] + if stripped_key in gsystem_keys: + query_dict.update({key.lstrip('gs_'): {'$regex': val, '$options': 'i'}}) + + elif stripped_key in gst_attributes(gst_id): + query_dict.update({('attribute_set.' + stripped_key): {'$regex': val, '$options': 'i'}}) + + # print query_dict + + human = eval(request.GET.get('human', '0')) gst_fields = gst_api_fields_dict if human else gst_all_fields_dict - all_resources = node_collection.find({ - '_type': 'GSystem', - 'group_set': ObjectId(group_id), - 'member_of': ObjectId(gst_id), - 'created_by': user_id, - 'status': u'PUBLISHED', - 'access_policy': 'PUBLIC' - }, gst_fields) + all_resources = node_collection.find(query_dict, gst_fields) if human: gst_fields = gst_api_fields_dict - user_fields = ['created_by', 'modified_by', 'contributors'] # converting ids to human readable names: # Django User: + user_fields = ['created_by', 'modified_by', 'contributors'] all_users = [] for each_field in user_fields: all_users += all_resources.distinct(each_field) @@ -86,14 +114,26 @@ def api_get_group_gst_nodes(request, group_name_or_id, gst_name_or_id, username_ userid_name_dict_cur = node_collection.find({'_type': u'Author', 'created_by': {'$in': all_users}}, {'name': 1, 'created_by': 1, '_id': 0}) userid_name_dict = {i['created_by']: i['name'] for i in userid_name_dict_cur} - sample_gs = GSystem() - attributes = sample_gs.get_possible_attributes([gst_id]) + + # Mongo ids + oid_fields = [ k for k, v in gsystem_structure_dict.iteritems() if v in [bson.objectid.ObjectId, [bson.objectid.ObjectId]] ] + all_oid_list = [] + for each_field in oid_fields: + all_oid_list += all_resources.distinct(each_field) + all_oid_list = list(set(all_oid_list)) + + oid_name_dict_cur = node_collection.find({'_id': {'$in': all_oid_list}}, {'name': 1}) + oid_name_dict = {i['_id']: i['name'] for i in oid_name_dict_cur} + + python_cur_list = [] python_cur_list_append = python_cur_list.append for each_gst in all_resources: + # attaching attributes: - for key, value in attributes.iteritems(): + # NEEDS to optimize. + for key, value in each_gst.get_possible_attributes(each_gst.member_of).iteritems(): each_gst[key] = value['data_type'] each_gst[key] = value['object_value'] @@ -101,6 +141,12 @@ def api_get_group_gst_nodes(request, group_name_or_id, gst_name_or_id, username_ for each_field in user_fields: each_gst[each_field] = [userid_name_dict[i] for i in each_gst[each_field]] if isinstance(each_gst[each_field], list) else userid_name_dict[each_gst[each_field]] + + # mapping mongo _id to name. + for each_field in oid_fields: + each_gst[each_field] = [oid_name_dict[i] for i in each_gst[each_field]] if isinstance(each_gst[each_field], list) else oid_name_dict[each_gst[each_field]] + + python_cur_list_append(each_gst) json_result = json.dumps(python_cur_list, cls=NodeJSONEncoder) @@ -108,4 +154,15 @@ def api_get_group_gst_nodes(request, group_name_or_id, gst_name_or_id, username_ else: json_result = dumps(all_resources) - return HttpResponse(json_result, content_type='application/json') \ No newline at end of file + return HttpResponse(json_result, content_type='application/json') + + +# helper methods: +def gst_attributes(gst_name_or_id): + + try: + gst_id = ObjectId(gst_name_or_id) + except Exception as e: + gst_name, gst_id = GSystemType.get_gst_name_id(gst_name_or_id) + + return [at.name for at in node_collection.find({'_type': 'AttributeType', 'subject_type': gst_id})] From 90de0856ce72f5ce397524dc15d36504478906de Mon Sep 17 00:00:00 2001 From: kedar2a Date: Sat, 2 Sep 2017 20:55:31 +0530 Subject: [PATCH 066/766] API: removed 'gs_' prefix. made human=True by default --- gnowsys-ndf/gnowsys_ndf/ndf/views/api.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py index 22a4f6b942..4d563f7299 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py @@ -82,18 +82,18 @@ def api_get_group_gst_nodes(request, group_name_or_id, gst_name_or_id, username_ get_parameters_dict = request.GET.dict() for key, val in get_parameters_dict.iteritems(): - if ('gs_' in key): - stripped_key = key.lstrip('gs_').split('.')[0] - if stripped_key in gsystem_keys: - query_dict.update({key.lstrip('gs_'): {'$regex': val, '$options': 'i'}}) + # if ('gs_' in key): + # stripped_key = key.lstrip('gs_').split('.')[0] + stripped_key = key.split('.')[0] + if stripped_key in gsystem_keys: + query_dict.update({key: {'$regex': val, '$options': 'i'}}) - elif stripped_key in gst_attributes(gst_id): - query_dict.update({('attribute_set.' + stripped_key): {'$regex': val, '$options': 'i'}}) + elif stripped_key in gst_attributes(gst_id): + query_dict.update({('attribute_set.' + stripped_key): {'$regex': val, '$options': 'i'}}) # print query_dict - - human = eval(request.GET.get('human', '0')) + human = eval(request.GET.get('human', '1')) gst_fields = gst_api_fields_dict if human else gst_all_fields_dict From 0f9166e879161b6281024d193b19c178f8ea0c53 Mon Sep 17 00:00:00 2001 From: kedar2a Date: Sat, 2 Sep 2017 21:36:15 +0530 Subject: [PATCH 067/766] API: made url user free --- gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py | 1 + gnowsys-ndf/gnowsys_ndf/ndf/views/api.py | 43 +++++++++++++----------- 2 files changed, 24 insertions(+), 20 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py index 1f8f062228..49740d1aee 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py @@ -2,6 +2,7 @@ urlpatterns = patterns('gnowsys_ndf.ndf.views.api', # GET: api/v1//// + url(r'^/(?P[^/]+)/(?P[^/]+)/?$', 'api_get_group_gst_nodes', name='(?P[\w-]+)'), url(r'^/(?P[^/]+)/(?P[^/]+)/(?P[^/]+)/?$', 'api_get_group_gst_nodes', name='(?P[\w-]+)'), ) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py index 4d563f7299..6f8ce1f50d 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py @@ -24,7 +24,7 @@ from gnowsys_ndf.ndf.views.methods import get_group_name_id -def api_get_group_gst_nodes(request, group_name_or_id, gst_name_or_id, username_or_id): +def api_get_group_gst_nodes(request, group_name_or_id, gst_name_or_id): # GET: api/v1//// # import ipdb; ipdb.set_trace() exception_occured = '' @@ -41,22 +41,6 @@ def api_get_group_gst_nodes(request, group_name_or_id, gst_name_or_id, username_ gst_name, gst_id = GSystemType.get_gst_name_id(gst_name_or_id) oid_name_dict[gst_id] = gst_name - # import ipdb; ipdb.set_trace() - username_or_id_int = 0 - try: - username_or_id_int = int(username_or_id) - except Exception as e: - pass - - # user_id = User.objects.get(username=unicode(username_or_id)).id - - auth_obj = node_collection.one({'_type': u'Author', '$or': [{'name': unicode(username_or_id)}, {'created_by': username_or_id_int} ] }) - if auth_obj: - oid_name_dict[auth_obj._id] = auth_obj.name - user_id = auth_obj.created_by - else: - return HttpResponse('Requested user does not exists.', content_type='text/plain') - gsystem_structure_dict = GSystem.structure gsystem_keys = gsystem_structure_dict.keys() @@ -72,7 +56,7 @@ def api_get_group_gst_nodes(request, group_name_or_id, gst_name_or_id, username_ '_type': 'GSystem', 'group_set': ObjectId(group_id), 'member_of': ObjectId(gst_id), - 'created_by': user_id, + # 'created_by': user_id, 'status': u'PUBLISHED', 'access_policy': 'PUBLIC', # 'if_file.mime_type': {'$regex': 'video', '$options': 'i'} @@ -80,18 +64,37 @@ def api_get_group_gst_nodes(request, group_name_or_id, gst_name_or_id, username_ # GET parameters: get_parameters_dict = request.GET.dict() + + get_created_by = request.GET.get('created_by', None) + if get_created_by: + username_or_id_int = 0 + try: + username_or_id_int = int(get_created_by) + except Exception as e: + pass + + auth_obj = node_collection.one({'_type': u'Author', '$or': [{'name': unicode(get_created_by)}, {'created_by': username_or_id_int} ] }) + if auth_obj: + oid_name_dict[auth_obj._id] = auth_obj.name + # user_id = auth_obj.created_by + get_parameters_dict['created_by'] = auth_obj.created_by + else: + return HttpResponse('Requested user does not exists.', content_type='text/plain') + + # get_resource_type = request.GET.get('resource_type', None) for key, val in get_parameters_dict.iteritems(): # if ('gs_' in key): # stripped_key = key.lstrip('gs_').split('.')[0] stripped_key = key.split('.')[0] if stripped_key in gsystem_keys: - query_dict.update({key: {'$regex': val, '$options': 'i'}}) + # query_dict.update({key: {'$regex': val, '$options': 'i'}}) + query_dict.update({key: (val if isinstance(val, int) else {'$regex': val, '$options': 'i'}) }) elif stripped_key in gst_attributes(gst_id): query_dict.update({('attribute_set.' + stripped_key): {'$regex': val, '$options': 'i'}}) - # print query_dict + print query_dict human = eval(request.GET.get('human', '1')) From 66838e23abd7a172a3932f5fe619da94720ca911 Mon Sep 17 00:00:00 2001 From: kedar2a Date: Mon, 4 Sep 2017 12:27:23 +0530 Subject: [PATCH 068/766] API: making url work without GST name in url --- gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py | 5 ++-- gnowsys-ndf/gnowsys_ndf/ndf/views/api.py | 33 ++++++++++++------------ 2 files changed, 20 insertions(+), 18 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py index 49740d1aee..ff5c27666c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py @@ -2,8 +2,9 @@ urlpatterns = patterns('gnowsys_ndf.ndf.views.api', # GET: api/v1//// - url(r'^/(?P[^/]+)/(?P[^/]+)/?$', 'api_get_group_gst_nodes', name='(?P[\w-]+)'), - url(r'^/(?P[^/]+)/(?P[^/]+)/(?P[^/]+)/?$', 'api_get_group_gst_nodes', name='(?P[\w-]+)'), + url(r'^/(?P[^/]+)/?$', 'api_get_group_gst_nodes', name='(?P[\w-]+)'), + # url(r'^/(?P[^/]+)/(?P[^/]+)/?$', 'api_get_group_gst_nodes', name='(?P[\w-]+)'), + # url(r'^/(?P[^/]+)/(?P[^/]+)/(?P[^/]+)/?$', 'api_get_group_gst_nodes', name='(?P[\w-]+)'), ) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py index 6f8ce1f50d..9124a71294 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py @@ -24,7 +24,7 @@ from gnowsys_ndf.ndf.views.methods import get_group_name_id -def api_get_group_gst_nodes(request, group_name_or_id, gst_name_or_id): +def api_get_group_gst_nodes(request, group_name_or_id): # GET: api/v1//// # import ipdb; ipdb.set_trace() exception_occured = '' @@ -35,12 +35,6 @@ def api_get_group_gst_nodes(request, group_name_or_id, gst_name_or_id): group_name, group_id = get_group_name_id(group_name_or_id) oid_name_dict[group_id] = group_name - try: - gst_id = ObjectId(gst_name_or_id) - except Exception as e: - gst_name, gst_id = GSystemType.get_gst_name_id(gst_name_or_id) - oid_name_dict[gst_id] = gst_name - gsystem_structure_dict = GSystem.structure gsystem_keys = gsystem_structure_dict.keys() @@ -49,19 +43,18 @@ def api_get_group_gst_nodes(request, group_name_or_id, gst_name_or_id): # "relation_set": 1, "attribute_set": 1, } - sample_gs = GSystem() - attributes = sample_gs.get_possible_attributes([gst_id]) - query_dict = { '_type': 'GSystem', 'group_set': ObjectId(group_id), - 'member_of': ObjectId(gst_id), - # 'created_by': user_id, 'status': u'PUBLISHED', 'access_policy': 'PUBLIC', - # 'if_file.mime_type': {'$regex': 'video', '$options': 'i'} + # 'member_of': ObjectId(gst_id), + # 'created_by': user_id, } + sample_gs = GSystem() + attributes = {} + # GET parameters: get_parameters_dict = request.GET.dict() @@ -81,7 +74,15 @@ def api_get_group_gst_nodes(request, group_name_or_id, gst_name_or_id): else: return HttpResponse('Requested user does not exists.', content_type='text/plain') - # get_resource_type = request.GET.get('resource_type', None) + get_resource_type = request.GET.get('resource_type', None) + if get_resource_type: + try: + gst_id = ObjectId(get_resource_type) + except Exception as e: + gst_name, gst_id = GSystemType.get_gst_name_id(get_resource_type) + oid_name_dict[gst_id] = gst_name + get_parameters_dict['member_of'] = gst_id + attributes = sample_gs.get_possible_attributes([gst_id]) for key, val in get_parameters_dict.iteritems(): # if ('gs_' in key): @@ -89,12 +90,12 @@ def api_get_group_gst_nodes(request, group_name_or_id, gst_name_or_id): stripped_key = key.split('.')[0] if stripped_key in gsystem_keys: # query_dict.update({key: {'$regex': val, '$options': 'i'}}) - query_dict.update({key: (val if isinstance(val, int) else {'$regex': val, '$options': 'i'}) }) + query_dict.update({key: ({'$regex': val, '$options': 'i'} if isinstance(val, basestring or unicode) else val) }) elif stripped_key in gst_attributes(gst_id): query_dict.update({('attribute_set.' + stripped_key): {'$regex': val, '$options': 'i'}}) - print query_dict + print "query_dict: ", query_dict human = eval(request.GET.get('human', '1')) From cd198557f960a386e2da89b0368bb1fd17d59ea8 Mon Sep 17 00:00:00 2001 From: kedar2a Date: Mon, 4 Sep 2017 19:22:18 +0530 Subject: [PATCH 069/766] API: made apis to work even without group and gst type in url --- gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py | 3 +- gnowsys-ndf/gnowsys_ndf/ndf/views/api.py | 56 ++++++++++++------------ 2 files changed, 30 insertions(+), 29 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py index ff5c27666c..b0c016d7aa 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py @@ -2,7 +2,8 @@ urlpatterns = patterns('gnowsys_ndf.ndf.views.api', # GET: api/v1//// - url(r'^/(?P[^/]+)/?$', 'api_get_group_gst_nodes', name='(?P[\w-]+)'), + url(r'^/?$', 'api_get_group_gst_nodes', name='(?P[\w-]+)'), + # url(r'^/(?P[^/]+)/?$', 'api_get_group_gst_nodes', name='(?P[\w-]+)'), # url(r'^/(?P[^/]+)/(?P[^/]+)/?$', 'api_get_group_gst_nodes', name='(?P[\w-]+)'), # url(r'^/(?P[^/]+)/(?P[^/]+)/(?P[^/]+)/?$', 'api_get_group_gst_nodes', name='(?P[\w-]+)'), ) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py index 9124a71294..795b4f270a 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py @@ -18,22 +18,23 @@ # from django.core.urlresolvers import reverse ''' -- imports from application folders/files -- ''' -from gnowsys_ndf.ndf.models import GSystemType, GSystem #, Group, Node, GSystem #, Triple +from gnowsys_ndf.ndf.models import GSystemType, GSystem , Group #, Node, GSystem #, Triple from gnowsys_ndf.ndf.models import NodeJSONEncoder from gnowsys_ndf.ndf.models import node_collection,triple_collection from gnowsys_ndf.ndf.views.methods import get_group_name_id -def api_get_group_gst_nodes(request, group_name_or_id): +def api_get_group_gst_nodes(request): # GET: api/v1//// # import ipdb; ipdb.set_trace() exception_occured = '' oid_name_dict = {} - try: - group_id = ObjectId(group_name_or_id) - except Exception as e: - group_name, group_id = get_group_name_id(group_name_or_id) - oid_name_dict[group_id] = group_name + gst_id = None + # try: + # group_id = ObjectId(group_name_or_id) + # except Exception as e: + # group_name, group_id = get_group_name_id(group_name_or_id) + # oid_name_dict[group_id] = group_name gsystem_structure_dict = GSystem.structure gsystem_keys = gsystem_structure_dict.keys() @@ -45,7 +46,7 @@ def api_get_group_gst_nodes(request, group_name_or_id): query_dict = { '_type': 'GSystem', - 'group_set': ObjectId(group_id), + # 'group_set': ObjectId(group_id), 'status': u'PUBLISHED', 'access_policy': 'PUBLIC', # 'member_of': ObjectId(gst_id), @@ -76,13 +77,16 @@ def api_get_group_gst_nodes(request, group_name_or_id): get_resource_type = request.GET.get('resource_type', None) if get_resource_type: - try: - gst_id = ObjectId(get_resource_type) - except Exception as e: - gst_name, gst_id = GSystemType.get_gst_name_id(get_resource_type) - oid_name_dict[gst_id] = gst_name - get_parameters_dict['member_of'] = gst_id - attributes = sample_gs.get_possible_attributes([gst_id]) + gst_name, gst_id = GSystemType.get_gst_name_id(get_resource_type) + oid_name_dict[gst_id] = gst_name + get_parameters_dict['member_of'] = [gst_id] + attributes = sample_gs.get_possible_attributes([gst_id]) + + get_workspace = request.GET.get('workspace', None) + if get_workspace: + group_name, group_id = Group.get_group_name_id(get_workspace) + oid_name_dict[group_id] = group_name + get_parameters_dict['group_set'] = [group_id] for key, val in get_parameters_dict.iteritems(): # if ('gs_' in key): @@ -92,10 +96,10 @@ def api_get_group_gst_nodes(request, group_name_or_id): # query_dict.update({key: {'$regex': val, '$options': 'i'}}) query_dict.update({key: ({'$regex': val, '$options': 'i'} if isinstance(val, basestring or unicode) else val) }) - elif stripped_key in gst_attributes(gst_id): + elif gst_id and stripped_key in gst_attributes(gst_id): query_dict.update({('attribute_set.' + stripped_key): {'$regex': val, '$options': 'i'}}) - print "query_dict: ", query_dict + # print "query_dict: ", query_dict human = eval(request.GET.get('human', '1')) @@ -129,29 +133,25 @@ def api_get_group_gst_nodes(request, group_name_or_id): oid_name_dict_cur = node_collection.find({'_id': {'$in': all_oid_list}}, {'name': 1}) oid_name_dict = {i['_id']: i['name'] for i in oid_name_dict_cur} - - python_cur_list = [] python_cur_list_append = python_cur_list.append - for each_gst in all_resources: + for each_gs in all_resources: # attaching attributes: # NEEDS to optimize. - for key, value in each_gst.get_possible_attributes(each_gst.member_of).iteritems(): - each_gst[key] = value['data_type'] - each_gst[key] = value['object_value'] + for key, value in each_gs.get_possible_attributes(each_gs.member_of).iteritems(): + each_gs[key] = value['data_type'] + each_gs[key] = value['object_value'] # mapping user id to username. for each_field in user_fields: - each_gst[each_field] = [userid_name_dict[i] for i in each_gst[each_field]] if isinstance(each_gst[each_field], list) else userid_name_dict[each_gst[each_field]] - + each_gs[each_field] = [userid_name_dict.get(i, i) for i in each_gs[each_field]] if isinstance(each_gs[each_field], list) else userid_name_dict.get(each_gs[each_field], each_gs[each_field]) # mapping mongo _id to name. for each_field in oid_fields: - each_gst[each_field] = [oid_name_dict[i] for i in each_gst[each_field]] if isinstance(each_gst[each_field], list) else oid_name_dict[each_gst[each_field]] - + each_gs[each_field] = [oid_name_dict.get(i, i) for i in each_gs[each_field]] if isinstance(each_gs[each_field], list) else oid_name_dict[each_gs[each_field]] - python_cur_list_append(each_gst) + python_cur_list_append(each_gs) json_result = json.dumps(python_cur_list, cls=NodeJSONEncoder) From 963590a23f137265f57cf59d3f027cd9e2e180ad Mon Sep 17 00:00:00 2001 From: kedar2a Date: Mon, 4 Sep 2017 22:02:19 +0530 Subject: [PATCH 070/766] added documentation for API --- doc/developer/api.md | 98 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 doc/developer/api.md diff --git a/doc/developer/api.md b/doc/developer/api.md new file mode 100644 index 0000000000..9dfc99512c --- /dev/null +++ b/doc/developer/api.md @@ -0,0 +1,98 @@ +# gStudio API documentation: + +## Providing version 1 ( `v1` ) API for gStudio, built with native python methods and mongo queries. In next version 2 ( `v2` ), we will be having comrehensive API's built on top of *Elastic-Search*. + +**Glossary:** +1. Workspace: + - Workspace is topmost entity of gStudio. Which is a way of grouping resources, users. + +2. Resource Type: + - Resource type are different types of resources which does exists in gStudio. Which may include Page, File, Event, Courses etc. + +3. Resource: + - Resource is actual data node which is basic building block of respository. Each resource is descriptive with fields specified below. Resources is grouped under atleast one workspace. Resource is categorized based on value present in field `member_of` i.e. resource can represent *Page* or *File*. + +--- + +**Resource Fields** + - "_id"*: Primary Key, unique identifier auto generated by mongoDB. + - "name"*: Name of resource. Short concise, mostly unique. + - "altnames": Display Name. It can be elaborative, long. + - "language"*: Language code in ISO 639-2 standard. (e.g: ["hi", "Hindi"]) + - "content": Description/content of resource. + - "if_file": Contains information of media urls in nested dictionary. Following is schema of if_file: + ``` + { + 'mime_type': , + 'original': {'id': , 'relurl': }, + 'mid': {'id': , 'relurl': }, + 'thumbnail': {'id': , 'relurl': } + } + ``` + - mime_type: Indicates MIME type of resource. + - original: URL of original/uploaded file. + - mid: URL of mid/converted form of original file. This can be mid-size image for images and `.webm` for videos. Blank for other resource types. + - thumbnail: Thumbnail of uploaded resource (mostly it's available for images and videos). + - e.g: + ``` + { + "mime_type": "video/mp4", + "original": { + "id": "59a90dd2738242080c921465", + "relurl": "1/3/4/25a8cbe5c27367145b1ae8bf5bebb7979679d9d3e5609e6ed48170def44c6.mp4" + }, + "mid": { + "id": "59a91e7d73824201c2066320", + "relurl": "c/1/9/8bbbad19debc7857a091cf1164c60726e8713e12d1199352d721dc4d91805.webm" + }, + "thumbnail": { + "id": "59a91e7c73824201c206631f", + "relurl": "6/8/5/d331ff73b657ccd2326354aff03be08d692b0a26ba92ef22295144a49abdc.png" + } + } + ``` + - "tags": Tokens of concerned informative identifiers to describe resource. + - "location": List of GeoJson format JSON. + - "legal": Dictionary of "copyright" and "License". + - "rating": List/Array of multiple ratings given. [{'score': , 'user_id': , 'ip_address': }] + - "access_policy": Policy for resource visibilty. It can have either `Public` or `Private` value. + - "status": Indicates current status of resource. It can have either of: "DRAFT", "HIDDEN", "PUBLISHED", "DELETED", "MODERATION". + - "member_of": [*resource_type*] Indicates which type of Node it is. E.g: "File", "Page" etc. + - "type_of": Specialization of resource type. E.g: for + - "group_set": [*workspace*] Denotes list of group/workspace names under which this resource resides/falls. + + - "created_by": Name of creator. + - "modified_by": Name of modifier/editor. + - "contributors": List of all users, contributed this resource. + + - "created_at": Datetime stamp in DD/MM/YYYY HH:MM:SS format. E.g: 01/09/2017 13:07:07 + - "last_update": Datetime stamp in DD/MM/YYYY HH:MM:SS format. E.g: 01/09/2017 13:07:07 + + - "collection_set": List of resource names to organize resources. + - "post_node": N/A + - "prior_node": List of pre-requisites of concern resource. + + - curricular: Boolean value either tru or false. Specifies resource is curricular or not. + - educationalalignment: E.g: Physics + - educationalsubject: Subjects. + - educationallevel: Five levels primary to tertiary. E.g: Upper Primary, Secondary, Senior Secondary + - audience: E.g: Teachers, Students + - educationaluse: 1) Images 2) Audios 3) Videos 4) Interactives 5) Documents 6) Maps 7) Events 8) Publications + - interactivitytype: E.g: Active, Expositive, Mixed etc. + - source: Source of the resource. Example website or organization name. E.g: CIET, NCERT, Vigyan Prasar + - basedonurl: URL of site from where it has been referenced/based on. If translated work or a creation based on an existing resource. + - timerequired: Time required to read/view resource. + - textcomplexity: Complexity + - readinglevel: - + - age_range: Approximate age range of viewer. + - adaptation_of: Link to the resource + +--- + +**Sample API calls:** +nroer.gov.in/api/v1?workspace=home&resource_type=file&tag=creative +nroer.gov.in/api/v1?tags=creative +nroer.gov.in/api/v1/?workspace=home&resource_type=file&created_by=nroer_team&educationaluse=Images +nroer.gov.in/api/v1/?workspace=home&resource_type=file&educationalsubject=history +nroer.gov.in/api/v1/?workspace=home&resource_type=file&source=CIET,%20NCERT +nroer.gov.in/api/v1/?workspace=home&resource_type=file&created_by=nroer_team&legal.copyright=CC-BY-SA%204.0%20unported&interactivitytype=expositive&educationaluse=image \ No newline at end of file From 4fa553e4b2a03da81c78dadb76f5db733ec37719 Mon Sep 17 00:00:00 2001 From: Kedar Aitawdekar Date: Mon, 4 Sep 2017 22:14:15 +0530 Subject: [PATCH 071/766] formatting changes --- doc/developer/api.md | 96 ++++++++++++++++++++++---------------------- 1 file changed, 48 insertions(+), 48 deletions(-) diff --git a/doc/developer/api.md b/doc/developer/api.md index 9dfc99512c..ea7b080615 100644 --- a/doc/developer/api.md +++ b/doc/developer/api.md @@ -15,12 +15,12 @@ --- **Resource Fields** - - "_id"*: Primary Key, unique identifier auto generated by mongoDB. - - "name"*: Name of resource. Short concise, mostly unique. - - "altnames": Display Name. It can be elaborative, long. - - "language"*: Language code in ISO 639-2 standard. (e.g: ["hi", "Hindi"]) - - "content": Description/content of resource. - - "if_file": Contains information of media urls in nested dictionary. Following is schema of if_file: +- "_id"*: Primary Key, unique identifier auto generated by mongoDB. +- "name"*: Name of resource. Short concise, mostly unique. +- "altnames": Display Name. It can be elaborative, long. +- "language"*: Language code in ISO 639-2 standard. (e.g: ["hi", "Hindi"]) +- "content": Description/content of resource. +- "if_file": Contains information of media urls in nested dictionary. Following is schema of if_file: ``` { 'mime_type': , @@ -29,11 +29,11 @@ 'thumbnail': {'id': , 'relurl': } } ``` - - mime_type: Indicates MIME type of resource. - - original: URL of original/uploaded file. - - mid: URL of mid/converted form of original file. This can be mid-size image for images and `.webm` for videos. Blank for other resource types. - - thumbnail: Thumbnail of uploaded resource (mostly it's available for images and videos). - - e.g: +- mime_type: Indicates MIME type of resource. +- original: URL of original/uploaded file. +- mid: URL of mid/converted form of original file. This can be mid-size image for images and `.webm` for videos. Blank for other resource types. +- thumbnail: Thumbnail of uploaded resource (mostly it's available for images and videos). + - e.g: ``` { "mime_type": "video/mp4", @@ -51,48 +51,48 @@ } } ``` - - "tags": Tokens of concerned informative identifiers to describe resource. - - "location": List of GeoJson format JSON. - - "legal": Dictionary of "copyright" and "License". - - "rating": List/Array of multiple ratings given. [{'score': , 'user_id': , 'ip_address': }] - - "access_policy": Policy for resource visibilty. It can have either `Public` or `Private` value. - - "status": Indicates current status of resource. It can have either of: "DRAFT", "HIDDEN", "PUBLISHED", "DELETED", "MODERATION". - - "member_of": [*resource_type*] Indicates which type of Node it is. E.g: "File", "Page" etc. - - "type_of": Specialization of resource type. E.g: for - - "group_set": [*workspace*] Denotes list of group/workspace names under which this resource resides/falls. +- "tags": Tokens of concerned informative identifiers to describe resource. +- "location": List of GeoJson format JSON. +- "legal": Dictionary of "copyright" and "License". +- "rating": List/Array of multiple ratings given. [{'score': , 'user_id': , 'ip_address': }] +- "access_policy": Policy for resource visibilty. It can have either `Public` or `Private` value. +- "status": Indicates current status of resource. It can have either of: "DRAFT", "HIDDEN", "PUBLISHED", "DELETED", "MODERATION". +- "member_of": [*resource_type*] Indicates which type of Node it is. E.g: "File", "Page" etc. +- "type_of": Specialization of resource type. E.g: for +- "group_set": [*workspace*] Denotes list of group/workspace names under which this resource resides/falls. - - "created_by": Name of creator. - - "modified_by": Name of modifier/editor. - - "contributors": List of all users, contributed this resource. +- "created_by": Name of creator. +- "modified_by": Name of modifier/editor. +- "contributors": List of all users, contributed this resource. - - "created_at": Datetime stamp in DD/MM/YYYY HH:MM:SS format. E.g: 01/09/2017 13:07:07 - - "last_update": Datetime stamp in DD/MM/YYYY HH:MM:SS format. E.g: 01/09/2017 13:07:07 +- "created_at": Datetime stamp in DD/MM/YYYY HH:MM:SS format. E.g: 01/09/2017 13:07:07 +- "last_update": Datetime stamp in DD/MM/YYYY HH:MM:SS format. E.g: 01/09/2017 13:07:07 - - "collection_set": List of resource names to organize resources. - - "post_node": N/A - - "prior_node": List of pre-requisites of concern resource. +- "collection_set": List of resource names to organize resources. +- "post_node": N/A +- "prior_node": List of pre-requisites of concern resource. - - curricular: Boolean value either tru or false. Specifies resource is curricular or not. - - educationalalignment: E.g: Physics - - educationalsubject: Subjects. - - educationallevel: Five levels primary to tertiary. E.g: Upper Primary, Secondary, Senior Secondary - - audience: E.g: Teachers, Students - - educationaluse: 1) Images 2) Audios 3) Videos 4) Interactives 5) Documents 6) Maps 7) Events 8) Publications - - interactivitytype: E.g: Active, Expositive, Mixed etc. - - source: Source of the resource. Example website or organization name. E.g: CIET, NCERT, Vigyan Prasar - - basedonurl: URL of site from where it has been referenced/based on. If translated work or a creation based on an existing resource. - - timerequired: Time required to read/view resource. - - textcomplexity: Complexity - - readinglevel: - - - age_range: Approximate age range of viewer. - - adaptation_of: Link to the resource +- curricular: Boolean value either tru or false. Specifies resource is curricular or not. +- educationalalignment: E.g: Physics +- educationalsubject: Subjects. +- educationallevel: Five levels primary to tertiary. E.g: Upper Primary, Secondary, Senior Secondary +- audience: E.g: Teachers, Students +- educationaluse: 1) Images 2) Audios 3) Videos 4) Interactives 5) Documents 6) Maps 7) Events 8) Publications +- interactivitytype: E.g: Active, Expositive, Mixed etc. +- source: Source of the resource. Example website or organization name. E.g: CIET, NCERT, Vigyan Prasar +- basedonurl: URL of site from where it has been referenced/based on. If translated work or a creation based on an existing resource. +- timerequired: Time required to read/view resource. +- textcomplexity: Complexity +- readinglevel: - +- age_range: Approximate age range of viewer. +- adaptation_of: Link to the resource --- **Sample API calls:** -nroer.gov.in/api/v1?workspace=home&resource_type=file&tag=creative -nroer.gov.in/api/v1?tags=creative -nroer.gov.in/api/v1/?workspace=home&resource_type=file&created_by=nroer_team&educationaluse=Images -nroer.gov.in/api/v1/?workspace=home&resource_type=file&educationalsubject=history -nroer.gov.in/api/v1/?workspace=home&resource_type=file&source=CIET,%20NCERT -nroer.gov.in/api/v1/?workspace=home&resource_type=file&created_by=nroer_team&legal.copyright=CC-BY-SA%204.0%20unported&interactivitytype=expositive&educationaluse=image \ No newline at end of file +- nroer.gov.in/api/v1?workspace=home&resource_type=file&tag=creative +- nroer.gov.in/api/v1?tags=creative +- nroer.gov.in/api/v1/?workspace=home&resource_type=file&created_by=nroer_team&educationaluse=Images +- nroer.gov.in/api/v1/?workspace=home&resource_type=file&educationalsubject=history +- nroer.gov.in/api/v1/?workspace=home&resource_type=file&source=CIET,%20NCERT +- nroer.gov.in/api/v1/?workspace=home&resource_type=file&created_by=nroer_team&legal.copyright=CC-BY-SA%204.0%20unported&interactivitytype=expositive&educationaluse=image From 39280ca1e8ba33c6b008b3b35ef1cc94dc48fb2a Mon Sep 17 00:00:00 2001 From: Kedar Aitawdekar Date: Mon, 4 Sep 2017 22:35:14 +0530 Subject: [PATCH 072/766] Minor corrections in doc --- doc/developer/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/developer/api.md b/doc/developer/api.md index ea7b080615..71aeb6bbe1 100644 --- a/doc/developer/api.md +++ b/doc/developer/api.md @@ -1,6 +1,6 @@ # gStudio API documentation: -## Providing version 1 ( `v1` ) API for gStudio, built with native python methods and mongo queries. In next version 2 ( `v2` ), we will be having comrehensive API's built on top of *Elastic-Search*. +## Providing version 1 ( `v1` ) API for gStudio, built with native python methods and mongo queries. In next version 2 ( `v2` ), we will be having comprehensive API's built on top of *Elastic-Search*. **Glossary:** 1. Workspace: From fbf0ce7448e972c59fca9674c73df964b07eb8b2 Mon Sep 17 00:00:00 2001 From: Kedar Aitawdekar Date: Mon, 4 Sep 2017 22:38:19 +0530 Subject: [PATCH 073/766] Code formatted --- doc/developer/api.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/doc/developer/api.md b/doc/developer/api.md index 71aeb6bbe1..40b37adc9e 100644 --- a/doc/developer/api.md +++ b/doc/developer/api.md @@ -21,21 +21,22 @@ - "language"*: Language code in ISO 639-2 standard. (e.g: ["hi", "Hindi"]) - "content": Description/content of resource. - "if_file": Contains information of media urls in nested dictionary. Following is schema of if_file: - ``` - { +      
    +        {
                 'mime_type': ,
                 'original': {'id': , 'relurl': },
                 'mid': {'id': , 'relurl': },
                 'thumbnail': {'id': , 'relurl': }
             }
    -        ```
    +        
    - mime_type: Indicates MIME type of resource. - original: URL of original/uploaded file. - mid: URL of mid/converted form of original file. This can be mid-size image for images and `.webm` for videos. Blank for other resource types. - thumbnail: Thumbnail of uploaded resource (mostly it's available for images and videos). - e.g: - ``` - { +       +      
    +      {
                 "mime_type": "video/mp4",
                 "original": {
                         "id": "59a90dd2738242080c921465",
    @@ -50,7 +51,7 @@
                         "relurl": "6/8/5/d331ff73b657ccd2326354aff03be08d692b0a26ba92ef22295144a49abdc.png"
                     }
             }
    -        ```
    +        
     - "tags": Tokens of concerned informative identifiers to describe resource.
     - "location": List of GeoJson format JSON.
     - "legal": Dictionary of "copyright" and "License".
    
    From a2706398cf0eee9c1131a713af5a03218dbfc4dc Mon Sep 17 00:00:00 2001
    From: kedar2a 
    Date: Tue, 5 Sep 2017 13:20:01 +0530
    Subject: [PATCH 074/766] Added new API method to get all possible values of
     supplied field
    
    ---
     gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py  |  4 +--
     gnowsys-ndf/gnowsys_ndf/ndf/views/api.py | 44 ++++++++++++++++++++----
     2 files changed, 39 insertions(+), 9 deletions(-)
    
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py
    index b0c016d7aa..eda2435dcb 100644
    --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py
    +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/api.py
    @@ -2,8 +2,8 @@
     
     urlpatterns = patterns('gnowsys_ndf.ndf.views.api',
                             # GET: api/v1////
    -                        url(r'^/?$', 'api_get_group_gst_nodes', name='(?P[\w-]+)'),
    -                        # url(r'^/(?P[^/]+)/?$', 'api_get_group_gst_nodes', name='(?P[\w-]+)'),
    +                        url(r'^/?$', 'api_get_gs_nodes'),
    +                        url(r'^/(?P[^/]+)/?$', 'api_get_field_values'),
                             # url(r'^/(?P[^/]+)/(?P[^/]+)/?$', 'api_get_group_gst_nodes', name='(?P[\w-]+)'),
                             # url(r'^/(?P[^/]+)/(?P[^/]+)/(?P[^/]+)/?$', 'api_get_group_gst_nodes', name='(?P[\w-]+)'),
     )
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py
    index 795b4f270a..a29a40d80b 100644
    --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py
    +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py
    @@ -24,7 +24,7 @@
     from gnowsys_ndf.ndf.views.methods import get_group_name_id
     
     
    -def api_get_group_gst_nodes(request):
    +def api_get_gs_nodes(request):
         # GET: api/v1////
         # import ipdb; ipdb.set_trace()
         exception_occured = ''
    @@ -89,12 +89,9 @@ def api_get_group_gst_nodes(request):
             get_parameters_dict['group_set'] = [group_id]
     
         for key, val in get_parameters_dict.iteritems():
    -        # if ('gs_' in key):
    -            # stripped_key = key.lstrip('gs_').split('.')[0]
             stripped_key = key.split('.')[0]
             if stripped_key in gsystem_keys:
    -            # query_dict.update({key: {'$regex': val, '$options': 'i'}})
    -            query_dict.update({key: ({'$regex': val, '$options': 'i'} if isinstance(val, basestring or unicode) else val) })
    +            query_dict.update({ key: ({'$regex': val, '$options': 'i'} if isinstance(gsystem_structure_dict[stripped_key], basestring or unicode) else val) })
     
             elif gst_id and stripped_key in gst_attributes(gst_id):
                 query_dict.update({('attribute_set.' + stripped_key): {'$regex': val, '$options': 'i'}})
    @@ -107,7 +104,6 @@ def api_get_group_gst_nodes(request):
     
         all_resources = node_collection.find(query_dict, gst_fields)
     
    -
         if human:
             gst_fields = gst_api_fields_dict
     
    @@ -122,7 +118,6 @@ def api_get_group_gst_nodes(request):
             userid_name_dict_cur = node_collection.find({'_type': u'Author', 'created_by': {'$in': all_users}}, {'name': 1, 'created_by': 1, '_id': 0})
             userid_name_dict = {i['created_by']: i['name'] for i in userid_name_dict_cur}
     
    -
             # Mongo ids
             oid_fields = [ k for k, v in gsystem_structure_dict.iteritems() if v in [bson.objectid.ObjectId, [bson.objectid.ObjectId]] ]
             all_oid_list = []
    @@ -170,3 +165,38 @@ def gst_attributes(gst_name_or_id):
             gst_name, gst_id = GSystemType.get_gst_name_id(gst_name_or_id)
     
         return [at.name for at in node_collection.find({'_type': 'AttributeType', 'subject_type': gst_id})]
    +
    +
    +api_name_model_name_dict = {
    +    'workspace': 'group_set',
    +    'resource_type': 'member_of'
    +}
    +
    +def api_get_field_values(request, field_name):
    +
    +    field_name = api_name_model_name_dict.get(field_name, field_name)
    +    gsystem_structure_dict = GSystem.structure
    +    gsystem_keys = gsystem_structure_dict.keys()
    +
    +    if field_name in gsystem_keys:
    +        json_result = '[]'
    +        oid_fields = [ k for k, v in gsystem_structure_dict.iteritems() if v in [bson.objectid.ObjectId, [bson.objectid.ObjectId]] ]
    +        user_fields = ['created_by', 'modified_by', 'contributors']
    +
    +        # MONGO
    +        if field_name in oid_fields:
    +            result_list = node_collection.find({ '_id': {'$in': node_collection.find({}).distinct(field_name) } }).distinct('name')
    +        # USER
    +        elif field_name in user_fields:
    +            # mapping user id to username.
    +            result_list = node_collection.find({'_type': 'Author', 'created_by': {'$in': node_collection.find({}).distinct(field_name) } }).distinct('name')
    +        # OTHER
    +        else:
    +            # overriden from settings
    +            GSTUDIO_WORKING_GAPPS = [u'Page', u'File']
    +            gstudio_working_gapps_mof_list = node_collection.find({'_type': 'GSystemType', 'name': {'$in': GSTUDIO_WORKING_GAPPS} }).distinct('_id')
    +            result_list = node_collection.find({'_type': 'GSystem', 'status': u'PUBLISHED', 'access_policy': 'PUBLIC', 'member_of': {'$in': gstudio_working_gapps_mof_list}}).distinct(field_name)
    +
    +        return HttpResponse(json.dumps(result_list, ensure_ascii=False, cls=NodeJSONEncoder).encode('utf16'), content_type='application/json')
    +
    +    return HttpResponse(["Invalid Field"], content_type='application/json')
    \ No newline at end of file
    
    From 3cd018e686d19a1b77edbc42a01003b8035ebc58 Mon Sep 17 00:00:00 2001
    From: kedar2a 
    Date: Tue, 5 Sep 2017 15:23:58 +0530
    Subject: [PATCH 075/766] API: returning field names json if no get parameters
     specified
    
    ---
     gnowsys-ndf/gnowsys_ndf/ndf/views/api.py | 29 ++++++++++++++++--------
     1 file changed, 20 insertions(+), 9 deletions(-)
    
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py
    index a29a40d80b..f84b0f1c86 100644
    --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py
    +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py
    @@ -24,7 +24,26 @@
     from gnowsys_ndf.ndf.views.methods import get_group_name_id
     
     
    +gst_api_fields_dict = { "_id": 1, "name": 1, "altnames": 1, "language": 1, "content": 1, "if_file": 1, "tags": 1, "location": 1, "created_by": 1, "modified_by": 1, "contributors": 1, "legal": 1, "rating": 1, "created_at": 1, "last_update": 1, "collection_set": 1, "post_node": 1, "prior_node": 1, "access_policy": 1, "status": 1, "group_set": 1, "member_of": 1, "type_of": 1,
    +    # "relation_set": 1, "attribute_set": 1, 
    +}
    +
    +api_name_model_name_dict = {
    +    'workspace': 'group_set',
    +    'resource_type': 'member_of'
    +}
    +
    +
     def api_get_gs_nodes(request):
    +
    +    get_parameters_dict = request.GET.dict()
    +    if not get_parameters_dict:
    +        aggregated_dict = gst_api_fields_dict.copy()
    +        aggregated_dict.update(api_name_model_name_dict)
    +        aggregated_dict.pop('_id')
    +        return HttpResponse(json.dumps(aggregated_dict.keys()), content_type='application/json')
    +
    +
         # GET: api/v1////
         # import ipdb; ipdb.set_trace()
         exception_occured = ''
    @@ -40,15 +59,12 @@ def api_get_gs_nodes(request):
         gsystem_keys = gsystem_structure_dict.keys()
     
         gst_all_fields_dict = {i: 1 for i in gsystem_keys}
    -    gst_api_fields_dict = { "_id": 1, "name": 1, "altnames": 1, "language": 1, "content": 1, "if_file": 1, "tags": 1, "location": 1, "created_by": 1, "modified_by": 1, "contributors": 1, "legal": 1, "rating": 1, "created_at": 1, "last_update": 1, "collection_set": 1, "post_node": 1, "prior_node": 1, "access_policy": 1, "status": 1, "group_set": 1, "member_of": 1, "type_of": 1,
    -    # "relation_set": 1, "attribute_set": 1, 
    -     }
     
         query_dict = {
                         '_type': 'GSystem',
    -                    # 'group_set': ObjectId(group_id),
                         'status': u'PUBLISHED',
                         'access_policy': 'PUBLIC',
    +                    # 'group_set': ObjectId(group_id),
                         # 'member_of': ObjectId(gst_id),
                         # 'created_by': user_id,
                     }
    @@ -57,7 +73,6 @@ def api_get_gs_nodes(request):
         attributes = {}
     
         # GET parameters:
    -    get_parameters_dict = request.GET.dict()
         
         get_created_by = request.GET.get('created_by', None)
         if get_created_by:
    @@ -167,10 +182,6 @@ def gst_attributes(gst_name_or_id):
         return [at.name for at in node_collection.find({'_type': 'AttributeType', 'subject_type': gst_id})]
     
     
    -api_name_model_name_dict = {
    -    'workspace': 'group_set',
    -    'resource_type': 'member_of'
    -}
     
     def api_get_field_values(request, field_name):
     
    
    From ac13533741c154ef19521fddefa9f1a58cc35f07 Mon Sep 17 00:00:00 2001
    From: kedar2a 
    Date: Tue, 5 Sep 2017 16:28:12 +0530
    Subject: [PATCH 076/766] API: dispatching all field, attributes and relation
     names in non GET arg query
    
    ---
     gnowsys-ndf/gnowsys_ndf/ndf/views/api.py | 8 +++++++-
     1 file changed, 7 insertions(+), 1 deletion(-)
    
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py
    index f84b0f1c86..cc84afd010 100644
    --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py
    +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py
    @@ -41,7 +41,13 @@ def api_get_gs_nodes(request):
             aggregated_dict = gst_api_fields_dict.copy()
             aggregated_dict.update(api_name_model_name_dict)
             aggregated_dict.pop('_id')
    -        return HttpResponse(json.dumps(aggregated_dict.keys()), content_type='application/json')
    +
    +        query_parameters_dict = {
    +                                    'Fields': aggregated_dict.keys(),
    +                                    'Attributes': node_collection.find({'_type': 'AttributeType'}).distinct('name'),
    +                                    'Relations': node_collection.find({'_type': 'RelationType'}).distinct('name')
    +                                }
    +        return HttpResponse(json.dumps(query_parameters_dict), content_type='application/json')
     
     
         # GET: api/v1////
    
    From 268d964aaeb06186f99f3883ec0ad5b4c513d0c6 Mon Sep 17 00:00:00 2001
    From: kedar2a 
    Date: Tue, 5 Sep 2017 21:14:19 +0530
    Subject: [PATCH 077/766] API: returning values for AttributeType
    
    ---
     gnowsys-ndf/gnowsys_ndf/ndf/views/api.py | 12 ++++++++----
     1 file changed, 8 insertions(+), 4 deletions(-)
    
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py
    index cc84afd010..59013a203f 100644
    --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py
    +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/api.py
    @@ -51,7 +51,6 @@ def api_get_gs_nodes(request):
     
     
         # GET: api/v1////
    -    # import ipdb; ipdb.set_trace()
         exception_occured = ''
         oid_name_dict = {}
         gst_id = None
    @@ -79,7 +78,6 @@ def api_get_gs_nodes(request):
         attributes = {}
     
         # GET parameters:
    -    
         get_created_by = request.GET.get('created_by', None)
         if get_created_by:
             username_or_id_int = 0
    @@ -114,7 +112,7 @@ def api_get_gs_nodes(request):
             if stripped_key in gsystem_keys:
                 query_dict.update({ key: ({'$regex': val, '$options': 'i'} if isinstance(gsystem_structure_dict[stripped_key], basestring or unicode) else val) })
     
    -        elif gst_id and stripped_key in gst_attributes(gst_id):
    +        elif stripped_key in gst_attributes(gst_id):
                 query_dict.update({('attribute_set.' + stripped_key): {'$regex': val, '$options': 'i'}})
     
         # print "query_dict: ", query_dict
    @@ -180,6 +178,9 @@ def api_get_gs_nodes(request):
     # helper methods:
     def gst_attributes(gst_name_or_id):
     
    +    if not gst_name_or_id:
    +        return node_collection.find({'_type': 'AttributeType'}).distinct('name')
    +
         try:
             gst_id = ObjectId(gst_name_or_id)
         except Exception as e:
    @@ -216,4 +217,7 @@ def api_get_field_values(request, field_name):
     
             return HttpResponse(json.dumps(result_list, ensure_ascii=False, cls=NodeJSONEncoder).encode('utf16'), content_type='application/json')
     
    -    return HttpResponse(["Invalid Field"], content_type='application/json')
    \ No newline at end of file
    +    elif field_name in node_collection.find({'_type': 'AttributeType'}).distinct('name'):
    +        return HttpResponse( json.dumps(node_collection.find().distinct('attribute_set.' + field_name)), content_type='application/json')
    +
    +    return HttpResponse(["Invalid Field"], content_type='application/json')
    
    From f45f5b6a75a19a74113629bb332c3aae09983039 Mon Sep 17 00:00:00 2001
    From: Saurabh Bharswadkar 
    Date: Wed, 13 Sep 2017 13:06:25 +0530
    Subject: [PATCH 078/766] curriculum nam,desc update added
    
    ---
     .../templates/ndf/curriculum_hierarchy.html   | 18 +++++++++++++++--
     .../ndf/templates/ndf/curriculum_listing.html | 20 ++++++++++---------
     .../gnowsys_ndf/ndf/views/curriculum.py       | 19 +++++++++++++++---
     3 files changed, 43 insertions(+), 14 deletions(-)
    
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html
    index b08255e5d0..808e7106ac 100644
    --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html
    +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html
    @@ -4,7 +4,19 @@
     {% block title %} {% trans "Topic Map" %} {{curriculum_obj.name }}  {% endblock %}
     
     {% block body_content %}
    -        {{curriculum_obj.name}} 
    +        {{curriculum_obj.name}} : 
    +        {{curriculum_obj.content_org}}  
    +        
    + + +
    + {% check_is_gstaff group_id request.user as is_gstaff %} {% if not curriculum_obj %}

    Create new Sub-Section

    data:{ 'csrfmiddlewaretoken': "{{csrf_token}}", 'curr_name':curr_name, - 'curr_desc':curr_desc + 'curr_desc':curr_desc, + 'curriculum_obj':'{{curriculum_obj.pk}}' }, url: "{% url 'create_edit_curriculum' group_id %}", datatype: "html", @@ -296,6 +309,7 @@

    Create new Sub-Section

    } }); }); + $( ".create_branch" ).click(function(event) { branch_name = $("input[name='branch_name']").val(); existing_id = $(this).attr("id"); diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_listing.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_listing.html index 5e7bf19b09..803511b2cf 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_listing.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_listing.html @@ -1,17 +1,19 @@ {% extends "ndf/gbase.html" %} {% load i18n %} {% load ndf_tags %} +{% block title %} {% trans "Topic Map" %} {% endblock %} {% block body_content %} - - + {% if request.user.is_authenticated %} + + {% endif %} {% for each in nodes %} {% include "ndf/curriculum_list.html" with node=each first_arg=group_id second_arg=each.pk url_name="curriculum_detail" %} {% endfor %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/curriculum.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/curriculum.py index acfb396c6e..14d1281ff7 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/curriculum.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/curriculum.py @@ -163,7 +163,7 @@ def list_themes(request, group_id): }, context_instance = RequestContext(request) ) - +@get_execution_time def curriculum_list(request, group_id): try: @@ -186,7 +186,8 @@ def curriculum_list(request, group_id): 'theme_GST': theme_GST }, context_instance = RequestContext(request) ) - +@get_execution_time +@login_required def curriculum_create_edit(request, group_id,curriculum_id=None): def _update_curr_hierarchy(hierarchy_obj): # d is list fo dict @@ -203,6 +204,7 @@ def _update_curr_hierarchy(hierarchy_obj): group_id = ObjectId(group_id) except: group_name, group_id = get_group_name_id(group_id) + curr_id = request.POST.get('curriculum_obj','') curriculum_obj = node_collection.one({"_id" : ObjectId(curriculum_id)}) context_variables = { 'groupid': group_id, @@ -218,8 +220,19 @@ def _update_curr_hierarchy(hierarchy_obj): _update_curr_hierarchy(curr_hierarchy) curr_hierarchy.append({'class': 'create_branch', 'name': 'Add Branch'}) context_variables.update({'curriculum_structure':json.dumps(curr_hierarchy)}) + if request.method == "POST": - if not curriculum_id: + if curr_id: + if curr_id: + curr_name = request.POST.get('curr_name', '') + curr_desc = request.POST.get('curr_desc', '') + curriculum_obj = node_collection.one({"_id" : ObjectId(curr_id)}) + curriculum_obj.fill_gstystem_values(request=request, + name=str(curr_name), + group_set=group_id,content_org=unicode(curr_desc)) + curriculum_obj.save() + return HttpResponse(curriculum_obj._id) + else: curr_name = request.POST.get('curr_name', '') curr_desc = request.POST.get('curr_desc', '') From ef9cc79af5bced32cea230844a5091595398e215 Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Wed, 13 Sep 2017 16:17:18 +0530 Subject: [PATCH 079/766] delete_curriculum_node url and view removed as we are using ajax_delete_node --- gnowsys-ndf/gnowsys_ndf/ndf/urls/ajax-urls.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/ajax-urls.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/ajax-urls.py index b31381a0ce..bc18840a14 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/ajax-urls.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/ajax-urls.py @@ -127,7 +127,6 @@ url(r'^remove_from_nodelist/$', 'remove_from_nodelist', name='remove_from_nodelist'), url(r'^ajax_delete_node/$', 'ajax_delete_node', name='ajax_delete_node'), url(r'^get_translated_node/$', 'get_translated_node', name='get_translated_node'), - url(r'^delete_curriculum_node/$', 'delete_curriculum_node', name='delete_curriculum_node'), # url for graph display url(r'^graph/adminRenderGraph/(?P[^/]+)/fetch/(?P[^/]+)$', 'adminRenderGraph', name='adminRenderGraph'), # url(r'^get_rating_template/$', 'get_rating_template', name='get_rating_template'), From c8a3e66bf4ed71412151c67cbf9fd7f253061e85 Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Wed, 13 Sep 2017 16:17:53 +0530 Subject: [PATCH 080/766] saving content_org for section/branch --- gnowsys-ndf/gnowsys_ndf/ndf/views/ajax_views.py | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/ajax_views.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/ajax_views.py index 336d04ab60..4811f03f93 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/ajax_views.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/ajax_views.py @@ -907,7 +907,7 @@ def get_inner_collection(collection_list, node, no_res=False): # # print "\n completed_ids -- ",completed_ids # # print "\n\n col_obj ---- ", col_obj.name, " - - ",col_obj.member_of_names_list, " -- ", col_obj._id # else: - inner_sub_dict = {'name': col_obj.name, 'id': col_obj.pk,'node_type': node_type,"type":"division"} + inner_sub_dict = {'name': col_obj.name, 'id': col_obj.pk,'node_type': node_type,"type":"division",'description':col_obj.content_org} inner_sub_list = [inner_sub_dict] inner_sub_list = get_inner_collection(inner_sub_list, col_obj, no_res) # if "CourseSubSectionEvent" == node_type: @@ -963,7 +963,7 @@ def get_collection(request, group_id, node_id, no_res=False): node_type = node_collection.one({'_id': ObjectId(obj.member_of[0])}).name # print "000000000000000000000",node.name - collection_list.append({'name':obj.name,'id':obj.pk,'node_type':node_type,'type' : "branch"}) + collection_list.append({'name':obj.name,'id':obj.pk,'node_type':node_type,'type' : "branch",'description':obj.content_org}) # collection_list = get_inner_collection(collection_list, obj, gstaff_access, completed_ids_list, incompleted_ids_list) if "BaseCourseGroup" in node.member_of_names_list: no_res = True @@ -1018,6 +1018,7 @@ def add_theme_item(request, group_id): context_theme_id = request.POST.get("context_theme", '') name =request.POST.get('name','') + content_org = request.POST.get('content_org') parent_node_id =request.POST.get('parent_id','') is_topic =request.POST.get('is_topic','') @@ -1026,6 +1027,7 @@ def add_theme_item(request, group_id): existing_node = Node.get_node_by_id(ObjectId(existing_id)) if existing_node: existing_node.name = unicode(name) + existing_node.content_org = unicode(content_org) existing_node.save() return HttpResponse("success") list_theme_items = [] @@ -7123,11 +7125,4 @@ def get_rating_template(request, group_id): }, context_instance=RequestContext(request)) -def delete_curriculum_node(request, group_id): - node_id = request.POST.get('node_id', None) - node_obj = Node.get_node_by_id(node_id) - if node_obj: - trash_resource(request,ObjectId(group_id),ObjectId(node_id)) - trash_resource(request,ObjectId(group_id),ObjectId(node_id)) - return HttpResponse("Success") From 7fe012e6545d8da8afb6e599ab105e86130f4433 Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Wed, 13 Sep 2017 16:18:29 +0530 Subject: [PATCH 081/766] content_org added in get_common_node_fields --- gnowsys-ndf/gnowsys_ndf/ndf/views/methods.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/methods.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/methods.py index c13da8eecc..d8b79555ae 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/methods.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/methods.py @@ -1319,6 +1319,9 @@ def get_node_common_fields(request, node, group_id, node_type, coll_set=None): if node.content != content_org: node.content = unicode(content_org) is_changed = True + if node.content_org != content_org: + node.content_org = unicode(content_org) + is_changed = True ''' if node.content_org != content_org: From a328c4176e0e517cefdbb3575935b801656d3b69 Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Wed, 13 Sep 2017 16:20:47 +0530 Subject: [PATCH 082/766] print statements removed --- gnowsys-ndf/gnowsys_ndf/ndf/views/curriculum.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/curriculum.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/curriculum.py index 14d1281ff7..b8b7eccf09 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/curriculum.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/curriculum.py @@ -1092,5 +1092,4 @@ def get_collection_list(collection_list, node): return collection_list else: - print "00000000000000000000000000" return collection_list \ No newline at end of file From fd243596847365d351abfc1a4903f7bcd826abb8 Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Thu, 14 Sep 2017 10:25:24 +0530 Subject: [PATCH 083/766] login_required removed from curriculum hierarhy detail view --- .../templates/ndf/curriculum_hierarchy.html | 34 +++++++++---------- .../gnowsys_ndf/ndf/views/curriculum.py | 1 - 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html index 808e7106ac..40558d687e 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html @@ -4,19 +4,13 @@ {% block title %} {% trans "Topic Map" %} {{curriculum_obj.name }} {% endblock %} {% block body_content %} - {{curriculum_obj.name}} : - {{curriculum_obj.content_org}} -
    - - -
    {% check_is_gstaff group_id request.user as is_gstaff %} +
    + {{curriculum_obj.name}} : + {{curriculum_obj.content_org}} + +
    + {% if not curriculum_obj %}

    Create new Section


    - -
    - × -
    + + + × + -

    + +
    +
    +
    PROGRESS REPORT
    +
    +

    Course: {{ group_name }}


    +
    +
    +

    User: {{username}}

    +
    +
    +

    Total points gained:

    {{users_points}}

    +
    -

    -
    -
    -
    -
    - {% comment %} -

    {% trans "Course status" %}

    - {% endcomment %} -
    -
    - {{level1_lbl}} -

    {{level1_progress_stmt}}

    -
    -
    -
    +
    +
    +
    +
    + {{level1_lbl}} +

    {{level1_progress_stmt}}

    +
    +
    -
    -
    -
    - {{level2_lbl}} +
    + {{level2_lbl}}

    {{level2_progress_stmt}}

    - -
    -
    -
    -
    -
    -
    -
    -
    - {% with group_obj.member_of_names_list as group_member_of_name %} - -
    -
    -
    - Assessment Performance - {% if "announced_unit" in group_member_of_name %} - Refresh - - - - - {% endif %} - -
    -
    - {% trans "Total Questions" %} - {{total_quizitems}} -
    -
    + {% with group_obj.member_of_names_list as group_member_of_name %} +
    +
    + + + + Assessment Performance + {% if "announced_unit" in group_member_of_name %} + Refresh + {% endif %} +
    +
    + {% trans "Total Questions" %} + {{total_quizitems}} +
    Correct Answers {{correct_attempted_quizitems}} -
    -
    - - -
    -
    - Attempted - {{attempted_quizitems}} -
    - -
    +
    + Attempted + {{attempted_quizitems}} +
    {% trans "Incorrect answers" %} {{incorrect_attempted_quizitems}} -
    + {% if "announced_unit" in group_member_of_name %} +
    + {% trans "Not Attempted" %} + {{unattempted_quizitems}} +
    + {% endif %}
    - - {% if "announced_unit" in group_member_of_name %} -
    -
    - {% trans "Not Attempted" %} - {{unattempted_quizitems}} +
    + {% endwith %} +
    +
    + + + + {% trans "Note Making" %} +
    +
    + {% trans "Notes Written" %} + {{user_notes}}
    -
    - {% endif %} + {% trans "Views Gained" %} + {{others_reading_my_notes}} +
    + {% trans "Comments recieved" %} + {{cmts_on_user_notes}} +
    + {% trans "Visits on Other Notes" %} + {{total_notes_read_by_user}} +
    + {% trans "Comments on other notes" %} + {{commented_on_others_notes}} +
    + {% trans "Avg. Rating Awarded" %} + +
    +
    +
    {{total_rating_rcvd_on_notes}}
    +
    +
    -
    -
    - {% trans "Interactions" %} + {% with group_obj.member_of_names_list as group_member_of_name %} +
    +
    + {% trans "Interactions" %} -
    -
    - {% trans "Comments By me" %} +
    + {% trans "Comments By me" %} {{total_cmnts_by_user}} -
    - {% comment %} -
    - Avg Rating for my comments - -
    -
    -
    -
    -
    -
    - {% endcomment %} -
    -
    -
    - {% trans "Comments for me" %} +
    + {% trans "Comments for me" %} {{cmnts_rcvd_by_user}} +
    +
    + {% endwith %} +
    +
    +
    +
    - {% comment %} -
    - Avg Ratings to others - -
    -
    -
    -
    - -
    -
    - {% endcomment %}
    -
    - {% endwith %} - - -
    -
    - - - {% endcomment %} -
    + + + + + + - - - - - - - - - -{% endblock %} -{% block meta_content %} -

    {% trans "Task Editor" %}

    -{% endblock %} -{% block body_content %} + input[type="file"]:before { + content: 'Select files'; + display: inline-block; + border: 1px solid #999; + border-radius: 5px; + padding: 8px 10px; + outline: none; + white-space: nowrap; + -webkit-user-select: none; + cursor: pointer; + font-weight: 500; + // //font-size: 10pt; + color: black; + border-color: black; + float: right; + background-color: gray; +} +input[type="file"] { + padding: 5px; + margin-top: 10px; + margin-left: 30.4px; + border-radius: 4px; + border: 1px solid #ccc; + width: 95%; +} +.vl { + border-left: 1px solid gray; + height: 300px; +} + - -
    -

    {% trans 'Please wait while file is Uploading...' %}

    -
    - -
    -

    {% trans 'Assignees' %}

    - -
    +
    +
    +

    New Task

    -
    -
    - -
    - -
    - - -
    - × -
    -
    - -
    - {% csrf_token %} - - -

    - {% if node %} - Editing {{title}}: {{node.name}} - {% else %} - Create a New {{title}} - {% endif %} -

    - -



    - -
    - +
    +
    -
    - - - {% trans "Please select Task Type." %} +
    +
    Task Name
    +
    +
    +
    - - - {% if not task_id %} -
    -
    - - - {% trans 'Please give your Task a descriptive name' %}. -
    -
    - {% endif %} - - -
    -
    - - - -
    -
    - - -
    -
    - - - - - Broke. -
    - -
    - - -
    -
    - - -
    -
    - - - -
    - -
    - - -
    -
    - - -
    - -
    - - - {% trans 'Please give Time in' %} HH:MM:SS -
    - {% comment %} -
    - - -
    - {% endcomment %} -
    -
    - -
    -
    -
    - -
    - -
    -
    -
    -
    - -
    -
    -
    -
    +
    +
    +
    Task Type:
    - - +
    + +
    +
    -
    - -
    -
    +
    +
    Start Date
    +
    +
    + +
    +
    +
    Due Date
    +
    +
    +
    - +
    +
    +
    Created By:
    +
    +
    + +
    -
    -
    -
    - - - {% include "ndf/html_editor.html" with var_name="content_org" var_placeholder="Enter the content here" var_value=node.content|default_if_none:"" ckeditor_toolbar="GeneralToolbar" node_id=node.pk %} -
    +
    +
    Status:
    +
    +
    +
    -
    - {% comment %} - - - {% endcomment %} - {% if Upload_Task %} - {% get_file_node request Upload_Task as new %} -
    - {% for node in new %} - {% get_grid_fs_object node as grid_fs_obj %} - - {% endfor %} +
    +
    +
    +
    +
    Assigned To:
    - {% endif %} - - -
    -
    - - - - - - - - - - +
    -
    - - -{% endblock %} + + +{% endblock body_content %} \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/gtask.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/gtask.py index 1cc8c5a496..c187482d62 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/gtask.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/gtask.py @@ -29,7 +29,6 @@ from gnowsys_ndf.ndf.views.methods import get_node_common_fields, get_file_node,get_execution_time,get_group_name_id, capture_data from gnowsys_ndf.ndf.views.methods import parse_template_data, create_gattribute, create_grelation from gnowsys_ndf.ndf.views.notify import set_notif_val - sitename=Site.objects.all() app = node_collection.one({'_type': "GSystemType", 'name': 'Task'}) @@ -56,7 +55,6 @@ def gtask(request, group_name, task_id=None): # group_id = str(auth._id) # else : # pass - print "7777777777777777777777777",group_name group_name, group_id = get_group_name_id(group_name) GST_TASK = node_collection.one({'_type': "GSystemType", 'name': 'Task'}) @@ -214,154 +212,25 @@ def save_image(request, group_name, app_id=None, app_name=None, app_set_id=None, @login_required @get_execution_time -def gcreate_edit_task(request, group_name, task_id=None, task=None, count=0): +def gcreate_edit_task(request, group_name, task_id=None): """Creates/Modifies details about the given Task. - """ - edit_task_node = "" - parent_task_check = "" - userlist = [] - - if ObjectId.is_valid(group_name) is False: - group_ins = node_collection.find_one({'_type': "Group","name": group_name}) - auth = node_collection.one({'_type': 'Author', 'name': unicode(request.user.username) }) - - elif ObjectId.is_valid(group_name) is True: - group_ins = node_collection.find_one({'_type': "Group","_id": ObjectId(group_name)}) - auth = node_collection.one({'_type': 'Author', 'name': unicode(request.user.username) }) - - if group_ins: - group_id = str(group_ins._id) - else: - auth = node_collection.one({'_type': 'Author', 'name': unicode(request.user.username) }) - if auth: - group_id = str(auth._id) - - blank_dict = {} - - collection_set_ids = [] - userlist=[] - - at_list = ["Status", "start_time", "Priority", "end_time", "Assignee", "Estimated_time", "Upload_Task"] # fields - rt_list = ["has_type"] - if request.method == "POST": # create or edit - - - if not task_id: # create - task_type = request.POST.get("assignees","") - Assignees = request.POST.get("Assignee","").split(',') - Assignees = [int(x) for x in Assignees] - if task_type != "Group Assignees" : - for i in Assignees: - if i: - task_node = create_task(request,task_id,group_id) - create_task_at_rt(request,rt_list,at_list,task_node,i,group_name,group_id) - collection_set_ids.append(ObjectId(task_node._id)) - if len(Assignees)>1: - task_node = create_task(request,task_id,group_id) - task_node.collection_set = collection_set_ids - - task_node.save(groupid=group_id) - create_task_at_rt(request,rt_list,at_list,task_node,request.user.id,group_name,group_id) - else: - task_node = create_task(request,task_id,group_id) - create_task_at_rt(request,rt_list,at_list,task_node,Assignees,group_name,group_id) - - else: #update - task_node = node_collection.one({'_type': u'GSystem', '_id': ObjectId(task_id)}) - update(request,rt_list,at_list,task_node,group_id,group_name) - - return HttpResponseRedirect(reverse('task_details', kwargs={'group_name': group_name, 'task_id': str(task_node._id) })) - - # Filling blank_dict in below if block - if task_id: - task_node = node_collection.one({'_type': u'GSystem', '_id': ObjectId(task_id)}) - for each in at_list: - attributetype_key = node_collection.find_one({"_type": 'AttributeType', 'name': each}) - attr = triple_collection.find_one({"_type": "GAttribute", "subject": task_node._id, "attribute_type": attributetype_key._id}) - if attr: - if each == "Upload_Task": - file_list=[] - new_list=[] - files=str(attr.object_value).split(',') - for i in files: - files_name=str(i.strip(' [](\'u\' ')) - new_list.append(files_name) - - ins_objectid = ObjectId() - for i in new_list: - if ins_objectid.is_valid(i) is False: - filedoc = node_collection.find({'_type': 'File', 'name': unicode(i)}) - - else: - filedoc = node_collection.find({'_type': 'File', '_id': ObjectId(i)}) - - if filedoc: - for i in filedoc: - file_list.append(i.name) - - blank_dict[each] = json.dumps(file_list) - blank_dict['select'] = json.dumps(new_list) - - else: - blank_dict[each] = attr.object_value - - if task_node.prior_node: - pri_node = node_collection.one({'_id': task_node.prior_node[0]}) - blank_dict['parent'] = pri_node.name - blank_dict['parent_id'] = str(pri_node._id) - - # Appending TaskType to blank_dict, i.e. "has_type" relationship - if task_node.relation_set: - for rel in task_node.relation_set: - for k in rel: - blank_dict[k] = rel[k] - - blank_dict["node"] = task_node - Assignee = "" - for i in blank_dict["Assignee"]: - Assignee_name = (User.objects.get(id=int(i))) - Assignee = Assignee_name.username + "," + Assignee - blank_dict["Assignee_name"] = Assignee - # Appending Watchers to blank_dict, i.e. values of node's author_set field - if task_node.author_set: - watchers_list = [] - for eachid in task_node.author_set: - if eachid not in watchers_list: - watchers_list.append(eachid) - blank_dict["Watchers"] = watchers_list - - # Fetch Task Type list values - glist = node_collection.one( - {'_type': "GSystemType", 'name': "GList"}, - {'name': 1} - ) - task_type_node = node_collection.one( - {'_type': "GSystem", 'member_of': glist._id, 'name': "TaskType"}, - {'collection_set': 1} - ) - task_type_list = [] - for task_type_id in task_type_node.collection_set: - task_type = node_collection.one({'_id': task_type_id}, {'name': 1}) - if task_type: - if task_type not in task_type_list: - task_type_list.append(task_type) - - var = { - 'title': 'Task', 'task_type_choices': task_type_list, - 'group_id': group_id, 'groupid': group_id, 'group_name': group_name, 'appId':app._id, - # 'node': task_node, 'task_id': task_id - 'task_id': task_id - } - var.update(blank_dict) - context_variables = var - - return render_to_response("ndf/gtask_create_edit.html", - context_variables, + group_object = node_collection.one({'name': unicode(group_name)}) + update = request.POST.get("update") + if update == "True": + name = request.POST.get("name") + task_obj = node_collection.collection.GSystem() + task_obj.fill_gstystem_values(request=request,name=str(name),group_set=group_object._id,member_of=app._id) + task_obj.save(group_id=group_object._id) + print "&&&&&&&&&&&&&&&&&&",task_obj + if not task_id: + return render_to_response("ndf/gtask_create_edit.html", + {"group_object" : group_object }, context_instance=RequestContext(request) ) + def update(request,rt_list,at_list,task_node,group_id,group_name): file_id=(request.POST.get("files")) file_name=(request.POST.get("files_name")) From d9970c1db95b3c948628840434778655468fc8a4 Mon Sep 17 00:00:00 2001 From: Prachirb Date: Mon, 8 Jan 2018 19:12:48 +0530 Subject: [PATCH 226/766] Courses redirecting to announced courses and removes groups from parent --- .../ndf/templates/ndf/gcourse.html | 23 ++++++------------- .../ndf/templates/ndf/module_detail.html | 3 +++ .../ndf/templates/ndf/partner.html | 2 +- gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py | 6 ++--- gnowsys-ndf/gnowsys_ndf/ndf/views/group.py | 2 +- 5 files changed, 15 insertions(+), 21 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gcourse.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gcourse.html index 99a9becfa4..3b331d6f2d 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gcourse.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gcourse.html @@ -58,23 +58,14 @@ {# {% datetime_now as datetime_now %} #}

    My Courses

    - {% for k, v in user_concern_groups.items %} - +
      + + {% for each_node in course_coll %} +
    • + {% include 'ndf/card_group.html' with node=each_node url_name='groupchange' first_arg=each_node.pk groupid=each_node.pk is_gstaff=is_gstaff %} +
    • {% endfor %} +
    {% comment %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/module_detail.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/module_detail.html index 75608a978c..f03ad65b99 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/module_detail.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/module_detail.html @@ -32,7 +32,10 @@ {% trans "Edit" %}
  • + {% comment %} {% trans "New SubGroup" %} + {% endcomment %} + {% trans "New SubGroup" %}
  • diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/partner.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/partner.html index e454893729..84430c94d9 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/partner.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/partner.html @@ -17,7 +17,7 @@ -
    {{groups_category}}
    +
    {{app_gst.content_org|default_if_none:''|safe}}
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py index 4c675bd4f2..ea0088622b 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py @@ -98,7 +98,7 @@ def course(request, group_id, course_id=None): app_set_name, app_set_id = GSystemType.get_gst_name_id("Announced Course") # ce_gst = node_collection.one({'_type': "GSystemType", 'name': "CourseEventGroup"}) - ce_gst_name, ce_gst_id = GSystemType.get_gst_name_id("CourseEventGroup") + ce_gst_name, ce_gst_id = GSystemType.get_gst_name_id("announced_unit") # Course search view # title = GST_COURSE.name @@ -113,14 +113,14 @@ def course(request, group_id, course_id=None): if not gstaff_access: query.update({'author_set':{'$ne':int(request.user.id)}}) - course_coll = node_collection.find({'member_of': course_gst_id,'group_set': ObjectId(group_id),'status':u"DRAFT"}).sort('last_update', -1) + course_coll = node_collection.find({'member_of': ce_gst_id}).sort('last_update', -1) enr_ce_coll = node_collection.find({'member_of': ce_gst_id,'author_set': int(request.user.id),'_id':{'$in': group_obj_post_node_list}}).sort('last_update', -1) user_access = user_access_policy(group_id ,request.user) if user_access == "allow": # show PRIVATE CourseEvent query.update({'group_type': {'$in':[u"PRIVATE",u"PUBLIC"]}}) - + ce_coll = node_collection.find(query).sort('last_update', -1) # print "\n\n ce_coll",ce_coll.count() return render_to_response("ndf/gcourse.html", diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/group.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/group.py index a7938c6a0d..a47273b629 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/group.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/group.py @@ -2091,7 +2091,7 @@ def group_dashboard(request, group_id=None): redir_groups_type = ["base_unit", "CourseEventGroup", \ "BaseCourseGroup", "announced_unit", "Group"] if any(group_type in group_member_of for group_type in redir_groups_type): - return HttpResponseRedirect(reverse('course_about', kwargs={'group_id': group_id})) + return HttpResponseRedirect(reverse('course_content', kwargs={'group_id': group_id})) # Subgroups listing if group_obj and group_obj.post_node: From 251730f8f2dd317c8d8b6692c2cfd6cb951ec6b7 Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Tue, 9 Jan 2018 12:17:30 +0530 Subject: [PATCH 227/766] icons added in header and lms header --- .../gnowsys_ndf/ndf/templates/ndf/header_clix.html | 2 ++ gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html | 8 ++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html index 81d92cf3d2..49ad18f0a9 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html @@ -97,6 +97,8 @@
    From a7577921629c8ae3ee83a69dab2cad580e383a44 Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Tue, 9 Jan 2018 13:03:13 +0530 Subject: [PATCH 228/766] anchor tag issue fixed --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html index bbcff03fc8..0b1d512775 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html @@ -64,10 +64,10 @@
  • {% endif %}
  • - {% trans "Progress Report" %} + {% trans "Progress Report" %}
  • - {% trans "Task" %} + {% trans "Task" %}
  • From c87e4451cbbe072bbd971ccf302c62e3b6162095 Mon Sep 17 00:00:00 2001 From: Prachirb Date: Tue, 9 Jan 2018 13:13:32 +0530 Subject: [PATCH 229/766] Workspace: activity+lessons+assessments binded --- gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py | 21 +++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py index ea0088622b..32584148b9 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py @@ -2396,14 +2396,6 @@ def progress_report(request, group_id, user_id, render_template=False, get_resul group_name = group_obj.name analytics_data = {'user_id': user_id} - analytics_data.update({ - 'correct_attempted_quizitems' : 0, - 'unattempted_quizitems': 0, - 'visited_quizitems': 0, - 'notapplicable_quizitems': 0, - 'incorrect_attempted_quizitems': 0, - 'attempted_quizitems': 0, - }) data_points_dict = {} assessment_and_quiz_data = kwargs.get('assessment_and_quiz_data', False) @@ -2428,6 +2420,15 @@ def progress_report(request, group_id, user_id, render_template=False, get_resul 'group_obj': group_obj, 'title': 'progress_report', 'allow_to_join': allow_to_join, 'old_profile_pics':old_profile_pics, "prof_pic_obj": banner_pic_obj, } + context_variables.update({ + 'correct_attempted_quizitems' : 0, + 'unattempted_quizitems': 0, + 'visited_quizitems': 0, + 'notapplicable_quizitems': 0, + 'incorrect_attempted_quizitems': 0, + 'attempted_quizitems': 0, + }) + if request.user.is_authenticated(): user_id = request.user.id @@ -2515,7 +2516,8 @@ def progress_report(request, group_id, user_id, render_template=False, get_resul context_variables['username'] = author_obj.name # QuizItem Section - if "announced_unit" in group_obj_member_of_names_list: + + if "announced_unit" in group_obj_member_of_names_list or "Group" in group_obj_member_of_names_list: visited_nodes = [] if counter_obj: visited_nodes = counter_obj['visited_nodes'].keys() @@ -2541,6 +2543,7 @@ def progress_report(request, group_id, user_id, render_template=False, get_resul completed_activities = completed_activities + 1 if all(each_act_id in visited_nodes for each_act_id in lesson_act_ids): completed_lessons = completed_lessons + 1 + context_variables['level1_lbl'] = "Lesson Visited" context_variables['level2_lbl'] = "Activity Visited" From d2afcd77d531fb00235407f4c2d8eecd45ecab5a Mon Sep 17 00:00:00 2001 From: Prachirb Date: Wed, 10 Jan 2018 18:17:44 +0530 Subject: [PATCH 230/766] Conflicts resolved --- .../ndf/static/ndf/css/themes/clix/styles.css | 64 +++++++++++++++++++ .../ndf/css/themes/metastudio/styles.css | 64 +++++++++++++++++++ .../ndf/static/ndf/css/themes/tiss/styles.css | 64 +++++++++++++++++++ .../ndf/static/ndf/scss/_app_styles.scss | 64 +++++++++++++++++++ 4 files changed, 256 insertions(+) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css index 94d48697f3..45d87ea562 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css @@ -30293,6 +30293,70 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 24px; } +/* line 7140, ../../../scss/_app_styles.scss */ +.button-cancel-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .1rem solid #a9a9a9; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7156, ../../../scss/_app_styles.scss */ +.button-cancel-new:hover { + background-color: #fff; + color: #333333; +} +/* line 7161, ../../../scss/_app_styles.scss */ +.button-cancel-new > a { + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7171, ../../../scss/_app_styles.scss */ +.button-cancel-new > a:hover { + background-color: #fff; + color: #333333; +} + +/* line 7179, ../../../scss/_app_styles.scss */ +.button-save-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .2rem solid #912a7d; + background-color: #912a7d; + color: #fff; + transition: all .1s ease; +} +/* line 7194, ../../../scss/_app_styles.scss */ +.button-save-new:hover { + background-color: #fff; + color: #912a7d; +} + /* * CLIx Platform Stylesheet */ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css index 419eaf6e63..0d4f00b462 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css @@ -30315,3 +30315,67 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 95%; margin-left: 24px; } + +/* line 7140, ../../../scss/_app_styles.scss */ +.button-cancel-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .1rem solid #a9a9a9; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7156, ../../../scss/_app_styles.scss */ +.button-cancel-new:hover { + background-color: #fff; + color: #333333; +} +/* line 7161, ../../../scss/_app_styles.scss */ +.button-cancel-new > a { + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7171, ../../../scss/_app_styles.scss */ +.button-cancel-new > a:hover { + background-color: #fff; + color: #333333; +} + +/* line 7179, ../../../scss/_app_styles.scss */ +.button-save-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .2rem solid #912a7d; + background-color: #912a7d; + color: #fff; + transition: all .1s ease; +} +/* line 7194, ../../../scss/_app_styles.scss */ +.button-save-new:hover { + background-color: #fff; + color: #912a7d; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css index 419eaf6e63..0d4f00b462 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css @@ -30315,3 +30315,67 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 95%; margin-left: 24px; } + +/* line 7140, ../../../scss/_app_styles.scss */ +.button-cancel-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .1rem solid #a9a9a9; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7156, ../../../scss/_app_styles.scss */ +.button-cancel-new:hover { + background-color: #fff; + color: #333333; +} +/* line 7161, ../../../scss/_app_styles.scss */ +.button-cancel-new > a { + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7171, ../../../scss/_app_styles.scss */ +.button-cancel-new > a:hover { + background-color: #fff; + color: #333333; +} + +/* line 7179, ../../../scss/_app_styles.scss */ +.button-save-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .2rem solid #912a7d; + background-color: #912a7d; + color: #fff; + transition: all .1s ease; +} +/* line 7194, ../../../scss/_app_styles.scss */ +.button-save-new:hover { + background-color: #fff; + color: #912a7d; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss index 41d1fc05ed..fb1d8fbf0c 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss @@ -7132,4 +7132,68 @@ $ah_2_background_color_hover: rgba(244, 244, 244, 0.3);; .name-desc-asset-cont-area{ width:95%; margin-left: 24px; +} + + + + +.button-cancel-new{ + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .1rem solid #a9a9a9; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right:1px; + &:hover{ + background-color: #fff; + color: #333333; + } + + >a{ + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right:1px; + &:hover{ + background-color: #fff; + color: #333333; + } + } +} + + +.button-save-new{ + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .2rem solid #912a7d; + background-color: #912a7d; + color: #fff; + transition: all .1s ease; + &:hover{ + background-color: #fff; + color: #912a7d; + } + } \ No newline at end of file From 9bcca25004bbb58f32979ebf11f6696feee404c5 Mon Sep 17 00:00:00 2001 From: Prachirb Date: Wed, 10 Jan 2018 18:17:55 +0530 Subject: [PATCH 231/766] Conflicts resolved --- .../static/ndf/css/themes/nroer/styles.css | 64 +++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css index c636cdedbc..495f332dd4 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css @@ -30408,3 +30408,67 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 95%; margin-left: 24px; } + +/* line 7140, ../../../scss/_app_styles.scss */ +.button-cancel-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .1rem solid #a9a9a9; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7156, ../../../scss/_app_styles.scss */ +.button-cancel-new:hover { + background-color: #fff; + color: #333333; +} +/* line 7161, ../../../scss/_app_styles.scss */ +.button-cancel-new > a { + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7171, ../../../scss/_app_styles.scss */ +.button-cancel-new > a:hover { + background-color: #fff; + color: #333333; +} + +/* line 7179, ../../../scss/_app_styles.scss */ +.button-save-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .2rem solid #912a7d; + background-color: #912a7d; + color: #fff; + transition: all .1s ease; +} +/* line 7194, ../../../scss/_app_styles.scss */ +.button-save-new:hover { + background-color: #fff; + color: #912a7d; +} From 83cbcbd7c1a96d70066f7e840161caf2f2b154ea Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Thu, 11 Jan 2018 12:23:32 +0530 Subject: [PATCH 232/766] asset cards sort by last update --- gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py index 3748ae90e6..21cf95efcb 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py @@ -3890,7 +3890,7 @@ def assets(request, group_id, asset_id=None,page_no=1): ) if gstaff_access: - asset_nodes = node_collection.find({'member_of': {'$in': [asset_gst_id]},'group_set': {'$all': [ObjectId(group_id)]},'access_policy': {'$in': ['PRIVATE','PUBLIC'] } }) + asset_nodes = node_collection.find({'member_of': {'$in': [asset_gst_id]},'group_set': {'$all': [ObjectId(group_id)]},'access_policy': {'$in': ['PRIVATE','PUBLIC'] } }).sort('last_update', -1) else: asset_nodes = node_collection.find({'member_of': {'$in': [asset_gst_id]}, @@ -3902,7 +3902,7 @@ def assets(request, group_id, asset_id=None,page_no=1): {'access_policy': 'PRIVATE'} ] } - ]}) + ]}).sort('last_update', -1) assets_page_info = paginator.Paginator(asset_nodes, page_no, GSTUDIO_NO_OF_OBJS_PP) context_variables = { From 3bd59f5bf92e9dc1d0e7bb7f4fde0eb7c244e2c8 Mon Sep 17 00:00:00 2001 From: Prachirb Date: Thu, 11 Jan 2018 13:14:40 +0530 Subject: [PATCH 233/766] NROER: My desk added in header, displays deafult user workspace --- .../ndf/templates/ndf/card_group.html | 6 +- .../gnowsys_ndf/ndf/templates/ndf/header.html | 6 ++ .../ndf/templates/ndf/lms_dashboard.html | 69 ++++++++++++++----- 3 files changed, 64 insertions(+), 17 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_group.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_group.html index 8ecf821d3d..cebf3a36cf 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_group.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_group.html @@ -19,10 +19,14 @@ {% if "base_unit" in node.member_of_names_list %}
    DRAFT
    - {% endif %} + {% elif "Group" in node.member_of_names_list %} +
    Workspaces
    + {% endif %} + {% if get_status %}
    {{get_status}}
    {% endif %} +
    {% if "announced_unit" in node.member_of_names_list %} {% get_relation_value node.pk 'has_banner_pic' as grel_dict %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html index cd48f3dd28..0dfb604af8 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html @@ -118,6 +118,12 @@

    + {% if request.user.is_authenticated %} +
  • + My Desk +
  • + {% endif %} + {% comment %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html index 23e70face5..9991854006 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html @@ -33,7 +33,13 @@

    -
    -
    -
    -
    -
    -
    - Lesson Visited -

    0 out of 20 lessons visited

    -
    -
    -
    -
    - Activity Visited -

    0 out of 4 activities visited

    -
    -
    -
    -
    -
    -
    -
    - - - - Assessment Performance - Refresh -
    -
    - {% trans "Total Questions" %} - 0 -
    - Correct Answers - 0 -
    - Attempted - 0 -
    - {% trans "Incorrect answers" %} - 0 -
    - {% trans "Not Attempted" %} - 0 -
    -
    -
    -
    -
    - - - - {% trans "Note Making" %} -
    -
    - {% trans "Notes Written" %} - 0 -
    - {% trans "Views Gained" %} - 0 -
    - {% trans "Comments recieved" %} - 0 -
    - {% trans "Visits on Other Notes" %} - 0 -
    - {% trans "Comments on other notes" %} - 0 -
    - {% trans "Avg. Rating Awarded" %} - 0 - -
    -
    -
    -
    - - - - {% trans "Interactions" %} - -
    - {% trans "Comments By me" %} - 0 -
    - {% trans "Comments for me" %} - 0 -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - - {% trans "Gallery uploads" %} -
    -
    - {% trans "Files Uploaded" %} - 0 - {% trans "Avg. Rating awarded" %} - 0 - {% trans "Comments on other Files" %} - 0 - {% trans "Comments on other Files" %} - 0 -
    -
    - {% trans "Comments by unique users" %} - 0 - {% trans "Visits gained" %} - 0 - {% trans "Comments recieved" %} - 0 - {% trans "Visits on Other Files" %} - 0 - -
    -
    -
    - + + +
    +
    + +
    + +
    +
    + + + + + {% endblock body_content %} From 41fc6d3fba0d7520a25c90ade42d439bfb483662 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 12 Jan 2018 14:38:44 +0530 Subject: [PATCH 238/766] added lowercase() function to index variable --- doc/deployer/es_initialize.py | 7 ++++--- doc/deployer/esinitialize_map.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/deployer/es_initialize.py b/doc/deployer/es_initialize.py index 2bd47f2377..bddc4de0f7 100644 --- a/doc/deployer/es_initialize.py +++ b/doc/deployer/es_initialize.py @@ -4,16 +4,17 @@ import json from elasticsearch import Elasticsearch from gnowsys_ndf.ndf.models import * -from gnowsys_ndf.settings import GSTUDIO_SITE_NAME, GSTUDIO_DOCUMENT_MAPPING +from gnowsys_ndf.settings import GSTUDIO_SITE_NAME +from gnowsys_ndf.local_settings import GSTUDIO_DOCUMENT_MAPPING ##### use the below commented lines if you are working with Python 2.x ##### # reload(sys) # sys.setdefaultencoding('UTF8') -es = Elasticsearch("http://elsearch:changeit@gsearch:9200", timeout=30) +es = Elasticsearch("http://elastic:changeme@gsearch:9200", timeout=30) author_index = "author_" + GSTUDIO_SITE_NAME -index = GSTUDIO_SITE_NAME +index = GSTUDIO_SITE_NAME.lower() gsystemtype_index = "node_type_" + GSTUDIO_SITE_NAME page_id = 0 diff --git a/doc/deployer/esinitialize_map.py b/doc/deployer/esinitialize_map.py index 0270aef1e3..09bb8ba192 100644 --- a/doc/deployer/esinitialize_map.py +++ b/doc/deployer/esinitialize_map.py @@ -4,7 +4,7 @@ import json # from elasticsearch import Elasticsearch from gnowsys_ndf.ndf.models import * -from gnowsys_ndf.settings import GSTUDIO_DOCUMENT_MAPPING +from gnowsys_ndf.local_settings import GSTUDIO_DOCUMENT_MAPPING # es = Elasticsearch("http://elsearch:changeit@gsearch:9200") From b3eb90b62a1295be7bb550809d79f1c4b96ccf82 Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Fri, 12 Jan 2018 16:40:00 +0530 Subject: [PATCH 239/766] create/edit form for task binded --- .../ndf/templates/ndf/gtask_create_edit.html | 24 +++++++--- .../ndf/templates/ndf/gtask_list_view.html | 20 ++++++++- gnowsys-ndf/gnowsys_ndf/ndf/views/gtask.py | 44 ++++++++++++++++--- 3 files changed, 75 insertions(+), 13 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html index 7bd6e12c07..4420c193b5 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html @@ -80,7 +80,7 @@
    Task Name
    Task Type:
    - @@ -115,7 +115,7 @@
    Created By:
    Status:
    - @@ -126,7 +126,7 @@
    Status:
    Priority
    - @@ -178,8 +178,7 @@
    To be Done By:
    Notes:
    - +
    @@ -218,8 +217,15 @@
    Notes:
    }); + $( ".create-task-btn" ).click(function() { task_name = $(".task-name").val(); + sel_task_type = $('#task_type').find(':selected').val(); + sel_task_status = $('#task_status').find(':selected').val(); + sel_task_priority = $('#task_priority').find(':selected').val(); + task_notes = $('#task_notes').val(); + start_date = $('#start_date').val(); + due_date = $('#due_date').val(); $.ajax({ url: "{% url 'gtask_create_edit' group_object.name %}", @@ -227,6 +233,12 @@
    Notes:
    data: { 'csrfmiddlewaretoken': "{{csrf_token}}", 'name' : task_name, + 'task_type' : sel_task_type, + 'task_status' : sel_task_status, + 'task_priority' : sel_task_priority, + 'start_date' : start_date, + 'due_date' : due_date, + 'content' : task_notes } , success: function(data){ @@ -235,6 +247,8 @@
    Notes:
    }, }); }); + + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask_list_view.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask_list_view.html index 02bd318ded..43c1c9b837 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask_list_view.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask_list_view.html @@ -33,7 +33,7 @@ {{each.Assignee.0}} {{each.Priority}} {{each.Status}} - + {% if each.owner == 'owner' or is_gstaff %} {% endif %} @@ -80,4 +80,22 @@ } } + +$( ".task-edit" ).click(function() { + $.ajax({ + url: "{% url 'gtask_create_edit' group_object.name %}", + + type: "GET", + data: { + 'csrfmiddlewaretoken': "{{csrf_token}}", + '' + } , + + success: function(data){ + + $( ".created-by-me" ).trigger( "click" ); + }, + }); +}); + \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/gtask.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/gtask.py index de6652a833..71378e145f 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/gtask.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/gtask.py @@ -59,7 +59,8 @@ def gtask(request, group_name, task_id=None): GST_TASK = node_collection.one({'_type': "GSystemType", 'name': 'Task'}) title = "Task" - TASK_inst = node_collection.find({'member_of': {'$all': [GST_TASK._id]}, 'group_set': ObjectId(group_id),'status':"PUBLISHED" }) + + TASK_inst = node_collection.find({'member_of': {'$all': [GST_TASK._id]}, 'group_set': ObjectId(group_id),'status':"PUBLISHED" }).sort('last_update', -1) template = "ndf/lms.html" variable = RequestContext(request, {'title': title, 'appId':app._id, 'TASK_inst': TASK_inst, 'group_id': group_id, 'groupid': group_id, 'group_name':group_name }) return render_to_response(template, variable) @@ -219,11 +220,40 @@ def gcreate_edit_task(request, group_name, task_id=None): update = request.POST.get("update") if not update == "True": name = request.POST.get("name") + content = request.POST.get("content") + task_type = request.POST.get("task_type") + Status = request.POST.get("task_status") + start_time = request.POST.get("start_date") + end_time = request.POST.get("due_date") + Priority = request.POST.get("task_priority") + Estimated_time = request.POST.get("estimated_time") task_obj = node_collection.collection.GSystem() - task_obj.fill_gstystem_values(request=request,name=str(name),group_set=group_object._id,member_of=app._id) + task_obj.fill_gstystem_values(request=request,name=str(name),content=content, group_set=group_object._id,member_of=app._id) task_obj.save(group_id=group_object._id) + at_list = ["Status", "start_time", "Priority", "end_time", "Assignee", "Estimated_time"] + + + if Status: + attributetype_key = node_collection.find_one({"_type": 'AttributeType', 'name': 'Status' }) + ga_node = create_gattribute(task_obj._id, attributetype_key, Status) + + if start_time: + attributetype_key = node_collection.find_one({"_type": 'AttributeType', 'name': 'start_time' }) + ga_node = create_gattribute(task_obj._id, attributetype_key, start_time) + + if end_time: + attributetype_key = node_collection.find_one({"_type": 'AttributeType', 'name': 'end_time' }) + ga_node = create_gattribute(task_obj._id, attributetype_key, end_time) + + if Priority: + attributetype_key = node_collection.find_one({"_type": 'AttributeType', 'name': 'Priority' }) + ga_node = create_gattribute(task_obj._id, attributetype_key, Priority) + + if Estimated_time: + attributetype_key = node_collection.find_one({"_type": 'AttributeType', 'name': 'Estimated_time' }) + ga_node = create_gattribute(task_obj._id, attributetype_key, Estimated_time) + - if not task_id: return render_to_response("ndf/gtask_create_edit.html", {"group_object" : group_object }, @@ -669,7 +699,7 @@ def gcheck_filter(request,group_name,choice=1,status='New',each_page=1): Completed_Status_List=['Resolved','Closed'] title = "Task" - TASK_inst = node_collection.find({'member_of': {'$all': [GST_TASK._id]},'group_set': {'$all': [ObjectId(group_id)]}}) + TASK_inst = node_collection.find({'member_of': {'$all': [GST_TASK._id]},'group_set': {'$all': [ObjectId(group_id)]}}).sort('last_update', -1) task_list=[] message="" send="This group doesn't have any files" @@ -756,9 +786,9 @@ def gcheck_filter(request,group_name,choice=1,status='New',each_page=1): if attr_value['Status'] == status: task_list.append(dict(attr_value)) - paged_resources = Paginator(task_list,10) + # paged_resources = Paginator(task_list,10) files_list = [] - for each_resource in (paged_resources.page(each_page)).object_list: + for each_resource in task_list: files_list.append(each_resource) count_list=[] @@ -767,6 +797,6 @@ def gcheck_filter(request,group_name,choice=1,status='New',each_page=1): count=len(task_list) template = "ndf/gtask_list_view.html" - variable = RequestContext(request, {'TASK_inst':files_list,'group_name':group_name, 'appId':app._id, 'group_id': group_id, 'groupid': group_id,'send':message,'count':count,'TASK_obj':TASK_inst,"page_info":paged_resources,'page_no':each_page,'choice':choice,'status':status}) + variable = RequestContext(request, {'TASK_inst':files_list,'group_name':group_name, 'appId':app._id, 'group_id': group_id, 'groupid': group_id,'send':message,'count':count,'TASK_obj':TASK_inst,'page_no':each_page,'choice':choice,'status':status}) return render_to_response(template, variable) #return HttpResponse(json.dumps(self_task,cls=NodeJSONEncoder)) From 821e5869a5ca74dda167205695737a56e2ad1a3a Mon Sep 17 00:00:00 2001 From: root Date: Fri, 12 Jan 2018 18:12:17 +0530 Subject: [PATCH 240/766] changed GSTUDIO_SITE_NAME to lowercase --- doc/deployer/es_initialize.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/deployer/es_initialize.py b/doc/deployer/es_initialize.py index bddc4de0f7..be333725fb 100644 --- a/doc/deployer/es_initialize.py +++ b/doc/deployer/es_initialize.py @@ -11,11 +11,11 @@ # reload(sys) # sys.setdefaultencoding('UTF8') -es = Elasticsearch("http://elastic:changeme@gsearch:9200", timeout=30) +es = Elasticsearch("http://elastic:changeme@gsearch:9200", timeout=100, retry_on_timeout=True) -author_index = "author_" + GSTUDIO_SITE_NAME +author_index = "author_" + GSTUDIO_SITE_NAME.lower() index = GSTUDIO_SITE_NAME.lower() -gsystemtype_index = "node_type_" + GSTUDIO_SITE_NAME +gsystemtype_index = "node_type_" + GSTUDIO_SITE_NAME.lower() page_id = 0 def index_docs(all_docs): From a4a0ce25e4fea6c46c299901d9a81a7d1262088a Mon Sep 17 00:00:00 2001 From: Prachirb Date: Fri, 12 Jan 2018 18:35:38 +0530 Subject: [PATCH 241/766] icon from header removed --- .../static/ndf/css/themes/clix/clix2017.css | 423 +++++++------ .../ndf/static/ndf/css/themes/clix/styles.css | 579 +++++++++--------- .../ndf/css/themes/metastudio/styles.css | 579 +++++++++--------- .../static/ndf/css/themes/nroer/styles.css | 579 +++++++++--------- .../ndf/static/ndf/css/themes/tiss/styles.css | 579 +++++++++--------- .../ndf/static/ndf/scss/_app_styles.scss | 18 + .../ndf/static/ndf/scss/_clix2017.scss | 16 + .../ndf/templates/ndf/card_group.html | 2 +- .../gnowsys_ndf/ndf/templates/ndf/header.html | 2 +- .../ndf/templates/ndf/repository.html | 7 +- 10 files changed, 1452 insertions(+), 1332 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css index fb05eea4ff..af05f13c62 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css @@ -5315,33 +5315,50 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5550, ../../../scss/_clix2017.scss */ +/* line 5549, ../../../scss/_clix2017.scss */ +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #000000b8; + letter-spacing: 0.4px; +} + +/* line 5566, ../../../scss/_clix2017.scss */ .lesson-dropdown ul { display: none; } -/* line 5554, ../../../scss/_clix2017.scss */ +/* line 5570, ../../../scss/_clix2017.scss */ .lesson-dropdown:hover ul { display: block; } -/* line 5558, ../../../scss/_clix2017.scss */ +/* line 5574, ../../../scss/_clix2017.scss */ .lesson_name_in_export { list-style: none; } -/* line 5560, ../../../scss/_clix2017.scss */ +/* line 5576, ../../../scss/_clix2017.scss */ .lesson_name_in_export:hover { border-left: 2.5px solid #ce7869; } -/* line 5565, ../../../scss/_clix2017.scss */ +/* line 5581, ../../../scss/_clix2017.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 5571, ../../../scss/_clix2017.scss */ +/* line 5587, ../../../scss/_clix2017.scss */ .lc { width: 100%; height: 45px; @@ -5349,49 +5366,49 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { color: #164A7B; margin-top: -30px; } -/* line 5577, ../../../scss/_clix2017.scss */ +/* line 5593, ../../../scss/_clix2017.scss */ .lc > p { margin-left: 81px; padding: 12px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 5583, ../../../scss/_clix2017.scss */ +/* line 5599, ../../../scss/_clix2017.scss */ .lc > a { padding: 12px 85px 3px 0px; } -/* line 5587, ../../../scss/_clix2017.scss */ +/* line 5603, ../../../scss/_clix2017.scss */ .lms_explore_head_unit { width: 100%; height: 50px; background-color: #fff; color: #164A7B; } -/* line 5592, ../../../scss/_clix2017.scss */ +/* line 5608, ../../../scss/_clix2017.scss */ .lms_explore_head_unit > p { margin-left: 81px; padding: 0px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 5598, ../../../scss/_clix2017.scss */ +/* line 5614, ../../../scss/_clix2017.scss */ .lms_explore_head_unit > a { padding: 0px 85px 3px 0px; } -/* line 5603, ../../../scss/_clix2017.scss */ +/* line 5619, ../../../scss/_clix2017.scss */ .lms_explore_back { background-color: #fff; } -/* line 5607, ../../../scss/_clix2017.scss */ +/* line 5623, ../../../scss/_clix2017.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -23.3px; } -/* line 5615, ../../../scss/_clix2017.scss */ +/* line 5631, ../../../scss/_clix2017.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -5399,7 +5416,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background-size: 100% 100%; position: relative; } -/* line 5622, ../../../scss/_clix2017.scss */ +/* line 5638, ../../../scss/_clix2017.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -5413,13 +5430,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 5636, ../../../scss/_clix2017.scss */ +/* line 5652, ../../../scss/_clix2017.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 5641, ../../../scss/_clix2017.scss */ +/* line 5657, ../../../scss/_clix2017.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -5428,53 +5445,53 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { overflow: hidden; background-color: #fff; } -/* line 5649, ../../../scss/_clix2017.scss */ +/* line 5665, ../../../scss/_clix2017.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 5654, ../../../scss/_clix2017.scss */ +/* line 5670, ../../../scss/_clix2017.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 5659, ../../../scss/_clix2017.scss */ +/* line 5675, ../../../scss/_clix2017.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 5664, ../../../scss/_clix2017.scss */ +/* line 5680, ../../../scss/_clix2017.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 5672, ../../../scss/_clix2017.scss */ +/* line 5688, ../../../scss/_clix2017.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 5676, ../../../scss/_clix2017.scss */ +/* line 5692, ../../../scss/_clix2017.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 5686, ../../../scss/_clix2017.scss */ +/* line 5702, ../../../scss/_clix2017.scss */ .input_links { margin-left: 10px; } -/* line 5688, ../../../scss/_clix2017.scss */ +/* line 5704, ../../../scss/_clix2017.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 5694, ../../../scss/_clix2017.scss */ +/* line 5710, ../../../scss/_clix2017.scss */ #course-notification #status { width: 100% !important; } -/* line 5700, ../../../scss/_clix2017.scss */ +/* line 5716, ../../../scss/_clix2017.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; @@ -5486,7 +5503,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { color: #6153AE; } -/* line 5711, ../../../scss/_clix2017.scss */ +/* line 5727, ../../../scss/_clix2017.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -5498,7 +5515,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { color: #6153AE; } -/* line 5722, ../../../scss/_clix2017.scss */ +/* line 5738, ../../../scss/_clix2017.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -5508,12 +5525,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background-color: #f7f7f7; width: 85px; } -/* line 5730, ../../../scss/_clix2017.scss */ +/* line 5746, ../../../scss/_clix2017.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 5734, ../../../scss/_clix2017.scss */ +/* line 5750, ../../../scss/_clix2017.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -5524,34 +5541,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background-color: #f7f7f7; width: 85px; } -/* line 5743, ../../../scss/_clix2017.scss */ +/* line 5759, ../../../scss/_clix2017.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 5748, ../../../scss/_clix2017.scss */ +/* line 5764, ../../../scss/_clix2017.scss */ .jqtree-title > .fa-check { color: green; } -/* line 5751, ../../../scss/_clix2017.scss */ +/* line 5767, ../../../scss/_clix2017.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 5754, ../../../scss/_clix2017.scss */ +/* line 5770, ../../../scss/_clix2017.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; } -/* line 5758, ../../../scss/_clix2017.scss */ +/* line 5774, ../../../scss/_clix2017.scss */ .img-height { height: 150px; width: 1351px; } -/* line 5765, ../../../scss/_clix2017.scss */ +/* line 5781, ../../../scss/_clix2017.scss */ #overlay { /* we set all of the properties for are overlay */ height: 116px; @@ -5572,7 +5589,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-radius: 10px; } -/* line 5785, ../../../scss/_clix2017.scss */ +/* line 5801, ../../../scss/_clix2017.scss */ #mask { /* create are mask */ position: fixed; @@ -5586,13 +5603,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* use :target to look for a link to the overlay then we find are mask */ -/* line 5796, ../../../scss/_clix2017.scss */ +/* line 5812, ../../../scss/_clix2017.scss */ #overlay:target, #overlay:target + #mask { display: block; opacity: 1; } -/* line 5800, ../../../scss/_clix2017.scss */ +/* line 5816, ../../../scss/_clix2017.scss */ .close { /* to make a nice looking pure CSS3 close button */ display: block; @@ -5614,7 +5631,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-radius: 38px; } -/* line 5819, ../../../scss/_clix2017.scss */ +/* line 5835, ../../../scss/_clix2017.scss */ #open-overlay { /* open the overlay */ padding: 0px 0px; @@ -5627,7 +5644,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -o-border-radius: 10px; } -/* line 5830, ../../../scss/_clix2017.scss */ +/* line 5846, ../../../scss/_clix2017.scss */ .enroll-btn { width: 90px; opacity: 1; @@ -5643,44 +5660,44 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background-color: #4b4852; } -/* line 5850, ../../../scss/_clix2017.scss */ +/* line 5866, ../../../scss/_clix2017.scss */ .img-style-land { margin-top: 28px; margin-left: -56px; } -/* line 5855, ../../../scss/_clix2017.scss */ +/* line 5871, ../../../scss/_clix2017.scss */ .top-margin-translation { margin-top: 0px; } -/* line 5859, ../../../scss/_clix2017.scss */ +/* line 5875, ../../../scss/_clix2017.scss */ .activity-editor-header-top { margin-top: -50px; } -/* line 5863, ../../../scss/_clix2017.scss */ +/* line 5879, ../../../scss/_clix2017.scss */ .add-lesson-top-margin { margin-top: 5px; } -/* line 5866, ../../../scss/_clix2017.scss */ +/* line 5882, ../../../scss/_clix2017.scss */ .translation-detail-top-margin { margin-top: 0px; } -/* line 5869, ../../../scss/_clix2017.scss */ +/* line 5885, ../../../scss/_clix2017.scss */ .outer { width: 100%; text-align: center; } -/* line 5874, ../../../scss/_clix2017.scss */ +/* line 5890, ../../../scss/_clix2017.scss */ .inner { display: inline-block !important; } -/* line 5879, ../../../scss/_clix2017.scss */ +/* line 5895, ../../../scss/_clix2017.scss */ .transcript-toggler { display: block; width: 155px !important; @@ -5696,33 +5713,33 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { text-transform: uppercase; } -/* line 5895, ../../../scss/_clix2017.scss */ +/* line 5911, ../../../scss/_clix2017.scss */ .double-buttons { margin-top: 100px; margin-left: 729px; } -/* line 5900, ../../../scss/_clix2017.scss */ +/* line 5916, ../../../scss/_clix2017.scss */ .lesson-form-name { padding-top: 10px; } -/* line 5904, ../../../scss/_clix2017.scss */ +/* line 5920, ../../../scss/_clix2017.scss */ .lesson-form-desc { padding-top: 25px; } -/* line 5908, ../../../scss/_clix2017.scss */ +/* line 5924, ../../../scss/_clix2017.scss */ .enroll_chkbox { transform: scale(1.5); } -/* line 5911, ../../../scss/_clix2017.scss */ +/* line 5927, ../../../scss/_clix2017.scss */ .enroll_all_users { width: 15% !important; } -/* line 5915, ../../../scss/_clix2017.scss */ +/* line 5931, ../../../scss/_clix2017.scss */ .enrollBtn { width: 124px !important; background: rgba(75, 72, 82, 0.8); @@ -5736,30 +5753,30 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 101px !important; margin-right: 15px; } -/* line 5928, ../../../scss/_clix2017.scss */ +/* line 5944, ../../../scss/_clix2017.scss */ .enrollBtn:hover { background: rgba(75, 72, 82, 0.8); color: #000000; } -/* line 5934, ../../../scss/_clix2017.scss */ +/* line 5950, ../../../scss/_clix2017.scss */ .enroll-act_lbl { color: #0c2944; } -/* line 5939, ../../../scss/_clix2017.scss */ +/* line 5955, ../../../scss/_clix2017.scss */ .wrkspace { margin-right: 80px; } -/* line 5943, ../../../scss/_clix2017.scss */ +/* line 5959, ../../../scss/_clix2017.scss */ .status-btn { background-color: #fff; margin-right: auto; padding-bottom: 0px; text-transform: none; } -/* line 5948, ../../../scss/_clix2017.scss */ +/* line 5964, ../../../scss/_clix2017.scss */ .status-btn .disabled { background-color: #008cba; border-color: #007095; @@ -5769,41 +5786,41 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { box-shadow: none; } -/* line 5958, ../../../scss/_clix2017.scss */ +/* line 5974, ../../../scss/_clix2017.scss */ .margin-right-50 { margin-right: 50px; } -/* line 5965, ../../../scss/_clix2017.scss */ +/* line 5981, ../../../scss/_clix2017.scss */ .color-btn { background-color: #720f5e; width: 77px; margin-left: 17px; } -/* line 5969, ../../../scss/_clix2017.scss */ +/* line 5985, ../../../scss/_clix2017.scss */ .color-btn:hover { color: #720f5e; background-color: #ffffff; } -/* line 5975, ../../../scss/_clix2017.scss */ +/* line 5991, ../../../scss/_clix2017.scss */ .mid_label { margin-top: 15px; font-size: 15px; } -/* line 5980, ../../../scss/_clix2017.scss */ +/* line 5996, ../../../scss/_clix2017.scss */ .compulsory { color: red; font-size: smaller; } -/* line 5985, ../../../scss/_clix2017.scss */ +/* line 6001, ../../../scss/_clix2017.scss */ .select-drop { height: auto; } -/* line 5989, ../../../scss/_clix2017.scss */ +/* line 6005, ../../../scss/_clix2017.scss */ .template-select { border: 1px solid #cccccc; border-radius: 5px; @@ -5812,41 +5829,41 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-size: 14px; } -/* line 5997, ../../../scss/_clix2017.scss */ +/* line 6013, ../../../scss/_clix2017.scss */ .white-text { color: white; } -/* line 6002, ../../../scss/_clix2017.scss */ +/* line 6018, ../../../scss/_clix2017.scss */ .quiz-player .quiz_qtn { margin-left: 20px !important; font-size: 20px; } -/* line 6006, ../../../scss/_clix2017.scss */ +/* line 6022, ../../../scss/_clix2017.scss */ .quiz-player .question_edit { margin-left: 20px !important; } -/* line 6010, ../../../scss/_clix2017.scss */ +/* line 6026, ../../../scss/_clix2017.scss */ .quiz-player input[type=checkbox], .quiz-player input[type=radio] { margin-right: 10px; width: 15px; height: 15px; } -/* line 6016, ../../../scss/_clix2017.scss */ +/* line 6032, ../../../scss/_clix2017.scss */ .quiz-player .chk_ans_lbl, .quiz-player .rad_ans_lbl { font-size: 22px; margin-left: 5px; } -/* line 6021, ../../../scss/_clix2017.scss */ +/* line 6037, ../../../scss/_clix2017.scss */ .quiz-player .fi-check { color: green; } -/* line 6025, ../../../scss/_clix2017.scss */ +/* line 6041, ../../../scss/_clix2017.scss */ .quiz-player .fi-x { color: red; } -/* line 6030, ../../../scss/_clix2017.scss */ +/* line 6046, ../../../scss/_clix2017.scss */ .hyperlink-tag { cursor: pointer; cursor: pointer; @@ -5859,7 +5876,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { color: #164A7B; } -/* line 6042, ../../../scss/_clix2017.scss */ +/* line 6058, ../../../scss/_clix2017.scss */ .scard { background: #FFF; border: 1px solid #AAA; @@ -5871,12 +5888,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { height: 9rem; /*float:left;*/ } -/* line 6051, ../../../scss/_clix2017.scss */ +/* line 6067, ../../../scss/_clix2017.scss */ .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 6057, ../../../scss/_clix2017.scss */ +/* line 6073, ../../../scss/_clix2017.scss */ .scard .scard_header { text-align: center; position: fixed; @@ -5894,7 +5911,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; } -/* line 6074, ../../../scss/_clix2017.scss */ +/* line 6090, ../../../scss/_clix2017.scss */ .scard-content { height: 2.7em; padding: 0.5rem; @@ -5907,7 +5924,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 6085, ../../../scss/_clix2017.scss */ +/* line 6101, ../../../scss/_clix2017.scss */ .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; @@ -5917,7 +5934,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { text-align: center; } -/* line 6098, ../../../scss/_clix2017.scss */ +/* line 6114, ../../../scss/_clix2017.scss */ .scard-action { height: height; font-size: 0.6em; @@ -5931,7 +5948,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background-color: #CCCCCC; } -/* line 6113, ../../../scss/_clix2017.scss */ +/* line 6129, ../../../scss/_clix2017.scss */ .scard-desc { font-size: 0.7em; color: #333333; @@ -5947,7 +5964,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { display-inline: block; } -/* line 6130, ../../../scss/_clix2017.scss */ +/* line 6146, ../../../scss/_clix2017.scss */ .scard-image { padding: 0px; margin: 0px; @@ -5958,7 +5975,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { overflow: hidden; background-color: #f2f2f2; } -/* line 6139, ../../../scss/_clix2017.scss */ +/* line 6155, ../../../scss/_clix2017.scss */ .scard-image img { border-radius: 2px 2px 0 0; display: block; @@ -5967,18 +5984,18 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { height: 100%; } -/* line 6151, ../../../scss/_clix2017.scss */ +/* line 6167, ../../../scss/_clix2017.scss */ .published.scard-action { background: #A6D9CB; } -/* line 6155, ../../../scss/_clix2017.scss */ +/* line 6171, ../../../scss/_clix2017.scss */ .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 6161, ../../../scss/_clix2017.scss */ +/* line 6177, ../../../scss/_clix2017.scss */ .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -5987,17 +6004,17 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { height: 2rem; } -/* line 6169, ../../../scss/_clix2017.scss */ +/* line 6185, ../../../scss/_clix2017.scss */ .auto_width { width: auto !important; } -/* line 6173, ../../../scss/_clix2017.scss */ +/* line 6189, ../../../scss/_clix2017.scss */ .explore-settings-drop { margin-left: 57%; display: inline-block; } -/* line 6176, ../../../scss/_clix2017.scss */ +/* line 6192, ../../../scss/_clix2017.scss */ .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -6010,17 +6027,17 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 10px; margin-left: 20px; } -/* line 6187, ../../../scss/_clix2017.scss */ +/* line 6203, ../../../scss/_clix2017.scss */ .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 6193, ../../../scss/_clix2017.scss */ +/* line 6209, ../../../scss/_clix2017.scss */ .explore-settings-drop a { font-size: 16px; } -/* line 6196, ../../../scss/_clix2017.scss */ +/* line 6212, ../../../scss/_clix2017.scss */ .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -6028,37 +6045,37 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin: 0; background-color: #164A7B; } -/* line 6204, ../../../scss/_clix2017.scss */ +/* line 6220, ../../../scss/_clix2017.scss */ .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 6208, ../../../scss/_clix2017.scss */ +/* line 6224, ../../../scss/_clix2017.scss */ .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 6215, ../../../scss/_clix2017.scss */ +/* line 6231, ../../../scss/_clix2017.scss */ .attempts_count { color: #000000 !important; } -/* line 6222, ../../../scss/_clix2017.scss */ +/* line 6238, ../../../scss/_clix2017.scss */ #course-settings-drop li a { text-align: left; } -/* line 6230, ../../../scss/_clix2017.scss */ +/* line 6246, ../../../scss/_clix2017.scss */ #asset-settings-drop li a { text-align: left; } -/* line 6237, ../../../scss/_clix2017.scss */ +/* line 6253, ../../../scss/_clix2017.scss */ .button-bg { background-color: #74b3dc; } /* Tools page css listing*/ -/* line 6244, ../../../scss/_clix2017.scss */ +/* line 6260, ../../../scss/_clix2017.scss */ .polaroid { width: 330px; background-color: white; @@ -6072,7 +6089,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { cursor: pointer; } -/* line 6257, ../../../scss/_clix2017.scss */ +/* line 6273, ../../../scss/_clix2017.scss */ .polaroid:hover img { -webkit-transform: scale(1.05); -moz-transform: scale(1.05); @@ -6081,26 +6098,26 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { transform: scale(1.05); } -/* line 6266, ../../../scss/_clix2017.scss */ +/* line 6282, ../../../scss/_clix2017.scss */ .container { text-align: center; padding: 10px 20px; border-top: 5px solid #164a7b; margin-top: 0px; } -/* line 6272, ../../../scss/_clix2017.scss */ +/* line 6288, ../../../scss/_clix2017.scss */ .container > p { color: black; font-size: 16px; font-weight: 500; } -/* line 6281, ../../../scss/_clix2017.scss */ +/* line 6297, ../../../scss/_clix2017.scss */ .tool-bg { background-color: rgba(87, 198, 250, 0.07); } -/* line 6284, ../../../scss/_clix2017.scss */ +/* line 6300, ../../../scss/_clix2017.scss */ .purple-btn { width: inherit; text-transform: uppercase; @@ -6111,7 +6128,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border: 2px solid #6a0054; } -/* line 6294, ../../../scss/_clix2017.scss */ +/* line 6310, ../../../scss/_clix2017.scss */ .disable-purple-btn { width: inherit; text-transform: uppercase !important; @@ -6122,23 +6139,23 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border: 2px solid #4b4852; } -/* line 6304, ../../../scss/_clix2017.scss */ +/* line 6320, ../../../scss/_clix2017.scss */ .user-analytics-data { margin: 42px 37px 37px 37px; border: 2px solid #aaaaaa; } -/* line 6307, ../../../scss/_clix2017.scss */ +/* line 6323, ../../../scss/_clix2017.scss */ .user-analytics-data .close-reveal-modal { font-size: 20px; } -/* line 6311, ../../../scss/_clix2017.scss */ +/* line 6327, ../../../scss/_clix2017.scss */ .left-space { margin-left: 0.5em; } /* User Dashboard Implementation */ -/* line 6319, ../../../scss/_clix2017.scss */ +/* line 6335, ../../../scss/_clix2017.scss */ .left_column { float: left; width: 625px; @@ -6148,7 +6165,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { color: #444; } -/* line 6328, ../../../scss/_clix2017.scss */ +/* line 6344, ../../../scss/_clix2017.scss */ .dashboard { background: #fafafa; border: none; @@ -6159,7 +6176,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { box-shadow: none; } -/* line 6338, ../../../scss/_clix2017.scss */ +/* line 6354, ../../../scss/_clix2017.scss */ .account_heading { border-bottom: 2px solid #E5E5E5; color: #444; @@ -6170,13 +6187,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { padding-bottom: 28px; } -/* line 6348, ../../../scss/_clix2017.scss */ +/* line 6364, ../../../scss/_clix2017.scss */ .account_group { display: table; padding: 20px 0; width: 100%; } -/* line 6353, ../../../scss/_clix2017.scss */ +/* line 6369, ../../../scss/_clix2017.scss */ .account_group .group_label { font-weight: bold; display: table-cell; @@ -6184,36 +6201,36 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { vertical-align: top; width: 145px; } -/* line 6359, ../../../scss/_clix2017.scss */ +/* line 6375, ../../../scss/_clix2017.scss */ .account_group .group_label > h3 { font-weight: bold; margin: 0; } -/* line 6362, ../../../scss/_clix2017.scss */ +/* line 6378, ../../../scss/_clix2017.scss */ .account_group .group_label > h3 .account_subheading { font-size: 14px; line-height: 1.2; } -/* line 6368, ../../../scss/_clix2017.scss */ +/* line 6384, ../../../scss/_clix2017.scss */ .account_group .group_content { display: table-cell; padding: 0 10px; vertical-align: top; } -/* line 6374, ../../../scss/_clix2017.scss */ +/* line 6390, ../../../scss/_clix2017.scss */ .account_group .account { margin: 0 0 10px; display: block; position: relative; } -/* line 6380, ../../../scss/_clix2017.scss */ +/* line 6396, ../../../scss/_clix2017.scss */ .account_group .account .accordion_trigger_wrapper .accordion_label { color: #444; float: left; font-size: 14px; margin: 0; } -/* line 6386, ../../../scss/_clix2017.scss */ +/* line 6402, ../../../scss/_clix2017.scss */ .account_group .account .accordion_trigger_wrapper .pencil_edit_button { position: absolute; top: 50%; @@ -6234,7 +6251,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { text-align: center; cursor: pointer; } -/* line 6408, ../../../scss/_clix2017.scss */ +/* line 6424, ../../../scss/_clix2017.scss */ .account_group .account .accordion_trigger_wrapper .accordion_content .input-setting input.text_field[type="text"] { background: transparent; border: 1px solid #D9D9D9; @@ -6247,23 +6264,23 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { width: 330px; border-radius: 2px; } -/* line 6422, ../../../scss/_clix2017.scss */ +/* line 6438, ../../../scss/_clix2017.scss */ .account_group .account .accordion_trigger_wrapper .accordion_content .password-wrapper input.password_placeholder[type="text"] { color: rgba(68, 68, 68, 0.45) !important; } -/* line 6425, ../../../scss/_clix2017.scss */ +/* line 6441, ../../../scss/_clix2017.scss */ .account_group .account .accordion_trigger_wrapper .accordion_content .password-wrapper input.password_field[type="password"] { position: relative; z-index: 2; } /* ---------------------- */ -/* line 6442, ../../../scss/_clix2017.scss */ +/* line 6458, ../../../scss/_clix2017.scss */ #progressive-validation { width: 400px; margin: 100px auto 0 auto; } -/* line 6445, ../../../scss/_clix2017.scss */ +/* line 6461, ../../../scss/_clix2017.scss */ #progressive-validation input { display: block; border-radius: 5px; @@ -6283,29 +6300,29 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background-position: right 23px; background-repeat: no-repeat; } -/* line 6463, ../../../scss/_clix2017.scss */ +/* line 6479, ../../../scss/_clix2017.scss */ #progressive-validation input[type="submit"], #progressive-validation input[type="submit"]:valid { background-color: #1a3e4c; color: white; background-image: none; } -/* line 6468, ../../../scss/_clix2017.scss */ +/* line 6484, ../../../scss/_clix2017.scss */ #progressive-validation input:focus { box-shadow: 0 0 0 1px #00aeef; opacity: 1 !important; } -/* line 6472, ../../../scss/_clix2017.scss */ +/* line 6488, ../../../scss/_clix2017.scss */ #progressive-validation input:enabled { opacity: .8; } -/* line 6475, ../../../scss/_clix2017.scss */ +/* line 6491, ../../../scss/_clix2017.scss */ #progressive-validation input:valid { background-size: 46px 46px; background-position: right 0px; background-repeat: no-repeat; } -/* line 6485, ../../../scss/_clix2017.scss */ +/* line 6501, ../../../scss/_clix2017.scss */ #analyticsFooter { background-color: #e9eaed; text-align: center; @@ -6316,25 +6333,25 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { min-width: 400px; } -/* line 6496, ../../../scss/_clix2017.scss */ +/* line 6512, ../../../scss/_clix2017.scss */ .img-circle { border-radius: 50%; border: 1px solid rgba(128, 128, 128, 0.15); } -/* line 6502, ../../../scss/_clix2017.scss */ +/* line 6518, ../../../scss/_clix2017.scss */ .container-px { background-color: #fafafa; min-width: 600px; min-height: 600px; } -/* line 6508, ../../../scss/_clix2017.scss */ +/* line 6524, ../../../scss/_clix2017.scss */ .noti { max-width: 400px !important; } -/* line 6511, ../../../scss/_clix2017.scss */ +/* line 6527, ../../../scss/_clix2017.scss */ .notification_body { max-width: 1546px !important; margin: 0 auto !important; @@ -6353,7 +6370,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { box-shadow: 0px 2px 6px #000; } -/* line 6529, ../../../scss/_clix2017.scss */ +/* line 6545, ../../../scss/_clix2017.scss */ .notifications_content { display: -moz-box !important; display: -ms-flexbox !important; @@ -6373,17 +6390,17 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -ms-flex-pack: justify !important; -webkit-box-pack: justify !important; } -/* line 6547, ../../../scss/_clix2017.scss */ +/* line 6563, ../../../scss/_clix2017.scss */ .notifications_content:hover { background: #F0F1F2 !important; } -/* line 6550, ../../../scss/_clix2017.scss */ +/* line 6566, ../../../scss/_clix2017.scss */ .notifications_content .content-body { border-bottom: 1px solid #D6D8DA !important; } /* tasks new UI */ -/* line 6561, ../../../scss/_clix2017.scss */ +/* line 6577, ../../../scss/_clix2017.scss */ .task_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -6391,29 +6408,29 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { padding: 0px 0px; max-width: 100vw; } -/* line 6568, ../../../scss/_clix2017.scss */ +/* line 6584, ../../../scss/_clix2017.scss */ .task_sheet > .columns { padding: 0px; height: 100%; } -/* line 6572, ../../../scss/_clix2017.scss */ +/* line 6588, ../../../scss/_clix2017.scss */ .task_sheet .task_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6578, ../../../scss/_clix2017.scss */ +/* line 6594, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .accordion .accordion-navigation > .content, .task_sheet .task_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6584, ../../../scss/_clix2017.scss */ +/* line 6600, ../../../scss/_clix2017.scss */ .task_sheet .task_editor > div { display: inline-block; vertical-align: top; } -/* line 6589, ../../../scss/_clix2017.scss */ +/* line 6605, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -6423,25 +6440,25 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { overflow-y: auto; height: 100vh; } -/* line 6598, ../../../scss/_clix2017.scss */ +/* line 6614, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task_tree .task-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6602, ../../../scss/_clix2017.scss */ +/* line 6618, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6607, ../../../scss/_clix2017.scss */ +/* line 6623, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6616, ../../../scss/_clix2017.scss */ +/* line 6632, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -6450,7 +6467,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6623, ../../../scss/_clix2017.scss */ +/* line 6639, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -6459,15 +6476,15 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { position: relative; display: none; } -/* line 6632, ../../../scss/_clix2017.scss */ +/* line 6648, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6637, ../../../scss/_clix2017.scss */ +/* line 6653, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6640, ../../../scss/_clix2017.scss */ +/* line 6656, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -6475,21 +6492,21 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin: 0px 10px; cursor: pointer; } -/* line 6650, ../../../scss/_clix2017.scss */ +/* line 6666, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6656, ../../../scss/_clix2017.scss */ +/* line 6672, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6664, ../../../scss/_clix2017.scss */ +/* line 6680, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6666, ../../../scss/_clix2017.scss */ +/* line 6682, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -6498,7 +6515,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6673, ../../../scss/_clix2017.scss */ +/* line 6689, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -6506,11 +6523,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6682, ../../../scss/_clix2017.scss */ +/* line 6698, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6691, ../../../scss/_clix2017.scss */ +/* line 6707, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task-editor-section { width: 0%; display: inline-block; @@ -6522,48 +6539,48 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { overflow-y: auto; background: #fff; } -/* line 6701, ../../../scss/_clix2017.scss */ +/* line 6717, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6706, ../../../scss/_clix2017.scss */ +/* line 6722, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6709, ../../../scss/_clix2017.scss */ +/* line 6725, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6718, ../../../scss/_clix2017.scss */ +/* line 6734, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6723, ../../../scss/_clix2017.scss */ +/* line 6739, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6727, ../../../scss/_clix2017.scss */ +/* line 6743, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6729, ../../../scss/_clix2017.scss */ +/* line 6745, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6732, ../../../scss/_clix2017.scss */ +/* line 6748, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6738, ../../../scss/_clix2017.scss */ +/* line 6754, ../../../scss/_clix2017.scss */ .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -6572,7 +6589,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { cursor: pointer; } -/* line 6754, ../../../scss/_clix2017.scss */ +/* line 6770, ../../../scss/_clix2017.scss */ .task_editor_section { background: white; min-height: 100vh; @@ -6582,41 +6599,41 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { width: 79%; box-shadow: 0px 0px 5px #73859f; } -/* line 6762, ../../../scss/_clix2017.scss */ +/* line 6778, ../../../scss/_clix2017.scss */ .task_editor_section #scstyle { margin-top: -10px; } -/* line 6765, ../../../scss/_clix2017.scss */ +/* line 6781, ../../../scss/_clix2017.scss */ .task_editor_section .task_editor_top { border-top: 4px solid #74b3dc; width: 101.3%; margin-left: -15px; margin-top: -1px; } -/* line 6772, ../../../scss/_clix2017.scss */ +/* line 6788, ../../../scss/_clix2017.scss */ .task_editor_section .task_head { height: 65px; font-size: 22px; padding: 16px 5px 5px 57px; color: black; } -/* line 6781, ../../../scss/_clix2017.scss */ +/* line 6797, ../../../scss/_clix2017.scss */ .task_editor_section form { font-size: 17px; padding: 10px 0px 0px 10px; } -/* line 6786, ../../../scss/_clix2017.scss */ +/* line 6802, ../../../scss/_clix2017.scss */ .task_editor_section .task_ex { border-bottom: 2px solid rgba(128, 128, 128, 0.23); } -/* line 6788, ../../../scss/_clix2017.scss */ +/* line 6804, ../../../scss/_clix2017.scss */ .task_editor_section .task_ex.active { border: 2px solid #74b3dc; margin-left: -16px; width: 101.5%; margin-top: -2px; } -/* line 6797, ../../../scss/_clix2017.scss */ +/* line 6813, ../../../scss/_clix2017.scss */ .task_editor_section .task_listing { max-width: 1176px !important; margin: 0 auto !important; @@ -6634,7 +6651,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background: #fff; box-shadow: 0px 2px 6px #000; } -/* line 6814, ../../../scss/_clix2017.scss */ +/* line 6830, ../../../scss/_clix2017.scss */ .task_editor_section .task_listing .task_content { display: -moz-box !important; display: -ms-flexbox !important; @@ -6655,11 +6672,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -ms-flex-pack: justify !important; -webkit-box-pack: justify !important; } -/* line 6833, ../../../scss/_clix2017.scss */ +/* line 6849, ../../../scss/_clix2017.scss */ .task_editor_section .task_listing .task_content:hover { background: #F0F1F2 !important; } -/* line 6836, ../../../scss/_clix2017.scss */ +/* line 6852, ../../../scss/_clix2017.scss */ .task_editor_section .task_listing .task_content .task_content_left { display: -moz-box !important; display: -ms-flexbox !important; @@ -6672,7 +6689,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -ms-flex-align: center !important; -webkit-box-align: center !important; } -/* line 6847, ../../../scss/_clix2017.scss */ +/* line 6863, ../../../scss/_clix2017.scss */ .task_editor_section .task_listing .task_content .task_content_left .task_content_details { display: -moz-box !important; display: -ms-flexbox !important; @@ -6691,13 +6708,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; } -/* line 6864, ../../../scss/_clix2017.scss */ +/* line 6880, ../../../scss/_clix2017.scss */ .task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-user { border: 2px solid #b9b9b9; height: 50px; width: 50px; } -/* line 6869, ../../../scss/_clix2017.scss */ +/* line 6885, ../../../scss/_clix2017.scss */ .task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-style { text-decoration: none !important; font-family: inherit !important; @@ -6710,7 +6727,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { overflow: hidden !important; text-overflow: ellipsis !important; } -/* line 6882, ../../../scss/_clix2017.scss */ +/* line 6898, ../../../scss/_clix2017.scss */ .task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-info { text-decoration: none !important; font-family: inherit !important; @@ -6720,14 +6737,14 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 4px !important; } -/* line 6898, ../../../scss/_clix2017.scss */ +/* line 6914, ../../../scss/_clix2017.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6904, ../../../scss/_clix2017.scss */ +/* line 6920, ../../../scss/_clix2017.scss */ .activity-title { font-size: 18px; padding-top: 10px; @@ -6735,7 +6752,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin: 0px; border: 2px solid rgba(128, 128, 128, 0.15); } -/* line 6911, ../../../scss/_clix2017.scss */ +/* line 6927, ../../../scss/_clix2017.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -6747,30 +6764,30 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { height: 150px; background-color: white; } -/* line 6922, ../../../scss/_clix2017.scss */ +/* line 6938, ../../../scss/_clix2017.scss */ .activity-title > li.active { background: rgba(0, 140, 186, 0.42); height: 150px; margin-top: -10px; } -/* line 6928, ../../../scss/_clix2017.scss */ +/* line 6944, ../../../scss/_clix2017.scss */ .activity-title > li > a { color: black; } -/* line 6937, ../../../scss/_clix2017.scss */ +/* line 6953, ../../../scss/_clix2017.scss */ .task_page_rendered { margin-left: 20px; max-width: 900px; } -/* line 6945, ../../../scss/_clix2017.scss */ +/* line 6961, ../../../scss/_clix2017.scss */ .round { border-radius: 1px; background-color: orange; } -/* line 6951, ../../../scss/_clix2017.scss */ +/* line 6967, ../../../scss/_clix2017.scss */ .circle-normal { background: #ffc14e; -moz-border-radius: 50px; @@ -6780,7 +6797,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-right: 5px; } -/* line 6959, ../../../scss/_clix2017.scss */ +/* line 6975, ../../../scss/_clix2017.scss */ .circle-high { background: #f04124; -moz-border-radius: 50px; @@ -6790,7 +6807,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-right: 5px; } -/* line 6967, ../../../scss/_clix2017.scss */ +/* line 6983, ../../../scss/_clix2017.scss */ .circle-low { background: #008cba; -moz-border-radius: 50px; @@ -6800,7 +6817,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-right: 5px; } -/* line 6976, ../../../scss/_clix2017.scss */ +/* line 6992, ../../../scss/_clix2017.scss */ .status-indication { border-radius: 124px; padding: 0px 8px 3px 8px; @@ -6812,22 +6829,22 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { color: grey; } -/* line 6986, ../../../scss/_clix2017.scss */ +/* line 7002, ../../../scss/_clix2017.scss */ .priority-margin { margin-left: -30px; } -/* line 6990, ../../../scss/_clix2017.scss */ +/* line 7006, ../../../scss/_clix2017.scss */ .iconclr { color: #999999; } -/* line 6996, ../../../scss/_clix2017.scss */ +/* line 7012, ../../../scss/_clix2017.scss */ .top-right-menu { margin-right: 80px !important; } -/* line 7003, ../../../scss/_clix2017.scss */ +/* line 7019, ../../../scss/_clix2017.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -6845,12 +6862,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { transition: all .1s ease; margin-right: 1px; } -/* line 7019, ../../../scss/_clix2017.scss */ +/* line 7035, ../../../scss/_clix2017.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7024, ../../../scss/_clix2017.scss */ +/* line 7040, ../../../scss/_clix2017.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -6862,13 +6879,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { transition: all .1s ease; margin-right: 1px; } -/* line 7034, ../../../scss/_clix2017.scss */ +/* line 7050, ../../../scss/_clix2017.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7042, ../../../scss/_clix2017.scss */ +/* line 7058, ../../../scss/_clix2017.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -6885,7 +6902,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { color: #fff; transition: all .1s ease; } -/* line 7057, ../../../scss/_clix2017.scss */ +/* line 7073, ../../../scss/_clix2017.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css index 029c638bdc..b070bc9a9f 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css @@ -28555,48 +28555,65 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5329, ../../../scss/_app_styles.scss */ +/* line 5330, ../../../scss/_app_styles.scss */ +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #000000b8; + letter-spacing: 0.4px; +} + +/* line 5347, ../../../scss/_app_styles.scss */ .icon-widget { font-size: 24px; } /* module detail css */ -/* line 5338, ../../../scss/_app_styles.scss */ +/* line 5356, ../../../scss/_app_styles.scss */ .thumbnail_style { margin-top: -30px; margin-left: -30px; } -/* line 5343, ../../../scss/_app_styles.scss */ +/* line 5361, ../../../scss/_app_styles.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 5349, ../../../scss/_app_styles.scss */ +/* line 5367, ../../../scss/_app_styles.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); margin-top: -29px; padding-left: 10px; } -/* line 5353, ../../../scss/_app_styles.scss */ +/* line 5371, ../../../scss/_app_styles.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 5363, ../../../scss/_app_styles.scss */ +/* line 5381, ../../../scss/_app_styles.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 5368, ../../../scss/_app_styles.scss */ +/* line 5386, ../../../scss/_app_styles.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 5371, ../../../scss/_app_styles.scss */ +/* line 5389, ../../../scss/_app_styles.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28610,7 +28627,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 5388, ../../../scss/_app_styles.scss */ +/* line 5406, ../../../scss/_app_styles.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -28624,7 +28641,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* Creating and editing course Structure */ -/* line 5405, ../../../scss/_app_styles.scss */ +/* line 5423, ../../../scss/_app_styles.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -28635,34 +28652,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 5414, ../../../scss/_app_styles.scss */ +/* line 5432, ../../../scss/_app_styles.scss */ .group_tile:hover { opacity: 0.7; } -/* line 5417, ../../../scss/_app_styles.scss */ +/* line 5435, ../../../scss/_app_styles.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 5424, ../../../scss/_app_styles.scss */ +/* line 5442, ../../../scss/_app_styles.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 5431, ../../../scss/_app_styles.scss */ +/* line 5449, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 5434, ../../../scss/_app_styles.scss */ +/* line 5452, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 5437, ../../../scss/_app_styles.scss */ +/* line 5455, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -28670,15 +28687,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 5445, ../../../scss/_app_styles.scss */ +/* line 5463, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 5449, ../../../scss/_app_styles.scss */ +/* line 5467, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 5451, ../../../scss/_app_styles.scss */ +/* line 5469, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -28689,27 +28706,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 5461, ../../../scss/_app_styles.scss */ +/* line 5479, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 5466, ../../../scss/_app_styles.scss */ +/* line 5484, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 5472, ../../../scss/_app_styles.scss */ +/* line 5490, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 5479, ../../../scss/_app_styles.scss */ +/* line 5497, ../../../scss/_app_styles.scss */ .max-width { max-width: 100%; } -/* line 5485, ../../../scss/_app_styles.scss */ +/* line 5503, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28719,7 +28736,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 5494, ../../../scss/_app_styles.scss */ +/* line 5512, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -28736,7 +28753,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 5507, ../../../scss/_app_styles.scss */ +/* line 5525, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -28746,28 +28763,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 5516, ../../../scss/_app_styles.scss */ +/* line 5534, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 5521, ../../../scss/_app_styles.scss */ +/* line 5539, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background-color: #ffffff; } -/* line 5526, ../../../scss/_app_styles.scss */ +/* line 5544, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 5532, ../../../scss/_app_styles.scss */ +/* line 5550, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 5536, ../../../scss/_app_styles.scss */ +/* line 5554, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -28780,7 +28797,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 5549, ../../../scss/_app_styles.scss */ +/* line 5567, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -28795,7 +28812,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Unit_Structure styles */ -/* line 5567, ../../../scss/_app_styles.scss */ +/* line 5585, ../../../scss/_app_styles.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -28803,12 +28820,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 5575, ../../../scss/_app_styles.scss */ +/* line 5593, ../../../scss/_app_styles.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 5579, ../../../scss/_app_styles.scss */ +/* line 5597, ../../../scss/_app_styles.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -28816,17 +28833,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 5585, ../../../scss/_app_styles.scss */ +/* line 5603, ../../../scss/_app_styles.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 5591, ../../../scss/_app_styles.scss */ +/* line 5609, ../../../scss/_app_styles.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 5596, ../../../scss/_app_styles.scss */ +/* line 5614, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28836,25 +28853,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 5605, ../../../scss/_app_styles.scss */ +/* line 5623, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5609, ../../../scss/_app_styles.scss */ +/* line 5627, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 5614, ../../../scss/_app_styles.scss */ +/* line 5632, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 5623, ../../../scss/_app_styles.scss */ +/* line 5641, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -28863,7 +28880,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5630, ../../../scss/_app_styles.scss */ +/* line 5648, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -28872,15 +28889,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 5639, ../../../scss/_app_styles.scss */ +/* line 5657, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 5644, ../../../scss/_app_styles.scss */ +/* line 5662, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 5647, ../../../scss/_app_styles.scss */ +/* line 5665, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -28888,21 +28905,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 5657, ../../../scss/_app_styles.scss */ +/* line 5675, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 5663, ../../../scss/_app_styles.scss */ +/* line 5681, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 5671, ../../../scss/_app_styles.scss */ +/* line 5689, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 5673, ../../../scss/_app_styles.scss */ +/* line 5691, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -28911,7 +28928,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5680, ../../../scss/_app_styles.scss */ +/* line 5698, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -28919,11 +28936,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5689, ../../../scss/_app_styles.scss */ +/* line 5707, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 5698, ../../../scss/_app_styles.scss */ +/* line 5716, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -28935,49 +28952,49 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 5708, ../../../scss/_app_styles.scss */ +/* line 5726, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 5714, ../../../scss/_app_styles.scss */ +/* line 5732, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 5717, ../../../scss/_app_styles.scss */ +/* line 5735, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 5726, ../../../scss/_app_styles.scss */ +/* line 5744, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 5731, ../../../scss/_app_styles.scss */ +/* line 5749, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 5735, ../../../scss/_app_styles.scss */ +/* line 5753, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 5737, ../../../scss/_app_styles.scss */ +/* line 5755, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 5740, ../../../scss/_app_styles.scss */ +/* line 5758, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 5746, ../../../scss/_app_styles.scss */ +/* line 5764, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -28985,29 +29002,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 15px 5px; cursor: pointer; } -/* line 5761, ../../../scss/_app_styles.scss */ +/* line 5779, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 5769, ../../../scss/_app_styles.scss */ +/* line 5787, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 5775, ../../../scss/_app_styles.scss */ +/* line 5793, ../../../scss/_app_styles.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 5784, ../../../scss/_app_styles.scss */ +/* line 5802, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 5789, ../../../scss/_app_styles.scss */ +/* line 5807, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29015,28 +29032,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 5796, ../../../scss/_app_styles.scss */ +/* line 5814, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5801, ../../../scss/_app_styles.scss */ +/* line 5819, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5806, ../../../scss/_app_styles.scss */ +/* line 5824, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 5808, ../../../scss/_app_styles.scss */ +/* line 5826, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 5812, ../../../scss/_app_styles.scss */ +/* line 5830, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -29048,21 +29065,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; border-radius: 3px; } -/* line 5823, ../../../scss/_app_styles.scss */ +/* line 5841, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 5828, ../../../scss/_app_styles.scss */ +/* line 5846, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 5834, ../../../scss/_app_styles.scss */ +/* line 5852, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 5840, ../../../scss/_app_styles.scss */ +/* line 5858, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -29070,19 +29087,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 5847, ../../../scss/_app_styles.scss */ +/* line 5865, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 5854, ../../../scss/_app_styles.scss */ +/* line 5872, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5865, ../../../scss/_app_styles.scss */ +/* line 5883, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -29093,7 +29110,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 5882, ../../../scss/_app_styles.scss */ +/* line 5900, ../../../scss/_app_styles.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -29108,66 +29125,66 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* lesspn listing LMS */ -/* line 5898, ../../../scss/_app_styles.scss */ +/* line 5916, ../../../scss/_app_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 5906, ../../../scss/_app_styles.scss */ +/* line 5924, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 5909, ../../../scss/_app_styles.scss */ +/* line 5927, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 5911, ../../../scss/_app_styles.scss */ +/* line 5929, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 5918, ../../../scss/_app_styles.scss */ +/* line 5936, ../../../scss/_app_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 5920, ../../../scss/_app_styles.scss */ +/* line 5938, ../../../scss/_app_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 5925, ../../../scss/_app_styles.scss */ +/* line 5943, ../../../scss/_app_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 5933, ../../../scss/_app_styles.scss */ +/* line 5951, ../../../scss/_app_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5939, ../../../scss/_app_styles.scss */ +/* line 5957, ../../../scss/_app_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5946, ../../../scss/_app_styles.scss */ +/* line 5964, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 5949, ../../../scss/_app_styles.scss */ +/* line 5967, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 5952, ../../../scss/_app_styles.scss */ +/* line 5970, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 5955, ../../../scss/_app_styles.scss */ +/* line 5973, ../../../scss/_app_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; @@ -29177,23 +29194,23 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Styling for the Secondary header 2 */ -/* line 5974, ../../../scss/_app_styles.scss */ +/* line 5992, ../../../scss/_app_styles.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 5977, ../../../scss/_app_styles.scss */ +/* line 5995, ../../../scss/_app_styles.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 5985, ../../../scss/_app_styles.scss */ +/* line 6003, ../../../scss/_app_styles.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 5994, ../../../scss/_app_styles.scss */ +/* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { position: relative; color: #fff; @@ -29204,56 +29221,56 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: -2px; border-right: 1px solid white; } -/* line 6003, ../../../scss/_app_styles.scss */ +/* line 6021, ../../../scss/_app_styles.scss */ .activity_player_header .header_title a { color: #ffc14f; } @media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 5994, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 938px); } } @media only screen and (min-device-width: 2131px) { - /* line 5994, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 970px); } } @media only screen and (max-device-width: 1024px) { - /* line 5994, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 753px); } } -/* line 6080, ../../../scss/_app_styles.scss */ +/* line 6098, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon { font-size: 16px; line-height: 45px; color: #ffc14f; } -/* line 6086, ../../../scss/_app_styles.scss */ +/* line 6104, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 6092, ../../../scss/_app_styles.scss */ +/* line 6110, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 10px; } @media screen and (min-width: 1025px) { - /* line 6092, ../../../scss/_app_styles.scss */ + /* line 6110, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 15px; } } @media screen and (min-width: 1025px) { - /* line 6099, ../../../scss/_app_styles.scss */ + /* line 6117, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { float: right; margin-right: 70px; @@ -29261,73 +29278,73 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media screen and (max-width: 1024px) { - /* line 6099, ../../../scss/_app_styles.scss */ + /* line 6117, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { background-color: rgba(107, 0, 84, 0.97); } } -/* line 6112, ../../../scss/_app_styles.scss */ +/* line 6130, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6118, ../../../scss/_app_styles.scss */ +/* line 6136, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block { padding: 0px 15px; margin-left: -2px; border-right: 1px solid white; } -/* line 6122, ../../../scss/_app_styles.scss */ +/* line 6140, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block a { color: #ffc14f; } -/* line 6128, ../../../scss/_app_styles.scss */ +/* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 9px; } @media screen and (min-width: 1025px) { - /* line 6128, ../../../scss/_app_styles.scss */ + /* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 15px; } } -/* line 6136, ../../../scss/_app_styles.scss */ +/* line 6154, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 7px; } @media screen and (min-width: 1025px) { - /* line 6136, ../../../scss/_app_styles.scss */ + /* line 6154, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 15px; } } -/* line 6145, ../../../scss/_app_styles.scss */ +/* line 6163, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 6148, ../../../scss/_app_styles.scss */ +/* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button i { color: #71318b; } -/* line 6154, ../../../scss/_app_styles.scss */ +/* line 6172, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 6158, ../../../scss/_app_styles.scss */ +/* line 6176, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 6164, ../../../scss/_app_styles.scss */ +/* line 6182, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .pagination:not(i) { color: #a983b9; } -/* line 6172, ../../../scss/_app_styles.scss */ +/* line 6190, ../../../scss/_app_styles.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -29335,29 +29352,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 6179, ../../../scss/_app_styles.scss */ +/* line 6197, ../../../scss/_app_styles.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 6183, ../../../scss/_app_styles.scss */ +/* line 6201, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6189, ../../../scss/_app_styles.scss */ +/* line 6207, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6195, ../../../scss/_app_styles.scss */ +/* line 6213, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 6200, ../../../scss/_app_styles.scss */ +/* line 6218, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29367,25 +29384,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 6209, ../../../scss/_app_styles.scss */ +/* line 6227, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6213, ../../../scss/_app_styles.scss */ +/* line 6231, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6218, ../../../scss/_app_styles.scss */ +/* line 6236, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6227, ../../../scss/_app_styles.scss */ +/* line 6245, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29394,7 +29411,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6234, ../../../scss/_app_styles.scss */ +/* line 6252, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29403,15 +29420,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 6243, ../../../scss/_app_styles.scss */ +/* line 6261, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6248, ../../../scss/_app_styles.scss */ +/* line 6266, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6251, ../../../scss/_app_styles.scss */ +/* line 6269, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29419,21 +29436,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 6261, ../../../scss/_app_styles.scss */ +/* line 6279, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6267, ../../../scss/_app_styles.scss */ +/* line 6285, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6275, ../../../scss/_app_styles.scss */ +/* line 6293, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6277, ../../../scss/_app_styles.scss */ +/* line 6295, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29442,7 +29459,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6284, ../../../scss/_app_styles.scss */ +/* line 6302, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29450,11 +29467,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6293, ../../../scss/_app_styles.scss */ +/* line 6311, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6302, ../../../scss/_app_styles.scss */ +/* line 6320, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29466,48 +29483,48 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 6312, ../../../scss/_app_styles.scss */ +/* line 6330, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6317, ../../../scss/_app_styles.scss */ +/* line 6335, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6320, ../../../scss/_app_styles.scss */ +/* line 6338, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6329, ../../../scss/_app_styles.scss */ +/* line 6347, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6334, ../../../scss/_app_styles.scss */ +/* line 6352, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6338, ../../../scss/_app_styles.scss */ +/* line 6356, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6340, ../../../scss/_app_styles.scss */ +/* line 6358, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6343, ../../../scss/_app_styles.scss */ +/* line 6361, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6349, ../../../scss/_app_styles.scss */ +/* line 6367, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29516,7 +29533,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; } -/* line 6367, ../../../scss/_app_styles.scss */ +/* line 6385, ../../../scss/_app_styles.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -29524,26 +29541,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 10px; padding-right: 4px; } -/* line 6373, ../../../scss/_app_styles.scss */ +/* line 6391, ../../../scss/_app_styles.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 6378, ../../../scss/_app_styles.scss */ +/* line 6396, ../../../scss/_app_styles.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6384, ../../../scss/_app_styles.scss */ +/* line 6402, ../../../scss/_app_styles.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 6390, ../../../scss/_app_styles.scss */ +/* line 6408, ../../../scss/_app_styles.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29553,29 +29570,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 6399, ../../../scss/_app_styles.scss */ +/* line 6417, ../../../scss/_app_styles.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 6403, ../../../scss/_app_styles.scss */ +/* line 6421, ../../../scss/_app_styles.scss */ .activity-title > li > a { color: black; } -/* line 6412, ../../../scss/_app_styles.scss */ +/* line 6430, ../../../scss/_app_styles.scss */ .activity_page_rendered { margin-left: 20px; max-width: 900px; } /* Rating css */ -/* line 6420, ../../../scss/_app_styles.scss */ +/* line 6438, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 6422, ../../../scss/_app_styles.scss */ +/* line 6440, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -29583,19 +29600,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { unicode-bidi: bidi-override; direction: rtl; } -/* line 6430, ../../../scss/_app_styles.scss */ +/* line 6448, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 6432, ../../../scss/_app_styles.scss */ +/* line 6450, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 6438, ../../../scss/_app_styles.scss */ +/* line 6456, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 6440, ../../../scss/_app_styles.scss */ +/* line 6458, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -29608,7 +29625,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0; vertical-align: bottom; } -/* line 6452, ../../../scss/_app_styles.scss */ +/* line 6470, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -29616,32 +29633,32 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* WHITE STAR */ color: #888; } -/* line 6459, ../../../scss/_app_styles.scss */ +/* line 6477, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 6470, ../../../scss/_app_styles.scss */ +/* line 6488, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 6477, ../../../scss/_app_styles.scss */ +/* line 6495, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 6485, ../../../scss/_app_styles.scss */ +/* line 6503, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 6490, ../../../scss/_app_styles.scss */ +/* line 6508, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -29650,29 +29667,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-shadow: 0 0 1px #333; } -/* line 6500, ../../../scss/_app_styles.scss */ +/* line 6518, ../../../scss/_app_styles.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 6504, ../../../scss/_app_styles.scss */ +/* line 6522, ../../../scss/_app_styles.scss */ .input_links { margin-left: 10px; } -/* line 6506, ../../../scss/_app_styles.scss */ +/* line 6524, ../../../scss/_app_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 6512, ../../../scss/_app_styles.scss */ +/* line 6530, ../../../scss/_app_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 6520, ../../../scss/_app_styles.scss */ +/* line 6538, ../../../scss/_app_styles.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -29681,19 +29698,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 6529, ../../../scss/_app_styles.scss */ +/* line 6547, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 6534, ../../../scss/_app_styles.scss */ +/* line 6552, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 6540, ../../../scss/_app_styles.scss */ +/* line 6558, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -29701,12 +29718,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; margin-left: 12%; } -/* line 6548, ../../../scss/_app_styles.scss */ +/* line 6566, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 6554, ../../../scss/_app_styles.scss */ +/* line 6572, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -29715,21 +29732,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: none; color: #8E8E8E; } -/* line 6563, ../../../scss/_app_styles.scss */ +/* line 6581, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 6568, ../../../scss/_app_styles.scss */ +/* line 6586, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 6570, ../../../scss/_app_styles.scss */ +/* line 6588, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 6573, ../../../scss/_app_styles.scss */ +/* line 6591, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -29740,24 +29757,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #757575; margin-right: 20px; } -/* line 6583, ../../../scss/_app_styles.scss */ +/* line 6601, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 6587, ../../../scss/_app_styles.scss */ +/* line 6605, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 6590, ../../../scss/_app_styles.scss */ +/* line 6608, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 6595, ../../../scss/_app_styles.scss */ +/* line 6613, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 6599, ../../../scss/_app_styles.scss */ +/* line 6617, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -29769,7 +29786,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; color: #222222; } -/* line 6610, ../../../scss/_app_styles.scss */ +/* line 6628, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -29777,15 +29794,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 8px; top: 4px; } -/* line 6618, ../../../scss/_app_styles.scss */ +/* line 6636, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 6620, ../../../scss/_app_styles.scss */ +/* line 6638, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 6623, ../../../scss/_app_styles.scss */ +/* line 6641, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -29795,25 +29812,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { letter-spacing: 0.8px; color: #999999; } -/* line 6632, ../../../scss/_app_styles.scss */ +/* line 6650, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 6638, ../../../scss/_app_styles.scss */ +/* line 6656, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 6647, ../../../scss/_app_styles.scss */ +/* line 6665, ../../../scss/_app_styles.scss */ .icon-color { color: #2e3f51 !important; padding: right; } /* The asset tile */ -/* line 6657, ../../../scss/_app_styles.scss */ +/* line 6675, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29823,7 +29840,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 6666, ../../../scss/_app_styles.scss */ +/* line 6684, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -29840,7 +29857,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 6679, ../../../scss/_app_styles.scss */ +/* line 6697, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -29850,28 +29867,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 6688, ../../../scss/_app_styles.scss */ +/* line 6706, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 6693, ../../../scss/_app_styles.scss */ +/* line 6711, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 6698, ../../../scss/_app_styles.scss */ +/* line 6716, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 6704, ../../../scss/_app_styles.scss */ +/* line 6722, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 6708, ../../../scss/_app_styles.scss */ +/* line 6726, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -29884,7 +29901,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 6721, ../../../scss/_app_styles.scss */ +/* line 6739, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -29898,7 +29915,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 6736, ../../../scss/_app_styles.scss */ +/* line 6754, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -29907,22 +29924,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6745, ../../../scss/_app_styles.scss */ +/* line 6763, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6752, ../../../scss/_app_styles.scss */ +/* line 6770, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6758, ../../../scss/_app_styles.scss */ +/* line 6776, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6760, ../../../scss/_app_styles.scss */ +/* line 6778, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -29931,15 +29948,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6767, ../../../scss/_app_styles.scss */ +/* line 6785, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6771, ../../../scss/_app_styles.scss */ +/* line 6789, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6777, ../../../scss/_app_styles.scss */ +/* line 6795, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -29948,7 +29965,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6788, ../../../scss/_app_styles.scss */ +/* line 6806, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -29957,24 +29974,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6797, ../../../scss/_app_styles.scss */ +/* line 6815, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6804, ../../../scss/_app_styles.scss */ +/* line 6822, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 6809, ../../../scss/_app_styles.scss */ +/* line 6827, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 6813, ../../../scss/_app_styles.scss */ +/* line 6831, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -29985,14 +30002,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 6823, ../../../scss/_app_styles.scss */ +/* line 6841, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 6830, ../../../scss/_app_styles.scss */ + /* line 6848, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30000,7 +30017,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6839, ../../../scss/_app_styles.scss */ + /* line 6857, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30008,7 +30025,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6846, ../../../scss/_app_styles.scss */ + /* line 6864, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30016,14 +30033,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6853, ../../../scss/_app_styles.scss */ + /* line 6871, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 6861, ../../../scss/_app_styles.scss */ +/* line 6879, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30038,14 +30055,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6877, ../../../scss/_app_styles.scss */ +/* line 6895, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 6884, ../../../scss/_app_styles.scss */ + /* line 6902, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30056,7 +30073,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6895, ../../../scss/_app_styles.scss */ + /* line 6913, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30067,7 +30084,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6906, ../../../scss/_app_styles.scss */ + /* line 6924, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30078,7 +30095,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6917, ../../../scss/_app_styles.scss */ + /* line 6935, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30088,7 +30105,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6928, ../../../scss/_app_styles.scss */ +/* line 6946, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30103,14 +30120,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6944, ../../../scss/_app_styles.scss */ +/* line 6962, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 6951, ../../../scss/_app_styles.scss */ + /* line 6969, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30121,7 +30138,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6962, ../../../scss/_app_styles.scss */ + /* line 6980, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30132,7 +30149,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6973, ../../../scss/_app_styles.scss */ + /* line 6991, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30143,7 +30160,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6984, ../../../scss/_app_styles.scss */ + /* line 7002, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30153,11 +30170,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6995, ../../../scss/_app_styles.scss */ +/* line 7013, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 6997, ../../../scss/_app_styles.scss */ +/* line 7015, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30166,11 +30183,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 7005, ../../../scss/_app_styles.scss */ +/* line 7023, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 7011, ../../../scss/_app_styles.scss */ +/* line 7029, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30179,7 +30196,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7022, ../../../scss/_app_styles.scss */ +/* line 7040, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30190,22 +30207,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7032, ../../../scss/_app_styles.scss */ +/* line 7050, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7035, ../../../scss/_app_styles.scss */ +/* line 7053, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7040, ../../../scss/_app_styles.scss */ +/* line 7058, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7051, ../../../scss/_app_styles.scss */ +/* line 7069, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30216,26 +30233,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7061, ../../../scss/_app_styles.scss */ +/* line 7079, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7064, ../../../scss/_app_styles.scss */ +/* line 7082, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7068, ../../../scss/_app_styles.scss */ +/* line 7086, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7074, ../../../scss/_app_styles.scss */ +/* line 7092, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7076, ../../../scss/_app_styles.scss */ +/* line 7094, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30244,7 +30261,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7085, ../../../scss/_app_styles.scss */ +/* line 7103, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30253,7 +30270,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7099, ../../../scss/_app_styles.scss */ +/* line 7117, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -30263,20 +30280,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Asset detail */ -/* line 7110, ../../../scss/_app_styles.scss */ +/* line 7128, ../../../scss/_app_styles.scss */ .overlay-head { background-color: #fff; height: 60px; margin-bottom: 20px; } -/* line 7116, ../../../scss/_app_styles.scss */ +/* line 7134, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7121, ../../../scss/_app_styles.scss */ +/* line 7139, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30290,13 +30307,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7133, ../../../scss/_app_styles.scss */ +/* line 7151, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7140, ../../../scss/_app_styles.scss */ +/* line 7158, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30308,7 +30325,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7151, ../../../scss/_app_styles.scss */ +/* line 7169, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30316,13 +30333,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7160, ../../../scss/_app_styles.scss */ +/* line 7178, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7168, ../../../scss/_app_styles.scss */ +/* line 7186, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30340,12 +30357,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7184, ../../../scss/_app_styles.scss */ +/* line 7202, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7189, ../../../scss/_app_styles.scss */ +/* line 7207, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30357,13 +30374,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7199, ../../../scss/_app_styles.scss */ +/* line 7217, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7207, ../../../scss/_app_styles.scss */ +/* line 7225, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30380,13 +30397,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7222, ../../../scss/_app_styles.scss */ +/* line 7240, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* line 7233, ../../../scss/_app_styles.scss */ +/* line 7251, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -30394,7 +30411,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-size: 100% 100%; position: relative; } -/* line 7240, ../../../scss/_app_styles.scss */ +/* line 7258, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -30408,13 +30425,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7254, ../../../scss/_app_styles.scss */ +/* line 7272, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 7259, ../../../scss/_app_styles.scss */ +/* line 7277, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -30423,60 +30440,60 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow: hidden; background-color: #fff; } -/* line 7267, ../../../scss/_app_styles.scss */ +/* line 7285, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 7272, ../../../scss/_app_styles.scss */ +/* line 7290, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 7277, ../../../scss/_app_styles.scss */ +/* line 7295, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 7282, ../../../scss/_app_styles.scss */ +/* line 7300, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 7290, ../../../scss/_app_styles.scss */ +/* line 7308, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 7294, ../../../scss/_app_styles.scss */ +/* line 7312, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 7304, ../../../scss/_app_styles.scss */ +/* line 7322, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -19.3px; } -/* line 7311, ../../../scss/_app_styles.scss */ +/* line 7329, ../../../scss/_app_styles.scss */ .course-students-data { margin: 2px 2px 2px 2px; border: 2px solid #164a7b; padding: 19px 14px 0px 5px; } -/* line 7318, ../../../scss/_app_styles.scss */ +/* line 7336, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 7321, ../../../scss/_app_styles.scss */ +/* line 7339, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 7329, ../../../scss/_app_styles.scss */ +/* line 7347, ../../../scss/_app_styles.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -30492,7 +30509,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7348, ../../../scss/_app_styles.scss */ +/* line 7366, ../../../scss/_app_styles.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -30502,7 +30519,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7357, ../../../scss/_app_styles.scss */ +/* line 7375, ../../../scss/_app_styles.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -30512,7 +30529,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 7366, ../../../scss/_app_styles.scss */ +/* line 7384, ../../../scss/_app_styles.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css index f91883b809..3053eda596 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css @@ -28578,48 +28578,65 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5329, ../../../scss/_app_styles.scss */ +/* line 5330, ../../../scss/_app_styles.scss */ +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #000000b8; + letter-spacing: 0.4px; +} + +/* line 5347, ../../../scss/_app_styles.scss */ .icon-widget { font-size: 24px; } /* module detail css */ -/* line 5338, ../../../scss/_app_styles.scss */ +/* line 5356, ../../../scss/_app_styles.scss */ .thumbnail_style { margin-top: -30px; margin-left: -30px; } -/* line 5343, ../../../scss/_app_styles.scss */ +/* line 5361, ../../../scss/_app_styles.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 5349, ../../../scss/_app_styles.scss */ +/* line 5367, ../../../scss/_app_styles.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); margin-top: -29px; padding-left: 10px; } -/* line 5353, ../../../scss/_app_styles.scss */ +/* line 5371, ../../../scss/_app_styles.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 5363, ../../../scss/_app_styles.scss */ +/* line 5381, ../../../scss/_app_styles.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 5368, ../../../scss/_app_styles.scss */ +/* line 5386, ../../../scss/_app_styles.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 5371, ../../../scss/_app_styles.scss */ +/* line 5389, ../../../scss/_app_styles.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28633,7 +28650,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 5388, ../../../scss/_app_styles.scss */ +/* line 5406, ../../../scss/_app_styles.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -28647,7 +28664,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* Creating and editing course Structure */ -/* line 5405, ../../../scss/_app_styles.scss */ +/* line 5423, ../../../scss/_app_styles.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -28658,34 +28675,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 5414, ../../../scss/_app_styles.scss */ +/* line 5432, ../../../scss/_app_styles.scss */ .group_tile:hover { opacity: 0.7; } -/* line 5417, ../../../scss/_app_styles.scss */ +/* line 5435, ../../../scss/_app_styles.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 5424, ../../../scss/_app_styles.scss */ +/* line 5442, ../../../scss/_app_styles.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 5431, ../../../scss/_app_styles.scss */ +/* line 5449, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 5434, ../../../scss/_app_styles.scss */ +/* line 5452, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 5437, ../../../scss/_app_styles.scss */ +/* line 5455, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -28693,15 +28710,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 5445, ../../../scss/_app_styles.scss */ +/* line 5463, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 5449, ../../../scss/_app_styles.scss */ +/* line 5467, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 5451, ../../../scss/_app_styles.scss */ +/* line 5469, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -28712,27 +28729,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 5461, ../../../scss/_app_styles.scss */ +/* line 5479, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 5466, ../../../scss/_app_styles.scss */ +/* line 5484, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 5472, ../../../scss/_app_styles.scss */ +/* line 5490, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 5479, ../../../scss/_app_styles.scss */ +/* line 5497, ../../../scss/_app_styles.scss */ .max-width { max-width: 100%; } -/* line 5485, ../../../scss/_app_styles.scss */ +/* line 5503, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28742,7 +28759,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 5494, ../../../scss/_app_styles.scss */ +/* line 5512, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -28759,7 +28776,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 5507, ../../../scss/_app_styles.scss */ +/* line 5525, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -28769,28 +28786,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 5516, ../../../scss/_app_styles.scss */ +/* line 5534, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 5521, ../../../scss/_app_styles.scss */ +/* line 5539, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background-color: #ffffff; } -/* line 5526, ../../../scss/_app_styles.scss */ +/* line 5544, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 5532, ../../../scss/_app_styles.scss */ +/* line 5550, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 5536, ../../../scss/_app_styles.scss */ +/* line 5554, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -28803,7 +28820,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 5549, ../../../scss/_app_styles.scss */ +/* line 5567, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -28818,7 +28835,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Unit_Structure styles */ -/* line 5567, ../../../scss/_app_styles.scss */ +/* line 5585, ../../../scss/_app_styles.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -28826,12 +28843,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 5575, ../../../scss/_app_styles.scss */ +/* line 5593, ../../../scss/_app_styles.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 5579, ../../../scss/_app_styles.scss */ +/* line 5597, ../../../scss/_app_styles.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -28839,17 +28856,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 5585, ../../../scss/_app_styles.scss */ +/* line 5603, ../../../scss/_app_styles.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 5591, ../../../scss/_app_styles.scss */ +/* line 5609, ../../../scss/_app_styles.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 5596, ../../../scss/_app_styles.scss */ +/* line 5614, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28859,25 +28876,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 5605, ../../../scss/_app_styles.scss */ +/* line 5623, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5609, ../../../scss/_app_styles.scss */ +/* line 5627, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 5614, ../../../scss/_app_styles.scss */ +/* line 5632, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 5623, ../../../scss/_app_styles.scss */ +/* line 5641, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -28886,7 +28903,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5630, ../../../scss/_app_styles.scss */ +/* line 5648, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -28895,15 +28912,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 5639, ../../../scss/_app_styles.scss */ +/* line 5657, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 5644, ../../../scss/_app_styles.scss */ +/* line 5662, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 5647, ../../../scss/_app_styles.scss */ +/* line 5665, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -28911,21 +28928,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 5657, ../../../scss/_app_styles.scss */ +/* line 5675, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 5663, ../../../scss/_app_styles.scss */ +/* line 5681, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 5671, ../../../scss/_app_styles.scss */ +/* line 5689, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 5673, ../../../scss/_app_styles.scss */ +/* line 5691, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -28934,7 +28951,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5680, ../../../scss/_app_styles.scss */ +/* line 5698, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -28942,11 +28959,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5689, ../../../scss/_app_styles.scss */ +/* line 5707, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 5698, ../../../scss/_app_styles.scss */ +/* line 5716, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -28958,49 +28975,49 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 5708, ../../../scss/_app_styles.scss */ +/* line 5726, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 5714, ../../../scss/_app_styles.scss */ +/* line 5732, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 5717, ../../../scss/_app_styles.scss */ +/* line 5735, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 5726, ../../../scss/_app_styles.scss */ +/* line 5744, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 5731, ../../../scss/_app_styles.scss */ +/* line 5749, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 5735, ../../../scss/_app_styles.scss */ +/* line 5753, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 5737, ../../../scss/_app_styles.scss */ +/* line 5755, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 5740, ../../../scss/_app_styles.scss */ +/* line 5758, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 5746, ../../../scss/_app_styles.scss */ +/* line 5764, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29008,29 +29025,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 15px 5px; cursor: pointer; } -/* line 5761, ../../../scss/_app_styles.scss */ +/* line 5779, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 5769, ../../../scss/_app_styles.scss */ +/* line 5787, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 5775, ../../../scss/_app_styles.scss */ +/* line 5793, ../../../scss/_app_styles.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 5784, ../../../scss/_app_styles.scss */ +/* line 5802, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 5789, ../../../scss/_app_styles.scss */ +/* line 5807, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29038,28 +29055,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 5796, ../../../scss/_app_styles.scss */ +/* line 5814, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5801, ../../../scss/_app_styles.scss */ +/* line 5819, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5806, ../../../scss/_app_styles.scss */ +/* line 5824, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 5808, ../../../scss/_app_styles.scss */ +/* line 5826, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 5812, ../../../scss/_app_styles.scss */ +/* line 5830, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -29071,21 +29088,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; border-radius: 3px; } -/* line 5823, ../../../scss/_app_styles.scss */ +/* line 5841, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 5828, ../../../scss/_app_styles.scss */ +/* line 5846, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 5834, ../../../scss/_app_styles.scss */ +/* line 5852, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 5840, ../../../scss/_app_styles.scss */ +/* line 5858, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -29093,19 +29110,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 5847, ../../../scss/_app_styles.scss */ +/* line 5865, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 5854, ../../../scss/_app_styles.scss */ +/* line 5872, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5865, ../../../scss/_app_styles.scss */ +/* line 5883, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -29116,7 +29133,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 5882, ../../../scss/_app_styles.scss */ +/* line 5900, ../../../scss/_app_styles.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -29131,66 +29148,66 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* lesspn listing LMS */ -/* line 5898, ../../../scss/_app_styles.scss */ +/* line 5916, ../../../scss/_app_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 5906, ../../../scss/_app_styles.scss */ +/* line 5924, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 5909, ../../../scss/_app_styles.scss */ +/* line 5927, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 5911, ../../../scss/_app_styles.scss */ +/* line 5929, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 5918, ../../../scss/_app_styles.scss */ +/* line 5936, ../../../scss/_app_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 5920, ../../../scss/_app_styles.scss */ +/* line 5938, ../../../scss/_app_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 5925, ../../../scss/_app_styles.scss */ +/* line 5943, ../../../scss/_app_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 5933, ../../../scss/_app_styles.scss */ +/* line 5951, ../../../scss/_app_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5939, ../../../scss/_app_styles.scss */ +/* line 5957, ../../../scss/_app_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5946, ../../../scss/_app_styles.scss */ +/* line 5964, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 5949, ../../../scss/_app_styles.scss */ +/* line 5967, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 5952, ../../../scss/_app_styles.scss */ +/* line 5970, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 5955, ../../../scss/_app_styles.scss */ +/* line 5973, ../../../scss/_app_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; @@ -29200,23 +29217,23 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Styling for the Secondary header 2 */ -/* line 5974, ../../../scss/_app_styles.scss */ +/* line 5992, ../../../scss/_app_styles.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 5977, ../../../scss/_app_styles.scss */ +/* line 5995, ../../../scss/_app_styles.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 5985, ../../../scss/_app_styles.scss */ +/* line 6003, ../../../scss/_app_styles.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 5994, ../../../scss/_app_styles.scss */ +/* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { position: relative; color: #fff; @@ -29227,56 +29244,56 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: -2px; border-right: 1px solid white; } -/* line 6003, ../../../scss/_app_styles.scss */ +/* line 6021, ../../../scss/_app_styles.scss */ .activity_player_header .header_title a { color: #ffc14f; } @media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 5994, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 938px); } } @media only screen and (min-device-width: 2131px) { - /* line 5994, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 970px); } } @media only screen and (max-device-width: 1024px) { - /* line 5994, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 753px); } } -/* line 6080, ../../../scss/_app_styles.scss */ +/* line 6098, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon { font-size: 16px; line-height: 45px; color: #ffc14f; } -/* line 6086, ../../../scss/_app_styles.scss */ +/* line 6104, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 6092, ../../../scss/_app_styles.scss */ +/* line 6110, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 10px; } @media screen and (min-width: 1025px) { - /* line 6092, ../../../scss/_app_styles.scss */ + /* line 6110, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 15px; } } @media screen and (min-width: 1025px) { - /* line 6099, ../../../scss/_app_styles.scss */ + /* line 6117, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { float: right; margin-right: 70px; @@ -29284,73 +29301,73 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media screen and (max-width: 1024px) { - /* line 6099, ../../../scss/_app_styles.scss */ + /* line 6117, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { background-color: rgba(107, 0, 84, 0.97); } } -/* line 6112, ../../../scss/_app_styles.scss */ +/* line 6130, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6118, ../../../scss/_app_styles.scss */ +/* line 6136, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block { padding: 0px 15px; margin-left: -2px; border-right: 1px solid white; } -/* line 6122, ../../../scss/_app_styles.scss */ +/* line 6140, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block a { color: #ffc14f; } -/* line 6128, ../../../scss/_app_styles.scss */ +/* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 9px; } @media screen and (min-width: 1025px) { - /* line 6128, ../../../scss/_app_styles.scss */ + /* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 15px; } } -/* line 6136, ../../../scss/_app_styles.scss */ +/* line 6154, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 7px; } @media screen and (min-width: 1025px) { - /* line 6136, ../../../scss/_app_styles.scss */ + /* line 6154, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 15px; } } -/* line 6145, ../../../scss/_app_styles.scss */ +/* line 6163, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 6148, ../../../scss/_app_styles.scss */ +/* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button i { color: #71318b; } -/* line 6154, ../../../scss/_app_styles.scss */ +/* line 6172, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 6158, ../../../scss/_app_styles.scss */ +/* line 6176, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 6164, ../../../scss/_app_styles.scss */ +/* line 6182, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .pagination:not(i) { color: #a983b9; } -/* line 6172, ../../../scss/_app_styles.scss */ +/* line 6190, ../../../scss/_app_styles.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -29358,29 +29375,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 6179, ../../../scss/_app_styles.scss */ +/* line 6197, ../../../scss/_app_styles.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 6183, ../../../scss/_app_styles.scss */ +/* line 6201, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6189, ../../../scss/_app_styles.scss */ +/* line 6207, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6195, ../../../scss/_app_styles.scss */ +/* line 6213, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 6200, ../../../scss/_app_styles.scss */ +/* line 6218, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29390,25 +29407,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 6209, ../../../scss/_app_styles.scss */ +/* line 6227, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6213, ../../../scss/_app_styles.scss */ +/* line 6231, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6218, ../../../scss/_app_styles.scss */ +/* line 6236, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6227, ../../../scss/_app_styles.scss */ +/* line 6245, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29417,7 +29434,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6234, ../../../scss/_app_styles.scss */ +/* line 6252, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29426,15 +29443,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 6243, ../../../scss/_app_styles.scss */ +/* line 6261, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6248, ../../../scss/_app_styles.scss */ +/* line 6266, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6251, ../../../scss/_app_styles.scss */ +/* line 6269, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29442,21 +29459,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 6261, ../../../scss/_app_styles.scss */ +/* line 6279, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6267, ../../../scss/_app_styles.scss */ +/* line 6285, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6275, ../../../scss/_app_styles.scss */ +/* line 6293, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6277, ../../../scss/_app_styles.scss */ +/* line 6295, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29465,7 +29482,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6284, ../../../scss/_app_styles.scss */ +/* line 6302, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29473,11 +29490,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6293, ../../../scss/_app_styles.scss */ +/* line 6311, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6302, ../../../scss/_app_styles.scss */ +/* line 6320, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29489,48 +29506,48 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 6312, ../../../scss/_app_styles.scss */ +/* line 6330, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6317, ../../../scss/_app_styles.scss */ +/* line 6335, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6320, ../../../scss/_app_styles.scss */ +/* line 6338, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6329, ../../../scss/_app_styles.scss */ +/* line 6347, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6334, ../../../scss/_app_styles.scss */ +/* line 6352, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6338, ../../../scss/_app_styles.scss */ +/* line 6356, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6340, ../../../scss/_app_styles.scss */ +/* line 6358, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6343, ../../../scss/_app_styles.scss */ +/* line 6361, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6349, ../../../scss/_app_styles.scss */ +/* line 6367, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29539,7 +29556,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; } -/* line 6367, ../../../scss/_app_styles.scss */ +/* line 6385, ../../../scss/_app_styles.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -29547,26 +29564,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 10px; padding-right: 4px; } -/* line 6373, ../../../scss/_app_styles.scss */ +/* line 6391, ../../../scss/_app_styles.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 6378, ../../../scss/_app_styles.scss */ +/* line 6396, ../../../scss/_app_styles.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6384, ../../../scss/_app_styles.scss */ +/* line 6402, ../../../scss/_app_styles.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 6390, ../../../scss/_app_styles.scss */ +/* line 6408, ../../../scss/_app_styles.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29576,29 +29593,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 6399, ../../../scss/_app_styles.scss */ +/* line 6417, ../../../scss/_app_styles.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 6403, ../../../scss/_app_styles.scss */ +/* line 6421, ../../../scss/_app_styles.scss */ .activity-title > li > a { color: black; } -/* line 6412, ../../../scss/_app_styles.scss */ +/* line 6430, ../../../scss/_app_styles.scss */ .activity_page_rendered { margin-left: 20px; max-width: 900px; } /* Rating css */ -/* line 6420, ../../../scss/_app_styles.scss */ +/* line 6438, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 6422, ../../../scss/_app_styles.scss */ +/* line 6440, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -29606,19 +29623,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { unicode-bidi: bidi-override; direction: rtl; } -/* line 6430, ../../../scss/_app_styles.scss */ +/* line 6448, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 6432, ../../../scss/_app_styles.scss */ +/* line 6450, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 6438, ../../../scss/_app_styles.scss */ +/* line 6456, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 6440, ../../../scss/_app_styles.scss */ +/* line 6458, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -29631,7 +29648,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0; vertical-align: bottom; } -/* line 6452, ../../../scss/_app_styles.scss */ +/* line 6470, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -29639,32 +29656,32 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* WHITE STAR */ color: #888; } -/* line 6459, ../../../scss/_app_styles.scss */ +/* line 6477, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 6470, ../../../scss/_app_styles.scss */ +/* line 6488, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 6477, ../../../scss/_app_styles.scss */ +/* line 6495, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 6485, ../../../scss/_app_styles.scss */ +/* line 6503, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 6490, ../../../scss/_app_styles.scss */ +/* line 6508, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -29673,29 +29690,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-shadow: 0 0 1px #333; } -/* line 6500, ../../../scss/_app_styles.scss */ +/* line 6518, ../../../scss/_app_styles.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 6504, ../../../scss/_app_styles.scss */ +/* line 6522, ../../../scss/_app_styles.scss */ .input_links { margin-left: 10px; } -/* line 6506, ../../../scss/_app_styles.scss */ +/* line 6524, ../../../scss/_app_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 6512, ../../../scss/_app_styles.scss */ +/* line 6530, ../../../scss/_app_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 6520, ../../../scss/_app_styles.scss */ +/* line 6538, ../../../scss/_app_styles.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -29704,19 +29721,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 6529, ../../../scss/_app_styles.scss */ +/* line 6547, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 6534, ../../../scss/_app_styles.scss */ +/* line 6552, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 6540, ../../../scss/_app_styles.scss */ +/* line 6558, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -29724,12 +29741,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; margin-left: 12%; } -/* line 6548, ../../../scss/_app_styles.scss */ +/* line 6566, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 6554, ../../../scss/_app_styles.scss */ +/* line 6572, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -29738,21 +29755,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: none; color: #8E8E8E; } -/* line 6563, ../../../scss/_app_styles.scss */ +/* line 6581, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 6568, ../../../scss/_app_styles.scss */ +/* line 6586, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 6570, ../../../scss/_app_styles.scss */ +/* line 6588, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 6573, ../../../scss/_app_styles.scss */ +/* line 6591, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -29763,24 +29780,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #757575; margin-right: 20px; } -/* line 6583, ../../../scss/_app_styles.scss */ +/* line 6601, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 6587, ../../../scss/_app_styles.scss */ +/* line 6605, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 6590, ../../../scss/_app_styles.scss */ +/* line 6608, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 6595, ../../../scss/_app_styles.scss */ +/* line 6613, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 6599, ../../../scss/_app_styles.scss */ +/* line 6617, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -29792,7 +29809,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; color: #222222; } -/* line 6610, ../../../scss/_app_styles.scss */ +/* line 6628, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -29800,15 +29817,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 8px; top: 4px; } -/* line 6618, ../../../scss/_app_styles.scss */ +/* line 6636, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 6620, ../../../scss/_app_styles.scss */ +/* line 6638, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 6623, ../../../scss/_app_styles.scss */ +/* line 6641, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -29818,25 +29835,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { letter-spacing: 0.8px; color: #999999; } -/* line 6632, ../../../scss/_app_styles.scss */ +/* line 6650, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 6638, ../../../scss/_app_styles.scss */ +/* line 6656, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 6647, ../../../scss/_app_styles.scss */ +/* line 6665, ../../../scss/_app_styles.scss */ .icon-color { color: #2e3f51 !important; padding: right; } /* The asset tile */ -/* line 6657, ../../../scss/_app_styles.scss */ +/* line 6675, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29846,7 +29863,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 6666, ../../../scss/_app_styles.scss */ +/* line 6684, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -29863,7 +29880,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 6679, ../../../scss/_app_styles.scss */ +/* line 6697, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -29873,28 +29890,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 6688, ../../../scss/_app_styles.scss */ +/* line 6706, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 6693, ../../../scss/_app_styles.scss */ +/* line 6711, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 6698, ../../../scss/_app_styles.scss */ +/* line 6716, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 6704, ../../../scss/_app_styles.scss */ +/* line 6722, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 6708, ../../../scss/_app_styles.scss */ +/* line 6726, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -29907,7 +29924,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 6721, ../../../scss/_app_styles.scss */ +/* line 6739, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -29921,7 +29938,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 6736, ../../../scss/_app_styles.scss */ +/* line 6754, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -29930,22 +29947,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6745, ../../../scss/_app_styles.scss */ +/* line 6763, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6752, ../../../scss/_app_styles.scss */ +/* line 6770, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6758, ../../../scss/_app_styles.scss */ +/* line 6776, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6760, ../../../scss/_app_styles.scss */ +/* line 6778, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -29954,15 +29971,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6767, ../../../scss/_app_styles.scss */ +/* line 6785, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6771, ../../../scss/_app_styles.scss */ +/* line 6789, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6777, ../../../scss/_app_styles.scss */ +/* line 6795, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -29971,7 +29988,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6788, ../../../scss/_app_styles.scss */ +/* line 6806, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -29980,24 +29997,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6797, ../../../scss/_app_styles.scss */ +/* line 6815, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6804, ../../../scss/_app_styles.scss */ +/* line 6822, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 6809, ../../../scss/_app_styles.scss */ +/* line 6827, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 6813, ../../../scss/_app_styles.scss */ +/* line 6831, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -30008,14 +30025,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 6823, ../../../scss/_app_styles.scss */ +/* line 6841, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 6830, ../../../scss/_app_styles.scss */ + /* line 6848, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30023,7 +30040,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6839, ../../../scss/_app_styles.scss */ + /* line 6857, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30031,7 +30048,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6846, ../../../scss/_app_styles.scss */ + /* line 6864, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30039,14 +30056,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6853, ../../../scss/_app_styles.scss */ + /* line 6871, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 6861, ../../../scss/_app_styles.scss */ +/* line 6879, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30061,14 +30078,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6877, ../../../scss/_app_styles.scss */ +/* line 6895, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 6884, ../../../scss/_app_styles.scss */ + /* line 6902, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30079,7 +30096,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6895, ../../../scss/_app_styles.scss */ + /* line 6913, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30090,7 +30107,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6906, ../../../scss/_app_styles.scss */ + /* line 6924, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30101,7 +30118,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6917, ../../../scss/_app_styles.scss */ + /* line 6935, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30111,7 +30128,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6928, ../../../scss/_app_styles.scss */ +/* line 6946, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30126,14 +30143,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6944, ../../../scss/_app_styles.scss */ +/* line 6962, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 6951, ../../../scss/_app_styles.scss */ + /* line 6969, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30144,7 +30161,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6962, ../../../scss/_app_styles.scss */ + /* line 6980, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30155,7 +30172,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6973, ../../../scss/_app_styles.scss */ + /* line 6991, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30166,7 +30183,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6984, ../../../scss/_app_styles.scss */ + /* line 7002, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30176,11 +30193,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6995, ../../../scss/_app_styles.scss */ +/* line 7013, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 6997, ../../../scss/_app_styles.scss */ +/* line 7015, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30189,11 +30206,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 7005, ../../../scss/_app_styles.scss */ +/* line 7023, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 7011, ../../../scss/_app_styles.scss */ +/* line 7029, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30202,7 +30219,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7022, ../../../scss/_app_styles.scss */ +/* line 7040, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30213,22 +30230,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7032, ../../../scss/_app_styles.scss */ +/* line 7050, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7035, ../../../scss/_app_styles.scss */ +/* line 7053, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7040, ../../../scss/_app_styles.scss */ +/* line 7058, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7051, ../../../scss/_app_styles.scss */ +/* line 7069, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30239,26 +30256,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7061, ../../../scss/_app_styles.scss */ +/* line 7079, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7064, ../../../scss/_app_styles.scss */ +/* line 7082, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7068, ../../../scss/_app_styles.scss */ +/* line 7086, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7074, ../../../scss/_app_styles.scss */ +/* line 7092, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7076, ../../../scss/_app_styles.scss */ +/* line 7094, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30267,7 +30284,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7085, ../../../scss/_app_styles.scss */ +/* line 7103, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30276,7 +30293,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7099, ../../../scss/_app_styles.scss */ +/* line 7117, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -30286,20 +30303,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Asset detail */ -/* line 7110, ../../../scss/_app_styles.scss */ +/* line 7128, ../../../scss/_app_styles.scss */ .overlay-head { background-color: #fff; height: 60px; margin-bottom: 20px; } -/* line 7116, ../../../scss/_app_styles.scss */ +/* line 7134, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7121, ../../../scss/_app_styles.scss */ +/* line 7139, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30313,13 +30330,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7133, ../../../scss/_app_styles.scss */ +/* line 7151, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7140, ../../../scss/_app_styles.scss */ +/* line 7158, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30331,7 +30348,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7151, ../../../scss/_app_styles.scss */ +/* line 7169, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30339,13 +30356,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7160, ../../../scss/_app_styles.scss */ +/* line 7178, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7168, ../../../scss/_app_styles.scss */ +/* line 7186, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30363,12 +30380,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7184, ../../../scss/_app_styles.scss */ +/* line 7202, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7189, ../../../scss/_app_styles.scss */ +/* line 7207, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30380,13 +30397,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7199, ../../../scss/_app_styles.scss */ +/* line 7217, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7207, ../../../scss/_app_styles.scss */ +/* line 7225, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30403,13 +30420,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7222, ../../../scss/_app_styles.scss */ +/* line 7240, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* line 7233, ../../../scss/_app_styles.scss */ +/* line 7251, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -30417,7 +30434,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-size: 100% 100%; position: relative; } -/* line 7240, ../../../scss/_app_styles.scss */ +/* line 7258, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -30431,13 +30448,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7254, ../../../scss/_app_styles.scss */ +/* line 7272, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 7259, ../../../scss/_app_styles.scss */ +/* line 7277, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -30446,60 +30463,60 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow: hidden; background-color: #fff; } -/* line 7267, ../../../scss/_app_styles.scss */ +/* line 7285, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 7272, ../../../scss/_app_styles.scss */ +/* line 7290, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 7277, ../../../scss/_app_styles.scss */ +/* line 7295, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 7282, ../../../scss/_app_styles.scss */ +/* line 7300, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 7290, ../../../scss/_app_styles.scss */ +/* line 7308, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 7294, ../../../scss/_app_styles.scss */ +/* line 7312, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 7304, ../../../scss/_app_styles.scss */ +/* line 7322, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -19.3px; } -/* line 7311, ../../../scss/_app_styles.scss */ +/* line 7329, ../../../scss/_app_styles.scss */ .course-students-data { margin: 2px 2px 2px 2px; border: 2px solid #164a7b; padding: 19px 14px 0px 5px; } -/* line 7318, ../../../scss/_app_styles.scss */ +/* line 7336, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 7321, ../../../scss/_app_styles.scss */ +/* line 7339, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 7329, ../../../scss/_app_styles.scss */ +/* line 7347, ../../../scss/_app_styles.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -30515,7 +30532,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7348, ../../../scss/_app_styles.scss */ +/* line 7366, ../../../scss/_app_styles.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -30525,7 +30542,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7357, ../../../scss/_app_styles.scss */ +/* line 7375, ../../../scss/_app_styles.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -30535,7 +30552,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 7366, ../../../scss/_app_styles.scss */ +/* line 7384, ../../../scss/_app_styles.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css index b8d2025ec3..e91de5f9c2 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css @@ -28671,48 +28671,65 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5329, ../../../scss/_app_styles.scss */ +/* line 5330, ../../../scss/_app_styles.scss */ +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #000000b8; + letter-spacing: 0.4px; +} + +/* line 5347, ../../../scss/_app_styles.scss */ .icon-widget { font-size: 24px; } /* module detail css */ -/* line 5338, ../../../scss/_app_styles.scss */ +/* line 5356, ../../../scss/_app_styles.scss */ .thumbnail_style { margin-top: -30px; margin-left: -30px; } -/* line 5343, ../../../scss/_app_styles.scss */ +/* line 5361, ../../../scss/_app_styles.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 5349, ../../../scss/_app_styles.scss */ +/* line 5367, ../../../scss/_app_styles.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); margin-top: -29px; padding-left: 10px; } -/* line 5353, ../../../scss/_app_styles.scss */ +/* line 5371, ../../../scss/_app_styles.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 5363, ../../../scss/_app_styles.scss */ +/* line 5381, ../../../scss/_app_styles.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 5368, ../../../scss/_app_styles.scss */ +/* line 5386, ../../../scss/_app_styles.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 5371, ../../../scss/_app_styles.scss */ +/* line 5389, ../../../scss/_app_styles.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28726,7 +28743,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 5388, ../../../scss/_app_styles.scss */ +/* line 5406, ../../../scss/_app_styles.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -28740,7 +28757,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* Creating and editing course Structure */ -/* line 5405, ../../../scss/_app_styles.scss */ +/* line 5423, ../../../scss/_app_styles.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -28751,34 +28768,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 5414, ../../../scss/_app_styles.scss */ +/* line 5432, ../../../scss/_app_styles.scss */ .group_tile:hover { opacity: 0.7; } -/* line 5417, ../../../scss/_app_styles.scss */ +/* line 5435, ../../../scss/_app_styles.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 5424, ../../../scss/_app_styles.scss */ +/* line 5442, ../../../scss/_app_styles.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 5431, ../../../scss/_app_styles.scss */ +/* line 5449, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 5434, ../../../scss/_app_styles.scss */ +/* line 5452, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 5437, ../../../scss/_app_styles.scss */ +/* line 5455, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -28786,15 +28803,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 5445, ../../../scss/_app_styles.scss */ +/* line 5463, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 5449, ../../../scss/_app_styles.scss */ +/* line 5467, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 5451, ../../../scss/_app_styles.scss */ +/* line 5469, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -28805,27 +28822,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 5461, ../../../scss/_app_styles.scss */ +/* line 5479, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 5466, ../../../scss/_app_styles.scss */ +/* line 5484, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 5472, ../../../scss/_app_styles.scss */ +/* line 5490, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 5479, ../../../scss/_app_styles.scss */ +/* line 5497, ../../../scss/_app_styles.scss */ .max-width { max-width: 100%; } -/* line 5485, ../../../scss/_app_styles.scss */ +/* line 5503, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28835,7 +28852,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 5494, ../../../scss/_app_styles.scss */ +/* line 5512, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -28852,7 +28869,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 5507, ../../../scss/_app_styles.scss */ +/* line 5525, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -28862,28 +28879,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 5516, ../../../scss/_app_styles.scss */ +/* line 5534, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 5521, ../../../scss/_app_styles.scss */ +/* line 5539, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background-color: #ffffff; } -/* line 5526, ../../../scss/_app_styles.scss */ +/* line 5544, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 5532, ../../../scss/_app_styles.scss */ +/* line 5550, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 5536, ../../../scss/_app_styles.scss */ +/* line 5554, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -28896,7 +28913,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 5549, ../../../scss/_app_styles.scss */ +/* line 5567, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -28911,7 +28928,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Unit_Structure styles */ -/* line 5567, ../../../scss/_app_styles.scss */ +/* line 5585, ../../../scss/_app_styles.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -28919,12 +28936,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 5575, ../../../scss/_app_styles.scss */ +/* line 5593, ../../../scss/_app_styles.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 5579, ../../../scss/_app_styles.scss */ +/* line 5597, ../../../scss/_app_styles.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -28932,17 +28949,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 5585, ../../../scss/_app_styles.scss */ +/* line 5603, ../../../scss/_app_styles.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 5591, ../../../scss/_app_styles.scss */ +/* line 5609, ../../../scss/_app_styles.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 5596, ../../../scss/_app_styles.scss */ +/* line 5614, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28952,25 +28969,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 5605, ../../../scss/_app_styles.scss */ +/* line 5623, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5609, ../../../scss/_app_styles.scss */ +/* line 5627, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 5614, ../../../scss/_app_styles.scss */ +/* line 5632, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 5623, ../../../scss/_app_styles.scss */ +/* line 5641, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -28979,7 +28996,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5630, ../../../scss/_app_styles.scss */ +/* line 5648, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -28988,15 +29005,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 5639, ../../../scss/_app_styles.scss */ +/* line 5657, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 5644, ../../../scss/_app_styles.scss */ +/* line 5662, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 5647, ../../../scss/_app_styles.scss */ +/* line 5665, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29004,21 +29021,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 5657, ../../../scss/_app_styles.scss */ +/* line 5675, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 5663, ../../../scss/_app_styles.scss */ +/* line 5681, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 5671, ../../../scss/_app_styles.scss */ +/* line 5689, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 5673, ../../../scss/_app_styles.scss */ +/* line 5691, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29027,7 +29044,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5680, ../../../scss/_app_styles.scss */ +/* line 5698, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29035,11 +29052,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5689, ../../../scss/_app_styles.scss */ +/* line 5707, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 5698, ../../../scss/_app_styles.scss */ +/* line 5716, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29051,49 +29068,49 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 5708, ../../../scss/_app_styles.scss */ +/* line 5726, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 5714, ../../../scss/_app_styles.scss */ +/* line 5732, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 5717, ../../../scss/_app_styles.scss */ +/* line 5735, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 5726, ../../../scss/_app_styles.scss */ +/* line 5744, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 5731, ../../../scss/_app_styles.scss */ +/* line 5749, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 5735, ../../../scss/_app_styles.scss */ +/* line 5753, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 5737, ../../../scss/_app_styles.scss */ +/* line 5755, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 5740, ../../../scss/_app_styles.scss */ +/* line 5758, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 5746, ../../../scss/_app_styles.scss */ +/* line 5764, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29101,29 +29118,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 15px 5px; cursor: pointer; } -/* line 5761, ../../../scss/_app_styles.scss */ +/* line 5779, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 5769, ../../../scss/_app_styles.scss */ +/* line 5787, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 5775, ../../../scss/_app_styles.scss */ +/* line 5793, ../../../scss/_app_styles.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 5784, ../../../scss/_app_styles.scss */ +/* line 5802, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 5789, ../../../scss/_app_styles.scss */ +/* line 5807, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29131,28 +29148,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 5796, ../../../scss/_app_styles.scss */ +/* line 5814, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5801, ../../../scss/_app_styles.scss */ +/* line 5819, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5806, ../../../scss/_app_styles.scss */ +/* line 5824, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 5808, ../../../scss/_app_styles.scss */ +/* line 5826, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 5812, ../../../scss/_app_styles.scss */ +/* line 5830, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -29164,21 +29181,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; border-radius: 3px; } -/* line 5823, ../../../scss/_app_styles.scss */ +/* line 5841, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 5828, ../../../scss/_app_styles.scss */ +/* line 5846, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 5834, ../../../scss/_app_styles.scss */ +/* line 5852, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 5840, ../../../scss/_app_styles.scss */ +/* line 5858, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -29186,19 +29203,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 5847, ../../../scss/_app_styles.scss */ +/* line 5865, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 5854, ../../../scss/_app_styles.scss */ +/* line 5872, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5865, ../../../scss/_app_styles.scss */ +/* line 5883, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -29209,7 +29226,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 5882, ../../../scss/_app_styles.scss */ +/* line 5900, ../../../scss/_app_styles.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -29224,66 +29241,66 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* lesspn listing LMS */ -/* line 5898, ../../../scss/_app_styles.scss */ +/* line 5916, ../../../scss/_app_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 5906, ../../../scss/_app_styles.scss */ +/* line 5924, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 5909, ../../../scss/_app_styles.scss */ +/* line 5927, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 5911, ../../../scss/_app_styles.scss */ +/* line 5929, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 5918, ../../../scss/_app_styles.scss */ +/* line 5936, ../../../scss/_app_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 5920, ../../../scss/_app_styles.scss */ +/* line 5938, ../../../scss/_app_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 5925, ../../../scss/_app_styles.scss */ +/* line 5943, ../../../scss/_app_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 5933, ../../../scss/_app_styles.scss */ +/* line 5951, ../../../scss/_app_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5939, ../../../scss/_app_styles.scss */ +/* line 5957, ../../../scss/_app_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5946, ../../../scss/_app_styles.scss */ +/* line 5964, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 5949, ../../../scss/_app_styles.scss */ +/* line 5967, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 5952, ../../../scss/_app_styles.scss */ +/* line 5970, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 5955, ../../../scss/_app_styles.scss */ +/* line 5973, ../../../scss/_app_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; @@ -29293,23 +29310,23 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Styling for the Secondary header 2 */ -/* line 5974, ../../../scss/_app_styles.scss */ +/* line 5992, ../../../scss/_app_styles.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 5977, ../../../scss/_app_styles.scss */ +/* line 5995, ../../../scss/_app_styles.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 5985, ../../../scss/_app_styles.scss */ +/* line 6003, ../../../scss/_app_styles.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 5994, ../../../scss/_app_styles.scss */ +/* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { position: relative; color: #fff; @@ -29320,56 +29337,56 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: -2px; border-right: 1px solid white; } -/* line 6003, ../../../scss/_app_styles.scss */ +/* line 6021, ../../../scss/_app_styles.scss */ .activity_player_header .header_title a { color: #ffc14f; } @media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 5994, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 938px); } } @media only screen and (min-device-width: 2131px) { - /* line 5994, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 970px); } } @media only screen and (max-device-width: 1024px) { - /* line 5994, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 753px); } } -/* line 6080, ../../../scss/_app_styles.scss */ +/* line 6098, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon { font-size: 16px; line-height: 45px; color: #ffc14f; } -/* line 6086, ../../../scss/_app_styles.scss */ +/* line 6104, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 6092, ../../../scss/_app_styles.scss */ +/* line 6110, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 10px; } @media screen and (min-width: 1025px) { - /* line 6092, ../../../scss/_app_styles.scss */ + /* line 6110, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 15px; } } @media screen and (min-width: 1025px) { - /* line 6099, ../../../scss/_app_styles.scss */ + /* line 6117, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { float: right; margin-right: 70px; @@ -29377,73 +29394,73 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media screen and (max-width: 1024px) { - /* line 6099, ../../../scss/_app_styles.scss */ + /* line 6117, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { background-color: rgba(107, 0, 84, 0.97); } } -/* line 6112, ../../../scss/_app_styles.scss */ +/* line 6130, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6118, ../../../scss/_app_styles.scss */ +/* line 6136, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block { padding: 0px 15px; margin-left: -2px; border-right: 1px solid white; } -/* line 6122, ../../../scss/_app_styles.scss */ +/* line 6140, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block a { color: #ffc14f; } -/* line 6128, ../../../scss/_app_styles.scss */ +/* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 9px; } @media screen and (min-width: 1025px) { - /* line 6128, ../../../scss/_app_styles.scss */ + /* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 15px; } } -/* line 6136, ../../../scss/_app_styles.scss */ +/* line 6154, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 7px; } @media screen and (min-width: 1025px) { - /* line 6136, ../../../scss/_app_styles.scss */ + /* line 6154, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 15px; } } -/* line 6145, ../../../scss/_app_styles.scss */ +/* line 6163, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 6148, ../../../scss/_app_styles.scss */ +/* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button i { color: #71318b; } -/* line 6154, ../../../scss/_app_styles.scss */ +/* line 6172, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 6158, ../../../scss/_app_styles.scss */ +/* line 6176, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 6164, ../../../scss/_app_styles.scss */ +/* line 6182, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .pagination:not(i) { color: #a983b9; } -/* line 6172, ../../../scss/_app_styles.scss */ +/* line 6190, ../../../scss/_app_styles.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -29451,29 +29468,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 6179, ../../../scss/_app_styles.scss */ +/* line 6197, ../../../scss/_app_styles.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 6183, ../../../scss/_app_styles.scss */ +/* line 6201, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6189, ../../../scss/_app_styles.scss */ +/* line 6207, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6195, ../../../scss/_app_styles.scss */ +/* line 6213, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 6200, ../../../scss/_app_styles.scss */ +/* line 6218, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29483,25 +29500,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 6209, ../../../scss/_app_styles.scss */ +/* line 6227, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6213, ../../../scss/_app_styles.scss */ +/* line 6231, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6218, ../../../scss/_app_styles.scss */ +/* line 6236, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6227, ../../../scss/_app_styles.scss */ +/* line 6245, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29510,7 +29527,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6234, ../../../scss/_app_styles.scss */ +/* line 6252, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29519,15 +29536,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 6243, ../../../scss/_app_styles.scss */ +/* line 6261, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6248, ../../../scss/_app_styles.scss */ +/* line 6266, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6251, ../../../scss/_app_styles.scss */ +/* line 6269, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29535,21 +29552,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 6261, ../../../scss/_app_styles.scss */ +/* line 6279, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6267, ../../../scss/_app_styles.scss */ +/* line 6285, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6275, ../../../scss/_app_styles.scss */ +/* line 6293, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6277, ../../../scss/_app_styles.scss */ +/* line 6295, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29558,7 +29575,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6284, ../../../scss/_app_styles.scss */ +/* line 6302, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29566,11 +29583,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6293, ../../../scss/_app_styles.scss */ +/* line 6311, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6302, ../../../scss/_app_styles.scss */ +/* line 6320, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29582,48 +29599,48 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 6312, ../../../scss/_app_styles.scss */ +/* line 6330, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6317, ../../../scss/_app_styles.scss */ +/* line 6335, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6320, ../../../scss/_app_styles.scss */ +/* line 6338, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6329, ../../../scss/_app_styles.scss */ +/* line 6347, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6334, ../../../scss/_app_styles.scss */ +/* line 6352, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6338, ../../../scss/_app_styles.scss */ +/* line 6356, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6340, ../../../scss/_app_styles.scss */ +/* line 6358, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6343, ../../../scss/_app_styles.scss */ +/* line 6361, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6349, ../../../scss/_app_styles.scss */ +/* line 6367, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29632,7 +29649,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; } -/* line 6367, ../../../scss/_app_styles.scss */ +/* line 6385, ../../../scss/_app_styles.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -29640,26 +29657,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 10px; padding-right: 4px; } -/* line 6373, ../../../scss/_app_styles.scss */ +/* line 6391, ../../../scss/_app_styles.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 6378, ../../../scss/_app_styles.scss */ +/* line 6396, ../../../scss/_app_styles.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6384, ../../../scss/_app_styles.scss */ +/* line 6402, ../../../scss/_app_styles.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 6390, ../../../scss/_app_styles.scss */ +/* line 6408, ../../../scss/_app_styles.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29669,29 +29686,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 6399, ../../../scss/_app_styles.scss */ +/* line 6417, ../../../scss/_app_styles.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 6403, ../../../scss/_app_styles.scss */ +/* line 6421, ../../../scss/_app_styles.scss */ .activity-title > li > a { color: black; } -/* line 6412, ../../../scss/_app_styles.scss */ +/* line 6430, ../../../scss/_app_styles.scss */ .activity_page_rendered { margin-left: 20px; max-width: 900px; } /* Rating css */ -/* line 6420, ../../../scss/_app_styles.scss */ +/* line 6438, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 6422, ../../../scss/_app_styles.scss */ +/* line 6440, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -29699,19 +29716,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { unicode-bidi: bidi-override; direction: rtl; } -/* line 6430, ../../../scss/_app_styles.scss */ +/* line 6448, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 6432, ../../../scss/_app_styles.scss */ +/* line 6450, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 6438, ../../../scss/_app_styles.scss */ +/* line 6456, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 6440, ../../../scss/_app_styles.scss */ +/* line 6458, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -29724,7 +29741,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0; vertical-align: bottom; } -/* line 6452, ../../../scss/_app_styles.scss */ +/* line 6470, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -29732,32 +29749,32 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* WHITE STAR */ color: #888; } -/* line 6459, ../../../scss/_app_styles.scss */ +/* line 6477, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 6470, ../../../scss/_app_styles.scss */ +/* line 6488, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 6477, ../../../scss/_app_styles.scss */ +/* line 6495, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 6485, ../../../scss/_app_styles.scss */ +/* line 6503, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 6490, ../../../scss/_app_styles.scss */ +/* line 6508, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -29766,29 +29783,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-shadow: 0 0 1px #333; } -/* line 6500, ../../../scss/_app_styles.scss */ +/* line 6518, ../../../scss/_app_styles.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 6504, ../../../scss/_app_styles.scss */ +/* line 6522, ../../../scss/_app_styles.scss */ .input_links { margin-left: 10px; } -/* line 6506, ../../../scss/_app_styles.scss */ +/* line 6524, ../../../scss/_app_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 6512, ../../../scss/_app_styles.scss */ +/* line 6530, ../../../scss/_app_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 6520, ../../../scss/_app_styles.scss */ +/* line 6538, ../../../scss/_app_styles.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -29797,19 +29814,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 6529, ../../../scss/_app_styles.scss */ +/* line 6547, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 6534, ../../../scss/_app_styles.scss */ +/* line 6552, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 6540, ../../../scss/_app_styles.scss */ +/* line 6558, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -29817,12 +29834,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; margin-left: 12%; } -/* line 6548, ../../../scss/_app_styles.scss */ +/* line 6566, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 6554, ../../../scss/_app_styles.scss */ +/* line 6572, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -29831,21 +29848,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: none; color: #8E8E8E; } -/* line 6563, ../../../scss/_app_styles.scss */ +/* line 6581, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 6568, ../../../scss/_app_styles.scss */ +/* line 6586, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 6570, ../../../scss/_app_styles.scss */ +/* line 6588, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 6573, ../../../scss/_app_styles.scss */ +/* line 6591, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -29856,24 +29873,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #757575; margin-right: 20px; } -/* line 6583, ../../../scss/_app_styles.scss */ +/* line 6601, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 6587, ../../../scss/_app_styles.scss */ +/* line 6605, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 6590, ../../../scss/_app_styles.scss */ +/* line 6608, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 6595, ../../../scss/_app_styles.scss */ +/* line 6613, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 6599, ../../../scss/_app_styles.scss */ +/* line 6617, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -29885,7 +29902,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; color: #222222; } -/* line 6610, ../../../scss/_app_styles.scss */ +/* line 6628, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -29893,15 +29910,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 8px; top: 4px; } -/* line 6618, ../../../scss/_app_styles.scss */ +/* line 6636, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 6620, ../../../scss/_app_styles.scss */ +/* line 6638, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 6623, ../../../scss/_app_styles.scss */ +/* line 6641, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -29911,25 +29928,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { letter-spacing: 0.8px; color: #999999; } -/* line 6632, ../../../scss/_app_styles.scss */ +/* line 6650, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 6638, ../../../scss/_app_styles.scss */ +/* line 6656, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 6647, ../../../scss/_app_styles.scss */ +/* line 6665, ../../../scss/_app_styles.scss */ .icon-color { color: #2e3f51 !important; padding: right; } /* The asset tile */ -/* line 6657, ../../../scss/_app_styles.scss */ +/* line 6675, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29939,7 +29956,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 6666, ../../../scss/_app_styles.scss */ +/* line 6684, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -29956,7 +29973,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 6679, ../../../scss/_app_styles.scss */ +/* line 6697, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -29966,28 +29983,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 6688, ../../../scss/_app_styles.scss */ +/* line 6706, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 6693, ../../../scss/_app_styles.scss */ +/* line 6711, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 6698, ../../../scss/_app_styles.scss */ +/* line 6716, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 6704, ../../../scss/_app_styles.scss */ +/* line 6722, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 6708, ../../../scss/_app_styles.scss */ +/* line 6726, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -30000,7 +30017,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 6721, ../../../scss/_app_styles.scss */ +/* line 6739, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -30014,7 +30031,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 6736, ../../../scss/_app_styles.scss */ +/* line 6754, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -30023,22 +30040,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6745, ../../../scss/_app_styles.scss */ +/* line 6763, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6752, ../../../scss/_app_styles.scss */ +/* line 6770, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6758, ../../../scss/_app_styles.scss */ +/* line 6776, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6760, ../../../scss/_app_styles.scss */ +/* line 6778, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -30047,15 +30064,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6767, ../../../scss/_app_styles.scss */ +/* line 6785, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6771, ../../../scss/_app_styles.scss */ +/* line 6789, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6777, ../../../scss/_app_styles.scss */ +/* line 6795, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30064,7 +30081,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6788, ../../../scss/_app_styles.scss */ +/* line 6806, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -30073,24 +30090,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6797, ../../../scss/_app_styles.scss */ +/* line 6815, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6804, ../../../scss/_app_styles.scss */ +/* line 6822, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 6809, ../../../scss/_app_styles.scss */ +/* line 6827, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 6813, ../../../scss/_app_styles.scss */ +/* line 6831, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -30101,14 +30118,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 6823, ../../../scss/_app_styles.scss */ +/* line 6841, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 6830, ../../../scss/_app_styles.scss */ + /* line 6848, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30116,7 +30133,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6839, ../../../scss/_app_styles.scss */ + /* line 6857, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30124,7 +30141,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6846, ../../../scss/_app_styles.scss */ + /* line 6864, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30132,14 +30149,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6853, ../../../scss/_app_styles.scss */ + /* line 6871, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 6861, ../../../scss/_app_styles.scss */ +/* line 6879, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30154,14 +30171,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6877, ../../../scss/_app_styles.scss */ +/* line 6895, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 6884, ../../../scss/_app_styles.scss */ + /* line 6902, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30172,7 +30189,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6895, ../../../scss/_app_styles.scss */ + /* line 6913, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30183,7 +30200,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6906, ../../../scss/_app_styles.scss */ + /* line 6924, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30194,7 +30211,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6917, ../../../scss/_app_styles.scss */ + /* line 6935, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30204,7 +30221,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6928, ../../../scss/_app_styles.scss */ +/* line 6946, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30219,14 +30236,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6944, ../../../scss/_app_styles.scss */ +/* line 6962, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 6951, ../../../scss/_app_styles.scss */ + /* line 6969, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30237,7 +30254,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6962, ../../../scss/_app_styles.scss */ + /* line 6980, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30248,7 +30265,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6973, ../../../scss/_app_styles.scss */ + /* line 6991, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30259,7 +30276,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6984, ../../../scss/_app_styles.scss */ + /* line 7002, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30269,11 +30286,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6995, ../../../scss/_app_styles.scss */ +/* line 7013, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 6997, ../../../scss/_app_styles.scss */ +/* line 7015, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30282,11 +30299,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 7005, ../../../scss/_app_styles.scss */ +/* line 7023, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 7011, ../../../scss/_app_styles.scss */ +/* line 7029, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30295,7 +30312,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7022, ../../../scss/_app_styles.scss */ +/* line 7040, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30306,22 +30323,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7032, ../../../scss/_app_styles.scss */ +/* line 7050, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7035, ../../../scss/_app_styles.scss */ +/* line 7053, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7040, ../../../scss/_app_styles.scss */ +/* line 7058, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7051, ../../../scss/_app_styles.scss */ +/* line 7069, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30332,26 +30349,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7061, ../../../scss/_app_styles.scss */ +/* line 7079, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7064, ../../../scss/_app_styles.scss */ +/* line 7082, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7068, ../../../scss/_app_styles.scss */ +/* line 7086, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7074, ../../../scss/_app_styles.scss */ +/* line 7092, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7076, ../../../scss/_app_styles.scss */ +/* line 7094, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30360,7 +30377,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7085, ../../../scss/_app_styles.scss */ +/* line 7103, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30369,7 +30386,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7099, ../../../scss/_app_styles.scss */ +/* line 7117, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -30379,20 +30396,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Asset detail */ -/* line 7110, ../../../scss/_app_styles.scss */ +/* line 7128, ../../../scss/_app_styles.scss */ .overlay-head { background-color: #fff; height: 60px; margin-bottom: 20px; } -/* line 7116, ../../../scss/_app_styles.scss */ +/* line 7134, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7121, ../../../scss/_app_styles.scss */ +/* line 7139, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30406,13 +30423,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7133, ../../../scss/_app_styles.scss */ +/* line 7151, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7140, ../../../scss/_app_styles.scss */ +/* line 7158, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30424,7 +30441,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7151, ../../../scss/_app_styles.scss */ +/* line 7169, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30432,13 +30449,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7160, ../../../scss/_app_styles.scss */ +/* line 7178, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7168, ../../../scss/_app_styles.scss */ +/* line 7186, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30456,12 +30473,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7184, ../../../scss/_app_styles.scss */ +/* line 7202, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7189, ../../../scss/_app_styles.scss */ +/* line 7207, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30473,13 +30490,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7199, ../../../scss/_app_styles.scss */ +/* line 7217, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7207, ../../../scss/_app_styles.scss */ +/* line 7225, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30496,13 +30513,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7222, ../../../scss/_app_styles.scss */ +/* line 7240, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* line 7233, ../../../scss/_app_styles.scss */ +/* line 7251, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -30510,7 +30527,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-size: 100% 100%; position: relative; } -/* line 7240, ../../../scss/_app_styles.scss */ +/* line 7258, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -30524,13 +30541,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7254, ../../../scss/_app_styles.scss */ +/* line 7272, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 7259, ../../../scss/_app_styles.scss */ +/* line 7277, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -30539,60 +30556,60 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow: hidden; background-color: #fff; } -/* line 7267, ../../../scss/_app_styles.scss */ +/* line 7285, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 7272, ../../../scss/_app_styles.scss */ +/* line 7290, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 7277, ../../../scss/_app_styles.scss */ +/* line 7295, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 7282, ../../../scss/_app_styles.scss */ +/* line 7300, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 7290, ../../../scss/_app_styles.scss */ +/* line 7308, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 7294, ../../../scss/_app_styles.scss */ +/* line 7312, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 7304, ../../../scss/_app_styles.scss */ +/* line 7322, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -19.3px; } -/* line 7311, ../../../scss/_app_styles.scss */ +/* line 7329, ../../../scss/_app_styles.scss */ .course-students-data { margin: 2px 2px 2px 2px; border: 2px solid #164a7b; padding: 19px 14px 0px 5px; } -/* line 7318, ../../../scss/_app_styles.scss */ +/* line 7336, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 7321, ../../../scss/_app_styles.scss */ +/* line 7339, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 7329, ../../../scss/_app_styles.scss */ +/* line 7347, ../../../scss/_app_styles.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -30608,7 +30625,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7348, ../../../scss/_app_styles.scss */ +/* line 7366, ../../../scss/_app_styles.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -30618,7 +30635,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7357, ../../../scss/_app_styles.scss */ +/* line 7375, ../../../scss/_app_styles.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -30628,7 +30645,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 7366, ../../../scss/_app_styles.scss */ +/* line 7384, ../../../scss/_app_styles.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css index f91883b809..3053eda596 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css @@ -28578,48 +28578,65 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5329, ../../../scss/_app_styles.scss */ +/* line 5330, ../../../scss/_app_styles.scss */ +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #000000b8; + letter-spacing: 0.4px; +} + +/* line 5347, ../../../scss/_app_styles.scss */ .icon-widget { font-size: 24px; } /* module detail css */ -/* line 5338, ../../../scss/_app_styles.scss */ +/* line 5356, ../../../scss/_app_styles.scss */ .thumbnail_style { margin-top: -30px; margin-left: -30px; } -/* line 5343, ../../../scss/_app_styles.scss */ +/* line 5361, ../../../scss/_app_styles.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 5349, ../../../scss/_app_styles.scss */ +/* line 5367, ../../../scss/_app_styles.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); margin-top: -29px; padding-left: 10px; } -/* line 5353, ../../../scss/_app_styles.scss */ +/* line 5371, ../../../scss/_app_styles.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 5363, ../../../scss/_app_styles.scss */ +/* line 5381, ../../../scss/_app_styles.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 5368, ../../../scss/_app_styles.scss */ +/* line 5386, ../../../scss/_app_styles.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 5371, ../../../scss/_app_styles.scss */ +/* line 5389, ../../../scss/_app_styles.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28633,7 +28650,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 5388, ../../../scss/_app_styles.scss */ +/* line 5406, ../../../scss/_app_styles.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -28647,7 +28664,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* Creating and editing course Structure */ -/* line 5405, ../../../scss/_app_styles.scss */ +/* line 5423, ../../../scss/_app_styles.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -28658,34 +28675,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 5414, ../../../scss/_app_styles.scss */ +/* line 5432, ../../../scss/_app_styles.scss */ .group_tile:hover { opacity: 0.7; } -/* line 5417, ../../../scss/_app_styles.scss */ +/* line 5435, ../../../scss/_app_styles.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 5424, ../../../scss/_app_styles.scss */ +/* line 5442, ../../../scss/_app_styles.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 5431, ../../../scss/_app_styles.scss */ +/* line 5449, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 5434, ../../../scss/_app_styles.scss */ +/* line 5452, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 5437, ../../../scss/_app_styles.scss */ +/* line 5455, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -28693,15 +28710,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 5445, ../../../scss/_app_styles.scss */ +/* line 5463, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 5449, ../../../scss/_app_styles.scss */ +/* line 5467, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 5451, ../../../scss/_app_styles.scss */ +/* line 5469, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -28712,27 +28729,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 5461, ../../../scss/_app_styles.scss */ +/* line 5479, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 5466, ../../../scss/_app_styles.scss */ +/* line 5484, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 5472, ../../../scss/_app_styles.scss */ +/* line 5490, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 5479, ../../../scss/_app_styles.scss */ +/* line 5497, ../../../scss/_app_styles.scss */ .max-width { max-width: 100%; } -/* line 5485, ../../../scss/_app_styles.scss */ +/* line 5503, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28742,7 +28759,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 5494, ../../../scss/_app_styles.scss */ +/* line 5512, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -28759,7 +28776,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 5507, ../../../scss/_app_styles.scss */ +/* line 5525, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -28769,28 +28786,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 5516, ../../../scss/_app_styles.scss */ +/* line 5534, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 5521, ../../../scss/_app_styles.scss */ +/* line 5539, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background-color: #ffffff; } -/* line 5526, ../../../scss/_app_styles.scss */ +/* line 5544, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 5532, ../../../scss/_app_styles.scss */ +/* line 5550, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 5536, ../../../scss/_app_styles.scss */ +/* line 5554, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -28803,7 +28820,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 5549, ../../../scss/_app_styles.scss */ +/* line 5567, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -28818,7 +28835,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Unit_Structure styles */ -/* line 5567, ../../../scss/_app_styles.scss */ +/* line 5585, ../../../scss/_app_styles.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -28826,12 +28843,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 5575, ../../../scss/_app_styles.scss */ +/* line 5593, ../../../scss/_app_styles.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 5579, ../../../scss/_app_styles.scss */ +/* line 5597, ../../../scss/_app_styles.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -28839,17 +28856,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 5585, ../../../scss/_app_styles.scss */ +/* line 5603, ../../../scss/_app_styles.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 5591, ../../../scss/_app_styles.scss */ +/* line 5609, ../../../scss/_app_styles.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 5596, ../../../scss/_app_styles.scss */ +/* line 5614, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28859,25 +28876,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 5605, ../../../scss/_app_styles.scss */ +/* line 5623, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5609, ../../../scss/_app_styles.scss */ +/* line 5627, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 5614, ../../../scss/_app_styles.scss */ +/* line 5632, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 5623, ../../../scss/_app_styles.scss */ +/* line 5641, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -28886,7 +28903,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5630, ../../../scss/_app_styles.scss */ +/* line 5648, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -28895,15 +28912,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 5639, ../../../scss/_app_styles.scss */ +/* line 5657, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 5644, ../../../scss/_app_styles.scss */ +/* line 5662, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 5647, ../../../scss/_app_styles.scss */ +/* line 5665, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -28911,21 +28928,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 5657, ../../../scss/_app_styles.scss */ +/* line 5675, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 5663, ../../../scss/_app_styles.scss */ +/* line 5681, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 5671, ../../../scss/_app_styles.scss */ +/* line 5689, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 5673, ../../../scss/_app_styles.scss */ +/* line 5691, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -28934,7 +28951,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5680, ../../../scss/_app_styles.scss */ +/* line 5698, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -28942,11 +28959,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5689, ../../../scss/_app_styles.scss */ +/* line 5707, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 5698, ../../../scss/_app_styles.scss */ +/* line 5716, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -28958,49 +28975,49 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 5708, ../../../scss/_app_styles.scss */ +/* line 5726, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 5714, ../../../scss/_app_styles.scss */ +/* line 5732, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 5717, ../../../scss/_app_styles.scss */ +/* line 5735, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 5726, ../../../scss/_app_styles.scss */ +/* line 5744, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 5731, ../../../scss/_app_styles.scss */ +/* line 5749, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 5735, ../../../scss/_app_styles.scss */ +/* line 5753, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 5737, ../../../scss/_app_styles.scss */ +/* line 5755, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 5740, ../../../scss/_app_styles.scss */ +/* line 5758, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 5746, ../../../scss/_app_styles.scss */ +/* line 5764, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29008,29 +29025,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 15px 5px; cursor: pointer; } -/* line 5761, ../../../scss/_app_styles.scss */ +/* line 5779, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 5769, ../../../scss/_app_styles.scss */ +/* line 5787, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 5775, ../../../scss/_app_styles.scss */ +/* line 5793, ../../../scss/_app_styles.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 5784, ../../../scss/_app_styles.scss */ +/* line 5802, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 5789, ../../../scss/_app_styles.scss */ +/* line 5807, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29038,28 +29055,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 5796, ../../../scss/_app_styles.scss */ +/* line 5814, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5801, ../../../scss/_app_styles.scss */ +/* line 5819, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5806, ../../../scss/_app_styles.scss */ +/* line 5824, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 5808, ../../../scss/_app_styles.scss */ +/* line 5826, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 5812, ../../../scss/_app_styles.scss */ +/* line 5830, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -29071,21 +29088,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; border-radius: 3px; } -/* line 5823, ../../../scss/_app_styles.scss */ +/* line 5841, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 5828, ../../../scss/_app_styles.scss */ +/* line 5846, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 5834, ../../../scss/_app_styles.scss */ +/* line 5852, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 5840, ../../../scss/_app_styles.scss */ +/* line 5858, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -29093,19 +29110,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 5847, ../../../scss/_app_styles.scss */ +/* line 5865, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 5854, ../../../scss/_app_styles.scss */ +/* line 5872, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5865, ../../../scss/_app_styles.scss */ +/* line 5883, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -29116,7 +29133,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 5882, ../../../scss/_app_styles.scss */ +/* line 5900, ../../../scss/_app_styles.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -29131,66 +29148,66 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* lesspn listing LMS */ -/* line 5898, ../../../scss/_app_styles.scss */ +/* line 5916, ../../../scss/_app_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 5906, ../../../scss/_app_styles.scss */ +/* line 5924, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 5909, ../../../scss/_app_styles.scss */ +/* line 5927, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 5911, ../../../scss/_app_styles.scss */ +/* line 5929, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 5918, ../../../scss/_app_styles.scss */ +/* line 5936, ../../../scss/_app_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 5920, ../../../scss/_app_styles.scss */ +/* line 5938, ../../../scss/_app_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 5925, ../../../scss/_app_styles.scss */ +/* line 5943, ../../../scss/_app_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 5933, ../../../scss/_app_styles.scss */ +/* line 5951, ../../../scss/_app_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5939, ../../../scss/_app_styles.scss */ +/* line 5957, ../../../scss/_app_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5946, ../../../scss/_app_styles.scss */ +/* line 5964, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 5949, ../../../scss/_app_styles.scss */ +/* line 5967, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 5952, ../../../scss/_app_styles.scss */ +/* line 5970, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 5955, ../../../scss/_app_styles.scss */ +/* line 5973, ../../../scss/_app_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; @@ -29200,23 +29217,23 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Styling for the Secondary header 2 */ -/* line 5974, ../../../scss/_app_styles.scss */ +/* line 5992, ../../../scss/_app_styles.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 5977, ../../../scss/_app_styles.scss */ +/* line 5995, ../../../scss/_app_styles.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 5985, ../../../scss/_app_styles.scss */ +/* line 6003, ../../../scss/_app_styles.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 5994, ../../../scss/_app_styles.scss */ +/* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { position: relative; color: #fff; @@ -29227,56 +29244,56 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: -2px; border-right: 1px solid white; } -/* line 6003, ../../../scss/_app_styles.scss */ +/* line 6021, ../../../scss/_app_styles.scss */ .activity_player_header .header_title a { color: #ffc14f; } @media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 5994, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 938px); } } @media only screen and (min-device-width: 2131px) { - /* line 5994, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 970px); } } @media only screen and (max-device-width: 1024px) { - /* line 5994, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 753px); } } -/* line 6080, ../../../scss/_app_styles.scss */ +/* line 6098, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon { font-size: 16px; line-height: 45px; color: #ffc14f; } -/* line 6086, ../../../scss/_app_styles.scss */ +/* line 6104, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 6092, ../../../scss/_app_styles.scss */ +/* line 6110, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 10px; } @media screen and (min-width: 1025px) { - /* line 6092, ../../../scss/_app_styles.scss */ + /* line 6110, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 15px; } } @media screen and (min-width: 1025px) { - /* line 6099, ../../../scss/_app_styles.scss */ + /* line 6117, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { float: right; margin-right: 70px; @@ -29284,73 +29301,73 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media screen and (max-width: 1024px) { - /* line 6099, ../../../scss/_app_styles.scss */ + /* line 6117, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { background-color: rgba(107, 0, 84, 0.97); } } -/* line 6112, ../../../scss/_app_styles.scss */ +/* line 6130, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6118, ../../../scss/_app_styles.scss */ +/* line 6136, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block { padding: 0px 15px; margin-left: -2px; border-right: 1px solid white; } -/* line 6122, ../../../scss/_app_styles.scss */ +/* line 6140, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block a { color: #ffc14f; } -/* line 6128, ../../../scss/_app_styles.scss */ +/* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 9px; } @media screen and (min-width: 1025px) { - /* line 6128, ../../../scss/_app_styles.scss */ + /* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 15px; } } -/* line 6136, ../../../scss/_app_styles.scss */ +/* line 6154, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 7px; } @media screen and (min-width: 1025px) { - /* line 6136, ../../../scss/_app_styles.scss */ + /* line 6154, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 15px; } } -/* line 6145, ../../../scss/_app_styles.scss */ +/* line 6163, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 6148, ../../../scss/_app_styles.scss */ +/* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button i { color: #71318b; } -/* line 6154, ../../../scss/_app_styles.scss */ +/* line 6172, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 6158, ../../../scss/_app_styles.scss */ +/* line 6176, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 6164, ../../../scss/_app_styles.scss */ +/* line 6182, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .pagination:not(i) { color: #a983b9; } -/* line 6172, ../../../scss/_app_styles.scss */ +/* line 6190, ../../../scss/_app_styles.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -29358,29 +29375,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 6179, ../../../scss/_app_styles.scss */ +/* line 6197, ../../../scss/_app_styles.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 6183, ../../../scss/_app_styles.scss */ +/* line 6201, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6189, ../../../scss/_app_styles.scss */ +/* line 6207, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6195, ../../../scss/_app_styles.scss */ +/* line 6213, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 6200, ../../../scss/_app_styles.scss */ +/* line 6218, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29390,25 +29407,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 6209, ../../../scss/_app_styles.scss */ +/* line 6227, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6213, ../../../scss/_app_styles.scss */ +/* line 6231, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6218, ../../../scss/_app_styles.scss */ +/* line 6236, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6227, ../../../scss/_app_styles.scss */ +/* line 6245, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29417,7 +29434,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6234, ../../../scss/_app_styles.scss */ +/* line 6252, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29426,15 +29443,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 6243, ../../../scss/_app_styles.scss */ +/* line 6261, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6248, ../../../scss/_app_styles.scss */ +/* line 6266, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6251, ../../../scss/_app_styles.scss */ +/* line 6269, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29442,21 +29459,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 6261, ../../../scss/_app_styles.scss */ +/* line 6279, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6267, ../../../scss/_app_styles.scss */ +/* line 6285, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6275, ../../../scss/_app_styles.scss */ +/* line 6293, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6277, ../../../scss/_app_styles.scss */ +/* line 6295, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29465,7 +29482,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6284, ../../../scss/_app_styles.scss */ +/* line 6302, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29473,11 +29490,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6293, ../../../scss/_app_styles.scss */ +/* line 6311, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6302, ../../../scss/_app_styles.scss */ +/* line 6320, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29489,48 +29506,48 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 6312, ../../../scss/_app_styles.scss */ +/* line 6330, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6317, ../../../scss/_app_styles.scss */ +/* line 6335, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6320, ../../../scss/_app_styles.scss */ +/* line 6338, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6329, ../../../scss/_app_styles.scss */ +/* line 6347, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6334, ../../../scss/_app_styles.scss */ +/* line 6352, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6338, ../../../scss/_app_styles.scss */ +/* line 6356, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6340, ../../../scss/_app_styles.scss */ +/* line 6358, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6343, ../../../scss/_app_styles.scss */ +/* line 6361, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6349, ../../../scss/_app_styles.scss */ +/* line 6367, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29539,7 +29556,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; } -/* line 6367, ../../../scss/_app_styles.scss */ +/* line 6385, ../../../scss/_app_styles.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -29547,26 +29564,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 10px; padding-right: 4px; } -/* line 6373, ../../../scss/_app_styles.scss */ +/* line 6391, ../../../scss/_app_styles.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 6378, ../../../scss/_app_styles.scss */ +/* line 6396, ../../../scss/_app_styles.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6384, ../../../scss/_app_styles.scss */ +/* line 6402, ../../../scss/_app_styles.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 6390, ../../../scss/_app_styles.scss */ +/* line 6408, ../../../scss/_app_styles.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29576,29 +29593,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 6399, ../../../scss/_app_styles.scss */ +/* line 6417, ../../../scss/_app_styles.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 6403, ../../../scss/_app_styles.scss */ +/* line 6421, ../../../scss/_app_styles.scss */ .activity-title > li > a { color: black; } -/* line 6412, ../../../scss/_app_styles.scss */ +/* line 6430, ../../../scss/_app_styles.scss */ .activity_page_rendered { margin-left: 20px; max-width: 900px; } /* Rating css */ -/* line 6420, ../../../scss/_app_styles.scss */ +/* line 6438, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 6422, ../../../scss/_app_styles.scss */ +/* line 6440, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -29606,19 +29623,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { unicode-bidi: bidi-override; direction: rtl; } -/* line 6430, ../../../scss/_app_styles.scss */ +/* line 6448, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 6432, ../../../scss/_app_styles.scss */ +/* line 6450, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 6438, ../../../scss/_app_styles.scss */ +/* line 6456, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 6440, ../../../scss/_app_styles.scss */ +/* line 6458, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -29631,7 +29648,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0; vertical-align: bottom; } -/* line 6452, ../../../scss/_app_styles.scss */ +/* line 6470, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -29639,32 +29656,32 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* WHITE STAR */ color: #888; } -/* line 6459, ../../../scss/_app_styles.scss */ +/* line 6477, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 6470, ../../../scss/_app_styles.scss */ +/* line 6488, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 6477, ../../../scss/_app_styles.scss */ +/* line 6495, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 6485, ../../../scss/_app_styles.scss */ +/* line 6503, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 6490, ../../../scss/_app_styles.scss */ +/* line 6508, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -29673,29 +29690,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-shadow: 0 0 1px #333; } -/* line 6500, ../../../scss/_app_styles.scss */ +/* line 6518, ../../../scss/_app_styles.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 6504, ../../../scss/_app_styles.scss */ +/* line 6522, ../../../scss/_app_styles.scss */ .input_links { margin-left: 10px; } -/* line 6506, ../../../scss/_app_styles.scss */ +/* line 6524, ../../../scss/_app_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 6512, ../../../scss/_app_styles.scss */ +/* line 6530, ../../../scss/_app_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 6520, ../../../scss/_app_styles.scss */ +/* line 6538, ../../../scss/_app_styles.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -29704,19 +29721,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 6529, ../../../scss/_app_styles.scss */ +/* line 6547, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 6534, ../../../scss/_app_styles.scss */ +/* line 6552, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 6540, ../../../scss/_app_styles.scss */ +/* line 6558, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -29724,12 +29741,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; margin-left: 12%; } -/* line 6548, ../../../scss/_app_styles.scss */ +/* line 6566, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 6554, ../../../scss/_app_styles.scss */ +/* line 6572, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -29738,21 +29755,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: none; color: #8E8E8E; } -/* line 6563, ../../../scss/_app_styles.scss */ +/* line 6581, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 6568, ../../../scss/_app_styles.scss */ +/* line 6586, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 6570, ../../../scss/_app_styles.scss */ +/* line 6588, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 6573, ../../../scss/_app_styles.scss */ +/* line 6591, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -29763,24 +29780,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #757575; margin-right: 20px; } -/* line 6583, ../../../scss/_app_styles.scss */ +/* line 6601, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 6587, ../../../scss/_app_styles.scss */ +/* line 6605, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 6590, ../../../scss/_app_styles.scss */ +/* line 6608, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 6595, ../../../scss/_app_styles.scss */ +/* line 6613, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 6599, ../../../scss/_app_styles.scss */ +/* line 6617, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -29792,7 +29809,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; color: #222222; } -/* line 6610, ../../../scss/_app_styles.scss */ +/* line 6628, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -29800,15 +29817,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 8px; top: 4px; } -/* line 6618, ../../../scss/_app_styles.scss */ +/* line 6636, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 6620, ../../../scss/_app_styles.scss */ +/* line 6638, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 6623, ../../../scss/_app_styles.scss */ +/* line 6641, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -29818,25 +29835,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { letter-spacing: 0.8px; color: #999999; } -/* line 6632, ../../../scss/_app_styles.scss */ +/* line 6650, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 6638, ../../../scss/_app_styles.scss */ +/* line 6656, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 6647, ../../../scss/_app_styles.scss */ +/* line 6665, ../../../scss/_app_styles.scss */ .icon-color { color: #2e3f51 !important; padding: right; } /* The asset tile */ -/* line 6657, ../../../scss/_app_styles.scss */ +/* line 6675, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29846,7 +29863,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 6666, ../../../scss/_app_styles.scss */ +/* line 6684, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -29863,7 +29880,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 6679, ../../../scss/_app_styles.scss */ +/* line 6697, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -29873,28 +29890,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 6688, ../../../scss/_app_styles.scss */ +/* line 6706, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 6693, ../../../scss/_app_styles.scss */ +/* line 6711, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 6698, ../../../scss/_app_styles.scss */ +/* line 6716, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 6704, ../../../scss/_app_styles.scss */ +/* line 6722, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 6708, ../../../scss/_app_styles.scss */ +/* line 6726, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -29907,7 +29924,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 6721, ../../../scss/_app_styles.scss */ +/* line 6739, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -29921,7 +29938,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 6736, ../../../scss/_app_styles.scss */ +/* line 6754, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -29930,22 +29947,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6745, ../../../scss/_app_styles.scss */ +/* line 6763, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6752, ../../../scss/_app_styles.scss */ +/* line 6770, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6758, ../../../scss/_app_styles.scss */ +/* line 6776, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6760, ../../../scss/_app_styles.scss */ +/* line 6778, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -29954,15 +29971,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6767, ../../../scss/_app_styles.scss */ +/* line 6785, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6771, ../../../scss/_app_styles.scss */ +/* line 6789, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6777, ../../../scss/_app_styles.scss */ +/* line 6795, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -29971,7 +29988,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6788, ../../../scss/_app_styles.scss */ +/* line 6806, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -29980,24 +29997,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6797, ../../../scss/_app_styles.scss */ +/* line 6815, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6804, ../../../scss/_app_styles.scss */ +/* line 6822, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 6809, ../../../scss/_app_styles.scss */ +/* line 6827, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 6813, ../../../scss/_app_styles.scss */ +/* line 6831, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -30008,14 +30025,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 6823, ../../../scss/_app_styles.scss */ +/* line 6841, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 6830, ../../../scss/_app_styles.scss */ + /* line 6848, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30023,7 +30040,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6839, ../../../scss/_app_styles.scss */ + /* line 6857, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30031,7 +30048,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6846, ../../../scss/_app_styles.scss */ + /* line 6864, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30039,14 +30056,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6853, ../../../scss/_app_styles.scss */ + /* line 6871, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 6861, ../../../scss/_app_styles.scss */ +/* line 6879, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30061,14 +30078,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6877, ../../../scss/_app_styles.scss */ +/* line 6895, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 6884, ../../../scss/_app_styles.scss */ + /* line 6902, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30079,7 +30096,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6895, ../../../scss/_app_styles.scss */ + /* line 6913, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30090,7 +30107,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6906, ../../../scss/_app_styles.scss */ + /* line 6924, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30101,7 +30118,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6917, ../../../scss/_app_styles.scss */ + /* line 6935, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30111,7 +30128,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6928, ../../../scss/_app_styles.scss */ +/* line 6946, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30126,14 +30143,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6944, ../../../scss/_app_styles.scss */ +/* line 6962, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 6951, ../../../scss/_app_styles.scss */ + /* line 6969, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30144,7 +30161,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6962, ../../../scss/_app_styles.scss */ + /* line 6980, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30155,7 +30172,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6973, ../../../scss/_app_styles.scss */ + /* line 6991, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30166,7 +30183,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6984, ../../../scss/_app_styles.scss */ + /* line 7002, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30176,11 +30193,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6995, ../../../scss/_app_styles.scss */ +/* line 7013, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 6997, ../../../scss/_app_styles.scss */ +/* line 7015, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30189,11 +30206,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 7005, ../../../scss/_app_styles.scss */ +/* line 7023, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 7011, ../../../scss/_app_styles.scss */ +/* line 7029, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30202,7 +30219,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7022, ../../../scss/_app_styles.scss */ +/* line 7040, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30213,22 +30230,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7032, ../../../scss/_app_styles.scss */ +/* line 7050, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7035, ../../../scss/_app_styles.scss */ +/* line 7053, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7040, ../../../scss/_app_styles.scss */ +/* line 7058, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7051, ../../../scss/_app_styles.scss */ +/* line 7069, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30239,26 +30256,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7061, ../../../scss/_app_styles.scss */ +/* line 7079, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7064, ../../../scss/_app_styles.scss */ +/* line 7082, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7068, ../../../scss/_app_styles.scss */ +/* line 7086, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7074, ../../../scss/_app_styles.scss */ +/* line 7092, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7076, ../../../scss/_app_styles.scss */ +/* line 7094, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30267,7 +30284,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7085, ../../../scss/_app_styles.scss */ +/* line 7103, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30276,7 +30293,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7099, ../../../scss/_app_styles.scss */ +/* line 7117, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -30286,20 +30303,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Asset detail */ -/* line 7110, ../../../scss/_app_styles.scss */ +/* line 7128, ../../../scss/_app_styles.scss */ .overlay-head { background-color: #fff; height: 60px; margin-bottom: 20px; } -/* line 7116, ../../../scss/_app_styles.scss */ +/* line 7134, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7121, ../../../scss/_app_styles.scss */ +/* line 7139, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30313,13 +30330,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7133, ../../../scss/_app_styles.scss */ +/* line 7151, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7140, ../../../scss/_app_styles.scss */ +/* line 7158, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30331,7 +30348,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7151, ../../../scss/_app_styles.scss */ +/* line 7169, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30339,13 +30356,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7160, ../../../scss/_app_styles.scss */ +/* line 7178, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7168, ../../../scss/_app_styles.scss */ +/* line 7186, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30363,12 +30380,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7184, ../../../scss/_app_styles.scss */ +/* line 7202, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7189, ../../../scss/_app_styles.scss */ +/* line 7207, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30380,13 +30397,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7199, ../../../scss/_app_styles.scss */ +/* line 7217, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7207, ../../../scss/_app_styles.scss */ +/* line 7225, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30403,13 +30420,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7222, ../../../scss/_app_styles.scss */ +/* line 7240, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* line 7233, ../../../scss/_app_styles.scss */ +/* line 7251, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -30417,7 +30434,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-size: 100% 100%; position: relative; } -/* line 7240, ../../../scss/_app_styles.scss */ +/* line 7258, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -30431,13 +30448,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7254, ../../../scss/_app_styles.scss */ +/* line 7272, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 7259, ../../../scss/_app_styles.scss */ +/* line 7277, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -30446,60 +30463,60 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow: hidden; background-color: #fff; } -/* line 7267, ../../../scss/_app_styles.scss */ +/* line 7285, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 7272, ../../../scss/_app_styles.scss */ +/* line 7290, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 7277, ../../../scss/_app_styles.scss */ +/* line 7295, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 7282, ../../../scss/_app_styles.scss */ +/* line 7300, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 7290, ../../../scss/_app_styles.scss */ +/* line 7308, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 7294, ../../../scss/_app_styles.scss */ +/* line 7312, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 7304, ../../../scss/_app_styles.scss */ +/* line 7322, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -19.3px; } -/* line 7311, ../../../scss/_app_styles.scss */ +/* line 7329, ../../../scss/_app_styles.scss */ .course-students-data { margin: 2px 2px 2px 2px; border: 2px solid #164a7b; padding: 19px 14px 0px 5px; } -/* line 7318, ../../../scss/_app_styles.scss */ +/* line 7336, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 7321, ../../../scss/_app_styles.scss */ +/* line 7339, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 7329, ../../../scss/_app_styles.scss */ +/* line 7347, ../../../scss/_app_styles.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -30515,7 +30532,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7348, ../../../scss/_app_styles.scss */ +/* line 7366, ../../../scss/_app_styles.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -30525,7 +30542,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7357, ../../../scss/_app_styles.scss */ +/* line 7375, ../../../scss/_app_styles.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -30535,7 +30552,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 7366, ../../../scss/_app_styles.scss */ +/* line 7384, ../../../scss/_app_styles.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss index c80f47b21d..dc6ec4b80c 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss @@ -5326,6 +5326,24 @@ $unit-card-lines-to-show: 3; letter-spacing: 0.4px; } + +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family:OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + //border: 2px solid #ffc14e; + background-color: #000000b8; + letter-spacing: 0.4px; +} + .icon-widget{ font-size:24px; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss index d15e25a639..190135fefb 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss @@ -5546,6 +5546,22 @@ ul.authoring-tab{ letter-spacing: 0.4px; } +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family:OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + //border: 2px solid #ffc14e; + background-color: #000000b8; + letter-spacing: 0.4px; +} .lesson-dropdown ul { display:none; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_group.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_group.html index 0cd199c981..a6fb9eb41b 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_group.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_group.html @@ -20,7 +20,7 @@ {% if "base_unit" in node.member_of_names_list %}
    DRAFT
    {% elif "Group" in node.member_of_names_list %} -
    Workspaces
    +
    Workspaces
    {% endif %} {% if get_status %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html index 0dfb604af8..22a81a5bcb 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html @@ -120,7 +120,7 @@

    {% if request.user.is_authenticated %}
  • - My Desk + My Desk
  • {% endif %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/repository.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/repository.html index 8a28b093a8..2d08635bb7 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/repository.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/repository.html @@ -15,9 +15,9 @@ {% block body_content %} - +
    @@ -36,7 +36,8 @@ {% elif each_gapp.name %} {% trans each_gapp.name %} {% endif %} -

    + +
    {{each_gapp.content_org|truncatechars:60 }}
    From 0d5c0319f761ed6d1b5ef18a76c87a4a8e12758d Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Fri, 12 Jan 2018 18:50:56 +0530 Subject: [PATCH 242/766] removed conflicts and making pull from kedar git to siddhu lcal repo --- .../ndf/templates/maintenance.html | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 gnowsys-ndf/gnowsys_ndf/ndf/templates/maintenance.html diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/maintenance.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/maintenance.html new file mode 100755 index 0000000000..7ddde7e3a4 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/maintenance.html @@ -0,0 +1,25 @@ + + + Under Maintenance + + + + + +

    Site Under Maintenance

    +

    We’ll be back soon!

    + +
    +

    Sorry for the inconvenience but we’re performing some maintenance at the moment. We’ll be back online shortly!

    +

    Please visit after 02.30 pm (IST)

    +

    — The clix team

    +
    + + + From d92f12235b18e9eb91a52b5b05c6b31209232b76 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 15 Jan 2018 14:11:42 +0530 Subject: [PATCH 243/766] Partially event calender updated --- .../ndf/templates/ndf/test_template.html | 140 ++++++++++-------- gnowsys-ndf/gnowsys_ndf/ndf/views/event.py | 64 ++------ gnowsys-ndf/gnowsys_ndf/ndf/views/group.py | 1 + 3 files changed, 94 insertions(+), 111 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html index 001f7c1a56..808dbb2de2 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html @@ -1,21 +1,11 @@ {% extends "ndf/gbase.html" %} {% load i18n %} {% load ndf_tags %} -{% block body_content %} - - - - - - - - - - + + + + + + + -
    - -
    - +
    +
    +
    -
    +
    {% trans "Name" %}
    -
    +
    -


    +
    {% if not no_altnames %} -
    +
    {% trans "Display Name" %}
    -
    - +
    {% endif %} {{source_obj.name}}
    - +
    -
    -
    +
    +
    {% trans "Description" %}

    -
    +
    {% include "ndf/html_editor.html" with var_name="content" var_value=node_obj.content node_id=node_obj.pk ckeditor_toolbar=editor_type %}
    @@ -72,7 +72,7 @@
    {{k}}
    {% endfor %}
    - + {% if cancel_url %} {% endcomment %} - {% trans "Cancel" %} - + {% trans "Cancel" %} +
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/registration/login.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/registration/login.html index 5f09fa75c3..f5705e375e 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/registration/login.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/registration/login.html @@ -28,9 +28,8 @@

    {% trans "Log In" %}

    -
    -
    +

    {% if form.errors %} {% trans "Either your email or password is incorrect !" %} @@ -82,7 +81,7 @@

    {% trans "Log In" %}

    {% endif %}
    -
    +
    From f451081eb8d1c5e922109eadaa19a2dc42d3c2f6 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Mon, 15 Jan 2018 19:07:45 +0530 Subject: [PATCH 248/766] Hide exploer secondary header --- .../gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css | 1 + .../ndf/static/ndf/css/themes/metastudio/styles.css | 1 + .../gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css | 1 + .../gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css | 1 + gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss | 2 +- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/module_detail.html | 5 +++-- 6 files changed, 8 insertions(+), 3 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css index e4a7a83304..c289da3fc7 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css @@ -28689,6 +28689,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; + height: 200px; overflow-y: auto; background: url("/static/ndf/images/course-cover.png") no-repeat; background-size: 100% 100%; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css index e207db4fca..73e9cdfce1 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css @@ -28712,6 +28712,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; + height: 200px; overflow-y: auto; background: url("/static/ndf/images/course-cover.png") no-repeat; background-size: 100% 100%; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css index 12af4aef04..b8f554b7b9 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css @@ -28805,6 +28805,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; + height: 200px; overflow-y: auto; background: url("/static/ndf/images/course-cover.png") no-repeat; background-size: 100% 100%; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css index e207db4fca..73e9cdfce1 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css @@ -28712,6 +28712,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; + height: 200px; overflow-y: auto; background: url("/static/ndf/images/course-cover.png") no-repeat; background-size: 100% 100%; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss index e59a3f1539..6657d7f4b7 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss @@ -5457,7 +5457,7 @@ ul.horizontal_tabs_gstudio { .group_banner { @include transition-prop(all); - //height: 300px; + height: 200px; overflow-y: auto; background: url('/static/ndf/images/course-cover.png') no-repeat; background-size: 100% 100%; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/module_detail.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/module_detail.html index f1dacddbfa..1d8c97a2a7 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/module_detail.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/module_detail.html @@ -7,9 +7,10 @@ {% block body_content %} {% check_is_gstaff group_id request.user as is_gstaff %} - +{% comment %} {% include 'ndf/explore_secondary_header.html' %} -
    +{% endcomment %} +
    {% include 'ndf/widget_photo_upload.html' with url_name='module_detail' widget_for="group_banner" is_banner=True no_update_btn=True node=node groupid=group_id if_module=True %}
    From b80ba9e141a930064ab923b0bdfea77edb5333cb Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Mon, 15 Jan 2018 19:13:26 +0530 Subject: [PATCH 249/766] calender added --- .../gnowsys_ndf/ndf/templates/ndf/gevent.html | 373 ++++++++++++++++++ 1 file changed, 373 insertions(+) create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html new file mode 100644 index 0000000000..60dd99fadc --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html @@ -0,0 +1,373 @@ +{% extends "ndf/gbase.html" %} +{% load i18n %} +{% load ndf_tags %} +{% block title %} {% trans "Events" %} {% endblock %} + + +{% block body_content %} + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    +
    + +
    +
    + + + + + + +{% endblock body_content %} From 0eff3a3208f5bf5ea5b55a9044c7c36cfbc09138 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Tue, 16 Jan 2018 12:28:32 +0530 Subject: [PATCH 250/766] conflicts resolved --- .../static/ndf/css/themes/clix/clix2017.css | 7001 ++++++++++++++++- .../ndf/static/ndf/scss/_clix2017.scss | 8 +- gnowsys-ndf/gnowsys_ndf/ndf/views/event.py | 2 +- gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py | 7 +- gnowsys-ndf/gnowsys_ndf/ndf/views/group.py | 1 - 5 files changed, 6942 insertions(+), 77 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css index e206ecc0e1..f40627d133 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css @@ -1,68 +1,6937 @@ /* -Error: Invalid CSS after " }": expected selector or at-rule, was "}" - on line 5085 of /home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss - from line 18 of /home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/themes/clix/clix2017.scss - -5080: } -5081: -5082: } -5083: } -5084: -5085: } -5086: -5087: ul.authoring-tab{ -5088: background-color:$nav_menu_1_color; -5089: margin-bottom: 0px; -5090: display:inline; - -Backtrace: -/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss:5085 -/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/themes/clix/clix2017.scss:18 -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/scss/parser.rb:1209:in `expected' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/scss/parser.rb:1137:in `expected' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/scss/parser.rb:42:in `parse' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/engine.rb:406:in `_to_tree' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/engine.rb:312:in `to_tree' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:326:in `block in visit_import' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/stack.rb:88:in `block in with_import' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/stack.rb:115:in `with_frame' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/stack.rb:88:in `with_import' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:325:in `visit_import' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:36:in `visit' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:160:in `block in visit' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/stack.rb:79:in `block in with_base' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/stack.rb:115:in `with_frame' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/stack.rb:79:in `with_base' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:160:in `visit' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:52:in `block in visit_children' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:52:in `map' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:52:in `visit_children' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:169:in `block in visit_children' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:181:in `with_environment' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:168:in `visit_children' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:36:in `block in visit' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:188:in `visit_root' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/visitors/base.rb:36:in `visit' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:159:in `visit' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/visitors/perform.rb:8:in `visit' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/root_node.rb:36:in `css_tree' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/tree/root_node.rb:20:in `render' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/engine.rb:281:in `render' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/plugin/compiler.rb:494:in `update_stylesheet' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/plugin/compiler.rb:215:in `block in update_stylesheets' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/plugin/compiler.rb:209:in `each' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/plugin/compiler.rb:209:in `update_stylesheets' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/plugin/compiler.rb:473:in `on_file_changed' -/var/lib/gems/1.9.1/gems/sass-3.4.23/lib/sass/plugin/compiler.rb:331:in `block in watch' -/var/lib/gems/1.9.1/gems/sass-3.4.23/vendor/listen/lib/listen/listener.rb:252:in `call' -/var/lib/gems/1.9.1/gems/sass-3.4.23/vendor/listen/lib/listen/listener.rb:252:in `on_change' -/var/lib/gems/1.9.1/gems/sass-3.4.23/vendor/listen/lib/listen/listener.rb:290:in `block in initialize_adapter' -/var/lib/gems/1.9.1/gems/sass-3.4.23/vendor/listen/lib/listen/adapter.rb:254:in `call' -/var/lib/gems/1.9.1/gems/sass-3.4.23/vendor/listen/lib/listen/adapter.rb:254:in `report_changes' -/var/lib/gems/1.9.1/gems/sass-3.4.23/vendor/listen/lib/listen/adapter.rb:323:in `poll_changed_directories' -/var/lib/gems/1.9.1/gems/sass-3.4.23/vendor/listen/lib/listen/adapter.rb:299:in `block in start_poller' +* CLIx Customization SASS */ -body:before { - white-space: pre; - font-family: monospace; - content: "Error: Invalid CSS after \" }\": expected selector or at-rule, was \"}\"\A on line 5085 of /home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss\A from line 18 of /home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/themes/clix/clix2017.scss\A \A 5080: }\A 5081: \A 5082: }\A 5083: }\A 5084: \A 5085: }\A 5086: \A 5087: ul.authoring-tab{\A 5088: background-color:$nav_menu_1_color;\A 5089: margin-bottom: 0px;\A 5090: display:inline;"; } +/*Blue color variable*/ +/*Orange color variables*/ +/* line 25, ../../../scss/_clix2017.scss */ +html { + height: 100%; +} + +/* line 28, ../../../scss/_clix2017.scss */ +body { + background: #eefaff; + height: 100%; + margin: 0; + background-repeat: no-repeat; + background-attachment: fixed; + font-family: 'OpenSans-Regular', sans-serif; + overflow-x: hidden; +} + +/* line 40, ../../../scss/_clix2017.scss */ +h3 { + font-size: 20px; + color: #164A7B; + font-family: 'OpenSans-Semibold'; +} + +/* line 46, ../../../scss/_clix2017.scss */ +h5 { + color: #99aaba; + font-size: 10px; + text-transform: uppercase; + letter-spacing: 2px; + margin-left: 5px; +} + +/* line 57, ../../../scss/_clix2017.scss */ +.overlay-head { + background-color: #fff; + height: 60px; + margin-bottom: 20px; +} + +/* line 64, ../../../scss/_clix2017.scss */ +.icon-widget { + font-size: 24px; +} + +/* line 69, ../../../scss/_clix2017.scss */ +.icon-color { + color: #2e3f51 !important; + padding: right; +} + +/* line 74, ../../../scss/_clix2017.scss */ +.icon-wid { + font-size: 34px; + color: #a2b1be; + margin-right: 10px; +} + +/* line 80, ../../../scss/_clix2017.scss */ +.symbol-wid { + cursor: pointer; + font-size: 29px; + color: #a2b1be; + margin-right: 0px; + margin-top: 40px; +} + +/* line 88, ../../../scss/_clix2017.scss */ +.buddy-wid { + font-size: 34px; + color: #a2b1be; + margin-right: 30px; + margin-top: 8px; +} + +/* Landing page */ +/* line 99, ../../../scss/_clix2017.scss */ +.landing_page { + position: relative; + text-align: center; +} +/* line 104, ../../../scss/_clix2017.scss */ +.landing_page .panel { + background-color: inherit; + border: none; +} +/* line 109, ../../../scss/_clix2017.scss */ +.landing_page .landing_page_background { + height: 100vh; + width: 100%; + position: absolute; + z-index: -1; +} +/* line 117, ../../../scss/_clix2017.scss */ +.landing_page .clix_brief { + text-align: left; + padding: 20px 5%; +} +/* line 121, ../../../scss/_clix2017.scss */ +.landing_page .clix_brief img { + margin: 30px 20px; + height: 70px; +} +@media screen and (max-width: 450px) { + /* line 121, ../../../scss/_clix2017.scss */ + .landing_page .clix_brief img { + margin: 25px 10px; + height: 55px; + } +} +/* line 129, ../../../scss/_clix2017.scss */ +.landing_page .clix_brief p { + color: #fff; + font-weight: 300; +} +/* line 142, ../../../scss/_clix2017.scss */ +.landing_page .invitation_to_clix { + background-color: rgba(255, 255, 255, 0.92); + border-radius: 10px; + width: 100%; + margin: 20px auto; + text-align: left; + padding: 30px 40px 21px; +} +@media screen and (min-width: 1025px) { + /* line 142, ../../../scss/_clix2017.scss */ + .landing_page .invitation_to_clix { + margin: 30px; + } +} +/* line 154, ../../../scss/_clix2017.scss */ +.landing_page .invitation_to_clix > span { + color: #6658af; + font-weight: bold; + letter-spacing: 0.2px; + text-transform: uppercase; + display: inline-block; + vertical-align: middle; +} +/* line 164, ../../../scss/_clix2017.scss */ +.landing_page .invitation_to_clix p { + color: #b0108d; + padding: 25px 0px 30px; + font-weight: 300; +} +/* line 172, ../../../scss/_clix2017.scss */ +.landing_page .invitation_to_clix img { + height: 30px; +} +/* line 175, ../../../scss/_clix2017.scss */ +.landing_page .invitation_to_clix form { + margin-top: 30px; +} +/* line 178, ../../../scss/_clix2017.scss */ +.landing_page .invitation_to_clix form input { + height: 45px; + margin: 5px 0px 24px; +} +/* line 184, ../../../scss/_clix2017.scss */ +.landing_page .invitation_to_clix .flowers { + left: 50px; + height: 200px; + width: 100%; + bottom: 0px; + opacity: 0.6; +} +@media screen and (max-width: 450px) { + /* line 184, ../../../scss/_clix2017.scss */ + .landing_page .invitation_to_clix .flowers { + width: 100%; + } +} +@media screen and (min-width: 451px) and (max-width: 1025px) { + /* line 184, ../../../scss/_clix2017.scss */ + .landing_page .invitation_to_clix .flowers { + width: 100%; + } +} +/* line 199, ../../../scss/_clix2017.scss */ +.landing_page .invitation_to_clix .bees { + position: absolute; + top: 5px; + right: 50px; + height: 100px; + float: left; +} +@media screen and (max-width: 450px) { + /* line 199, ../../../scss/_clix2017.scss */ + .landing_page .invitation_to_clix .bees { + right: 15px; + height: 50px; + } +} +/* line 213, ../../../scss/_clix2017.scss */ +.landing_page .invitation_to_clix .landing-page-text { + color: #6153ae; +} +/* line 221, ../../../scss/_clix2017.scss */ +.landing_page input.button { + border-radius: 10px; + text-transform: uppercase; + background-color: #164A7B; + margin-top: 80px; + background-color: rgba(255, 193, 78, 0.3); +} +/* line 231, ../../../scss/_clix2017.scss */ +.landing_page a.grey { + color: #999; + /*display: inline-block; + padding: 6px 12px; + background: #B0108D; + color: #fff; + font-weight: 600; + font-family: 'ubuntu-bold'; + text-transform: uppercase;*/ +} + +/* Login Page */ +/* line 247, ../../../scss/_clix2017.scss */ +.login-page { + position: relative; + /*background: url(/static/ndf/images/login-background.png);*/ + background-size: 100% 100%; + min-height: 100vh; +} +/* line 253, ../../../scss/_clix2017.scss */ +.login-page .login-page-opacity { + height: 100%; + width: 100%; + position: absolute; + opacity: 0.6; +} +/* line 265, ../../../scss/_clix2017.scss */ +.login-page .login-page-form { + background-color: #fff; + border-radius: 10px; + padding: 10px 40px; + opacity: 0.95; + max-width: 90%; + width: 350px; + margin: 100px auto; + box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); +} +/* line 276, ../../../scss/_clix2017.scss */ +.login-page .login-page-form .login-page-header img { + height: 80px; + width: 280px; +} +/* line 280, ../../../scss/_clix2017.scss */ +.login-page .login-page-form .login-page-header span { + display: block; + text-transform: uppercase; + color: #d5d5d5; + font-weight: 600; + letter-spacing: 1px; +} +/* line 288, ../../../scss/_clix2017.scss */ +.login-page .login-page-form .login-captcha { + margin: 10px 0; +} +/* line 291, ../../../scss/_clix2017.scss */ +.login-page .login-page-form .login-captcha > div { + display: inline-block; + vertical-align: top; +} +/* line 295, ../../../scss/_clix2017.scss */ +.login-page .login-page-form .login-captcha .fi-refresh { + color: #A0148E; +} +/* line 300, ../../../scss/_clix2017.scss */ +.login-page .login-page-form .login-captcha #captcha-content th { + display: none; +} +/* line 303, ../../../scss/_clix2017.scss */ +.login-page .login-page-form .login-captcha #captcha-content td > input { + display: inline-block; +} +/* line 306, ../../../scss/_clix2017.scss */ +.login-page .login-page-form .login-captcha #captcha-content td > input#id_captcha_1 { + width: 130px; +} +/* line 313, ../../../scss/_clix2017.scss */ +.login-page .login-page-form .login-button .button { + background-color: #B1B1B1; + font-weight: 600; + border-bottom: 3.5px solid #DADADA; + border-radius: 5px; + padding: 9px; +} +/* line 321, ../../../scss/_clix2017.scss */ +.login-page .login-page-form .login-button .button:hover { + background-color: #CC1AB5; + border-color: #881378; +} +/* line 329, ../../../scss/_clix2017.scss */ +.login-page .login-page-form .explore-button .button { + background-color: #B1B1B1; + font-weight: 600; + border-bottom: 3.5px solid #DADADA; + border-radius: 5px; + padding: 9px; + margin-top: 160px; +} +/* line 338, ../../../scss/_clix2017.scss */ +.login-page .login-page-form .explore-button .button:hover { + background-color: #CC1AB5; + border-color: #881378; +} +/* line 348, ../../../scss/_clix2017.scss */ +.login-page .login-page-form .forgot-password label { + text-align: center; + text-decoration: underline; +} +/* line 355, ../../../scss/_clix2017.scss */ +.login-page .login-page-form .register-user label { + margin: 10px 0px 0px; +} +/* line 359, ../../../scss/_clix2017.scss */ +.login-page .login-page-form .register-user span { + color: #A0148E; +} + +/* line 368, ../../../scss/_clix2017.scss */ +.explore-button { + border-radius: 5px; + text-transform: uppercase; + margin-left: 150px; + color: #ffffff; + padding: 5px 17px; + width: inherit; + font-family: "OpenSans-Semibold", sans-serif; + border: 2px solid #6a0054; + background-color: #6a0054; +} +/* line 379, ../../../scss/_clix2017.scss */ +.explore-button:hover { + background-color: #ffffff; + cursor: pointer; + color: #6a0054; +} + +/* line 387, ../../../scss/_clix2017.scss */ +.login-home-button { + border-radius: 5px; + text-transform: uppercase; + margin-left: 70px; + color: #ffc14e; + padding: 6px 17px; + font-family: "OpenSans-Semibold", sans-serif; + margin-top: 50px; + border: 2px solid #ffc14e; +} +/* line 397, ../../../scss/_clix2017.scss */ +.login-home-button:hover { + background-color: rgba(255, 193, 78, 0.3); + cursor: pointer; + color: white; +} + +/* line 407, ../../../scss/_clix2017.scss */ +.top-bar-second, .top-bar-second .name { + height: 55px; + background: #ddeff9; + color: #719dc9; + margin-bottom: 30px; +} + +/* line 417, ../../../scss/_clix2017.scss */ +.top-bar-second .title-area { + box-shadow: 0px 0.6px 3px #000; + z-index: 20; + width: 100%; +} +/* line 422, ../../../scss/_clix2017.scss */ +.top-bar-second .name { + text-align: center; +} +/* line 425, ../../../scss/_clix2017.scss */ +.top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { + position: absolute; + left: 15px; + color: #fff; + font-weight: 100; +} +/* line 435, ../../../scss/_clix2017.scss */ +.top-bar-second li.toggle-topbar i { + color: #fff; + display: inline-block; + vertical-align: bottom; +} +/* line 443, ../../../scss/_clix2017.scss */ +.top-bar-second .top-bar-second-section ul li { + background: #164A7B; +} +/* line 445, ../../../scss/_clix2017.scss */ +.top-bar-second .top-bar-second-section ul li > a { + border-left: 3px solid transparent; + border-bottom: 1px solid #4b5b6b; + color: #74b3dc; + line-height: 40px; + font-weight: bold; + letter-spacing: 0.5px; +} +/* line 456, ../../../scss/_clix2017.scss */ +.top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { + border-left-color: #ffc14e; + color: #ce7869; +} +/* line 464, ../../../scss/_clix2017.scss */ +.top-bar-second .top-bar-second-section .dropdown li.parent-link a { + display: none; +} +/* line 470, ../../../scss/_clix2017.scss */ +.top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { + color: #2e3f51; + background: #acd4fa; +} + +@media screen and (min-width: 40.063em) { + /* line 481, ../../../scss/_clix2017.scss */ + .top-bar-second .title-area { + box-shadow: none; + } + /* line 483, ../../../scss/_clix2017.scss */ + .top-bar-second .title-area .name { + text-align: right; + } + /* line 490, ../../../scss/_clix2017.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { + cursor: pointer; + background: transparent; + border-bottom: 0px; + line-height: 52px; + border-left-width: 0px; + } + /* line 497, ../../../scss/_clix2017.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { + color: #ce7869; + border-bottom: 3px solid #ffc14e; + } + /* line 503, ../../../scss/_clix2017.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { + color: #ce7869; + border-bottom: 3px solid #ffc14e; + } + /* line 511, ../../../scss/_clix2017.scss */ + .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { + color: #74b3dc; + border-bottom: 0px; + } + /* line 521, ../../../scss/_clix2017.scss */ + .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { + background: transparent; + } + /* line 530, ../../../scss/_clix2017.scss */ + .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { + border-left-width: 2px; + color: #74b3dc; + background: #164A7B; + } + /* line 537, ../../../scss/_clix2017.scss */ + .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { + background: #164A7B; + color: #74b3dc; + border-bottom: 0px; + border-left-width: 2px; + /*&:hover { + color: $secondry-blue; + border-bottom: 0px; + }*/ + } +} +/*Overridding foundation css*/ +/* line 560, ../../../scss/_clix2017.scss */ +.top-bar, .top-bar .name { + height: 52px; + background: #164A7B; +} + +/* line 567, ../../../scss/_clix2017.scss */ +.top-bar .title-area { + box-shadow: 0px 0.6px 3px #000; + z-index: 20; +} +/* line 571, ../../../scss/_clix2017.scss */ +.top-bar .name { + text-align: center; +} +/* line 574, ../../../scss/_clix2017.scss */ +.top-bar .name .close-dropdown, .top-bar .name .side-bar-button { + position: absolute; + left: 15px; + color: #fff; + font-weight: 100; +} +/* line 583, ../../../scss/_clix2017.scss */ +.top-bar li.toggle-topbar i { + color: #fff; + display: inline-block; + vertical-align: bottom; +} +/* line 591, ../../../scss/_clix2017.scss */ +.top-bar .top-bar-section ul.left li { + border-right: 2px solid #16539f; +} +/* line 596, ../../../scss/_clix2017.scss */ +.top-bar .top-bar-section ul li { + /* background: $primary-blue; */ + background: rgba(22, 74, 123, 0.04); +} +/* line 601, ../../../scss/_clix2017.scss */ +.top-bar .top-bar-section ul li > a { + color: #ffffff; + line-height: 40px; + font-weight: 500; + letter-spacing: 1px; + display: block; + padding: 12px 0 12px 0; + font-family: "OpenSans-Regular"; + font-size: 16px; +} +/* line 613, ../../../scss/_clix2017.scss */ +.top-bar .top-bar-section ul li:hover > a { + color: #fff; +} +/* line 623, ../../../scss/_clix2017.scss */ +.top-bar .top-bar-section ul li input { + color: #74b3dc; + background: #164A7B; + font-family: OpenSans-Regular; + font-size: 15px; + letter-spacing: 1.4px; +} +/* line 631, ../../../scss/_clix2017.scss */ +.top-bar .top-bar-section ul li input:hover { + color: white; + border-left: 4px solid #ffc14e; + background: #164A7B; +} +/* line 638, ../../../scss/_clix2017.scss */ +.top-bar .top-bar-section ul li .lang-font { + font-family: "OpenSans-Light"; + font-size: 14px; +} +/* line 645, ../../../scss/_clix2017.scss */ +.top-bar .top-bar-section ul li.active { + color: #fff; +} +/* line 650, ../../../scss/_clix2017.scss */ +.top-bar .top-bar-section ul li.active > a { + color: #fff; +} +/* line 658, ../../../scss/_clix2017.scss */ +.top-bar .top-bar-section .dropdown li.parent-link a { + display: none; +} +/* line 665, ../../../scss/_clix2017.scss */ +.top-bar .top-bar-section .side-bar-menu .add_buddy i { + color: #2e3f51; + background: #acd4fa; +} + +@media screen and (min-width: 40.063em) { + /* line 676, ../../../scss/_clix2017.scss */ + .top-bar .title-area { + box-shadow: none; + } + /* line 678, ../../../scss/_clix2017.scss */ + .top-bar .title-area .name { + text-align: right; + } + /* line 683, ../../../scss/_clix2017.scss */ + .top-bar .top-bar-section ul.left li > a { + padding: 0px 30px; + } + /* line 685, ../../../scss/_clix2017.scss */ + .top-bar .top-bar-section ul.left li > a.active { + color: #fff; + font-size: 17px; + font-family: OpenSans-Bold; + margin-top: -3px; + border-bottom: 3px solid #ffc14e; + } + /* line 698, ../../../scss/_clix2017.scss */ + .top-bar .top-bar-section li:not(.has-form) a:not(.button) { + cursor: pointer; + background: transparent; + border-bottom: 0px; + line-height: 52px; + border-left-width: 0px; + font-family: OpenSans-Regular; + } + /* line 708, ../../../scss/_clix2017.scss */ + .top-bar .top-bar-section li:not(.has-form).active a:not(.button) { + color: #fff; + font-family: OpenSans-Bold; + font-size: 18px; + } + /* line 719, ../../../scss/_clix2017.scss */ + .top-bar .top-bar-section li:not(.has-form).has-dropdown a:not(.button) .logout:hover { + color: #74b3dc; + border-bottom: 0px; + border-left: 3px solid #ffc14e; + } + /* line 728, ../../../scss/_clix2017.scss */ + .top-bar .top-bar-section li:not(.has-form).active:not(.has-form) a:not(.button):hover { + background: transparent; + color: #fff; + } + /* line 737, ../../../scss/_clix2017.scss */ + .top-bar .top-bar-section .profile-menu > a svg { + height: 52px; + width: 52px; + vertical-align: top; + background: #fff; + margin-right: 15px; + } + /* line 748, ../../../scss/_clix2017.scss */ + .top-bar .top-bar-section .dropdown li:not(.has-form) > a:not(.button) { + border-left-width: 2px; + color: #74b3dc; + background: #164A7B; + } + /* line 756, ../../../scss/_clix2017.scss */ + .top-bar .top-bar-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar .top-bar-section .dropdown li:not(.has-form).active a:not(.button) { + background: #164A7B; + color: #50c2fa; + border-bottom: 0px; + border-left-width: 2px; + /*&:hover { + color: $secondry-blue; + border-bottom: 0px; + }*/ + } +} +/*Custom css*/ +/* line 779, ../../../scss/_clix2017.scss */ +[class*="column"] + [class*="column"]:last-child { + float: left; +} + +/* line 783, ../../../scss/_clix2017.scss */ +.icons-medium { + line-height: 23px; + vertical-align: sub; +} + +/* line 788, ../../../scss/_clix2017.scss */ +.icons-large { + line-height: 45px; +} + +/* line 793, ../../../scss/_clix2017.scss */ +.round-icon { + border-radius: 100%; + height: 20px; + padding: 2px 5px; +} + +/* line 800, ../../../scss/_clix2017.scss */ +.hide { + display: none !important; +} + +/* line 803, ../../../scss/_clix2017.scss */ +.badge { + display: inline-block; + height: 21px; + width: 21px; + border-radius: 100%; + line-height: 21px; + text-align: center; +} +/* line 812, ../../../scss/_clix2017.scss */ +.badge.badge-blue { + background-color: #74b3dc; + color: #fff; +} + +/* line 820, ../../../scss/_clix2017.scss */ +#menu_bar_gstudio .user-profile-pic-small { + height: 46px; + width: 46px; + margin: 0px 10px; +} +/* line 826, ../../../scss/_clix2017.scss */ +#menu_bar_gstudio .loggedin-user { + # background: #505e6c; + border-radius: 100%; + height: 45px; + width: 45px; + display: inline-block; + margin: 5px 5px 0px 5px; + overflow: hidden; +} +/* line 836, ../../../scss/_clix2017.scss */ +#menu_bar_gstudio .loggedin-user img { + height: 100%; + width: 100%; +} + +/* group_list */ +/* line 843, ../../../scss/_clix2017.scss */ +.group_breadcumbs { + color: #6e8ba6; +} +/* line 845, ../../../scss/_clix2017.scss */ +.group_breadcumbs a { + display: inline-block; + margin: 15px auto; + color: #6e8ba6; + letter-spacing: 1px; +} + +/* line 853, ../../../scss/_clix2017.scss */ +.group_tile { + height: 300px; + background: url(/static/ndf/images/group-tile.png) no-repeat; + background-size: 100% 100%; + padding: 20px 26px; + color: #fff; + margin-bottom: 30px; + cursor: pointer; + box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); +} +/* line 862, ../../../scss/_clix2017.scss */ +.group_tile:hover { + opacity: 0.7; +} +/* line 865, ../../../scss/_clix2017.scss */ +.group_tile .group-name { + font-weight: 700; + font-size: 24px; + letter-spacing: 1.1px; + text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); +} +/* line 872, ../../../scss/_clix2017.scss */ +.group_tile .group_desc { + letter-spacing: 0.5px; +} + +/* curriculum */ +/* line 879, ../../../scss/_clix2017.scss */ +ul.horizontal_tabs_gstudio { + margin: 0px; + height: 44px; +} +/* line 882, ../../../scss/_clix2017.scss */ +ul.horizontal_tabs_gstudio > li { + display: inline-block; + height: 100%; +} +/* line 885, ../../../scss/_clix2017.scss */ +ul.horizontal_tabs_gstudio > li > a { + color: #ce7869; + padding: 8px 20px 7.5px; + display: block; + border-bottom: 3px solid transparent; + letter-spacing: 0.3px; +} +/* line 893, ../../../scss/_clix2017.scss */ +ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { + border-bottom: 4px solid #ffc14e; +} +/* line 897, ../../../scss/_clix2017.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action { + position: relative; +} +/* line 899, ../../../scss/_clix2017.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul { + position: absolute; + top: 50px; + display: none; + z-index: 10; + position: cursor; + margin: 0px; + background: #fff; + box-shadow: 0px 1px 6px 1px #ccc; +} +/* line 909, ../../../scss/_clix2017.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { + list-style: none; + white-space: nowrap; + padding: 15px 15px; +} +/* line 914, ../../../scss/_clix2017.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { + background: #d6f2fe; +} +/* line 920, ../../../scss/_clix2017.scss */ +ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { + display: block; +} + +/* line 927, ../../../scss/_clix2017.scss */ +.max-width { + max-width: 100%; +} + +/* line 932, ../../../scss/_clix2017.scss */ +.group_content .group_banner { + transition: all 1s ease; + -webkit-transition: all 1s ease; + height: 300px; + overflow-y: auto; + background: url("/static/ndf/images/course-cover.png") no-repeat; + background-size: 100% 100%; + margin-bottom: -70px; + -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; +} +/* line 941, ../../../scss/_clix2017.scss */ +.group_content .group_header { + height: 45px; + padding-bottom: 5px; + background: transparent; + color: #fff; + width: 100%; + /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#49667a+0,49667a+100&0+0,0.5+100 */ + background: -moz-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* FF3.6-15 */ + background: -webkit-linear-gradient(top, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(to bottom, rgba(73, 102, 122, 0) 0%, rgba(73, 102, 122, 0.8) 100%); + /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); + /* IE6-9 */ +} +/* line 954, ../../../scss/_clix2017.scss */ +.group_content .group_header .group_title { + font-size: 28px; + font-weight: 700; + letter-spacing: 0.4px; + position: absolute; + bottom: 10px; + left: 25px; + color: #164A7B; +} +/* line 963, ../../../scss/_clix2017.scss */ +.group_content .group_header .group_actions > button { + display: inline-block; + margin: 7px 10px; +} +/* line 968, ../../../scss/_clix2017.scss */ +.group_content .group_sections { + text-align: center; + border-bottom: 2px solid #f5f5f5; + background: #eefaff; +} +/* line 973, ../../../scss/_clix2017.scss */ +.group_content .group_sections_content { + min-height: 400px; + background-color: #fff; + margin-bottom: 100px; + margin-top: -1px; + border: 1px solid #80808014; +} +/* line 980, ../../../scss/_clix2017.scss */ +.group_content .top-bar-secondions_content { + background-color: #fff; +} +/* line 984, ../../../scss/_clix2017.scss */ +.group_content .course_actions > span { + margin-right: 5px; + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} +/* line 996, ../../../scss/_clix2017.scss */ +.group_content .course_actions > i { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-right: 80px; +} + +/* line 1010, ../../../scss/_clix2017.scss */ +.activity_tile { + margin-top: 10px; + margin-bottom: 25px; + padding-bottom: 10px; + cursor: pointer; + height: 260px; + border: 1px solid #164A7B; +} +/* line 1019, ../../../scss/_clix2017.scss */ +.activity_tile .activity_preview { + height: 200px; + width: 100%; + border-width: 5px; +} +/* line 1026, ../../../scss/_clix2017.scss */ +.activity_tile .activity_preview img { + width: 100%; + height: 210px; +} +/* line 1032, ../../../scss/_clix2017.scss */ +.activity_tile .activity_text { + padding: 7px 0px 0px 0px; +} +/* line 1034, ../../../scss/_clix2017.scss */ +.activity_tile .activity_text .activity_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 13px; + color: #164A7B; + padding-top: 10px; + padding-left: 6px; +} +/* line 1041, ../../../scss/_clix2017.scss */ +.activity_tile .activity_text .activity_title > a { + margin-right: 0px !important; +} +/* line 1045, ../../../scss/_clix2017.scss */ +.activity_tile .activity_text .activity_title .filenode { + z-index: -1; +} +/* line 1051, ../../../scss/_clix2017.scss */ +.activity_tile .activity_text .activity_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 1062, ../../../scss/_clix2017.scss */ +.asset_tile { + margin-top: 10px; + margin-bottom: 25px; + padding-bottom: 10px; + cursor: pointer; + height: 260px; + border: 1px solid #164A7B; +} +/* line 1071, ../../../scss/_clix2017.scss */ +.asset_tile .asset_preview { + height: 200px; + width: 99.9%; + border-width: 5px; +} +/* line 1078, ../../../scss/_clix2017.scss */ +.asset_tile .asset_preview .photos-1 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 210px !important; +} +/* line 1083, ../../../scss/_clix2017.scss */ +.asset_tile .asset_preview img { + width: 100%; + height: 210px; +} +/* line 1087, ../../../scss/_clix2017.scss */ +.asset_tile .asset_preview .photos { + /* Prevent vertical gaps */ + line-height: 0; + -webkit-column-count: 2; + -webkit-column-gap: 0px; + -moz-column-count: 2; + -moz-column-gap: 0px; + column-count: 2; + column-gap: 0px; +} +/* line 1097, ../../../scss/_clix2017.scss */ +.asset_tile .asset_preview .photos img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 100px !important; +} +@media (max-width: 1200px) { + /* line 1104, ../../../scss/_clix2017.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 1000px) { + /* line 1113, ../../../scss/_clix2017.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 800px) { + /* line 1120, ../../../scss/_clix2017.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 2; + -webkit-column-count: 2; + column-count: 2; + } +} +@media (max-width: 400px) { + /* line 1127, ../../../scss/_clix2017.scss */ + .asset_tile .asset_preview .photos { + -moz-column-count: 1; + -webkit-column-count: 1; + column-count: 1; + } +} +/* line 1135, ../../../scss/_clix2017.scss */ +.asset_tile .asset_preview .photos-02 { + /* no vertical space*/ + line-height: 0; + -webkit-column-count: 1; + -moz-column-count: 1; + -webkit-column-gap: 0px; + -moz-column-gap: 0px; + column-count: 1; + column-gap: 1px; + -moz-row-count: 2; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; +} +/* line 1151, ../../../scss/_clix2017.scss */ +.asset_tile .asset_preview .photos-02 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 105px !important; +} +@media (max-width: 1200px) { + /* line 1158, ../../../scss/_clix2017.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 1000px) { + /* line 1169, ../../../scss/_clix2017.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 800px) { + /* line 1180, ../../../scss/_clix2017.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 0; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 400px) { + /* line 1191, ../../../scss/_clix2017.scss */ + .asset_tile .asset_preview .photos-02 { + -moz-row-count: 2; + -webkit-column-count: 1; + column-count: 1; + row-count: 2; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +/* line 1202, ../../../scss/_clix2017.scss */ +.asset_tile .asset_preview .photos-03 { + /* no vertical space*/ + line-height: 0; + -webkit-column-count: 1; + -moz-column-count: 1; + -webkit-column-gap: 0px; + -moz-column-gap: 0px; + column-count: 1; + column-gap: 1px; + -moz-row-count: 3; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; +} +/* line 1218, ../../../scss/_clix2017.scss */ +.asset_tile .asset_preview .photos-03 img { + /* Just in case there are inline attributes */ + width: 100% !important; + height: 70px !important; +} +@media (max-width: 1200px) { + /* line 1225, ../../../scss/_clix2017.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 1000px) { + /* line 1236, ../../../scss/_clix2017.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 800px) { + /* line 1247, ../../../scss/_clix2017.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 0; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +@media (max-width: 400px) { + /* line 1258, ../../../scss/_clix2017.scss */ + .asset_tile .asset_preview .photos-03 { + -moz-row-count: 3; + -webkit-column-count: 1; + column-count: 1; + row-count: 3; + -webkit-row-gap: 0px; + -moz-row-gap: 0px; + } +} +/* line 1269, ../../../scss/_clix2017.scss */ +.asset_tile .asset_text { + padding: 7px 0px 0px 0px; +} +/* line 1271, ../../../scss/_clix2017.scss */ +.asset_tile .asset_text .asset_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 13px; + color: #164A7B; + padding-top: 10px; + padding-left: 6px; +} +/* line 1279, ../../../scss/_clix2017.scss */ +.asset_tile .asset_text .asset_title .filenode { + z-index: -1; +} +/* line 1285, ../../../scss/_clix2017.scss */ +.asset_tile .asset_text .asset_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 1296, ../../../scss/_clix2017.scss */ +.audio_tile { + display: inline-block; + margin-top: 10px; + padding-bottom: 10px; + cursor: pointer; + height: 75px; + border: 1px solid #164A7B; + width: 270px; + margin-right: 15px; +} +/* line 1306, ../../../scss/_clix2017.scss */ +.audio_tile .audio_preview audio { + width: 100%; +} +/* line 1309, ../../../scss/_clix2017.scss */ +.audio_tile .audio_preview figcaption { + margin-left: 5px; +} +/* line 1314, ../../../scss/_clix2017.scss */ +.audio_tile:hover { + border-width: 2px 2px 5px 2px; + border-style: solid; + border-color: #ce7869; +} + +/* line 1324, ../../../scss/_clix2017.scss */ +.template_tile { + display: inline-block; + margin-top: 10px; + padding-bottom: 10px; + cursor: pointer; + height: 160px; + border: 1px solid #164A7B; + width: 120px; + margin-right: 15px; +} +/* line 1334, ../../../scss/_clix2017.scss */ +.template_tile .template_preview { + height: 85px; + width: 100%; +} +/* line 1337, ../../../scss/_clix2017.scss */ +.template_tile .template_preview img { + width: 100%; +} +/* line 1341, ../../../scss/_clix2017.scss */ +.template_tile:hover { + border-width: 2px 2px 5px 2px; + border-style: solid; + border-color: #ce7869; +} +/* line 1347, ../../../scss/_clix2017.scss */ +.template_tile .template_text { + padding: 10px 0px 0px 0px; +} +/* line 1349, ../../../scss/_clix2017.scss */ +.template_tile .template_text .template_title { + letter-spacing: 0.2px; + overflow: hidden; + font-size: 12px; + color: #164A7B; + padding-top: 22px; + padding-left: 6px; +} +/* line 1358, ../../../scss/_clix2017.scss */ +.template_tile .template_text .template_desc { + letter-spacing: 0.3px; + overflow: hidden; + padding-left: 6px; + font-size: 11px; + color: grey; +} + +/* line 1370, ../../../scss/_clix2017.scss */ +.preview_asset_page { + word-wrap: break-word; + width: 200%; + min-height: 350px; + margin-left: 14px; +} + +/* line 1379, ../../../scss/_clix2017.scss */ +.preview_asset { + background: #ccc; + border: 2px solid #999; + width: 485px; + min-height: 350px; + margin-left: 14px; +} + +/* line 1387, ../../../scss/_clix2017.scss */ +h6 { + margin-left: 15px; +} + +/*Custom css*/ +/* line 1393, ../../../scss/_clix2017.scss */ +.add_more_files { + color: #aaa; + letter-spacing: 0.6px; + margin-left: 10px; +} + +/* line 1401, ../../../scss/_clix2017.scss */ +input.trans-sub[type="text"], input.trans-sub[type="file"] { + margin-top: 5px; + margin-left: 20px; +} + +/* line 1407, ../../../scss/_clix2017.scss */ +input.trans-sub[type="file"]::-webkit-file-upload-button { + visibility: hidden; +} + +/* line 1410, ../../../scss/_clix2017.scss */ +input.trans-sub[type="file"]:before { + content: 'Select files'; + display: inline-block; + border: 1px solid #999; + border-radius: 5px; + padding: 8px 10px; + outline: none; + white-space: nowrap; + -webkit-user-select: none; + cursor: pointer; + font-weight: 500; + color: #cc7769; + border-color: #cc7769; + float: right; + margin-left: 20px; +} + +/* line 1427, ../../../scss/_clix2017.scss */ +input.trans-sub[type="file"] { + padding: 5px; + margin-top: 10px; + margin-left: 20px; + border-radius: 4px; + border: 1px solid #ccc; + width: 98%; +} + +/* line 1435, ../../../scss/_clix2017.scss */ +input.trans-sub[type="text"] { + text-align: left; +} + +/* line 1440, ../../../scss/_clix2017.scss */ +input[type="text"], input[type="file"] { + margin-top: 5px; +} + +/* line 1443, ../../../scss/_clix2017.scss */ +label { + font-size: 15px; + text-transform: initial; + color: rgba(43, 51, 63, 0.75); + margin-bottom: 15px; + margin-left: 0px; +} + +/* line 1452, ../../../scss/_clix2017.scss */ +input[type="file"]::-webkit-file-upload-button { + visibility: hidden; +} + +/* line 1455, ../../../scss/_clix2017.scss */ +input[type="file"]:before { + content: 'Select files'; + display: inline-block; + border: 1px solid #999; + border-radius: 5px; + padding: 8px 10px; + outline: none; + white-space: nowrap; + -webkit-user-select: none; + cursor: pointer; + font-weight: 500; + color: #cc7769; + border-color: #cc7769; + float: right; +} + +/* line 1471, ../../../scss/_clix2017.scss */ +input[type="file"] { + padding: 5px; + margin-top: 10px; + margin-left: 30.4px; + border-radius: 4px; + border: 1px solid #ccc; + width: 95%; +} + +/* line 1483, ../../../scss/_clix2017.scss */ +input[type="button"] { + -webkit-appearance: button; + cursor: pointer; + margin-top: 15px; + width: 8%; +} + +/* line 1494, ../../../scss/_clix2017.scss */ +.select-language { + display: block; + border: 1px solid #999; + border-radius: 5px; + margin-left: 20px; + width: 457px; + border-radius: 4px solid #cc7769; + height: 47px; + border-color: #cc7769; +} + +/* line 1506, ../../../scss/_clix2017.scss */ +.name-desc-asset-cont-area { + width: 95%; + margin-left: 24px; +} + +/* line 1511, ../../../scss/_clix2017.scss */ +#asset_content_desc, #asset_content_name { + color: black !important; + font-size: 13px; +} + +/* Buttons custom css */ +/* line 1517, ../../../scss/_clix2017.scss */ +.button-hollow-white { + background: inherit; + border: 2px solid #fff; + border-radius: 5px; + color: #fff; + font-weight: 600; + letter-spacing: 0.9px; + padding: 3px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} + +/* Buttons custom css */ +/* line 1530, ../../../scss/_clix2017.scss */ +.secondary-header-tabs { + color: #719dc7; + font-weight: 400; + padding: 14px 10px 3px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; + display: inline-block; +} +/* line 1539, ../../../scss/_clix2017.scss */ +.secondary-header-tabs:hover { + color: #164A7B; +} +/* line 1543, ../../../scss/_clix2017.scss */ +.secondary-header-tabs.active { + color: #164A7B; + border-bottom: 2px solid #164A7B; + padding-bottom: 14px; + font-weight: 600; +} + +/* line 1552, ../../../scss/_clix2017.scss */ +.secondary-header-button { + color: #3c556d; + font-weight: 700; + padding: 17px 0px 0px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; + display: inline-block; + text-transform: uppercase; + font-size: 13px; + letter-spacing: 1.2px; +} +/* line 1564, ../../../scss/_clix2017.scss */ +.secondary-header-button:hover { + opacity: 0.5; +} + +/* line 1570, ../../../scss/_clix2017.scss */ +.orange-button { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 5px !important; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 8px; + cursor: pointer; +} +/* line 1582, ../../../scss/_clix2017.scss */ +.orange-button:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 1588, ../../../scss/_clix2017.scss */ +.orange-button-template { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 1599, ../../../scss/_clix2017.scss */ +.orange-button-template:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 1607, ../../../scss/_clix2017.scss */ +.orange-button-subtitle { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 1618, ../../../scss/_clix2017.scss */ +.orange-button-subtitle:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 1625, ../../../scss/_clix2017.scss */ +.asset-unit-button { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 30px; + margin-bottom: 8px; + margin-top: 300px; +} +/* line 1636, ../../../scss/_clix2017.scss */ +.asset-unit-button:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 1643, ../../../scss/_clix2017.scss */ +.disab-button { + margin-right: 10px; + background-color: #fff; + text-transform: none; + font-size: 14px; +} + +/* line 1651, ../../../scss/_clix2017.scss */ +.save-asset { + margin-top: 9px; + margin-right: -133px; +} + +/* line 1655, ../../../scss/_clix2017.scss */ +.asset-save-button { + color: #ce7869; + display: inline-block; + border: 1px solid #ce7869; + border-radius: 5px; + padding: 8px 10px; + outline: none; + white-space: nowrap; + -webkit-user-select: none; + cursor: pointer; + font-weight: 500; + color: #cc7769; + border-color: #cc7769; + float: right; + background: #fff; + margin-right: 5px; + margin-top: 5px; +} + +/* line 1675, ../../../scss/_clix2017.scss */ +.blue-white-button { + color: #fff; + background: #164A7B; + border-radius: 4px; + padding: 5px; + margin-right: 40px; + margin-top: 8px; + padding: 8px 10px; +} + +/* line 1685, ../../../scss/_clix2017.scss */ +button[disabled], .button.disabled, .button[disabled] { + background-color: #eefaff; + border-color: #eefaff; + color: gray; + cursor: default; + opacity: 0.7; + box-shadow: none; + border-radius: 4px; + margin-right: 40px; + margin-top: 8px; + padding: 8px 10px; +} + +/* line 1701, ../../../scss/_clix2017.scss */ +.button-small { + padding: 1px 5px; +} + +/* Create Curriculum */ +/* line 1706, ../../../scss/_clix2017.scss */ +ul.jqtree_common { + position: relative; +} +/* line 1708, ../../../scss/_clix2017.scss */ +ul.jqtree_common:before { + border-width: 0px 0px 1px 1px; + position: absolute; + left: 9px; + border-style: dashed; + border-color: #ccc; + top: 12px; + height: calc(100% - 27px); + width: 16px; +} + +/*li.jqtree-folder { + position: relative; + &:before { + border-width: 1px 0px 0px 0px; + position: absolute; + height: 0px; + left: 7px; + border-style: dashed; + border-color: #ccc; + top: 12px; + width: 15px; + } +}*/ +/* line 1733, ../../../scss/_clix2017.scss */ +ul:not(:only-child) li:first-child { + position: relative; +} +/* line 1735, ../../../scss/_clix2017.scss */ +ul:not(:only-child) li:first-child:before { + border-width: 1px 0px 0px 0px; + position: absolute; + height: 0px; + left: -22px; + border-style: dashed; + border-color: #ccc; + top: 12px; + width: 30px; +} + +/* line 1746, ../../../scss/_clix2017.scss */ +.jqtree_common .jqtree-element:not(.leaf_node):not(:only-child), .jqtree_common .jqtree-element.leaf_node { + position: relative; +} +/* line 1748, ../../../scss/_clix2017.scss */ +.jqtree_common .jqtree-element:not(.leaf_node):not(:only-child):before, .jqtree_common .jqtree-element.leaf_node:before { + border-width: 1px 0px 0px 0px; + position: absolute; + height: 0px; + left: 12px; + border-style: dashed; + border-color: #ccc; + top: 12px; + width: 10px; +} + +/* line 1761, ../../../scss/_clix2017.scss */ +ul.jqtree-tree .jqtree-element { + margin-top: 15px; +} + +/* line 1765, ../../../scss/_clix2017.scss */ +ul.jqtree-tree ul.jqtree_common { + margin-left: 35px; +} + +/* line 1769, ../../../scss/_clix2017.scss */ +ul.jqtree-tree li.jqtree-selected > .jqtree-element, ul.jqtree-tree li.jqtree-selected > .jqtree-element:hover { + background: transparent; +} + +/* line 1773, ../../../scss/_clix2017.scss */ +ul.jqtree-tree .jqtree-toggler { + color: #aaa; +} +/* line 1775, ../../../scss/_clix2017.scss */ +ul.jqtree-tree .jqtree-toggler:hover { + color: #aaa; +} + +/* line 1780, ../../../scss/_clix2017.scss */ +.curriculum_creator { + background: #fff; + box-shadow: 0px 2px 6px #000; + margin: 20px auto; + padding: 0px 0px; + min-height: calc(100vh - 100px); + overflow-y: auto; + padding: 15px; +} + +/* line 1789, ../../../scss/_clix2017.scss */ +.curriculum_creator_header { + width: 100%; + height: 60px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 13px #000; +} +/* line 1796, ../../../scss/_clix2017.scss */ +.curriculum_creator_header .course_heading span { + letter-spacing: 0.9px; + font-weight: 600; + line-height: 50px; +} +/* line 1806, ../../../scss/_clix2017.scss */ +.curriculum_creator_header .course_actions ul li { + list-style-type: none; + display: inline-block; + padding: 12px; + color: #999999; + cursor: pointer; + letter-spacing: 0.8px; +} +/* line 1816, ../../../scss/_clix2017.scss */ +.curriculum_creator_header .course_actions ul li.active, .curriculum_creator_header .course_actions ul li:hover { + border-bottom: 3px solid #ffc14e; +} + +/* line 1824, ../../../scss/_clix2017.scss */ +.curriculum_list { + width: 100%; + height: 60px; + background: #fff; + padding: 17px 81px; + box-shadow: 0px 1px 4px #004; + color: #2b78e4; +} +/* line 1831, ../../../scss/_clix2017.scss */ +.curriculum_list a { + color: #164A7B; + font-size: 20px; + font-weight: 600; +} + +/* line 1838, ../../../scss/_clix2017.scss */ +.curriculum_list_header { + max-width: 1176px !important; + margin: 0 auto !important; + box-sizing: border-box !important; + padding-left: 20px !important; + padding-right: 20px !important; + padding: 8px !important; + padding-top: 20px !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + justify-content: space-between !important; + border-bottom: 1px solid #D6D8DA !important; + -moz-box-sizing: border-box !important; + -webkit-justify-content: space-between !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; + box-shadow: 0px 3px 6px #000; + background-color: #ffffff; +} +/* line 1859, ../../../scss/_clix2017.scss */ +.curriculum_list_header .title-curriculum { + font-family: inherit !important; + font-weight: bold !important; + line-height: 23px !important; + color: #21242C !important; + padding: 0px 0px 0px 10px !important; + font-weight: 500 !important; + font-size: 20px !important; +} +/* line 1869, ../../../scss/_clix2017.scss */ +.curriculum_list_header .add-curriculum { + position: relative !important; + display: -moz-box !important; + display: -ms-inline-flexbox !important; + display: -webkit-box !important; + display: -webkit-inline-flex !important; + display: inline-flex !important; + align-items: center !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + font-size: 19px !important; + font-weight: 500 !important; +} + +/* line 1885, ../../../scss/_clix2017.scss */ +.curriculum_listing { + max-width: 1176px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; +} +/* line 1902, ../../../scss/_clix2017.scss */ +.curriculum_listing .curriculum_content { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + border-bottom: 1px solid #D6D8DA !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; +} +/* line 1921, ../../../scss/_clix2017.scss */ +.curriculum_listing .curriculum_content:hover { + background: #F0F1F2 !important; +} +/* line 1924, ../../../scss/_clix2017.scss */ +.curriculum_listing .curriculum_content .curriculum_content_left { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + width: 80% !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; +} +/* line 1935, ../../../scss/_clix2017.scss */ +.curriculum_listing .curriculum_content .curriculum_content_left .curriculum_content_details { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: flex-start !important; + flex-direction: column !important; + padding-left: 15px !important; + width: 85% !important; + -webkit-align-items: flex-start !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -ms-flex-align: start !important; + -webkit-box-align: start !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; +} +/* line 1952, ../../../scss/_clix2017.scss */ +.curriculum_listing .curriculum_content .curriculum_content_left .curriculum_content_details .hyperlink-user { + border: 2px solid #b9b9b9; + height: 50px; + width: 50px; +} +/* line 1957, ../../../scss/_clix2017.scss */ +.curriculum_listing .curriculum_content .curriculum_content_left .curriculum_content_details .hyperlink-style { + text-decoration: none !important; + font-family: inherit !important; + font-size: 17px !important; + font-weight: bold !important; + line-height: 23px !important; + color: #164A7B !important; + width: 100% !important; + white-space: nowrap !important; + overflow: hidden !important; + text-overflow: ellipsis !important; +} +/* line 1970, ../../../scss/_clix2017.scss */ +.curriculum_listing .curriculum_content .curriculum_content_left .curriculum_content_details .hyperlink-info { + text-decoration: none !important; + font-family: inherit !important; + font-size: 15px !important; + line-height: 22px !important; + color: rgba(0, 0, 0, 0.56) !important; + margin-top: 4px !important; +} + +/* line 1983, ../../../scss/_clix2017.scss */ +.explore-header { + line-height: 4em; +} +/* line 1985, ../../../scss/_clix2017.scss */ +.explore-header > div { + vertical-align: middle; + display: inline-block; +} +/* line 1991, ../../../scss/_clix2017.scss */ +.explore-header .heading a { + color: #fff; +} + +/* line 2008, ../../../scss/_clix2017.scss */ +.node_name_empty { + border-radius: 5px; + margin-top: 11px; +} + +/*Common css*/ +/* line 2018, ../../../scss/_clix2017.scss */ +.toggleButtons a { + padding: 0.5em 1em; + margin: 0px; + background: #dddddd; + color: #000; + border: 1px solid #B7B7B7; + display: inline; +} +/* line 2026, ../../../scss/_clix2017.scss */ +.toggleButtons a:first-child { + margin-right: -3px; + border-right: 0px solid #000; +} +/* line 2030, ../../../scss/_clix2017.scss */ +.toggleButtons a:first-child { + border-radius: 10px 0px 0px 10px; +} +/* line 2033, ../../../scss/_clix2017.scss */ +.toggleButtons a:last-child { + border-radius: 0px 10px 10px 0px; +} +/* line 2036, ../../../scss/_clix2017.scss */ +.toggleButtons a.active { + background-color: #908F8F; + color: #fff; +} + +/* about_course style */ +/* abput and modules */ +/* line 2047, ../../../scss/_clix2017.scss */ +.about-course { + background-color: #fff; + padding: 10px 23px; +} +/* line 2050, ../../../scss/_clix2017.scss */ +.about-course > h5 { + text-transform: uppercase; + font-weight: 600; + letter-spacing: 1.5px; + display: block; + margin: 2px 0px 0px; + color: #99aaba; + margin-left: 5px; +} + +/* line 2061, ../../../scss/_clix2017.scss */ +.course-desc { + letter-spacing: 0.7px; + font-weight: 400; + color: #164A7B; + font-size: 14px; + margin-left: 4px 0px 0px; + margin-top: 5px; +} + +/* line 2071, ../../../scss/_clix2017.scss */ +.course-highlight { + letter-spacing: 0.7px; + font-weight: 400; + color: #164A7B; + font-size: 14px; + margin-top: -11px; + margin-left: 4px 0px 0px; + margin-left: 4px; + margin-bottom: 5px; +} +/* line 2082, ../../../scss/_clix2017.scss */ +.course-highlight > span { + color: #ce7869; +} + +/* group analytics and notifications */ +/* line 2092, ../../../scss/_clix2017.scss */ +.course-overview-container .course-overview > .columns { + padding: 0px 10px; +} +/* line 2095, ../../../scss/_clix2017.scss */ +.course-overview-container h5 { + text-transform: uppercase; +} +/* line 2098, ../../../scss/_clix2017.scss */ +.course-overview-container .correct-count { + color: #367714; +} +/* line 2101, ../../../scss/_clix2017.scss */ +.course-overview-container .incorrect-count { + color: #9b0000; +} +/* line 2104, ../../../scss/_clix2017.scss */ +.course-overview-container .course-metric-heading { + text-transform: uppercase; + letter-spacing: 0.9px; + font-weight: 500; + color: #000000; + display: block; +} +/* line 2112, ../../../scss/_clix2017.scss */ +.course-overview-container .course-metric-count { + font-weight: 600; + letter-spacing: 0.5px; + display: block; + color: #000000; + font-size: 17px; +} +/* line 2120, ../../../scss/_clix2017.scss */ +.course-overview-container .ongoing-session { + border-bottom: 1px solid #ccc; + margin-bottom: 12px; + padding-bottom: 15px; +} +/* line 2125, ../../../scss/_clix2017.scss */ +.course-overview-container .ongoing-session h5, .course-overview-container .ongoing-session h3 { + color: #2b78e4; +} +/* line 2128, ../../../scss/_clix2017.scss */ +.course-overview-container .ongoing-session button { + padding: 7px; + margin: 0px; + background-color: #2B78E4; +} +/* line 2136, ../../../scss/_clix2017.scss */ +.course-overview-container .course-status > h5 { + color: #888; +} +/* line 2139, ../../../scss/_clix2017.scss */ +.course-overview-container .course-status > .row { + margin: 10px 0px; +} +/* line 2142, ../../../scss/_clix2017.scss */ +.course-overview-container .course-status .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; +} +/* line 2147, ../../../scss/_clix2017.scss */ +.course-overview-container .course-status .tabs .tab-title { + width: 40%; + background-color: #DEDEDE; + margin-left: 1em; + position: relative; + top: 1px; + text-transform: uppercase; +} +/* line 2155, ../../../scss/_clix2017.scss */ +.course-overview-container .course-status .tabs .tab-title.active { + background-color: #fff; + border: 1px solid #CCC; + border-bottom: 0px; +} +/* line 2166, ../../../scss/_clix2017.scss */ +.course-overview-container .course-notif-logs ul { + list-style: none; +} +/* line 2170, ../../../scss/_clix2017.scss */ +.course-overview-container .course-section { + border: 1px solid #ccc; + padding: 10px; + box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); + margin: 40px 0px; + position: relative; +} +/* line 2177, ../../../scss/_clix2017.scss */ +.course-overview-container .course-section > .row { + margin: 20px 0px; +} +/* line 2181, ../../../scss/_clix2017.scss */ +.course-overview-container .course-section .course-section-heading { + text-transform: uppercase; + font-weight: 600; + letter-spacing: 1.5px; + display: block; + margin: 2px 0px 15px; + color: #888; +} +/* line 2191, ../../../scss/_clix2017.scss */ +.course-overview-container .course-section .course-section-icon { + font-size: 20px; + top: -35px; + color: #000000; + background: #ffffff; + margin-left: 22px; +} +/* line 2216, ../../../scss/_clix2017.scss */ +.course-overview-container .course-warning { + background-color: #fffdd7; +} +/* line 2218, ../../../scss/_clix2017.scss */ +.course-overview-container .course-warning > h5 { + color: #c09100; +} +/* line 2221, ../../../scss/_clix2017.scss */ +.course-overview-container .course-warning i { + padding: 10px; + margin-right: 5px; + color: #c09100; +} +/* line 2226, ../../../scss/_clix2017.scss */ +.course-overview-container .course-warning a { + text-decoration: underline; +} +/* line 2230, ../../../scss/_clix2017.scss */ +.course-overview-container .course-students-data { + margin: 20px 0px; +} +/* line 2234, ../../../scss/_clix2017.scss */ +.course-overview-container .course-students-data .students-table-legends > span:nth-child(odd) { + margin: 0px 10px; +} +/* line 2237, ../../../scss/_clix2017.scss */ +.course-overview-container .course-students-data .students-table-legends > span:nth-child(even) { + display: inline-block; + vertical-align: top; + margin-right: 10px; +} +/* line 2244, ../../../scss/_clix2017.scss */ +.course-overview-container .student-overview-table { + width: 100%; + margin: 15px 0px; +} +/* line 2248, ../../../scss/_clix2017.scss */ +.course-overview-container .student-overview-table tr { + border: none; +} +/* line 2252, ../../../scss/_clix2017.scss */ +.course-overview-container .student-overview-table .progress .merter-val { + margin-left: 5px; +} + +/* line 2260, ../../../scss/_clix2017.scss */ +.notifications-analytics-tabs .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; +} +/* line 2265, ../../../scss/_clix2017.scss */ +.notifications-analytics-tabs .tabs .tab-title { + width: 40%; + background-color: #DEDEDE; + margin-left: 1em; + position: relative; + top: 1px; + text-transform: uppercase; +} +/* line 2273, ../../../scss/_clix2017.scss */ +.notifications-analytics-tabs .tabs .tab-title.active { + background-color: #ffc14e; + border: 1px solid #CCC; + border-bottom: 0px; +} + +/* The notification Dashboard */ +/* line 2289, ../../../scss/_clix2017.scss */ +.course-dashboard .course-status > ul, .course-dashboard .course-notifications > ul, +.course-dashboard .course-performance > ul { + list-style: none; +} +/* line 2293, ../../../scss/_clix2017.scss */ +.course-dashboard .course-status > .row, .course-dashboard .course-notifications > .row, +.course-dashboard .course-performance > .row { + padding: 0px; + min-height: 22rem; + position: relative; + box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5); + background-color: #F9F9F9; + min-height: 20em; + margin: 0em 0em; + border-radius: 10px; +} +/* line 2305, ../../../scss/_clix2017.scss */ +.course-dashboard .dash-tile-heading { + padding: 0.2em 0.7em; + border-bottom: 1px solid #DADADA; + font-weight: 500; +} +/* line 2311, ../../../scss/_clix2017.scss */ +.course-dashboard .dash-tile-row { + padding: 1em; +} +/* line 2314, ../../../scss/_clix2017.scss */ +.course-dashboard .dash-tile-row:nth-child(n+3) { + border-top: 1px solid #DCDCDC; +} +/* line 2320, ../../../scss/_clix2017.scss */ +.course-dashboard .course-status .course-update .course-current-state { + color: #000; + font-weight: bold; + padding: 0.5em 0.8em 0.6em; +} +/* line 2330, ../../../scss/_clix2017.scss */ +.course-dashboard .course-notifications { + position: relative; +} +/* line 2335, ../../../scss/_clix2017.scss */ +.course-dashboard .course-notifications .notification-row .notification-text { + letter-spacing: 0em; + word-spacing: 0.2em; +} +/* line 2340, ../../../scss/_clix2017.scss */ +.course-dashboard .course-notifications .notification-row .time-elapsed { + color: #424242; + cursor: pointer; +} +/* line 2347, ../../../scss/_clix2017.scss */ +.course-dashboard .course-notifications .notification-count { + position: absolute; + right: 0.5em; + top: 0.3em; +} + +/* line 2358, ../../../scss/_clix2017.scss */ +.notebook .notebook-header { + border-color: black; + border-style: solid; + border-width: 1px 0px; + padding-top: 1em; +} +/* line 2364, ../../../scss/_clix2017.scss */ +.notebook .notebook-header a, .notebook .notebook-header input { + margin: 0px; +} +/* line 2367, ../../../scss/_clix2017.scss */ +.notebook .notebook-header .notes-count { + text-align: center; +} +/* line 2372, ../../../scss/_clix2017.scss */ +.notebook .notebook-header .notes-count span:first-child { + font-weight: 600; + padding: 15px; +} +/* line 2377, ../../../scss/_clix2017.scss */ +.notebook .notebook-header .notes-count span:last-child { + background: lightgrey; + padding: 2px 5px; + vertical-align: text-bottom; +} +/* line 2387, ../../../scss/_clix2017.scss */ +.notebook .notebook-body { + padding: 0px 0px; +} +/* line 2390, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-cards .row { + margin: 30px 0px; +} +/* line 2393, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-cards .note-card, .notebook .notebook-body .note-cards .note-details { + border: 1px solid #ccc; + padding: 10px 15px; + box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5); + border-radius: 5px; + line-height: 23px; + cursor: pointer; + position: relative; +} +/* line 2402, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-cards .note-card .note-heading, .notebook .notebook-body .note-cards .note-details .note-heading { + font-weight: 800; +} +/* line 2406, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-cards .note-card .note-close, .notebook .notebook-body .note-cards .note-details .note-close { + position: absolute; + right: 7px; + top: 3px; + font-weight: 700; + color: #929292; +} +/* line 2414, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-cards .note-card .note-summary, .notebook .notebook-body .note-cards .note-details .note-summary { + margin: 15px 0px; +} +/* line 2417, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-cards .note-card .note-info, .notebook .notebook-body .note-cards .note-card .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data { + color: #989898; + letter-spacing: 0.9px; + font-weight: 500; +} +/* line 2423, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-cards .note-card .note-info > span, .notebook .notebook-body .note-cards .note-card .note-extra-data > span, .notebook .notebook-body .note-cards .note-details .note-info > span, .notebook .notebook-body .note-cards .note-details .note-extra-data > span { + margin-right: 5px; +} +/* line 2428, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-cards .note-card .note-tags > span, .notebook .notebook-body .note-cards .note-details .note-tags > span { + display: inline-block; + margin: 10px; + background: #ffebb2; + color: #cba552; + padding: 2px 5px; +} +/* line 2436, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-cards .note-card .note-actions, .notebook .notebook-body .note-cards .note-details .note-actions { + color: #989898; + cursor: pointer; +} +/* line 2440, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-cards .note-card .note-actions span, .notebook .notebook-body .note-cards .note-details .note-actions span { + margin-right: 10px 5px; +} +/* line 2446, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-tags, .notebook .notebook-body .note-cards .note-details .note-actions { + display: inline-block; + margin-right: 10px; +} +/* line 2453, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-cards .note-details .note-tags { + float: right; +} +/* line 2455, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-cards .note-details .note-tags > span { + margin: 0px; +} +/* line 2464, ../../../scss/_clix2017.scss */ +.notebook .notebook-body > div { + padding: 0px; +} +/* line 2470, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index { + border-right: 1px solid #AFAEAE; + padding: 4px 0px; + background-color: #F1F1F1; +} +/* line 2475, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .tabs-content { + padding: 0px; +} +/* line 2478, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .tabs-content .active { + padding: 0px; +} +/* line 2482, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; +} +/* line 2487, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .tabs .tab-title { + width: 50%; + /*background-color: #DEDEDE;*/ + border-radius: 5px 5px 0px 0px; + position: relative; + top: 1px; +} +/* line 2494, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .tabs .tab-title a { + border-radius: inherit; + text-align: center; + color: #989898; +} +/* line 2501, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .tabs .tab-title.active { + background-color: #fff; + border: 1px solid #CCC; + border-bottom: 0px; +} +/* line 2505, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .tabs .tab-title.active a { + color: #3a3169; +} +/* line 2512, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .tab-content { + padding: 0px; +} +/* line 2517, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .notes .date { + font-weight: bold; + background: #EFEFEF; + padding: 7px 10px; +} +/* line 2523, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .notes .date .note-count { + line-height: 2em; +} +/* line 2528, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .notes > div { + border-bottom: 1px solid #AFAEAE; +} +/* line 2531, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .notes .note { + padding: 5px 15px; + background: #FFF; + cursor: pointer; + color: #A2A2A2; +} +/* line 2537, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .notes .note .note-heading { + font-weight: 400; +} +/* line 2545, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .notes .note .note-meta > span:not(:first-child) { + font-weight: 600; + color: #717171; +} +/* line 2552, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .notes .note .note-footer { + color: #888888; +} +/* line 2555, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .notes .note .note-footer span { + margin-right: 10px; +} +/* line 2560, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .notes .note.active { + border-left: 5px solid #6153AE; + background: #F4E7FF; + font-weight: 800; + color: #6153AE; +} +/* line 2566, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .notes .note.active .note-heading { + font-weight: 500; +} +/* line 2570, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .notebook-index .notes .note.active .note-meta > span:not(:first-child) { + color: #6153AE; +} +/* line 2578, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page { + color: #000000; + margin-left: 15px; + background-color: #fff; + padding-bottom: 30px; +} +/* line 2584, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page .group_sections_content { + margin-top: 5px; +} +/* line 2588, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page > div { + background-color: #fff; +} +/* line 2592, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page .note-toolbar { + padding: 1.8em 1.2em 0em; + margin: 0em; + background-color: #FFF; +} +/* line 2597, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page .note-toolbar .note-creator { + font-weight: bold; +} +/* line 2600, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page .note-toolbar .creator-title { + text-align: left; + color: #C3C3C3; + letter-spacing: 0.3px; + margin-top: 5px; +} +/* line 2607, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page .note-toolbar .creator-rating { + text-align: right; +} +/* line 2609, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page .note-toolbar .creator-rating > div { + display: inline-block; +} +/* line 2614, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page .note-title { + font-weight: 500; + margin-right: 1em; +} +/* line 2619, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page .note-content { + padding: 2em 2em 1em; + background: #fff; + margin: 0em; +} +/* line 2625, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page .note-content .note-header > div { + display: inline-block; +} +/* line 2630, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page .note-content .note-text { + letter-spacing: 0.7px; +} +/* line 2633, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page .note-content .note-text p { + padding: 0px; +} +/* line 2639, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page .comment-sections { + padding: 0em 1em 0em; +} +/* line 2643, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page .comment-sections .comments-header span { + font-weight: bold; +} +/* line 2646, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { + margin-left: 15px; +} +/* line 2651, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page .comment-sections .new-comment { + border-top: 1px solid grey; + padding: 15px 10px; + margin-top: 5px; +} +/* line 2656, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, +.notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { + min-height: 200px; + margin-top: 0px; +} +/* line 2662, ../../../scss/_clix2017.scss */ +.notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { + line-height: 0em; +} + +/* Explore badges */ +/* line 2674, ../../../scss/_clix2017.scss */ +.badge_ex { + display: inline-block; + line-height: 22px; + height: 22px; + font-weight: bolder; + padding: 0px 7px; + /*font-family: Arial, sans-serif;*/ + color: white; + text-shadow: 0 1px rgba(0, 0, 0, 0.25); + border: 1px solid; + border-radius: 18px; + -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); +} + +/* line 2690, ../../../scss/_clix2017.scss */ +.badge_ex { + background: #67c1ef; + border-color: #30aae9; + background-image: -webkit-linear-gradient(top, #acddf6, #67c1ef); + background-image: -moz-linear-gradient(top, #acddf6, #67c1ef); + background-image: -o-linear-gradient(top, #acddf6, #67c1ef); + background-image: linear-gradient(to bottom, #acddf6, #67c1ef); +} + +/* line 4120, ../../../scss/_app_styles.scss */ +/* line 2700, ../../../scss/_clix2017.scss */ +.badge_ex.green { + background: #77cc51; + border-color: #59ad33; + background-image: -webkit-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -moz-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -o-linear-gradient(top, #a5dd8c, #77cc51); + background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); +} + +/* line 4129, ../../../scss/_app_styles.scss */ +/* line 2710, ../../../scss/_clix2017.scss */ +.badge_ex.yellow { + background: #faba3e; + border-color: #f4a306; + background-image: -webkit-linear-gradient(top, #fcd589, #faba3e); + background-image: -moz-linear-gradient(top, #fcd589, #faba3e); + background-image: -o-linear-gradient(top, #fcd589, #faba3e); + background-image: linear-gradient(to bottom, #fcd589, #faba3e); +} + +/* line 4139, ../../../scss/_app_styles.scss */ +/* line 2720, ../../../scss/_clix2017.scss */ +.badge_ex.red { + background: #fa623f; + border-color: #fa5a35; + background-image: -webkit-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -o-linear-gradient(top, #fc9f8a, #fa623f); + background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); +} + +/* Create_Unit styles */ +/* line 2731, ../../../scss/_clix2017.scss */ +.course_creator_header { + width: 100%; + height: 70px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; +} +/* line 2738, ../../../scss/_clix2017.scss */ +.course_creator_header .unit_editor { + width: 100%; + height: 320px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; +} +/* line 2747, ../../../scss/_clix2017.scss */ +.course_creator_header .back_to_group { + padding: 0px 15px 0px 10px; + border-right: 1px solid #ccc; + margin-right: 15px; +} +/* line 2753, ../../../scss/_clix2017.scss */ +.course_creator_header .course_heading_unit { + width: 500px; + height: 40px; + border: 1px solid #74b3dc; + box-shadow: none; + float: right; + text-align: center; +} +/* line 2762, ../../../scss/_clix2017.scss */ +.course_creator_header .course_heading_unit:focus { + border: 1px solid #74b3dc; +} +/* line 2766, ../../../scss/_clix2017.scss */ +.course_creator_header .course_heading_unit::-webkit-input-placeholder + { + color: #d9dfe4; + letter-spacing: 0.8px; +} +/* line 2774, ../../../scss/_clix2017.scss */ +.course_creator_header .course_heading_unit select { + font-size: 14px; + font-family: 'OpenSans-Regular', sans-serif; + color: gray; + border: 0px solid #74b3dc; +} +/* line 2785, ../../../scss/_clix2017.scss */ +.course_creator_header .course_heading input { + width: 500px; + height: 40px; + border: 0px solid #74b3dc; + box-shadow: none; + float: right; + text-align: center; +} +/* line 2793, ../../../scss/_clix2017.scss */ +.course_creator_header .course_heading input:focus { + border: 1px solid #74b3dc; +} +/* line 2797, ../../../scss/_clix2017.scss */ +.course_creator_header .course_heading input::-webkit-input-placeholder + { + color: #d9dfe4; + letter-spacing: 0.8px; +} +/* line 2807, ../../../scss/_clix2017.scss */ +.course_creator_header .course_heading h5 { + margin-top: 15px; +} +/* line 2812, ../../../scss/_clix2017.scss */ +.course_creator_header .course_heading span { + letter-spacing: 0.9px; + font-weight: 600; + line-height: 50px; +} +/* line 2820, ../../../scss/_clix2017.scss */ +.course_creator_header .course_actions ul { + margin: 0px; +} +/* line 2823, ../../../scss/_clix2017.scss */ +.course_creator_header .course_actions ul li { + list-style-type: none; + display: inline-block; + padding: 12px; + color: #7ca0d0; + cursor: pointer; + letter-spacing: 0.8px; +} +/* line 2832, ../../../scss/_clix2017.scss */ +.course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { + border-bottom: 3px solid #ffc14e; +} +/* line 2837, ../../../scss/_clix2017.scss */ +.course_creator_header .course_actions span { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} +/* line 2849, ../../../scss/_clix2017.scss */ +.course_creator_header .course_actions i { + margin-right: 5px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} + +/* line 2867, ../../../scss/_clix2017.scss */ +.create_unit { + background: #fff; + box-shadow: 0px 2px 3px #000; + margin: 10px auto; + padding: 10px; +} + +/* line 2875, ../../../scss/_clix2017.scss */ +.button-hollow-black { + background: #fff; + border: 2px solid #164A7B; + border-radius: 5px; + color: #164A7B; + font-weight: 600; + letter-spacing: 0.9px; + padding: 2px 10px; +} + +/* line 2885, ../../../scss/_clix2017.scss */ +.vertically-center { + top: 50%; + transform: translateY(-50%); +} + +/* Unit_Structure styles */ +/* line 2893, ../../../scss/_clix2017.scss */ +.course_creator { + background: #fff; + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; +} +/* line 2901, ../../../scss/_clix2017.scss */ +.course_creator > .columns { + padding: 0px; + height: 100%; +} +/* line 2905, ../../../scss/_clix2017.scss */ +.course_creator .course_editor { + margin-bottom: 10px; + position: relative; + /*Overriding default*/ + /*Custom css*/ + /* Course edit in the edit mode. */ +} +/* line 2911, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { + padding: 0px; + padding-left: 0px; +} +/* line 2917, ../../../scss/_clix2017.scss */ +.course_creator .course_editor > div { + display: inline-block; + vertical-align: top; +} +/* line 2922, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; +} +/* line 2931, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course_tree .course-lessons dd { + border-bottom: 2px solid #9abfd9; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 2937, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course_tree .course-lessons dd:hover li { + color: #164A7B; +} +/* line 2942, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { + position: relative; + padding-left: 0px; +} +/* line 2947, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { + position: absolute; + left: 23px; + line-height: 20px; + color: #74b3dc; +} +/* line 2956, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 2963, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + display: block; + position: relative; +} +/* line 2971, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { + display: none; +} +/* line 2976, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { + margin-bottom: 0px; +} +/* line 2979, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { + white-space: nowrap; + list-style: inline-block; + display: inline-block; + margin: 0px 10px; + cursor: pointer; +} +/* line 2985, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li:hover { + border-bottom: 1px solid #9e2289; + color: #ce7869; +} +/* line 2999, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { + content: ''; + line-height: 55px; + color: #d7d7d7; +} +/* line 3007, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { + margin: 0px; +} +/* line 3009, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 3016, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #7ca0d0; + width: 100%; + display: block; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 3025, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { + background: inherit; +} +/* line 3034, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + transition: width 1s ease; + -webkit-transition: width 1s ease; + height: inherit; + max-height: 100%; + overflow-y: auto; + background: #fff; +} +/* line 3044, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course-editor-section .editor-header { + height: 55px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; + margin-bottom: 10px; +} +/* line 3050, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course-editor-section .editor-header .header-left { + padding: 14px 10px 10px 10px; +} +/* line 3053, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course-editor-section .editor-header .header-left > span { + color: #3c5264; + font-weight: 600; + margin-right: 10px; +} +/* line 3062, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { + margin: 40px 35px 0px; +} +/* line 3067, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; +} +/* line 3071, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { + margin: 0px; +} +/* line 3073, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { + list-style: none; + display: inline-block; +} +/* line 3076, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; +} +/* line 3082, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { + display: inline-block; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; +} +/* line 3097, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .add-lesson { + margin-top: 20px; + margin-left: 20px; + float: left; +} +/* line 3105, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .add_activity { + margin-top: 3px; +} +/* line 3111, ../../../scss/_clix2017.scss */ +.course_creator .course_editor .create_activity { + margin-top: 0px; + margin-left: -7.1px; +} +/* line 3120, ../../../scss/_clix2017.scss */ +.course_creator .course_editor.edit_mode button { + color: #5097b5; + border-color: #5097b5; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} +/* line 3125, ../../../scss/_clix2017.scss */ +.course_creator .course_editor.edit_mode .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 20%; + background-color: #2a6882; + border: 1px solid #e5f1f6; +} +/* line 3132, ../../../scss/_clix2017.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd { + border-color: #295566; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 3137, ../../../scss/_clix2017.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { + background: inherit; + color: #8fbbd8; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 3142, ../../../scss/_clix2017.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { + width: 20px; +} +/* line 3144, ../../../scss/_clix2017.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { + display: block; +} +/* line 3148, ../../../scss/_clix2017.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { + display: none; + position: absolute; + top: 22px; + right: -20px; + margin: 0px 10px; + z-index: 100; + background: #fff; + color: #999999; + border-radius: 3px; +} +/* line 3159, ../../../scss/_clix2017.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { + display: block; + margin: 0px; + padding: 5px 25px; +} +/* line 3164, ../../../scss/_clix2017.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { + background-color: #d5f2ff; +} +/* line 3170, ../../../scss/_clix2017.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { + display: block; +} +/* line 3176, ../../../scss/_clix2017.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; + padding-right: 20px; + border-color: #295566; + border-bottom: 1px solid transparent; +} +/* line 3183, ../../../scss/_clix2017.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { + border-width: 1px 0px 1px 0px; + border-style: solid; + border-color: #50c0f8; +} +/* line 3190, ../../../scss/_clix2017.scss */ +.course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #edf6ff; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 3201, ../../../scss/_clix2017.scss */ +.course_creator .course_editor.edit_mode .course-editor-section { + width: 77%; + opacity: 1; + max-width: 100%; + background: #fff; + overflow-x: hidden; + transition: width 1.9s ease, opacity 4s ease; + -webkit-transition: width 1.9s ease, opacity 4s ease; +} + +/* line 3220, ../../../scss/_clix2017.scss */ +.tile_modal .editor_modal_content .modal_tile .th { + width: 100%; + height: 210px; + box-shadow: none; +} +/* line 3225, ../../../scss/_clix2017.scss */ +.tile_modal .editor_modal_content .modal_tile .th > img { + height: 180px; + width: 100%; +} +/* line 3230, ../../../scss/_clix2017.scss */ +.tile_modal .editor_modal_content .modal_tile .th > span { + display: block; + width: 100%; + text-align: center; + line-height: 22px; +} + +/* line 3244, ../../../scss/_clix2017.scss */ +#appModal .editor_modal_content > div { + width: 100%; +} +/* line 3246, ../../../scss/_clix2017.scss */ +#appModal .editor_modal_content > div > div { + display: inline-block; + vertical-align: top; +} +/* line 3251, ../../../scss/_clix2017.scss */ +#appModal .editor_modal_content .app_row { + margin-bottom: 39px; +} +/* line 3254, ../../../scss/_clix2017.scss */ +#appModal .editor_modal_content .app_row .app_image { + padding: 10px; +} +/* line 3257, ../../../scss/_clix2017.scss */ +#appModal .editor_modal_content .app_row .app_image > div { + border: 1px solid #999; + height: 222px; +} +/* line 3263, ../../../scss/_clix2017.scss */ +#appModal .editor_modal_content .app_row .app_desc { + padding-left: 10px; +} + +/* line 3272, ../../../scss/_clix2017.scss */ +.editor_modal .editor_modal_title { + color: #3c5264; +} +/* line 3277, ../../../scss/_clix2017.scss */ +.editor_modal .editor_modal_actions > a { + display: inline-block; +} +/* line 3280, ../../../scss/_clix2017.scss */ +.editor_modal .editor_modal_actions > a.close-reveal-modal { + line-height: inherit; + position: inherit; + color: #c601bc; +} + +/* line 3290, ../../../scss/_clix2017.scss */ +.reveal-modal-overlay, dialog { + padding: 0px; + padding-bottom: 13px; +} + +/* line 3295, ../../../scss/_clix2017.scss */ +.overlay-title { + margin: 15px 10px 10px 10px; + letter-spacing: -1px; +} + +/* line 3300, ../../../scss/_clix2017.scss */ +.custom_dropdown { + position: relative; + z-index: 10; + display: inline-block; +} +/* line 3306, ../../../scss/_clix2017.scss */ +.custom_dropdown > a { + height: 30px; + display: block; +} +/* line 3312, ../../../scss/_clix2017.scss */ +.custom_dropdown:hover .dropdown_content { + display: block; +} +/* line 3317, ../../../scss/_clix2017.scss */ +.custom_dropdown .dropdown_content { + background-color: #fff; + border-radius: 10px; + display: none; + position: absolute; + top: 30px; + border: 1px solid #ccc; +} +/* line 3325, ../../../scss/_clix2017.scss */ +.custom_dropdown .dropdown_content.left_align { + left: -54px; +} +/* line 3329, ../../../scss/_clix2017.scss */ +.custom_dropdown .dropdown_content.right_align { + right: -10px; +} +/* line 3333, ../../../scss/_clix2017.scss */ +.custom_dropdown .dropdown_content li { + padding: 10px 35px; + list-style: none; + white-space: nowrap; +} +/* line 3338, ../../../scss/_clix2017.scss */ +.custom_dropdown .dropdown_content li a { + margin: 0px; + width: 70px; +} +/* line 3343, ../../../scss/_clix2017.scss */ +.custom_dropdown .dropdown_content li:hover { + background-color: #d5f2ff; +} +/* line 3350, ../../../scss/_clix2017.scss */ +.custom_dropdown a { + color: #999999; +} + +/* line 3356, ../../../scss/_clix2017.scss */ +.button-hollow-purple { + background: inherit; + border: 2px solid #c601bc; + border-radius: 5px; + color: #c601bc; + font-weight: 600; + letter-spacing: 0.9px; + padding: 3px 10px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} + +/* line 3369, ../../../scss/_clix2017.scss */ +.button-hollow-grey { + background: inherit; + border: 2px solid #c9d1d8; + border-radius: 5px; + color: #c9d1d8; + font-weight: 600; + letter-spacing: 0.9px; + padding: 1.4px 6px 0.7px 8.5px; + cursor: pointer; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} +/* line 3380, ../../../scss/_clix2017.scss */ +.button-hollow-grey:hover { + background-color: #f5f5f5; +} +/* line 3385, ../../../scss/_clix2017.scss */ +.button-hollow-grey > a { + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + background-color: inherit; + color: #757575 !important; + transition: all .1s ease; + margin-right: 1px; +} + +/* line 3397, ../../../scss/_clix2017.scss */ +.button-hollow-blue { + background: inherit; + border: 2px solid #2b4a7b; + border-radius: 5px; + color: #2b4a7b; + font-weight: 600; + letter-spacing: 0.9px; + padding: 2px 10px; + transition: color 1s ease, border-color 1s ease; + -webkit-transition: color 1s ease, border-color 1s ease; +} + +/* line 3408, ../../../scss/_clix2017.scss */ +.save_edit_activity { + margin-right: 16.9px; + margin-top: 37.3px; +} + +/* line 3413, ../../../scss/_clix2017.scss */ +.activity-name { + margin-left: 20px; + margin-top: 5px; +} + +/* line 3418, ../../../scss/_clix2017.scss */ +.activity-name-label { + width: 80%; + margin-left: 20px; + margin-top: 5px; +} + +/* line 3425, ../../../scss/_clix2017.scss */ +.create_activity_new { + margin-left: -15px; +} + +/* line 3429, ../../../scss/_clix2017.scss */ +.create-discussion { + position: relative; + margin-bottom: 20px; +} +/* line 3433, ../../../scss/_clix2017.scss */ +.create-discussion > div { + display: inline-block; + vertical-align: top; + margin: 5px 0px; +} +/* line 3439, ../../../scss/_clix2017.scss */ +.create-discussion .button { + margin: 5px 0px; +} +/* line 3442, ../../../scss/_clix2017.scss */ +.create-discussion .ckeditor-content-comment { + width: 85%; + margin-left: 1em; +} +/* line 3446, ../../../scss/_clix2017.scss */ +.create-discussion .ckeditor-content-comment > div { + display: inline-block; + vertical-align: top; +} +/* line 3451, ../../../scss/_clix2017.scss */ +.create-discussion .ckeditor-content-comment .ckeditor-reply-area { + width: 90%; +} + +/* line 3458, ../../../scss/_clix2017.scss */ +#replies-area .ckeditor-content-reply { + margin-top: 1em; + /*width: 97%;*/ +} +/* line 3462, ../../../scss/_clix2017.scss */ +#replies-area .ckeditor-content-reply .ckeditor-reply-area { + display: inline-block; + width: 90%; + margin-left: 1em; +} +/* line 3467, ../../../scss/_clix2017.scss */ +#replies-area .ckeditor-content-reply .post-btn-div { + display: inline-block; + vertical-align: top; +} +/* line 3471, ../../../scss/_clix2017.scss */ +#replies-area .ckeditor-content-reply .post-btn { + background-color: #720f5e; + width: 77px; + margin-left: 17px; +} +/* line 3475, ../../../scss/_clix2017.scss */ +#replies-area .ckeditor-content-reply .post-btn:hover { + color: #720f5e; + background-color: #ffffff; +} +/* line 3484, ../../../scss/_clix2017.scss */ +#replies-area .disc-replies { + /*background-color:#ddd;*/ + margin-left: 48px; + margin-top: 10px; + padding-bottom: 0em; + border-top: 1px solid #B1B1B1; + width: 80%; +} +/* line 3493, ../../../scss/_clix2017.scss */ +#replies-area .disc-replies .reply-btn { + cursor: pointer; + color: grey !important; +} +/* line 3498, ../../../scss/_clix2017.scss */ +#replies-area .disc-replies .reply-btn:hover { + color: #000 !important; +} +/* line 3501, ../../../scss/_clix2017.scss */ +#replies-area .disc-replies .discussion-title-username { + color: #ffffff !important; + height: 2em; + padding-right: 10px; + padding-left: 10px; + line-height: 1.5em; +} +/* line 3511, ../../../scss/_clix2017.scss */ +#replies-area .disc-replies .discussion-footer { + /*background-color:#CCCCCC;*/ + color: gray !important; + height: 2em; + padding-right: 10px; + padding-left: 10px; + border-radius: 0px 0px 5px 5px; + /*background-color: #f2f2f2;*/ +} +/* line 3520, ../../../scss/_clix2017.scss */ +#replies-area .disc-replies .discussion-footer > a { + vertical-align: middle; + line-height: 2em; +} +/* line 3526, ../../../scss/_clix2017.scss */ +#replies-area .disc-replies .discussion-content { + color: #262626; + word-wrap: break-word; + /*background-color: #f2f2f2;*/ +} + +/* line 3538, ../../../scss/_clix2017.scss */ +.bg-img { + height: 100%; + background-size: 100%; + background-repeat: no-repeat; +} + +/* line 3546, ../../../scss/_clix2017.scss */ +.clix-text { + z-index: -1; +} + +/* line 3549, ../../../scss/_clix2017.scss */ +.panel-mod { + background-color: transparent; + border: none; +} + +/* line 3554, ../../../scss/_clix2017.scss */ +.asset_content_upload { + width: 100% !important; +} + +/* line 3558, ../../../scss/_clix2017.scss */ +#upload_asset { + margin-top: 60px !important; +} + +/* line 3562, ../../../scss/_clix2017.scss */ +#profile-img { + height: 40px; + margin-right: 5px; +} + +/* line 3567, ../../../scss/_clix2017.scss */ +.profile-img { + height: 40px; + width: 40px; + margin-right: 5px; + border-radius: 2px; +} + +/* line 3574, ../../../scss/_clix2017.scss */ +.activity-detail-page { + margin-top: 20px; + margin-left: 15px; +} + +/* line 3583, ../../../scss/_clix2017.scss */ +.activity-detail-content #scstyle header { + margin-top: 0px !important; +} + +/* line 3587, ../../../scss/_clix2017.scss */ +.activity-editor { + margin: 50px; + margin-left: 15px; +} + +/* line 3593, ../../../scss/_clix2017.scss */ +.tag-ele { + font-weight: normal; + text-align: center; + text-decoration: none; + line-height: 1; + white-space: nowrap; + display: inline-block; + position: relative; + margin-bottom: inherit; + padding: 0.25rem 0.5rem 0.25rem; + font-size: 0.6875rem; + background-color: #ffffff; + color: #ce7869; + border: 1px solid; + border-radius: 6px; + text-transform: none; + margin-right: -11px; +} + +/* Tags styles */ +/* line 3616, ../../../scss/_clix2017.scss */ +.asset-tags-container { + width: 100%; + height: 50px; + background: #fff; + padding: 5px 15px; + margin-bottom: 65px; +} +/* line 3623, ../../../scss/_clix2017.scss */ +.asset-tags-container .tag-input-ele { + margin-left: 17px; + width: 96%; +} +/* line 3628, ../../../scss/_clix2017.scss */ +.asset-tags-container .added-tags-div { + margin-left: -206px; +} +/* line 3633, ../../../scss/_clix2017.scss */ +.asset-tags-container #add-tag-btn { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 5px !important; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 8px; + cursor: pointer; + display: inline-block; +} +/* line 3646, ../../../scss/_clix2017.scss */ +.asset-tags-container #add-tag-btn:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 3654, ../../../scss/_clix2017.scss */ +.tags-container { + width: 100%; + height: 50px; + background: #fff; + padding: 5px 15px; + box-shadow: 1px 0px 0px #000; + margin-bottom: 65px; +} +/* line 3662, ../../../scss/_clix2017.scss */ +.tags-container .add-tag-heading span { + width: 40%; + color: #99aaba; + font-size: 10px; + text-transform: uppercase; + letter-spacing: 2px; + margin-top: 15px; + margin-left: 8px; + font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", "sans-serif"; +} +/* line 3673, ../../../scss/_clix2017.scss */ +.tags-container .tag-input-ele { + margin-left: 193px; + width: 54%; +} +/* line 3678, ../../../scss/_clix2017.scss */ +.tags-container .added-tags-div { + margin-left: 293px !important; + width: 54%; +} +/* line 3683, ../../../scss/_clix2017.scss */ +.tags-container #add-tag-btn { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 5px !important; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 8px; + cursor: pointer; + display: inline-block; +} +/* line 3696, ../../../scss/_clix2017.scss */ +.tags-container #add-tag-btn:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 3704, ../../../scss/_clix2017.scss */ +.activity-lang { + border: 1px solid #cccccc; + border-radius: 5px; + height: 38px; + width: 45%; + font-size: 14px; +} + +/* +.asset-lang{ + height: 40px; + margin-left: 20px; + width: 99%; +} +*/ +/* line 3721, ../../../scss/_clix2017.scss */ +.editor-div { + height: 100%; +} + +/* line 3725, ../../../scss/_clix2017.scss */ +#asset-descid { + margin-bottom: 7px; +} + +/* line 3729, ../../../scss/_clix2017.scss */ +.page-name { + margin-top: 4px; +} + +/* line 3733, ../../../scss/_clix2017.scss */ +.asset_list { + margin-left: 30px; +} + +/* line 3737, ../../../scss/_clix2017.scss */ +.interaction-settings-div { + margin-left: 25px; + margin-top: 10px; +} +/* line 3741, ../../../scss/_clix2017.scss */ +.interaction-settings-div .yes_no_disc_div { + text-align: center; + font-size: 24px; + font-weight: 300; +} + +/* line 3753, ../../../scss/_clix2017.scss */ +body { + background-color: #fff; +} + +/* + Styling for the Secondary header 2 +*/ +/* line 3763, ../../../scss/_clix2017.scss */ +.activity_player_header { + background-color: rgba(107, 0, 84, 0.97); + box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); +} +/* line 3766, ../../../scss/_clix2017.scss */ +.activity_player_header > div { + height: 45px; + line-height: 45px; + display: inline-block; + vertical-align: top; +} +/* line 3773, ../../../scss/_clix2017.scss */ +.activity_player_header > div:not(:last-child) { + border-right: 1px solid #fff; +} +/* line 3782, ../../../scss/_clix2017.scss */ +.activity_player_header .header_icon { + font-size: 20px; + line-height: 45px; + color: #ffc14f; +} +/* line 3788, ../../../scss/_clix2017.scss */ +.activity_player_header .header_icon_block { + color: #ffc14f; + width: 70px; + cursor: pointer; + text-align: center; +} +/* line 3795, ../../../scss/_clix2017.scss */ +.activity_player_header .header_text_block { + padding: 0px 15px; +} +/* line 3797, ../../../scss/_clix2017.scss */ +.activity_player_header .header_text_block a { + color: #ffc14f; +} +/* line 3802, ../../../scss/_clix2017.scss */ +.activity_player_header .back_button { + border-color: #e0e0e0; + background-color: rgba(244, 244, 244, 0.3); +} +/* line 3805, ../../../scss/_clix2017.scss */ +.activity_player_header .back_button i { + color: #71318b; +} +/* line 3811, ../../../scss/_clix2017.scss */ +.activity_player_header .settings i { + transition: transform .5s ease-in-out; + -webkit-transition: -webkit-transform .5s ease-in-out; +} +/* line 3815, ../../../scss/_clix2017.scss */ +.activity_player_header .settings:hover i { + transform: rotate(90deg); + -webkit-transform: rotate(90deg); +} +/* line 3820, ../../../scss/_clix2017.scss */ +.activity_player_header .header_title { + position: relative; + color: #fff; + font-weight: 500; + font-size: 18px; + letter-spacing: 0.6px; + width: calc(100% - 1024px); +} +/* line 3829, ../../../scss/_clix2017.scss */ +.activity_player_header .pagination:not(i) { + color: #a983b9; +} + +/* Overriding off-canvas class of foundation for responsive activity player header*/ +/* line 3838, ../../../scss/_clix2017.scss */ +.tab-bar { + background: rgba(107, 0, 84, 0.97); +} + +/* line 3843, ../../../scss/_clix2017.scss */ +.left-off-canvas-menu { + background: rgba(107, 0, 84, 0.97); +} + +/* line 3847, ../../../scss/_clix2017.scss */ +.right-off-canvas-menu { + background: rgba(107, 0, 84, 0.97); +} + +/* +Buddy Vertical Bar Css +*/ +/* line 3860, ../../../scss/_clix2017.scss */ +.buddy_panel { + position: fixed; + right: 0px; + top: 0px; + width: 70px; + height: 100vh; + padding: 10px; + background-color: rgba(16, 29, 41, 0.64); + overflow-y: auto; + z-index: 100; +} +/* line 3873, ../../../scss/_clix2017.scss */ +.buddy_panel .add_buddy_icon { + height: 50px; + width: 50px; + border-radius: 4px; + cursor: pointer; +} + +/* line 3881, ../../../scss/_clix2017.scss */ +.buddy_icon { + border-radius: 4px; + overflow: hidden; + height: 50px; + width: 50px; + cursor: pointer; + margin-bottom: 10px; + position: relative; +} +/* line 3890, ../../../scss/_clix2017.scss */ +.buddy_icon svg { + height: 50px; + width: 50px; + background-color: #fff; +} +/* line 3896, ../../../scss/_clix2017.scss */ +.buddy_icon.buddy_inactive:before { + content: ''; + position: absolute; + left: 0px; + top: 0px; + height: 100%; + width: 100%; + display: block; + background: rgba(0, 0, 0, 0.5); +} +/* line 3907, ../../../scss/_clix2017.scss */ +.buddy_icon .buddy_edit, .buddy_icon .buddy_delete { + display: none; +} +/* line 3912, ../../../scss/_clix2017.scss */ +.buddy_icon.buddy_editable:hover .buddy_edit { + position: absolute; + background: rgba(255, 255, 255, 0.5); + padding: 3px; + right: 0px; + bottom: 0px; + display: block; +} +/* line 3923, ../../../scss/_clix2017.scss */ +.buddy_icon.buddy_deleteable:hover .buddy_delete { + position: absolute; + background: rgba(255, 255, 255, 0.5); + padding: 3px; + right: 0px; + bottom: 0px; + display: block; +} + +/* line 3934, ../../../scss/_clix2017.scss */ +.add_buddy_modal { + padding: 0px; +} +/* line 3936, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_header { + padding: 10px 20px; + position: relative; +} +/* line 3940, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_header .modal_title { + font-size: 25px; + color: #CE7869; + letter-spacing: 0; + line-height: 35px; +} +/* line 3946, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_header .modal_meta { + font-size: 14px; + color: #9DBEDD; + letter-spacing: 0; + line-height: 30px; +} +/* line 3953, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_header .sample_buddy { + position: absolute; + right: 30px; + top: 15px; +} +/* line 3960, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_body { + background-color: #101d29; + padding: 10px 20px; + max-height: 500px; + overflow: auto; +} +/* line 3966, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_body .step_title { + font-size: 20px; + font-weight: 400; + color: #fff; + letter-spacing: 0.9px; + margin: 10px 0px; +} +/* line 3973, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_body .step_title .step_number { + color: #82A4C3; +} +/* line 3978, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_body .buddy_color_option { + max-width: 75px; + display: inline-block; + vertical-align: top; + margin: 10px 20px; + cursor: pointer; +} +/* line 3985, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_body .buddy_color_option .color_sample { + display: block; + width: 50px; + height: 50px; + border-radius: 100%; + margin: 0px auto; +} +/* line 3993, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_body .buddy_color_option .color_name { + text-transform: capitalize; + font-size: 15px; + color: #82A4C3; + text-align: center; + font-weight: 400; + letter-spacing: 1px; + margin-top: 10px; +} +/* line 4004, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_body .buddy_color_option:hover .color_sample, .add_buddy_modal .modal_body .buddy_color_option.selected .color_sample { + border: 3px solid #bfe0ff; +} +/* line 4010, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_body .buddy_animal { + display: inline-block; + margin: 10px; + cursor: pointer; +} +/* line 4015, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_body .buddy_animal svg { + height: 80px; + width: 80px; +} +/* line 4019, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_body .buddy_animal svg path { + fill: #374B5E; +} +/* line 4024, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_body .buddy_animal .buddy_animal_name { + color: #fff; + text-align: center; + text-transform: capitalize; + letter-spacing: 1px; +} +/* line 4032, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_body .buddy_animal:hover path, .add_buddy_modal .modal_body .buddy_animal.selected path { + fill: #bfe0ff; +} +/* line 4039, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_footer { + height: 70px; + padding: 20px; +} +/* line 4044, ../../../scss/_clix2017.scss */ +.add_buddy_modal .modal_footer .removeBuddy i { + color: #bd2b2b; + font-size: 25px; +} + +/* + Common css that can be kept at a single place. +*/ +/* line 4059, ../../../scss/_clix2017.scss */ +.blue_round_button { + background-color: #00a9ee; + color: #fff; + border-radius: 4px; + padding: 3px 10px; + font-size: 16px; + letter-spacing: 0.7px; + line-height: 25px; +} + +/* line 4068, ../../../scss/_clix2017.scss */ +.text_button { + background-color: #fff; + color: #949494; + border-radius: 4px; + padding: 3px 10px; + font-size: 16px; + letter-spacing: 0.7px; + line-height: 25px; +} + +/* line 4078, ../../../scss/_clix2017.scss */ +.edit_button { + background-color: #fff; + color: #717171; + border-radius: 4px; + font-size: 16px; + letter-spacing: 0.7px; + line-height: 25px; + text-transform: none; + margin-top: 10px; + margin-right: -50px; +} +/* line 4088, ../../../scss/_clix2017.scss */ +.edit_button:hover { + color: #ce7869; +} + +/* line 4097, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 { + margin-bottom: 0px; + background-color: #fff; +} +/* line 4100, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 > li { + display: inline-block; +} +/* line 4103, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 > li > a { + list-style-type: none; + display: inline-block; + padding: 12px 12px 9px; + color: #ce7869; + cursor: pointer; + font-size: 18px; + letter-spacing: 0.8px; + border-bottom: 5px solid transparent; +} +/* line 4114, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { + border-bottom: 3px solid #ffc14e; +} + +/* line 4125, ../../../scss/_clix2017.scss */ +.activity_sheet { + background: rgba(231, 231, 231, 0.12); + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; +} +/* line 4132, ../../../scss/_clix2017.scss */ +.activity_sheet > .columns { + padding: 0px; + height: 100%; +} +/* line 4136, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor { + margin-bottom: 10px; + position: relative; + /*Overriding default*/ + /*Custom css*/ +} +/* line 4142, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { + padding: 0px; + padding-left: 0px; +} +/* line 4148, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor > div { + display: inline-block; + vertical-align: top; +} +/* line 4153, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; +} +/* line 4162, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd { + border-bottom: 2px solid #9abfd9; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 4166, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { + position: relative; + padding-left: 0px; +} +/* line 4173, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { + position: absolute; + left: 23px; + line-height: 20px; + color: #74b3dc; +} +/* line 4182, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 4189, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + display: block; + position: relative; + display: none; +} +/* line 4198, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { + display: none; +} +/* line 4203, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { + margin-bottom: 0px; +} +/* line 4207, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; +} +/* line 4217, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { + display: block; +} +/* line 4223, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { + content: ''; + line-height: 55px; + color: #d7d7d7; +} +/* line 4231, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { + margin: 0px; +} +/* line 4233, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 4240, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { + color: #7ca0d0; + width: 100%; + display: block; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 4249, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { + background: inherit; +} +/* line 4258, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + transition: width 1s ease; + -webkit-transition: width 1s ease; + height: inherit; + max-height: 100%; + overflow-y: auto; + background: #fff; +} +/* line 4268, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header { + height: 100px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; +} +/* line 4273, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .header-left { + padding: 29px 0px; +} +/* line 4276, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { + color: #3c5264; + font-weight: 600; + margin-right: 10px; +} +/* line 4285, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { + margin: 40px 35px 0px; +} +/* line 4290, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; +} +/* line 4294, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { + margin: 0px; +} +/* line 4296, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { + list-style: none; + display: inline-block; +} +/* line 4299, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; +} +/* line 4305, ../../../scss/_clix2017.scss */ +.activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { + display: inline-block; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; +} + +/* line 4321, ../../../scss/_clix2017.scss */ +.course_editor_section { + background: #fff; + min-height: 100vh; + margin-bottom: 10px; + padding-right: 4px; +} +/* line 4326, ../../../scss/_clix2017.scss */ +.course_editor_section #scstyle { + margin-top: -10px; +} + +/* line 4333, ../../../scss/_clix2017.scss */ +.lesson-title { + font-size: 18px; + padding-top: 10px; + padding-left: 10px; +} + +/* line 4339, ../../../scss/_clix2017.scss */ +.activity-title { + font-size: 18px; + padding-top: 10px; + padding-left: 23px; + margin: 0px; +} +/* line 4345, ../../../scss/_clix2017.scss */ +.activity-title > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 9px 0px 9px 11px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; + margin-left: -23px; +} +/* line 4354, ../../../scss/_clix2017.scss */ +.activity-title > li.active { + background: rgba(116, 0, 255, 0.31); +} +/* line 4358, ../../../scss/_clix2017.scss */ +.activity-title > li > a { + color: black; +} + +/* line 4367, ../../../scss/_clix2017.scss */ +.activity_page_rendered { + margin-left: 20px; + max-width: 100%; +} + +/* Rating css */ +/* line 4377, ../../../scss/_clix2017.scss */ +.rating-bar { + /* the hidden clearer */ + /* this is gross, I threw this in to override the starred + buttons when hovering. */ +} +/* line 4379, ../../../scss/_clix2017.scss */ +.rating-bar > span { + /* remove inline-block whitespace */ + font-size: 0; + /* flip the order so we can use the + and ~ combinators */ + unicode-bidi: bidi-override; + direction: rtl; +} +/* line 4387, ../../../scss/_clix2017.scss */ +.rating-bar.unrated { + /* If the user has not rated yet */ +} +/* line 4389, ../../../scss/_clix2017.scss */ +.rating-bar.unrated:checked ~ label:before { + color: #ffc14e; +} +/* line 4395, ../../../scss/_clix2017.scss */ +.rating-bar [type*="radio"] { + display: none; +} +/* line 4397, ../../../scss/_clix2017.scss */ +.rating-bar [type*="radio"] + label { + /* only enough room for the star */ + display: inline-block; + overflow: hidden; + text-indent: 9999px; + width: 1em; + height: 1.4em; + white-space: nowrap; + font-size: 1.2rem; + margin: 0; + vertical-align: bottom; +} +/* line 4409, ../../../scss/_clix2017.scss */ +.rating-bar [type*="radio"] + label:before { + display: inline-block; + text-indent: -9999px; + content: '\2606'; + /* WHITE STAR */ + color: #888; +} +/* line 4416, ../../../scss/_clix2017.scss */ +.rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { + content: '\2605'; + /* BLACK STAR */ + color: #FF980D; + text-shadow: 0 0 1px #333; +} +/* line 4427, ../../../scss/_clix2017.scss */ +.rating-bar .last[type*="radio"] + label { + text-indent: -9999px; + width: .5em; + margin-left: -.5em; +} +/* line 4434, ../../../scss/_clix2017.scss */ +.rating-bar .last[type*="radio"] + label:before { + width: .5em; + height: 1.4em; +} +/* line 4442, ../../../scss/_clix2017.scss */ +.rating-bar:hover [type*="radio"] + label:before { + content: '\2606'; + /* WHITE STAR */ + color: #888; + text-shadow: none; +} +/* line 4447, ../../../scss/_clix2017.scss */ +.rating-bar:hover [type*="radio"] + label:hover ~ label:before, +.rating-bar:hover [type*="radio"] + label:hover:before { + content: '\2605'; + /* BLACK STAR */ + color: #FF980D; + text-shadow: 0 0 1px #333; +} + +/** + * Sass styles related to unit cards + */ +/* line 4466, ../../../scss/_clix2017.scss */ +.unit_card { + width: 300px; + color: #000; + padding: 15px; + margin: 10px; + cursor: pointer; + border-radius: 5px; + font-size: 14px; + border: 2px solid #d5d5d5; + position: relative; +} +/* line 4478, ../../../scss/_clix2017.scss */ +.unit_card:hover { + box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2); +} +/* line 4483, ../../../scss/_clix2017.scss */ +.unit_card .unit_status { + position: absolute; + right: 0px; + top: -10px; + height: 25px; + padding: 2px 10px; + line-height: 20px; + border-radius: 3px; + letter-spacing: 0.6px; +} +/* line 4494, ../../../scss/_clix2017.scss */ +.unit_card .unit_header { + display: table; +} +/* line 4496, ../../../scss/_clix2017.scss */ +.unit_card .unit_header .unit_banner { + display: table-cell; + border-radius: 5px; + height: 50px; + width: 50px; + margin-right: 10px; + color: #333333; +} +/* line 4504, ../../../scss/_clix2017.scss */ +.unit_card .unit_header .unit_title { + display: table-cell; + font-size: 20px; + font-weight: 500; + letter-spacing: 0.6px; + margin: 0px 0px 12px; + width: 200px; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; + vertical-align: middle; + color: #333333; +} +/* line 4518, ../../../scss/_clix2017.scss */ +.unit_card .unit_desc { + display: block; + /* Fallback for non-webkit */ + display: -webkit-box; + height: 58.8px; + /* Fallback for non-webkit */ + max-width: 400px; + overflow: hidden; + text-overflow: ellipsis; + font-size: 14px; + line-height: 1.4; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; + margin: 10px 0px 20px; + color: #333333; +} +/* line 4534, ../../../scss/_clix2017.scss */ +.unit_card .unit_breif .unit_breif_row i { + margin-right: 10px; + color: #99aaba; +} +/* line 4540, ../../../scss/_clix2017.scss */ +.unit_card .unit_actions { + border-top: 1px solid #ccc; + margin: 20px 0px 0px; + padding: 5px 0px; +} + +/* + Common css + */ +/* line 4550, ../../../scss/_clix2017.scss */ +.text-button-blue { + background-color: transparent; + color: #00A9EE; + padding: 3px 10px; + font-size: 16px; + letter-spacing: 0.7px; + line-height: 25px; +} + +/** + Status styles added for the unit styles. + */ +/* line 4569, ../../../scss/_clix2017.scss */ +.in-progress-status { + color: #fff; + background-color: #fd9e29; +} + +/* line 4574, ../../../scss/_clix2017.scss */ +.in-complete-status { + color: #fff; + background-color: #fd9e29; +} + +/* line 4579, ../../../scss/_clix2017.scss */ +.thumbnail_style { + margin-top: -30px; + margin-left: -30px; +} + +/* line 4584, ../../../scss/_clix2017.scss */ +.strip { + height: 143px; + margin-left: -13px; + margin-bottom: 10px; +} + +/* line 4590, ../../../scss/_clix2017.scss */ +.title-strip { + box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); + margin-top: -29px; + padding-left: 10px; +} +/* line 4594, ../../../scss/_clix2017.scss */ +.title-strip a { + float: right; + padding-right: 18px; + text-transform: uppercase; + color: #007095; +} +/* line 4604, ../../../scss/_clix2017.scss */ +.title-strip .position-actions { + margin-top: -60px; + margin-left: 760px; +} +/* line 4609, ../../../scss/_clix2017.scss */ +.title-strip .right-margin { + margin-right: 46px; +} +/* line 4612, ../../../scss/_clix2017.scss */ +.title-strip .course_actions > span { + background: #fff; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #2e3f51; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; + margin-top: 30px; + z-index: 1; +} +/* line 4629, ../../../scss/_clix2017.scss */ +.title-strip .course_actions > i { + margin-right: 3px; + background: rgba(0, 0, 0, 0.6); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; +} + +/* line 4643, ../../../scss/_clix2017.scss */ +.dropdown-settings { + text-align: left; + text-transform: none; + margin-top: 0px; + margin-right: 0px; + width: 198px; + background: white; + border-radius: 1px; +} +/* line 4651, ../../../scss/_clix2017.scss */ +.dropdown-settings:hover { + color: #ce7869; + border-left: 2px solid #ffc14e; +} + +/* line 4657, ../../../scss/_clix2017.scss */ +.activity-slides-container { + height: 100%; + width: 80%; + background: #f8f8f8; + margin-bottom: 2em; + padding: 0em 0em 0em 0em; + margin-bottom: 15px; +} +/* line 4666, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides { + height: 100%; + color: #f8f8f8; +} +/* line 4671, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides .activity-slide { + padding: 1em; + height: inherit; + background: #fff; + position: relative; +} +/* line 4677, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides .activity-slide .view-related-content { + border: 1px solid #999; + display: inline-block; + padding: 2px 7px; + color: #999999; + margin-left: 12%; +} +/* line 4685, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides .activity-slide .page > section { + margin-left: 50%; + transform: translate(-50%); +} +/* line 4691, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides .related-content-close { + position: absolute; + right: -2px; + top: -8px; + font-size: 25px !important; + display: none; + color: #8E8E8E; +} +/* line 4700, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides .content-expanded > i { + font-size: 20px !important; + color: #ccc !important; + top: 8px !important; +} +/* line 4705, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header { + margin-left: 20px !important; +} +/* line 4707, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { + display: none !important; +} +/* line 4710, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { + display: inline-block !important; + float: right; + background: #dddddd; + padding: 2px 7px; + border: 1px solid #ccc; + font-size: 13px; + color: #757575; + margin-right: 20px; +} +/* line 4720, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { + font-size: 15px !important; + position: relative; +} +/* line 4724, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { + display: block; +} +/* line 4727, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { + display: none !important; +} +/* line 4732, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides .content-expanded .related-content-body { + display: block !important; +} +/* line 4736, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides #related-content { + width: 100%; + margin: 0px auto; + /* border: 0px solid #ccc; */ + padding: 5px 10px; + background: #f8f8f8; + margin-top: 10px; + min-height: 50px; + position: relative; + color: #222222; +} +/* line 4747, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides #related-content > i { + color: #fff; + font-size: 40px; + position: absolute; + left: 8px; + top: 4px; +} +/* line 4755, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header { + margin-left: 40px; +} +/* line 4757, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { + display: none; +} +/* line 4760, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header span { + display: block; + vertical-align: top; + margin: 2px 0px 2px 5px; + font-weight: 600; + font-size: 13px; + letter-spacing: 0.8px; + color: #999999; +} +/* line 4769, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { + font-size: 20px; + color: #000; + cursor: pointer; +} +/* line 4775, ../../../scss/_clix2017.scss */ +.activity-slides-container .activity-slides #related-content .related-content-body { + display: none; +} + +/** + * Sass styles related to module cards + */ +/* line 4790, ../../../scss/_clix2017.scss */ +.module_card { + display: table; + height: 290px; + width: 526px; + cursor: pointer; + margin: 10px; + border-radius: 5px; + position: relative; + box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); +} +/* line 4800, ../../../scss/_clix2017.scss */ +.module_card:hover { + box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); +} +/* line 4804, ../../../scss/_clix2017.scss */ +.module_card > div { + display: table-cell; + height: 290px; +} +/* line 4808, ../../../scss/_clix2017.scss */ +.module_card .card_banner { + width: 300px; + vertical-align: middle; + overflow: hidden; + background-size: 100% 100%; + border-radius: 8px 0px 0px 8px; + box-shadow: inset 0 0 5px 2px; + position: relative; + z-index: 3; + -webkit-transition: border-radius .2s; + transition: border-radius .2s; +} +/* line 4820, ../../../scss/_clix2017.scss */ +.module_card .card_banner > img { + height: 100%; + width: 100%; + border-radius: 4px; + -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); +} +/* line 4825, ../../../scss/_clix2017.scss */ +.module_card .card_banner > img:hover { + -webkit-transform: scale(1.03); + -moz-transform: scale(1.03); + -ms-transform: scale(1.03); + -o-transform: scale(1.03); + transform: scale(1.03); + opacity: 0.8; +} +/* line 4837, ../../../scss/_clix2017.scss */ +.module_card .card_banner > h4 { + position: absolute; + top: 100px; + left: 0; + width: 100%; + color: #ffffff !important; + text-shadow: 2px 0px 8px black; +} +/* line 4852, ../../../scss/_clix2017.scss */ +.module_card .card_title { + display: block; + font-size: 32px; + font-weight: 600; + text-align: center; + margin: 0px auto; + letter-spacing: 1px; +} +/* line 4862, ../../../scss/_clix2017.scss */ +.module_card.animated_card .card_banner { + border-radius: 8px; +} +/* line 4865, ../../../scss/_clix2017.scss */ +.module_card.animated_card:hover .card_banner { + border-radius: 8px 0px 0px 8px; +} +/* line 4870, ../../../scss/_clix2017.scss */ +.module_card.animated_card.isOpen .card_banner { + border-radius: 8px 0px 0px 8px; +} +/* line 4874, ../../../scss/_clix2017.scss */ +.module_card.animated_card:hover .card_summary { + left: 30px; +} +/* line 4877, ../../../scss/_clix2017.scss */ +.module_card.animated_card .card_summary { + left: 5px; +} +/* line 4881, ../../../scss/_clix2017.scss */ +.module_card .card_summary { + width: 290px; + padding: 0px 15px; + vertical-align: middle; + border-style: solid; + border-width: 1px 1px 1px 0px; + border-radius: 0px 7px 7px 0px; + border-color: #d5d5d5; + box-shadow: inset 2px 0px 13px -5px; + -webkit-transition: left .4s ease-in-out; + transition: left .4s ease-in-out; + -webkit-transition-property: left; + /* Safari */ + transition-property: left; +} +/* line 4895, ../../../scss/_clix2017.scss */ +.module_card .card_summary .card_label { + font-weight: 500; + font-size: 12.5px; + letter-spacing: 1px; + color: black; +} +/* line 4901, ../../../scss/_clix2017.scss */ +.module_card .card_summary .card_section { + margin: 5px 0px; + padding: 5px 0px; +} +/* line 4905, ../../../scss/_clix2017.scss */ +.module_card .card_summary .card_section:not(:last-child) { + border-bottom: 1px solid #ccc; +} +/* line 4908, ../../../scss/_clix2017.scss */ +.module_card .card_summary .card_section p { + margin-bottom: 7px; + font-size: 12.5px; +} +/* line 4912, ../../../scss/_clix2017.scss */ +.module_card .card_summary .card_section .ellipsis { + width: 245px; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +/* line 4920, ../../../scss/_clix2017.scss */ +.module_card .card_summary .module_brief { + display: block; + /* Fallback for non-webkit */ + display: -webkit-box; + height: 52.5px; + /* Fallback for non-webkit */ + max-width: 400px; + overflow: hidden; + text-overflow: ellipsis; + font-size: 12.5px; + line-height: 1.4; + -webkit-line-clamp: 3; + -webkit-box-orient: vertical; + color: black; +} + +/* line 4942, ../../../scss/_clix2017.scss */ +.lms_page .lms_banner { + width: 100%; + height: 150px; + background-size: 100% 100%; + position: relative; +} +/* line 4950, ../../../scss/_clix2017.scss */ +.lms_page .lms_banner:before { + content: ' '; + background-color: rgba(0, 0, 0, 0.1); + opacity: .5; + width: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); +} +/* line 4963, ../../../scss/_clix2017.scss */ +.lms_page .lms_banner:before a { + cursor: pointer; +} +/* line 4968, ../../../scss/_clix2017.scss */ +.lms_page .lms_banner .div-height { + height: 150px !important; + background-size: 100% 100%; + position: absolute !important; +} +/* line 4976, ../../../scss/_clix2017.scss */ +.lms_page .lms_banner .enroll_unit > a { + cursor: pointer; +} +/* line 4980, ../../../scss/_clix2017.scss */ +.lms_page .lms_banner .lms_heading { + color: #fff; + display: inline-block; + vertical-align: top; +} +/* line 4986, ../../../scss/_clix2017.scss */ +.lms_page .lms_banner .lms_heading .unit_name { + font-size: 36px; + font-family: OpenSans-Semibold; + display: block; + margin-top: 90px; + margin-left: 40px; + border-radius: 8px 0px 0px 8px; + transition: border-radius .2s; + text-shadow: 3px 2px #164a7b; +} +/* line 4997, ../../../scss/_clix2017.scss */ +.lms_page .lms_banner .lms_heading .right-margin { + margin-right: 46px; +} + +/* line 5006, ../../../scss/_clix2017.scss */ +.border-bottom-lms-header { + border-bottom: 1px solid #00000029; +} + +/* line 5011, ../../../scss/_clix2017.scss */ +.lms_secondary_header { + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); +} +/* line 5017, ../../../scss/_clix2017.scss */ +.lms_secondary_header .course_actions { + margin-top: 8px; +} +/* line 5020, ../../../scss/_clix2017.scss */ +.lms_secondary_header .course_actions > span { + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 23px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; +} +@media screen and (min-width: 980px) and (max-width: 1000px) { + /* line 5034, ../../../scss/_clix2017.scss */ + .lms_secondary_header .course_actions .course_actions { + margin-top: 8px; + } + /* line 5037, ../../../scss/_clix2017.scss */ + .lms_secondary_header .course_actions .course_actions > span { + margin-left: 50px; + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 23px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; + } +} + +/* line 5059, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 { + margin-bottom: 0px; + background-color: #fff; + display: inline; + width: 50%; +} +/* line 5064, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 > li { + display: inline-block; +} +/* line 5067, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 > li .course_actions > span { + background: #2e3f51; + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 1px 8px; + color: #fff; + font-size: 12px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + opacity: 0.8; + margin-top: 100px; +} + +/* line 5087, ../../../scss/_clix2017.scss */ +ul.authoring-tab { + background-color: #164a7b; + margin-bottom: 0px; + display: inline; + width: 50%; +} +/* line 5092, ../../../scss/_clix2017.scss */ +ul.authoring-tab > li { + display: inline-block; +} +/* line 5095, ../../../scss/_clix2017.scss */ +ul.authoring-tab > li > a { + list-style-type: none; + margin-right: -4px; + background-color: #164a7b; + padding: 12px 12px 9px; + cursor: pointer; + font-size: 18px; + display: inline-block; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; + color: #ffffff !important; +} +/* line 5106, ../../../scss/_clix2017.scss */ +ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { + border-bottom: 3px solid #a2238d; +} + +/* line 5117, ../../../scss/_clix2017.scss */ +.course-content { + background: #fff; + margin: 20px auto; + padding: 20px 0px; + margin-top: 0px; +} +/* line 5125, ../../../scss/_clix2017.scss */ +.course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { + background: #fff; +} +/* line 5128, ../../../scss/_clix2017.scss */ +.course-content ul.jqtree-tree .course-tree-node > div { + height: 35px; +} +/* line 5130, ../../../scss/_clix2017.scss */ +.course-content ul.jqtree-tree .course-tree-node > div a { + margin-right: 0.7em; +} + +/* line 5138, ../../../scss/_clix2017.scss */ +.notifications_listing { + max-width: 1176px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; +} +/* line 5155, ../../../scss/_clix2017.scss */ +.notifications_listing .notifications_content { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + border-bottom: 1px solid #D6D8DA !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; +} +/* line 5174, ../../../scss/_clix2017.scss */ +.notifications_listing .notifications_content:hover { + background: #F0F1F2 !important; +} +/* line 5177, ../../../scss/_clix2017.scss */ +.notifications_listing .notifications_content .notifications_content_left { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + width: 80% !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; +} +/* line 5188, ../../../scss/_clix2017.scss */ +.notifications_listing .notifications_content .notifications_content_left .notifications_content_details { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: flex-start !important; + flex-direction: column !important; + padding-left: 15px !important; + width: 103% !important; + -webkit-align-items: flex-start !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -ms-flex-align: start !important; + -webkit-box-align: start !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + min-height: 50px !important; + word-wrap: break-word !important; + text-overflow: ellipsis !important; +} +/* line 5208, ../../../scss/_clix2017.scss */ +.notifications_listing .notifications_content .notifications_content_left .notifications_content_details .hyperlink-user { + border: 2px solid #b9b9b9; + height: 50px; + width: 50px; +} +/* line 5213, ../../../scss/_clix2017.scss */ +.notifications_listing .notifications_content .notifications_content_left .notifications_content_details .hyperlink-style { + text-decoration: none !important; + font-family: inherit !important; + font-size: 12px !important; + line-height: 17px !important; + color: #164A7B !important; + width: 130% !important; + text-overflow: ellipsis !important; + max-height: 50px !important; + word-wrap: break-word !important; +} +/* line 5224, ../../../scss/_clix2017.scss */ +.notifications_listing .notifications_content .notifications_content_left .notifications_content_details .hyperlink-info { + text-decoration: none !important; + font-family: inherit !important; + font-size: 15px !important; + line-height: 22px !important; + color: rgba(0, 0, 0, 0.56) !important; + margin-top: 4px !important; +} + +/* line 5239, ../../../scss/_clix2017.scss */ +.analytics_listing { + max-width: 1176px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; +} +/* line 5256, ../../../scss/_clix2017.scss */ +.analytics_listing .analytics_content { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + border-bottom: 1px solid #D6D8DA !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; +} +/* line 5275, ../../../scss/_clix2017.scss */ +.analytics_listing .analytics_content:hover { + background: #F0F1F2 !important; +} +/* line 5278, ../../../scss/_clix2017.scss */ +.analytics_listing .analytics_content .analytics_content_left { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + width: 80% !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; +} +/* line 5289, ../../../scss/_clix2017.scss */ +.analytics_listing .analytics_content .analytics_content_left .analytics_content_details { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: flex-start !important; + flex-direction: column !important; + padding-left: 15px !important; + width: 103% !important; + -webkit-align-items: flex-start !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -ms-flex-align: start !important; + -webkit-box-align: start !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + min-height: 50px !important; + word-wrap: break-word !important; + text-overflow: ellipsis !important; +} +/* line 5309, ../../../scss/_clix2017.scss */ +.analytics_listing .analytics_content .analytics_content_left .analytics_content_details .hyperlink-user { + border: 2px solid #b9b9b9; + height: 50px; + width: 50px; +} +/* line 5314, ../../../scss/_clix2017.scss */ +.analytics_listing .analytics_content .analytics_content_left .analytics_content_details .hyperlink-style { + text-decoration: none !important; + font-family: inherit !important; + font-size: 12px !important; + line-height: 17px !important; + color: #164A7B !important; + width: 130% !important; + text-overflow: ellipsis !important; + max-height: 50px !important; + word-wrap: break-word !important; +} +/* line 5325, ../../../scss/_clix2017.scss */ +.analytics_listing .analytics_content .analytics_content_left .analytics_content_details .hyperlink-info { + text-decoration: none !important; + font-family: inherit !important; + font-size: 15px !important; + line-height: 22px !important; + color: rgba(0, 0, 0, 0.56) !important; + margin-top: 4px !important; +} + +/* line 5341, ../../../scss/_clix2017.scss */ +.lms_secondary_header { + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); + margin-top: 150px; +} + +@media screen and (max-width: 480px) { + /* line 5351, ../../../scss/_clix2017.scss */ + .lms_secondary_header { + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); + margin-top: 382px; + font-size: 18px; + letter-spacing: 0.8px; + } +} +@media screen and (max-width: 640px) { + /* line 5363, ../../../scss/_clix2017.scss */ + .lms_secondary_header { + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); + margin-top: 382px; + font-size: 18px; + letter-spacing: 0.8px; + } +} +@media screen and (max-width: 800px) { + /* line 5375, ../../../scss/_clix2017.scss */ + .lms_secondary_header { + width: 100%; + position: relative; + color: #fff; + box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); + border-bottom: 1px solid rgba(0, 0, 0, 0.25); + margin-top: 382px; + font-size: 18px; + letter-spacing: 0.8px; + } +} +/* line 5388, ../../../scss/_clix2017.scss */ +.topnav { + overflow: hidden; + background-color: #fff; +} + +/* line 5393, ../../../scss/_clix2017.scss */ +.topnav a { + float: left; + display: block; + color: #ce7869; + text-align: center; + padding: 14px 16px; + text-decoration: none; + font-size: 18px; + letter-spacing: 0.8px; +} + +/* line 5404, ../../../scss/_clix2017.scss */ +.topnav a:hover { + border-bottom: 3px solid #ffc14e; + color: #ce7869; +} + +/* line 5408, ../../../scss/_clix2017.scss */ +.selected { + border-bottom: 3px solid #ffc14e; +} + +/* line 5412, ../../../scss/_clix2017.scss */ +.topnav .icon { + display: none; +} + +@media screen and (max-width: 600px) { + /* line 5417, ../../../scss/_clix2017.scss */ + .topnav a:not(:first-child) { + display: none; + } + + /* line 5418, ../../../scss/_clix2017.scss */ + .topnav a.icon { + float: right; + display: block; + } +} +@media screen and (max-width: 600px) { + /* line 5425, ../../../scss/_clix2017.scss */ + .topnav.responsive { + position: relative; + } + + /* line 5426, ../../../scss/_clix2017.scss */ + .topnav.responsive .icon { + position: absolute; + right: 0; + top: 0; + } + + /* line 5431, ../../../scss/_clix2017.scss */ + .topnav.responsive a { + float: none; + display: block; + text-align: left; + } +} +/* line 5442, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 { + margin-bottom: 0px; + background-color: #fff; +} +/* line 5445, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 > li { + display: inline-block; +} +/* line 5448, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 > li > a { + list-style-type: none; + display: inline-block; + padding: 12px 12px 9px; + color: #ce7869; + cursor: pointer; + font-size: 18px; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; +} +/* line 5459, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { + border-bottom: 3px solid #ffc14e; +} + +/* line 5467, ../../../scss/_clix2017.scss */ +.course-content { + background: #fff; + margin: 20px auto; + padding: 20px 0px; + margin-top: 0px; +} +/* line 5475, ../../../scss/_clix2017.scss */ +.course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { + background: #fff; +} +/* line 5478, ../../../scss/_clix2017.scss */ +.course-content ul.jqtree-tree .course-tree-node > div { + height: 35px; +} +/* line 5480, ../../../scss/_clix2017.scss */ +.course-content ul.jqtree-tree .course-tree-node > div a { + margin-right: 0.7em; +} +/* line 5487, ../../../scss/_clix2017.scss */ +.course-content .course-unit-name { + padding-left: 20px; +} +/* line 5489, ../../../scss/_clix2017.scss */ +.course-content .course-unit-name:not(:last-child) { + border-bottom: 1px solid #d2cfcf; +} +/* line 5494, ../../../scss/_clix2017.scss */ +.course-content .course-unit-name > div .jqtree-title { + color: #3c5264; + font-size: 19px; + font-weight: 600; +} +/* line 5502, ../../../scss/_clix2017.scss */ +.course-content .course-activity-group > div .jqtree-title { + color: #74a0c0; + font-size: 17px; +} +/* line 5508, ../../../scss/_clix2017.scss */ +.course-content .course-activity-name > div .jqtree-title { + color: #74a0c0; + font-size: 17px; +} + +/* line 5515, ../../../scss/_clix2017.scss */ +.listing-row { + margin-top: 10px !important; +} + +/* line 5519, ../../../scss/_clix2017.scss */ +.raw_material_asset { + width: auto; + top: -0.50em; + position: absolute; + display: inline-block; + color: #ce7869; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 12px; + border-radius: 4px; + border: 2px solid #ffc14e; + background-color: #eefaff; + letter-spacing: 0.3px; +} + +/* line 5535, ../../../scss/_clix2017.scss */ +.status-completed { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + right: 1em; + padding: 0.3em 0.5em; + font-family: OpenSans-Bold; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #008000; + letter-spacing: 0.4px; +} + +/* line 5551, ../../../scss/_clix2017.scss */ +.status-in-progress { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #ffc14e; + letter-spacing: 0.4px; +} + +/* line 5568, ../../../scss/_clix2017.scss */ +.status-upcoming { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #74b3dc; + letter-spacing: 0.4px; +} + +/* line 5585, ../../../scss/_clix2017.scss */ +.status-draft { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: grey; + letter-spacing: 0.4px; +} + +/* line 5603, ../../../scss/_clix2017.scss */ +.lesson-dropdown ul { + display: none; +} + +/* line 5607, ../../../scss/_clix2017.scss */ +.lesson-dropdown:hover ul { + display: block; +} + +/* line 5611, ../../../scss/_clix2017.scss */ +.lesson_name_in_export { + list-style: none; +} +/* line 5613, ../../../scss/_clix2017.scss */ +.lesson_name_in_export:hover { + border-left: 2.5px solid #ce7869; +} + +/* line 5618, ../../../scss/_clix2017.scss */ +.buddy_margin { + margin-right: 80px; + font-family: OpenSans-Regular; + margin-top: 6px; +} + +/* line 5624, ../../../scss/_clix2017.scss */ +.lms_explore_head { + width: 100%; + height: 45px; + background-color: #fff; + color: #164A7B; + margin-top: -30px; +} +/* line 5630, ../../../scss/_clix2017.scss */ +.lms_explore_head > p { + margin-left: 81px; + padding: 12px 0px 0px 1px; + font-family: OpenSans-Semibold; + font-size: 20px; +} +/* line 5636, ../../../scss/_clix2017.scss */ +.lms_explore_head > a { + padding: 12px 85px 3px 0px; +} + +/* line 5640, ../../../scss/_clix2017.scss */ +.lms_explore_head_unit { + width: 100%; + height: 50px; + background-color: #fff; + color: #164A7B; +} +/* line 5645, ../../../scss/_clix2017.scss */ +.lms_explore_head_unit > p { + margin-left: 81px; + padding: 0px 0px 0px 1px; + font-family: OpenSans-Semibold; + font-size: 20px; +} +/* line 5651, ../../../scss/_clix2017.scss */ +.lms_explore_head_unit > a { + padding: 0px 85px 3px 0px; +} + +/* line 5656, ../../../scss/_clix2017.scss */ +.lms_explore_back { + background-color: #fff; +} + +/* line 5660, ../../../scss/_clix2017.scss */ +.lms_explore_back_unit { + background-color: #fff; + margin-top: -23.3px; +} + +/* line 5668, ../../../scss/_clix2017.scss */ +.mydesk_page .page_banner { + width: 100%; + height: 200px; + background-image: url("/static/ndf/images/mydesk_banner.png"); + background-size: 100% 100%; + position: relative; +} +/* line 5675, ../../../scss/_clix2017.scss */ +.mydesk_page .page_banner:before { + content: ' '; + background-color: rgba(0, 0, 0, 0.1); + opacity: .5; + width: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 10; + box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); +} +/* line 5689, ../../../scss/_clix2017.scss */ +.mydesk_page .page_banner .banner_profile { + position: absolute; + bottom: 30px; + left: 40px; +} +/* line 5694, ../../../scss/_clix2017.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo { + display: inline-block; + margin-right: 10px; + height: 100px; + border-radius: 5px; + overflow: hidden; + background-color: #fff; +} +/* line 5702, ../../../scss/_clix2017.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg { + height: 100px; + width: 100px; +} +/* line 5707, ../../../scss/_clix2017.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg path { + fill: #7a422a; +} +/* line 5712, ../../../scss/_clix2017.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading { + color: #fff; + display: inline-block; + vertical-align: top; +} +/* line 5717, ../../../scss/_clix2017.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { + font-size: 23px; + display: block; + margin-bottom: 10px; +} +/* line 5725, ../../../scss/_clix2017.scss */ +.mydesk_page .page_menu { + border-bottom: 1px solid #e5e5e5; +} +/* line 5729, ../../../scss/_clix2017.scss */ +.mydesk_page .page_menu li > a { + padding: 12px 20px 9px; +} + +/* line 5739, ../../../scss/_clix2017.scss */ +.input_links { + margin-left: 10px; +} +/* line 5741, ../../../scss/_clix2017.scss */ +.input_links a { + margin-right: 35px; + margin-top: 5px; +} + +/* line 5747, ../../../scss/_clix2017.scss */ +#course-notification +#status { + width: 100% !important; +} + +/* line 5753, ../../../scss/_clix2017.scss */ +.add-note-btn { + padding: 3px 11px; + border-radius: 100%; + float: right; + margin: 5px 5px 8px 0px; + border: 1px solid #6153AE; + background: #fff; + font-size: 23px; + color: #6153AE; +} + +/* line 5764, ../../../scss/_clix2017.scss */ +.bef-note-btn { + padding: 3px 11px; + border-radius: 100%; + float: right; + margin: 5px 5px 8px 0px; + border: 1px solid #6153AE; + background: #fff; + font-size: 23px; + color: #6153AE; +} + +/* line 5775, ../../../scss/_clix2017.scss */ +.edit-note-btn { + float: right; + border: 1px solid #CFCFCF; + padding: 1px 16px; + border-radius: 3px; + color: #A2A2A2; + background-color: #f7f7f7; + width: 85px; +} +/* line 5783, ../../../scss/_clix2017.scss */ +.edit-note-btn i { + margin-right: 5px; +} + +/* line 5787, ../../../scss/_clix2017.scss */ +.delete-note-btn { + float: right; + border: 1px solid #CFCFCF; + padding: 1px 6px; + margin-right: 25px; + border-radius: 3px; + color: #A2A2A2; + background-color: #f7f7f7; + width: 85px; +} +/* line 5796, ../../../scss/_clix2017.scss */ +.delete-note-btn i { + margin-right: 5px; +} + +/* line 5801, ../../../scss/_clix2017.scss */ +.jqtree-title > .fa-check { + color: green; +} + +/* line 5804, ../../../scss/_clix2017.scss */ +.jqtree-title > .fa-clock-o { + color: orange; +} + +/* line 5807, ../../../scss/_clix2017.scss */ +.course-status-icon { + font-size: 20px; + margin-right: 5px; +} + +/* line 5811, ../../../scss/_clix2017.scss */ +.img-height { + height: 150px; + width: 1351px; +} + +/* line 5818, ../../../scss/_clix2017.scss */ +#overlay { + /* we set all of the properties for are overlay */ + height: 116px; + width: 1024px; + margin: 0 auto; + background: white; + color: #999999; + padding: 28px 10px 10px 0px; + position: absolute; + top: 40%; + left: 10%; + z-index: 1000; + text-align: center; + display: none; + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -o-border-radius: 10px; + border-radius: 10px; +} + +/* line 5838, ../../../scss/_clix2017.scss */ +#mask { + /* create are mask */ + position: fixed; + top: 0; + left: 0; + background: rgba(0, 0, 0, 0.6); + z-index: 500; + width: 100%; + height: 100%; + display: none; +} + +/* use :target to look for a link to the overlay then we find are mask */ +/* line 5849, ../../../scss/_clix2017.scss */ +#overlay:target, #overlay:target + #mask { + display: block; + opacity: 1; +} + +/* line 5853, ../../../scss/_clix2017.scss */ +.close { + /* to make a nice looking pure CSS3 close button */ + display: block; + position: absolute; + top: -20px; + right: -16px; + background: rgba(0, 0, 0, 0.5); + color: white; + height: 40px; + width: 40px; + line-height: 40px; + font-size: 34px; + text-decoration: none; + text-align: center; + font-weight: bold; + -webkit-border-radius: 40px; + -moz-border-radius: 40px; + -o-border-radius: 40px; + border-radius: 38px; +} + +/* line 5872, ../../../scss/_clix2017.scss */ +#open-overlay { + /* open the overlay */ + padding: 0px 0px; + color: gray; + text-decoration: none; + display: inline-block; + margin: 0px; + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + -o-border-radius: 10px; +} + +/* line 5883, ../../../scss/_clix2017.scss */ +.enroll-btn { + width: 90px; + opacity: 1; + background-color: rgba(0, 0, 0, 0.1); + /* margin-bottom: -69px; */ + color: #ffc14e; + background-color: none; + /* margin-bottom: 8px; */ + cursor: pointer; + padding: 1px 5px 1px 5px; + border-radius: 6px; + border: 1px solid #c1b4b5; + background-color: #4b4852; +} + +/* line 5903, ../../../scss/_clix2017.scss */ +.img-style-land { + margin-top: 28px; + margin-left: -56px; +} + +/* line 5908, ../../../scss/_clix2017.scss */ +.top-margin-translation { + margin-top: 0px; +} + +/* line 5912, ../../../scss/_clix2017.scss */ +.activity-editor-header-top { + margin-top: -50px; +} + +/* line 5916, ../../../scss/_clix2017.scss */ +.add-lesson-top-margin { + margin-top: 5px; +} + +/* line 5919, ../../../scss/_clix2017.scss */ +.translation-detail-top-margin { + margin-top: 0px; +} + +/* line 5922, ../../../scss/_clix2017.scss */ +.outer { + width: 100%; + text-align: center; +} + +/* line 5927, ../../../scss/_clix2017.scss */ +.inner { + display: inline-block !important; +} + +/* line 5932, ../../../scss/_clix2017.scss */ +.transcript-toggler { + display: block; + width: 155px !important; + height: 30px; + margin-top: -14px !important; + padding: 9px 16px 2px; + background: radial-gradient(#573d8f, #412e6b); + border-radius: 0 0 5px 5px; + color: #fff; + cursor: pointer; + font-size: .75rem; + padding-top: 7px !important; + text-transform: uppercase; +} + +/* line 5948, ../../../scss/_clix2017.scss */ +.double-buttons { + margin-top: 100px; + margin-left: 729px; +} + +/* line 5953, ../../../scss/_clix2017.scss */ +.lesson-form-name { + padding-top: 10px; +} + +/* line 5957, ../../../scss/_clix2017.scss */ +.lesson-form-desc { + padding-top: 25px; +} + +/* line 5961, ../../../scss/_clix2017.scss */ +.enroll_chkbox { + transform: scale(1.5); +} + +/* line 5964, ../../../scss/_clix2017.scss */ +.enroll_all_users { + width: 15% !important; +} + +/* line 5968, ../../../scss/_clix2017.scss */ +.enrollBtn { + width: 124px !important; + background: rgba(75, 72, 82, 0.8); + border: 1px solid rgba(255, 255, 255, 0.7); + padding: 5px 8px; + color: #fff; + font-size: 20px; + margin: 0px 10px 0px 0px; + cursor: pointer; + border-radius: 3px; + margin-top: 101px !important; + margin-right: 15px; +} +/* line 5981, ../../../scss/_clix2017.scss */ +.enrollBtn:hover { + background: rgba(75, 72, 82, 0.8); + color: #000000; +} + +/* line 5987, ../../../scss/_clix2017.scss */ +.enroll-act_lbl { + color: #0c2944; +} + +/* line 5992, ../../../scss/_clix2017.scss */ +.wrkspace { + margin-right: 80px; +} + +/* line 5996, ../../../scss/_clix2017.scss */ +.status-btn { + background-color: #fff; + margin-right: auto; + padding-bottom: 0px; + text-transform: none; +} +/* line 6001, ../../../scss/_clix2017.scss */ +.status-btn .disabled { + background-color: #008cba; + border-color: #007095; + color: white; + cursor: default; + opacity: 0.7; + box-shadow: none; +} + +/* line 6011, ../../../scss/_clix2017.scss */ +.margin-right-50 { + margin-right: 50px; +} + +/* line 6018, ../../../scss/_clix2017.scss */ +.color-btn { + background-color: #720f5e; + width: 77px; + margin-left: 17px; +} +/* line 6022, ../../../scss/_clix2017.scss */ +.color-btn:hover { + color: #720f5e; + background-color: #ffffff; +} + +/* line 6028, ../../../scss/_clix2017.scss */ +.mid_label { + margin-top: 15px; + font-size: 15px; +} + +/* line 6033, ../../../scss/_clix2017.scss */ +.compulsory { + color: red; + font-size: smaller; +} + +/* line 6038, ../../../scss/_clix2017.scss */ +.select-drop { + height: auto; +} + +/* line 6042, ../../../scss/_clix2017.scss */ +.template-select { + border: 1px solid #cccccc; + border-radius: 5px; + height: 38px; + width: 40%; + font-size: 14px; +} + +/* line 6050, ../../../scss/_clix2017.scss */ +.white-text { + color: white; +} + +/* line 6055, ../../../scss/_clix2017.scss */ +.quiz-player .quiz_qtn { + margin-left: 20px !important; + font-size: 20px; +} +/* line 6059, ../../../scss/_clix2017.scss */ +.quiz-player .question_edit { + margin-left: 20px !important; +} +/* line 6063, ../../../scss/_clix2017.scss */ +.quiz-player input[type=checkbox], .quiz-player input[type=radio] { + margin-right: 10px; + width: 15px; + height: 15px; +} +/* line 6069, ../../../scss/_clix2017.scss */ +.quiz-player .chk_ans_lbl, .quiz-player .rad_ans_lbl { + font-size: 22px; + margin-left: 5px; +} +/* line 6074, ../../../scss/_clix2017.scss */ +.quiz-player .fi-check { + color: green; +} +/* line 6078, ../../../scss/_clix2017.scss */ +.quiz-player .fi-x { + color: red; +} + +/* line 6083, ../../../scss/_clix2017.scss */ +.hyperlink-tag { + cursor: pointer; + cursor: pointer; + /* text-align: center; */ + vertical-align: middle; + /* margin: 12px 10px 10px 10px; */ + height: 10px; + margin-left: 79px; + font-size: 24px; + color: #164A7B; +} + +/* line 6095, ../../../scss/_clix2017.scss */ +.scard { + background: #FFF; + border: 1px solid #AAA; + border-bottom: 3px solid #BBB; + padding: 0px; + margin: 5px; + overflow: hidden; + width: 11rem; + height: 9rem; + /*float:left;*/ +} +/* line 6104, ../../../scss/_clix2017.scss */ +.scard:hover { + box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); + transition: box-shadow 0.5s ease; +} +/* line 6110, ../../../scss/_clix2017.scss */ +.scard .scard_header { + text-align: center; + position: fixed; + height: 20rem; + border: 1px solid #AAA; + border-bottom: 3px solid #BBB; + padding: 0px; + margin: 5px; + left: 0px; + right: 0px; + background: #FFF; + padding: 25px 0px 5px 0px; + border-bottom: 5px solid #CCC; + font-size: 20px; + font-weight: bold; +} + +/* line 6127, ../../../scss/_clix2017.scss */ +.scard-content { + height: 2.7em; + padding: 0.5rem; + margin: 5px; + padding-top: 0.5cm; + border-radius: 0 0 2px 2px; + overflow: hidden; + width: 11rem; + margin-top: -0.3em; + /*height: 8.25rem;*/ + background-color: #3e3e3e; +} +/* line 6138, ../../../scss/_clix2017.scss */ +.scard-content .scard-title { + font-size: 0.8em; + margin-top: -1em; + float: left; + color: #ececec; + display: inline-block; + text-align: center; +} + +/* line 6151, ../../../scss/_clix2017.scss */ +.scard-action { + height: height; + font-size: 0.6em; + padding: 0.5rem; + margin: 5px; + padding-top: 0.1cm; + margin-top: -0.25em; + border-radius: 0 0 2px 2px; + overflow: hidden; + width: 11rem; + background-color: #CCCCCC; +} + +/* line 6166, ../../../scss/_clix2017.scss */ +.scard-desc { + font-size: 0.7em; + color: #333333; + height: 40px; + padding: 0.5rem; + margin: 5px; + padding-top: 0.1cm; + margin-top: -0.25em; + border-radius: 0 0 2px 2px; + overflow: hidden; + width: 11rem; + background-color: #E6E6E6; + display-inline: block; +} + +/* line 6183, ../../../scss/_clix2017.scss */ +.scard-image { + padding: 0px; + margin: 0px; + height: 100%; + background-position: center; + background-repeat: no-repeat; + position: relative; + overflow: hidden; + background-color: #f2f2f2; +} +/* line 6192, ../../../scss/_clix2017.scss */ +.scard-image img { + border-radius: 2px 2px 0 0; + display: block; + margin: 0 auto; + opacity: 0.9; + height: 100%; +} + +/* line 6204, ../../../scss/_clix2017.scss */ +.published.scard-action { + background: #A6D9CB; +} + +/* line 6208, ../../../scss/_clix2017.scss */ +.draft.scard-action { + content: "Draft"; + background: #DCDCDC; +} + +/* line 6214, ../../../scss/_clix2017.scss */ +.scard_footer { + border-top: 1px solid rgba(160, 160, 160, 0.2); + padding: 0.25rem 0.5rem; + color: gray; + font-size: small; + height: 2rem; +} + +/* line 6222, ../../../scss/_clix2017.scss */ +.auto_width { + width: auto !important; +} + +/* line 6226, ../../../scss/_clix2017.scss */ +.explore-settings-drop { + margin-left: 57%; + display: inline-block; +} +/* line 6229, ../../../scss/_clix2017.scss */ +.explore-settings-drop > button { + color: #164a7b; + font-weight: 400; + cursor: pointer; + background-color: #ddeff9; + border: 2px solid #719dc8; + border-radius: 5px !important; + display: inline-block; + padding: 3px 8px 4px 8px; + margin-top: 10px; + margin-left: 20px; +} +/* line 6240, ../../../scss/_clix2017.scss */ +.explore-settings-drop > button:hover { + border-radius: 10px; + background-color: #ddeff9; + color: #164a7b; +} +/* line 6246, ../../../scss/_clix2017.scss */ +.explore-settings-drop a { + font-size: 16px; +} +/* line 6249, ../../../scss/_clix2017.scss */ +.explore-settings-drop .f-dropdown li { + font-size: 0.875rem; + cursor: pointer; + line-height: 1.125rem; + margin: 0; + background-color: #164A7B; +} +/* line 6257, ../../../scss/_clix2017.scss */ +.explore-settings-drop .f-dropdown li a { + color: #74b3dc; +} +/* line 6261, ../../../scss/_clix2017.scss */ +.explore-settings-drop .f-dropdown li:hover { + border-left: 4px solid #ffc14e; +} + +/* line 6268, ../../../scss/_clix2017.scss */ +.attempts_count { + color: #000000 !important; +} + +/* line 6275, ../../../scss/_clix2017.scss */ +#course-settings-drop li a { + text-align: left; +} + +/* line 6283, ../../../scss/_clix2017.scss */ +#asset-settings-drop li a { + text-align: left; +} + +/* line 6290, ../../../scss/_clix2017.scss */ +.button-bg { + background-color: #74b3dc; +} + +/* Tools page css listing*/ +/* line 6297, ../../../scss/_clix2017.scss */ +.polaroid { + width: 330px; + background-color: white; + box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); + margin-bottom: 25px; + margin-top: 25px; + padding: 10px 10px 10px 10px; + -moz-transition: all 0.3s; + -webkit-transition: all 0.3s; + transition: all 0.3s; + cursor: pointer; +} + +/* line 6310, ../../../scss/_clix2017.scss */ +.polaroid:hover img { + -webkit-transform: scale(1.05); + -moz-transform: scale(1.05); + -ms-transform: scale(1.05); + -o-transform: scale(1.05); + transform: scale(1.05); +} + +/* line 6319, ../../../scss/_clix2017.scss */ +.container { + text-align: center; + padding: 10px 20px; + border-top: 5px solid #164a7b; + margin-top: 0px; +} +/* line 6325, ../../../scss/_clix2017.scss */ +.container > p { + color: black; + font-size: 16px; + font-weight: 500; +} + +/* line 6334, ../../../scss/_clix2017.scss */ +.tool-bg { + background-color: rgba(87, 198, 250, 0.07); +} + +/* line 6337, ../../../scss/_clix2017.scss */ +.purple-btn { + width: inherit; + text-transform: uppercase; + border-radius: 5px; + font-family: "OpenSans-Semibold", sans-serif; + background-color: #6a0054; + color: #ffffff !important; + border: 2px solid #6a0054; +} + +/* line 6347, ../../../scss/_clix2017.scss */ +.disable-purple-btn { + width: inherit; + text-transform: uppercase !important; + border-radius: 5px; + font-family: "OpenSans-Semibold", sans-serif; + background: #4b4852; + color: #ffffff !important; + border: 2px solid #4b4852; +} + +/* line 6357, ../../../scss/_clix2017.scss */ +.user-analytics-data { + margin: 42px 37px 37px 37px; + border: 2px solid #aaaaaa; +} +/* line 6360, ../../../scss/_clix2017.scss */ +.user-analytics-data .close-reveal-modal { + font-size: 20px; +} + +/* line 6364, ../../../scss/_clix2017.scss */ +.left-space { + margin-left: 0.5em; +} + +/* User Dashboard Implementation */ +/* line 6372, ../../../scss/_clix2017.scss */ +.left_column { + float: left; + width: 625px; + border-radius: 3px; + background-color: #74b3dc; + box-sizing: border-box; + color: #444; +} + +/* line 6381, ../../../scss/_clix2017.scss */ +.dashboard { + background: #fafafa; + border: none; + border-radius: 6px; + padding: 25px; + font-size: 14px; + position: relative; + box-shadow: none; +} + +/* line 6391, ../../../scss/_clix2017.scss */ +.account_heading { + border-bottom: 2px solid #E5E5E5; + color: #444; + font-size: 24px; + font-weight: normal; + line-height: 1; + margin: 0; + padding-bottom: 28px; +} + +/* line 6401, ../../../scss/_clix2017.scss */ +.account_group { + display: table; + padding: 20px 0; + width: 100%; +} +/* line 6406, ../../../scss/_clix2017.scss */ +.account_group .group_label { + font-weight: bold; + display: table-cell; + padding: 0 10px; + vertical-align: top; + width: 145px; +} +/* line 6412, ../../../scss/_clix2017.scss */ +.account_group .group_label > h3 { + font-weight: bold; + margin: 0; +} +/* line 6415, ../../../scss/_clix2017.scss */ +.account_group .group_label > h3 .account_subheading { + font-size: 14px; + line-height: 1.2; +} +/* line 6421, ../../../scss/_clix2017.scss */ +.account_group .group_content { + display: table-cell; + padding: 0 10px; + vertical-align: top; +} +/* line 6427, ../../../scss/_clix2017.scss */ +.account_group .account { + margin: 0 0 10px; + display: block; + position: relative; +} +/* line 6433, ../../../scss/_clix2017.scss */ +.account_group .account .accordion_trigger_wrapper .accordion_label { + color: #444; + float: left; + font-size: 14px; + margin: 0; +} +/* line 6439, ../../../scss/_clix2017.scss */ +.account_group .account .accordion_trigger_wrapper .pencil_edit_button { + position: absolute; + top: 50%; + right: -43px; + width: 48px; + height: 48px; + margin: 0px 0 0 0; + padding: 0; + display: block; + border: none; + background: none; + overflow: hidden; + line-height: 24px; + font-size: 24px; + color: #000; + opacity: 0.25; + text-decoration: none; + text-align: center; + cursor: pointer; +} +/* line 6461, ../../../scss/_clix2017.scss */ +.account_group .account .accordion_trigger_wrapper .accordion_content .input-setting input.text_field[type="text"] { + background: transparent; + border: 1px solid #D9D9D9; + color: #444; + font-size: 14px; + margin: 0; + max-width: 100%; + outline: 0; + padding: 6px 9px; + width: 330px; + border-radius: 2px; +} +/* line 6475, ../../../scss/_clix2017.scss */ +.account_group .account .accordion_trigger_wrapper .accordion_content .password-wrapper input.password_placeholder[type="text"] { + color: rgba(68, 68, 68, 0.45) !important; +} +/* line 6478, ../../../scss/_clix2017.scss */ +.account_group .account .accordion_trigger_wrapper .accordion_content .password-wrapper input.password_field[type="password"] { + position: relative; + z-index: 2; +} + +/* ---------------------- */ +/* line 6495, ../../../scss/_clix2017.scss */ +#progressive-validation { + width: 400px; + margin: 100px auto 0 auto; +} +/* line 6498, ../../../scss/_clix2017.scss */ +#progressive-validation input { + display: block; + border-radius: 5px; + border: none; + background: white; + font-family: OpenSans-regular; + font-size: 16px; + line-height: 16px; + font-weight: 200; + width: 100%; + padding: 15px; + margin: 0 0 10px 0; + opacity: .2; + outline: none; + box-shadow: 0 0 0 1px transparent; + background-size: 0px 0px; + background-position: right 23px; + background-repeat: no-repeat; +} +/* line 6516, ../../../scss/_clix2017.scss */ +#progressive-validation input[type="submit"], #progressive-validation input[type="submit"]:valid { + background-color: #1a3e4c; + color: white; + background-image: none; +} +/* line 6521, ../../../scss/_clix2017.scss */ +#progressive-validation input:focus { + box-shadow: 0 0 0 1px #00aeef; + opacity: 1 !important; +} +/* line 6525, ../../../scss/_clix2017.scss */ +#progressive-validation input:enabled { + opacity: .8; +} +/* line 6528, ../../../scss/_clix2017.scss */ +#progressive-validation input:valid { + background-size: 46px 46px; + background-position: right 0px; + background-repeat: no-repeat; +} + +/* line 6538, ../../../scss/_clix2017.scss */ +#analyticsFooter { + background-color: #e9eaed; + text-align: center; + font-weight: bold; + padding: 8px; + font-size: 12px; + border-top: 1px solid #dddddd; + min-width: 400px; +} + +/* line 6549, ../../../scss/_clix2017.scss */ +.img-circle { + border-radius: 50%; + border: 1px solid rgba(128, 128, 128, 0.15); +} + +/* line 6555, ../../../scss/_clix2017.scss */ +.container-px { + background-color: #fafafa; + min-width: 600px; + min-height: 600px; +} + +/* line 6561, ../../../scss/_clix2017.scss */ +.noti { + max-width: 400px !important; +} + +/* line 6564, ../../../scss/_clix2017.scss */ +.notification_body { + max-width: 1546px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; +} + +/* line 6582, ../../../scss/_clix2017.scss */ +.notifications_content { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; +} +/* line 6600, ../../../scss/_clix2017.scss */ +.notifications_content:hover { + background: #F0F1F2 !important; +} +/* line 6603, ../../../scss/_clix2017.scss */ +.notifications_content .content-body { + border-bottom: 1px solid #D6D8DA !important; +} + +/* tasks new UI */ +/* line 6614, ../../../scss/_clix2017.scss */ +.task_sheet { + background: rgba(231, 231, 231, 0.12); + box-shadow: 0px 2px 6px #000; + margin: 0px auto; + padding: 0px 0px; + max-width: 100vw; +} +/* line 6621, ../../../scss/_clix2017.scss */ +.task_sheet > .columns { + padding: 0px; + height: 100%; +} +/* line 6625, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor { + margin-bottom: 10px; + position: relative; + /*Overriding default*/ + /*Custom css*/ +} +/* line 6631, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .accordion .accordion-navigation > .content, .task_sheet .task_editor .accordion dd > .content { + padding: 0px; + padding-left: 0px; +} +/* line 6637, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor > div { + display: inline-block; + vertical-align: top; +} +/* line 6642, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task_tree { + transition: all 1s ease; + -webkit-transition: all 1s ease; + width: 100%; + background-color: #fff; + max-height: 100%; + overflow-y: auto; + height: 100vh; +} +/* line 6651, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task_tree .task-lessons dd { + border-bottom: 2px solid #9abfd9; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 6655, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation { + position: relative; + padding-left: 0px; +} +/* line 6660, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation > a:before { + position: absolute; + left: 23px; + line-height: 20px; + color: #74b3dc; +} +/* line 6669, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title { + background: inherit; + cursor: pointer; + font-weight: 600; + color: #3c5267; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6676, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity { + color: #c9d1d8; + font-weight: 400; + letter-spacing: 0.5px; + display: block; + position: relative; + display: none; +} +/* line 6685, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity i { + display: none; +} +/* line 6690, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { + margin-bottom: 0px; +} +/* line 6693, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { + white-space: nowrap; + list-style: none; + display: inline-block; + margin: 0px 10px; + cursor: pointer; +} +/* line 6703, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { + display: block; +} +/* line 6709, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation.active > a:before { + content: ''; + line-height: 55px; + color: #d7d7d7; +} +/* line 6717, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities { + margin: 0px; +} +/* line 6719, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 10px 0px 10px 30px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; +} +/* line 6726, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities > li > a { + color: #7ca0d0; + width: 100%; + display: block; + transition: color 1s ease; + -webkit-transition: color 1s ease; +} +/* line 6735, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .content { + background: inherit; +} +/* line 6744, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task-editor-section { + width: 0%; + display: inline-block; + opacity: 0; + transition: width 1s ease; + -webkit-transition: width 1s ease; + height: inherit; + max-height: 100%; + overflow-y: auto; + background: #fff; +} +/* line 6754, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task-editor-section .editor-header { + height: 100px; + background-color: #e5f1f6; + border-bottom: 1px solid #e6e6e7; +} +/* line 6759, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task-editor-section .editor-header .header-left { + padding: 29px 0px; +} +/* line 6762, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task-editor-section .editor-header .header-left > span { + color: #3c5264; + font-weight: 600; + margin-right: 10px; +} +/* line 6771, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task-editor-section .editor-header .custom_dropdown { + margin: 40px 35px 0px; +} +/* line 6776, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task-editor-section .editor-tool .editor_actions { + background-color: #fff; + border-bottom: 1px solid #ccc; + height: 55px; +} +/* line 6780, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul { + margin: 0px; +} +/* line 6782, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li { + list-style: none; + display: inline-block; +} +/* line 6785, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li:not(:first-child) { + padding: 1px 30px; + border-left: 1px solid #ccc; + text-align: center; +} +/* line 6791, ../../../scss/_clix2017.scss */ +.task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li span { + display: inline-block; + letter-spacing: 0.5px; + color: #999; + padding: 15px 5px; + cursor: pointer; +} + +/* line 6807, ../../../scss/_clix2017.scss */ +.task_editor_section { + background: white; + min-height: 100vh; + margin-bottom: 10px; + padding-right: 4px; + border: 1px solid rgba(128, 128, 128, 0.23); + width: 79%; + box-shadow: 0px 0px 5px #73859f; +} +/* line 6815, ../../../scss/_clix2017.scss */ +.task_editor_section #scstyle { + margin-top: -10px; +} +/* line 6818, ../../../scss/_clix2017.scss */ +.task_editor_section .task_editor_top { + border-top: 4px solid #74b3dc; + width: 101.3%; + margin-left: -15px; + margin-top: -1px; +} +/* line 6825, ../../../scss/_clix2017.scss */ +.task_editor_section .task_head { + height: 65px; + font-size: 22px; + padding: 16px 5px 5px 57px; + color: black; +} +/* line 6834, ../../../scss/_clix2017.scss */ +.task_editor_section form { + font-size: 17px; + padding: 10px 0px 0px 10px; +} +/* line 6839, ../../../scss/_clix2017.scss */ +.task_editor_section .task_ex { + border-bottom: 2px solid rgba(128, 128, 128, 0.23); +} +/* line 6841, ../../../scss/_clix2017.scss */ +.task_editor_section .task_ex.active { + border: 2px solid #74b3dc; + margin-left: -16px; + width: 101.5%; + margin-top: -2px; +} +/* line 6850, ../../../scss/_clix2017.scss */ +.task_editor_section .task_listing { + max-width: 1176px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; +} +/* line 6867, ../../../scss/_clix2017.scss */ +.task_editor_section .task_listing .task_content { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + border-bottom: 1px solid #D6D8DA !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; +} +/* line 6886, ../../../scss/_clix2017.scss */ +.task_editor_section .task_listing .task_content:hover { + background: #F0F1F2 !important; +} +/* line 6889, ../../../scss/_clix2017.scss */ +.task_editor_section .task_listing .task_content .task_content_left { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + width: 80% !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; +} +/* line 6900, ../../../scss/_clix2017.scss */ +.task_editor_section .task_listing .task_content .task_content_left .task_content_details { + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: flex-start !important; + flex-direction: column !important; + padding-left: 15px !important; + width: 85% !important; + -webkit-align-items: flex-start !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -ms-flex-align: start !important; + -webkit-box-align: start !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; +} +/* line 6917, ../../../scss/_clix2017.scss */ +.task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-user { + border: 2px solid #b9b9b9; + height: 50px; + width: 50px; +} +/* line 6922, ../../../scss/_clix2017.scss */ +.task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-style { + text-decoration: none !important; + font-family: inherit !important; + font-size: 17px !important; + font-weight: bold !important; + line-height: 23px !important; + color: #164A7B !important; + width: 100% !important; + white-space: nowrap !important; + overflow: hidden !important; + text-overflow: ellipsis !important; +} +/* line 6935, ../../../scss/_clix2017.scss */ +.task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-info { + text-decoration: none !important; + font-family: inherit !important; + font-size: 15px !important; + line-height: 22px !important; + color: rgba(0, 0, 0, 0.56) !important; + margin-top: 4px !important; +} + +/* line 6951, ../../../scss/_clix2017.scss */ +.lesson-title { + font-size: 18px; + padding-top: 10px; + padding-left: 10px; +} + +/* line 6957, ../../../scss/_clix2017.scss */ +.activity-title { + font-size: 18px; + padding-top: 10px; + padding-left: 23px; + margin: 0px; + border: 2px solid rgba(128, 128, 128, 0.15); +} +/* line 6964, ../../../scss/_clix2017.scss */ +.activity-title > li { + list-style: none; + border-top: 1px solid #e9e9e9; + padding: 9px 0px 9px 11px; + background: inherit; + transition: border-color 1s ease; + -webkit-transition: border-color 1s ease; + margin-left: -23px; + height: 150px; + background-color: white; +} +/* line 6975, ../../../scss/_clix2017.scss */ +.activity-title > li.active { + background: rgba(0, 140, 186, 0.42); + height: 150px; + margin-top: -10px; +} +/* line 6981, ../../../scss/_clix2017.scss */ +.activity-title > li > a { + color: black; +} + +/* line 6990, ../../../scss/_clix2017.scss */ +.task_page_rendered { + margin-left: 20px; + max-width: 900px; +} + +/* line 6998, ../../../scss/_clix2017.scss */ +.round { + border-radius: 1px; + background-color: orange; +} + +/* line 7004, ../../../scss/_clix2017.scss */ +.circle-normal { + background: #ffc14e; + -moz-border-radius: 50px; + -webkit-border-radius: 50px; + border-radius: 50px; + padding: 0px 0px 0px 20px; + margin-right: 5px; +} + +/* line 7012, ../../../scss/_clix2017.scss */ +.circle-high { + background: #f04124; + -moz-border-radius: 50px; + -webkit-border-radius: 50px; + border-radius: 50px; + padding: 0px 0px 0px 20px; + margin-right: 5px; +} + +/* line 7020, ../../../scss/_clix2017.scss */ +.circle-low { + background: #008cba; + -moz-border-radius: 50px; + -webkit-border-radius: 50px; + border-radius: 50px; + padding: 0px 0px 0px 20px; + margin-right: 5px; +} + +/* line 7029, ../../../scss/_clix2017.scss */ +.status-indication { + border-radius: 124px; + padding: 0px 8px 3px 8px; + line-height: 25px; + margin: 4px 14px 10px 0; + height: auto; + display: inline-block !important; + border: 2px solid rgba(115, 133, 159, 0.5); + color: grey; +} + +/* line 7039, ../../../scss/_clix2017.scss */ +.priority-margin { + margin-left: -30px; +} + +/* line 7043, ../../../scss/_clix2017.scss */ +.iconclr { + color: #999999; +} + +/* line 7049, ../../../scss/_clix2017.scss */ +.top-right-menu { + margin-right: 80px !important; +} + +/* line 7056, ../../../scss/_clix2017.scss */ +.button-cancel-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .1rem solid #a9a9a9; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7072, ../../../scss/_clix2017.scss */ +.button-cancel-new:hover { + background-color: #fff; + color: #333333; +} +/* line 7077, ../../../scss/_clix2017.scss */ +.button-cancel-new > a { + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + background-color: #f5f5f5; + color: #757575; + transition: all .1s ease; + margin-right: 1px; +} +/* line 7087, ../../../scss/_clix2017.scss */ +.button-cancel-new > a:hover { + background-color: #fff; + color: #333333; +} + +/* line 7095, ../../../scss/_clix2017.scss */ +.button-save-new { + height: 2rem; + padding: 0 2rem; + background: none; + font-family: open_sansbold,sans-serif; + font-size: 1.2rem; + text-transform: uppercase; + cursor: pointer; + border-radius: 3px; + -webkit-box-align: center; + align-items: center; + border: .2rem solid #912a7d; + background-color: #912a7d; + color: #fff; + transition: all .1s ease; +} +/* line 7110, ../../../scss/_clix2017.scss */ +.button-save-new:hover { + background-color: #fff; + color: #912a7d; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss index a9692f5f93..118bb940cb 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss @@ -5080,7 +5080,7 @@ ul.nav_menu_1 { } } - } + } @@ -5130,10 +5130,10 @@ ul.authoring-tab{ a { margin-right: 0.7em; } ->>>>>>> 5b588788a0abc662af47a7b2ed4e2845a974a19e } - - + } + } +} .notifications_listing{ max-width: 1176px !important; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/event.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/event.py index 59f7f7cab6..8fb6113da4 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/event.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/event.py @@ -59,7 +59,7 @@ def event(request, group_id): app_collection_set=node_collection.find({'member_of': grp_gst_id}) print app_collection_set[1] - + app_collection_set=None return render_to_response('ndf/gevent.html',{'events':app_collection_set, 'groupid':group_id, diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py index 7ba212f6dd..4d8a85f51d 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py @@ -3858,13 +3858,10 @@ def assets(request, group_id, asset_id=None,page_no=1): group_obj = get_group_name_id(group_id, get_obj=True) asset_gst_name, asset_gst_id = GSystemType.get_gst_name_id("Asset") from gnowsys_ndf.settings import GSTUDIO_NO_OF_OBJS_PP -<<<<<<< HEAD - template = 'ndf/gevent_base.html' - gstaff_access = check_is_gstaff(group_id,request.user) -======= + #template = 'ndf/gevent_base.html' template = 'ndf/lms.html' ->>>>>>> 5b588788a0abc662af47a7b2ed4e2845a974a19e + if asset_id: asset_obj = node_collection.one({'_id': ObjectId(asset_id)}) asset_content_list = get_relation_value(ObjectId(asset_obj._id),'has_assetcontent') diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/group.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/group.py index 5e2b449a56..a47273b629 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/group.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/group.py @@ -1654,7 +1654,6 @@ def get(self, request, group_id, action, sg_type): nodes_list = [str(g_obj.name.strip().lower()) for g_obj in available_nodes] title = action + ' ' + spl_group_type - print spl_group_type # In the case of need, we can simply replace: # "ndf/create_group.html" with "ndf/edit_group.html" From d59a891d63c3b1f215ae98a3c27b5c480ff0a314 Mon Sep 17 00:00:00 2001 From: katkamrachana Date: Tue, 16 Jan 2018 12:46:56 +0530 Subject: [PATCH 251/766] unit-name css modified inorder to make it more prominent on lighter background --- .../static/ndf/css/themes/clix/clix2017.css | 644 +++++++++--------- .../ndf/static/ndf/scss/_clix2017.scss | 2 +- 2 files changed, 323 insertions(+), 323 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css index ca37a9e47a..46b46f8d16 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css @@ -3956,7 +3956,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-bottom: 3px solid #ffc14e; } -/* line 4224, ../../../scss/_clix2017.scss */ +/* line 4227, ../../../scss/_clix2017.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -3964,29 +3964,29 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { padding: 0px 0px; max-width: 100vw; } -/* line 4231, ../../../scss/_clix2017.scss */ +/* line 4234, ../../../scss/_clix2017.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 4235, ../../../scss/_clix2017.scss */ +/* line 4238, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 4241, ../../../scss/_clix2017.scss */ +/* line 4244, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 4247, ../../../scss/_clix2017.scss */ +/* line 4250, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 4252, ../../../scss/_clix2017.scss */ +/* line 4255, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -3996,25 +3996,25 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { overflow-y: auto; height: 100vh; } -/* line 4261, ../../../scss/_clix2017.scss */ +/* line 4264, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 4265, ../../../scss/_clix2017.scss */ +/* line 4268, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 4272, ../../../scss/_clix2017.scss */ +/* line 4275, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 4281, ../../../scss/_clix2017.scss */ +/* line 4284, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -4023,7 +4023,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 4288, ../../../scss/_clix2017.scss */ +/* line 4291, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -4032,15 +4032,15 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { position: relative; display: none; } -/* line 4297, ../../../scss/_clix2017.scss */ +/* line 4300, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 4302, ../../../scss/_clix2017.scss */ +/* line 4305, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 4306, ../../../scss/_clix2017.scss */ +/* line 4309, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -4048,21 +4048,21 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin: 0px 10px; cursor: pointer; } -/* line 4316, ../../../scss/_clix2017.scss */ +/* line 4319, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 4322, ../../../scss/_clix2017.scss */ +/* line 4325, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 4330, ../../../scss/_clix2017.scss */ +/* line 4333, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 4332, ../../../scss/_clix2017.scss */ +/* line 4335, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -4071,7 +4071,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 4339, ../../../scss/_clix2017.scss */ +/* line 4342, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -4079,11 +4079,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 4348, ../../../scss/_clix2017.scss */ +/* line 4351, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 4357, ../../../scss/_clix2017.scss */ +/* line 4360, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -4095,48 +4095,48 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { overflow-y: auto; background: #fff; } -/* line 4367, ../../../scss/_clix2017.scss */ +/* line 4370, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 4372, ../../../scss/_clix2017.scss */ +/* line 4375, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 4375, ../../../scss/_clix2017.scss */ +/* line 4378, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 4384, ../../../scss/_clix2017.scss */ +/* line 4387, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 4389, ../../../scss/_clix2017.scss */ +/* line 4392, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 4393, ../../../scss/_clix2017.scss */ +/* line 4396, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 4395, ../../../scss/_clix2017.scss */ +/* line 4398, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 4398, ../../../scss/_clix2017.scss */ +/* line 4401, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 4404, ../../../scss/_clix2017.scss */ +/* line 4407, ../../../scss/_clix2017.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -4145,7 +4145,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { cursor: pointer; } -/* line 4420, ../../../scss/_clix2017.scss */ +/* line 4423, ../../../scss/_clix2017.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -4153,26 +4153,26 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-bottom: 10px; padding-right: 4px; } -/* line 4426, ../../../scss/_clix2017.scss */ +/* line 4429, ../../../scss/_clix2017.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 4431, ../../../scss/_clix2017.scss */ +/* line 4434, ../../../scss/_clix2017.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 4437, ../../../scss/_clix2017.scss */ +/* line 4440, ../../../scss/_clix2017.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 4443, ../../../scss/_clix2017.scss */ +/* line 4446, ../../../scss/_clix2017.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -4182,29 +4182,29 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 4452, ../../../scss/_clix2017.scss */ +/* line 4455, ../../../scss/_clix2017.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 4456, ../../../scss/_clix2017.scss */ +/* line 4459, ../../../scss/_clix2017.scss */ .activity-title > li > a { color: black; } -/* line 4465, ../../../scss/_clix2017.scss */ +/* line 4468, ../../../scss/_clix2017.scss */ .activity_page_rendered { margin-left: 20px; max-width: 100%; } /* Rating css */ -/* line 4474, ../../../scss/_clix2017.scss */ +/* line 4477, ../../../scss/_clix2017.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 4476, ../../../scss/_clix2017.scss */ +/* line 4479, ../../../scss/_clix2017.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -4212,19 +4212,19 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { unicode-bidi: bidi-override; direction: rtl; } -/* line 4484, ../../../scss/_clix2017.scss */ +/* line 4487, ../../../scss/_clix2017.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 4486, ../../../scss/_clix2017.scss */ +/* line 4489, ../../../scss/_clix2017.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 4492, ../../../scss/_clix2017.scss */ +/* line 4495, ../../../scss/_clix2017.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 4494, ../../../scss/_clix2017.scss */ +/* line 4497, ../../../scss/_clix2017.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -4237,7 +4237,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin: 0; vertical-align: bottom; } -/* line 4506, ../../../scss/_clix2017.scss */ +/* line 4509, ../../../scss/_clix2017.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -4245,32 +4245,32 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /* WHITE STAR */ color: #888; } -/* line 4513, ../../../scss/_clix2017.scss */ +/* line 4516, ../../../scss/_clix2017.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 4524, ../../../scss/_clix2017.scss */ +/* line 4527, ../../../scss/_clix2017.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 4531, ../../../scss/_clix2017.scss */ +/* line 4534, ../../../scss/_clix2017.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 4539, ../../../scss/_clix2017.scss */ +/* line 4542, ../../../scss/_clix2017.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 4544, ../../../scss/_clix2017.scss */ +/* line 4547, ../../../scss/_clix2017.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -4282,7 +4282,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /** * Sass styles related to unit cards */ -/* line 4563, ../../../scss/_clix2017.scss */ +/* line 4566, ../../../scss/_clix2017.scss */ .unit_card { width: 300px; color: #000; @@ -4294,11 +4294,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { position: relative; height: 210px; } -/* line 4575, ../../../scss/_clix2017.scss */ +/* line 4578, ../../../scss/_clix2017.scss */ .unit_card:hover { box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.25); } -/* line 4580, ../../../scss/_clix2017.scss */ +/* line 4583, ../../../scss/_clix2017.scss */ .unit_card .unit_status { position: absolute; right: 0px; @@ -4309,11 +4309,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-radius: 3px; letter-spacing: 0.6px; } -/* line 4591, ../../../scss/_clix2017.scss */ +/* line 4594, ../../../scss/_clix2017.scss */ .unit_card .unit_header { display: table; } -/* line 4593, ../../../scss/_clix2017.scss */ +/* line 4596, ../../../scss/_clix2017.scss */ .unit_card .unit_header .unit_banner { display: table-cell; border-radius: 5px; @@ -4322,7 +4322,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-right: 10px; color: #333333; } -/* line 4601, ../../../scss/_clix2017.scss */ +/* line 4604, ../../../scss/_clix2017.scss */ .unit_card .unit_header .unit_title { display: table-cell; font-size: 20px; @@ -4336,7 +4336,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { vertical-align: middle; color: #333333; } -/* line 4615, ../../../scss/_clix2017.scss */ +/* line 4618, ../../../scss/_clix2017.scss */ .unit_card .unit_desc { display: block; /* Fallback for non-webkit */ @@ -4353,16 +4353,16 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin: 10px 0px 20px; color: #333333; } -/* line 4631, ../../../scss/_clix2017.scss */ +/* line 4634, ../../../scss/_clix2017.scss */ .unit_card .unit_breif .unit_breif_row i { margin-right: 10px; color: #99aaba; } -/* line 4637, ../../../scss/_clix2017.scss */ +/* line 4640, ../../../scss/_clix2017.scss */ .unit_card .unit_actions { padding: 5px 0px; } -/* line 4642, ../../../scss/_clix2017.scss */ +/* line 4645, ../../../scss/_clix2017.scss */ .unit_card .unit_actions .unit-card-enrol { background: #a2238d; height: 37px; @@ -4375,11 +4375,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 4654, ../../../scss/_clix2017.scss */ +/* line 4657, ../../../scss/_clix2017.scss */ .unit_card .unit_actions .unit-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 4659, ../../../scss/_clix2017.scss */ +/* line 4662, ../../../scss/_clix2017.scss */ .unit_card .unit_actions .unit-card-analytics { color: #a2238d; font-weight: 500; @@ -4387,7 +4387,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.3px; border-bottom: 2px solid #a2238d; } -/* line 4667, ../../../scss/_clix2017.scss */ +/* line 4670, ../../../scss/_clix2017.scss */ .unit_card .unit_actions .unit-card-analytics-points { background: #ffffff; color: #a2238d; @@ -4398,7 +4398,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { font-weight: bold; cursor: default; } -/* line 4678, ../../../scss/_clix2017.scss */ +/* line 4681, ../../../scss/_clix2017.scss */ .unit_card .unit_actions .view_unit { height: 37px; text-align: center; @@ -4407,7 +4407,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 4686, ../../../scss/_clix2017.scss */ +/* line 4689, ../../../scss/_clix2017.scss */ .unit_card .unit_actions .view_unit:hover { border-bottom: 2px solid #ffc14e; } @@ -4415,7 +4415,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /* Common css */ -/* line 4697, ../../../scss/_clix2017.scss */ +/* line 4700, ../../../scss/_clix2017.scss */ .text-button-blue { background-color: transparent; color: #00A9EE; @@ -4428,54 +4428,54 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /** Status styles added for the unit styles. */ -/* line 4716, ../../../scss/_clix2017.scss */ +/* line 4719, ../../../scss/_clix2017.scss */ .in-progress-status { color: #fff; background-color: #fd9e29; } -/* line 4721, ../../../scss/_clix2017.scss */ +/* line 4724, ../../../scss/_clix2017.scss */ .in-complete-status { color: #fff; background-color: #fd9e29; } -/* line 4726, ../../../scss/_clix2017.scss */ +/* line 4729, ../../../scss/_clix2017.scss */ .thumbnail_style { margin-top: -30px; margin-left: -30px; } -/* line 4731, ../../../scss/_clix2017.scss */ +/* line 4734, ../../../scss/_clix2017.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 4737, ../../../scss/_clix2017.scss */ +/* line 4740, ../../../scss/_clix2017.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); margin-top: -29px; padding-left: 10px; } -/* line 4741, ../../../scss/_clix2017.scss */ +/* line 4744, ../../../scss/_clix2017.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 4751, ../../../scss/_clix2017.scss */ +/* line 4754, ../../../scss/_clix2017.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 4756, ../../../scss/_clix2017.scss */ +/* line 4759, ../../../scss/_clix2017.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 4759, ../../../scss/_clix2017.scss */ +/* line 4762, ../../../scss/_clix2017.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -4489,7 +4489,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 4776, ../../../scss/_clix2017.scss */ +/* line 4779, ../../../scss/_clix2017.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -4502,7 +4502,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-radius: 3px; } -/* line 4790, ../../../scss/_clix2017.scss */ +/* line 4793, ../../../scss/_clix2017.scss */ .dropdown-settings { text-align: left; text-transform: none; @@ -4512,13 +4512,13 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background: white; border-radius: 1px; } -/* line 4798, ../../../scss/_clix2017.scss */ +/* line 4801, ../../../scss/_clix2017.scss */ .dropdown-settings:hover { color: #ce7869; border-left: 2px solid #ffc14e; } -/* line 4804, ../../../scss/_clix2017.scss */ +/* line 4807, ../../../scss/_clix2017.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -4527,19 +4527,19 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 4813, ../../../scss/_clix2017.scss */ +/* line 4816, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 4818, ../../../scss/_clix2017.scss */ +/* line 4821, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 4824, ../../../scss/_clix2017.scss */ +/* line 4827, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -4547,12 +4547,12 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #999999; margin-left: 12%; } -/* line 4832, ../../../scss/_clix2017.scss */ +/* line 4835, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 4838, ../../../scss/_clix2017.scss */ +/* line 4841, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -4561,21 +4561,21 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { display: none; color: #8E8E8E; } -/* line 4847, ../../../scss/_clix2017.scss */ +/* line 4850, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 4852, ../../../scss/_clix2017.scss */ +/* line 4855, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 4854, ../../../scss/_clix2017.scss */ +/* line 4857, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 4857, ../../../scss/_clix2017.scss */ +/* line 4860, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -4586,24 +4586,24 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #757575; margin-right: 20px; } -/* line 4867, ../../../scss/_clix2017.scss */ +/* line 4870, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 4871, ../../../scss/_clix2017.scss */ +/* line 4874, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 4874, ../../../scss/_clix2017.scss */ +/* line 4877, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 4879, ../../../scss/_clix2017.scss */ +/* line 4882, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 4883, ../../../scss/_clix2017.scss */ +/* line 4886, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -4615,7 +4615,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { position: relative; color: #222222; } -/* line 4894, ../../../scss/_clix2017.scss */ +/* line 4897, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -4623,15 +4623,15 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { left: 8px; top: 4px; } -/* line 4902, ../../../scss/_clix2017.scss */ +/* line 4905, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 4904, ../../../scss/_clix2017.scss */ +/* line 4907, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 4907, ../../../scss/_clix2017.scss */ +/* line 4910, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -4641,13 +4641,13 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.8px; color: #999999; } -/* line 4916, ../../../scss/_clix2017.scss */ +/* line 4919, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 4922, ../../../scss/_clix2017.scss */ +/* line 4925, ../../../scss/_clix2017.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } @@ -4655,7 +4655,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /** * Sass styles related to module cards */ -/* line 4937, ../../../scss/_clix2017.scss */ +/* line 4940, ../../../scss/_clix2017.scss */ .module_card { display: table; height: 290px; @@ -4666,16 +4666,16 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { position: relative; box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); } -/* line 4947, ../../../scss/_clix2017.scss */ +/* line 4950, ../../../scss/_clix2017.scss */ .module_card:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 4951, ../../../scss/_clix2017.scss */ +/* line 4954, ../../../scss/_clix2017.scss */ .module_card > div { display: table-cell; height: 290px; } -/* line 4956, ../../../scss/_clix2017.scss */ +/* line 4959, ../../../scss/_clix2017.scss */ .module_card .card_banner { width: 250px; height: 290px; @@ -4689,14 +4689,14 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { -webkit-transition: border-radius .2s; transition: border-radius .2s; } -/* line 4969, ../../../scss/_clix2017.scss */ +/* line 4972, ../../../scss/_clix2017.scss */ .module_card .card_banner > img { height: 100%; width: 100%; border-radius: 4px; -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); } -/* line 4974, ../../../scss/_clix2017.scss */ +/* line 4977, ../../../scss/_clix2017.scss */ .module_card .card_banner > img:hover { -webkit-transform: scale(1.03); -moz-transform: scale(1.03); @@ -4705,7 +4705,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { transform: scale(1.03); opacity: 0.8; } -/* line 4986, ../../../scss/_clix2017.scss */ +/* line 4989, ../../../scss/_clix2017.scss */ .module_card .card_banner > h4 { position: absolute; top: 100px; @@ -4714,7 +4714,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #ffffff !important; text-shadow: 2px 0px 8px black; } -/* line 5001, ../../../scss/_clix2017.scss */ +/* line 5004, ../../../scss/_clix2017.scss */ .module_card .card_title { display: block; width: 230px; @@ -4724,27 +4724,27 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin: 0px auto; letter-spacing: 1px; } -/* line 5012, ../../../scss/_clix2017.scss */ +/* line 5015, ../../../scss/_clix2017.scss */ .module_card.animated_card .card_banner { border-radius: 8px; } -/* line 5015, ../../../scss/_clix2017.scss */ +/* line 5018, ../../../scss/_clix2017.scss */ .module_card.animated_card:hover .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 5020, ../../../scss/_clix2017.scss */ +/* line 5023, ../../../scss/_clix2017.scss */ .module_card.animated_card.isOpen .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 5024, ../../../scss/_clix2017.scss */ +/* line 5027, ../../../scss/_clix2017.scss */ .module_card.animated_card:hover .card_summary { left: 30px; } -/* line 5027, ../../../scss/_clix2017.scss */ +/* line 5030, ../../../scss/_clix2017.scss */ .module_card.animated_card .card_summary { left: 5px; } -/* line 5031, ../../../scss/_clix2017.scss */ +/* line 5034, ../../../scss/_clix2017.scss */ .module_card .card_summary { width: 290px; padding: 0px 15px; @@ -4760,35 +4760,35 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /* Safari */ transition-property: left; } -/* line 5045, ../../../scss/_clix2017.scss */ +/* line 5048, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_label { font-weight: 500; font-size: 12.5px; letter-spacing: 1px; color: black; } -/* line 5051, ../../../scss/_clix2017.scss */ +/* line 5054, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section { margin: 5px 0px; padding: 5px 0px; } -/* line 5055, ../../../scss/_clix2017.scss */ +/* line 5058, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section:not(:last-child) { border-bottom: 1px solid #ccc; } -/* line 5058, ../../../scss/_clix2017.scss */ +/* line 5061, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section p { margin-bottom: 7px; font-size: 12.5px; } -/* line 5062, ../../../scss/_clix2017.scss */ +/* line 5065, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section .ellipsis { width: 245px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -/* line 5070, ../../../scss/_clix2017.scss */ +/* line 5073, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section .module-card-enrol { background: #a2238d; height: 37px; @@ -4802,11 +4802,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5083, ../../../scss/_clix2017.scss */ +/* line 5086, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section .module-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 5089, ../../../scss/_clix2017.scss */ +/* line 5092, ../../../scss/_clix2017.scss */ .module_card .card_summary .module_brief { display: block; /* Fallback for non-webkit */ @@ -4823,14 +4823,14 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: black; } -/* line 5113, ../../../scss/_clix2017.scss */ +/* line 5116, ../../../scss/_clix2017.scss */ .lms_page .lms_banner { width: 100%; height: 150px; background-size: 100% 100%; position: relative; } -/* line 5121, ../../../scss/_clix2017.scss */ +/* line 5124, ../../../scss/_clix2017.scss */ .lms_page .lms_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -4843,27 +4843,27 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { bottom: 0; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 5134, ../../../scss/_clix2017.scss */ +/* line 5137, ../../../scss/_clix2017.scss */ .lms_page .lms_banner:before a { cursor: pointer; } -/* line 5139, ../../../scss/_clix2017.scss */ +/* line 5142, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .div-height { height: 150px !important; background-size: 100% 100%; position: absolute !important; } -/* line 5147, ../../../scss/_clix2017.scss */ +/* line 5150, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .enroll_unit > a { cursor: pointer; } -/* line 5151, ../../../scss/_clix2017.scss */ +/* line 5154, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .lms_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 5157, ../../../scss/_clix2017.scss */ +/* line 5160, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .lms_heading .unit_name { font-size: 36px; font-family: OpenSans-Semibold; @@ -4872,19 +4872,19 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-left: 40px; border-radius: 8px 0px 0px 8px; transition: border-radius .2s; - text-shadow: 3px 2px #164a7b; + text-shadow: -1px -1px 8px #000, 1px -1px 8px #000, -1px 1px 8px #000, 1px 1px 0 #000; } -/* line 5168, ../../../scss/_clix2017.scss */ +/* line 5171, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .lms_heading .right-margin { margin-right: 46px; } -/* line 5177, ../../../scss/_clix2017.scss */ +/* line 5180, ../../../scss/_clix2017.scss */ .border-bottom-lms-header { border-bottom: 1px solid #00000029; } -/* line 5182, ../../../scss/_clix2017.scss */ +/* line 5185, ../../../scss/_clix2017.scss */ .lms_secondary_header { width: 100%; position: relative; @@ -4892,11 +4892,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 5188, ../../../scss/_clix2017.scss */ +/* line 5191, ../../../scss/_clix2017.scss */ .lms_secondary_header .course_actions { margin-top: 8px; } -/* line 5191, ../../../scss/_clix2017.scss */ +/* line 5194, ../../../scss/_clix2017.scss */ .lms_secondary_header .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -4908,11 +4908,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { opacity: 0.8; } @media screen and (min-width: 980px) and (max-width: 1000px) { - /* line 5205, ../../../scss/_clix2017.scss */ + /* line 5208, ../../../scss/_clix2017.scss */ .lms_secondary_header .course_actions .course_actions { margin-top: 8px; } - /* line 5208, ../../../scss/_clix2017.scss */ + /* line 5211, ../../../scss/_clix2017.scss */ .lms_secondary_header .course_actions .course_actions > span { margin-left: 50px; background: #2e3f51; @@ -4926,18 +4926,18 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { } } -/* line 5230, ../../../scss/_clix2017.scss */ +/* line 5233, ../../../scss/_clix2017.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; display: inline; width: 50%; } -/* line 5235, ../../../scss/_clix2017.scss */ +/* line 5238, ../../../scss/_clix2017.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 5238, ../../../scss/_clix2017.scss */ +/* line 5241, ../../../scss/_clix2017.scss */ ul.nav_menu_1 > li > a { list-style-type: none; display: inline-block; @@ -4948,23 +4948,23 @@ ul.nav_menu_1 > li > a { letter-spacing: 0.8px; border-bottom: 3px solid transparent; } -/* line 5249, ../../../scss/_clix2017.scss */ +/* line 5252, ../../../scss/_clix2017.scss */ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-bottom: 3px solid #a2238d; } -/* line 5257, ../../../scss/_clix2017.scss */ +/* line 5260, ../../../scss/_clix2017.scss */ ul.authoring-tab { background-color: #164a7b; margin-bottom: 0px; display: inline; width: 50%; } -/* line 5262, ../../../scss/_clix2017.scss */ +/* line 5265, ../../../scss/_clix2017.scss */ ul.authoring-tab > li { display: inline-block; } -/* line 5265, ../../../scss/_clix2017.scss */ +/* line 5268, ../../../scss/_clix2017.scss */ ul.authoring-tab > li > a { list-style-type: none; margin-right: -4px; @@ -4977,61 +4977,61 @@ ul.authoring-tab > li > a { border-bottom: 3px solid transparent; color: #ffffff !important; } -/* line 5276, ../../../scss/_clix2017.scss */ +/* line 5279, ../../../scss/_clix2017.scss */ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-bottom: 3px solid #a2238d; } -/* line 5287, ../../../scss/_clix2017.scss */ +/* line 5290, ../../../scss/_clix2017.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 5295, ../../../scss/_clix2017.scss */ +/* line 5298, ../../../scss/_clix2017.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 5298, ../../../scss/_clix2017.scss */ +/* line 5301, ../../../scss/_clix2017.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 5300, ../../../scss/_clix2017.scss */ +/* line 5303, ../../../scss/_clix2017.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 5307, ../../../scss/_clix2017.scss */ +/* line 5310, ../../../scss/_clix2017.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 5309, ../../../scss/_clix2017.scss */ +/* line 5312, ../../../scss/_clix2017.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 5314, ../../../scss/_clix2017.scss */ +/* line 5317, ../../../scss/_clix2017.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 5322, ../../../scss/_clix2017.scss */ +/* line 5325, ../../../scss/_clix2017.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5328, ../../../scss/_clix2017.scss */ +/* line 5331, ../../../scss/_clix2017.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5335, ../../../scss/_clix2017.scss */ +/* line 5338, ../../../scss/_clix2017.scss */ .listing-row { margin-top: 10px !important; } -/* line 5339, ../../../scss/_clix2017.scss */ +/* line 5342, ../../../scss/_clix2017.scss */ .raw_material_asset { width: auto; top: -0.50em; @@ -5048,7 +5048,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.3px; } -/* line 5355, ../../../scss/_clix2017.scss */ +/* line 5358, ../../../scss/_clix2017.scss */ .status-completed { width: auto; top: -1.15em; @@ -5065,7 +5065,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5371, ../../../scss/_clix2017.scss */ +/* line 5374, ../../../scss/_clix2017.scss */ .status-in-progress { width: auto; top: -1.15em; @@ -5082,7 +5082,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5388, ../../../scss/_clix2017.scss */ +/* line 5391, ../../../scss/_clix2017.scss */ .status-upcoming { width: auto; top: -1.15em; @@ -5099,7 +5099,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5405, ../../../scss/_clix2017.scss */ +/* line 5408, ../../../scss/_clix2017.scss */ .status-draft { width: auto; top: -1.15em; @@ -5116,33 +5116,33 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5423, ../../../scss/_clix2017.scss */ +/* line 5426, ../../../scss/_clix2017.scss */ .lesson-dropdown ul { display: none; } -/* line 5427, ../../../scss/_clix2017.scss */ +/* line 5430, ../../../scss/_clix2017.scss */ .lesson-dropdown:hover ul { display: block; } -/* line 5431, ../../../scss/_clix2017.scss */ +/* line 5434, ../../../scss/_clix2017.scss */ .lesson_name_in_export { list-style: none; } -/* line 5433, ../../../scss/_clix2017.scss */ +/* line 5436, ../../../scss/_clix2017.scss */ .lesson_name_in_export:hover { border-left: 2.5px solid #ce7869; } -/* line 5438, ../../../scss/_clix2017.scss */ +/* line 5441, ../../../scss/_clix2017.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 5444, ../../../scss/_clix2017.scss */ +/* line 5447, ../../../scss/_clix2017.scss */ .lms_explore_head { width: 100%; height: 45px; @@ -5150,63 +5150,63 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { color: #164A7B; margin-top: -30px; } -/* line 5450, ../../../scss/_clix2017.scss */ +/* line 5453, ../../../scss/_clix2017.scss */ .lms_explore_head > p { margin-left: 81px; padding: 12px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 5456, ../../../scss/_clix2017.scss */ +/* line 5459, ../../../scss/_clix2017.scss */ .lms_explore_head > a { padding: 12px 85px 3px 0px; } -/* line 5460, ../../../scss/_clix2017.scss */ +/* line 5463, ../../../scss/_clix2017.scss */ .lms_explore_head_unit { width: 100%; height: 50px; background-color: #fff; color: #164A7B; } -/* line 5465, ../../../scss/_clix2017.scss */ +/* line 5468, ../../../scss/_clix2017.scss */ .lms_explore_head_unit > p { margin-left: 81px; padding: 0px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 5471, ../../../scss/_clix2017.scss */ +/* line 5474, ../../../scss/_clix2017.scss */ .lms_explore_head_unit > a { padding: 0px 85px 3px 0px; } -/* line 5476, ../../../scss/_clix2017.scss */ +/* line 5479, ../../../scss/_clix2017.scss */ .lms_explore_back { background-color: #fff; } -/* line 5480, ../../../scss/_clix2017.scss */ +/* line 5483, ../../../scss/_clix2017.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -23.3px; } -/* line 5485, ../../../scss/_clix2017.scss */ +/* line 5488, ../../../scss/_clix2017.scss */ .empty-dashboard-message { border: 3px solid #e4e4e4; background: #f8f8f8; padding: 40px 0; text-align: center; } -/* line 5490, ../../../scss/_clix2017.scss */ +/* line 5493, ../../../scss/_clix2017.scss */ .empty-dashboard-message > p { font-size: 24px; color: #646464; margin-bottom: 20px; text-shadow: 0 1px rgba(255, 255, 255, 0.6); } -/* line 5496, ../../../scss/_clix2017.scss */ +/* line 5499, ../../../scss/_clix2017.scss */ .empty-dashboard-message > a { background-color: #164a7b; border: 1px solid #164a7b; @@ -5220,7 +5220,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-left: 5px; padding: 15px 20px; } -/* line 5509, ../../../scss/_clix2017.scss */ +/* line 5512, ../../../scss/_clix2017.scss */ .empty-dashboard-message .button-explore-courses { font-size: 20px; font-weight: normal; @@ -5230,7 +5230,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { width: 170px; } -/* line 5522, ../../../scss/_clix2017.scss */ +/* line 5525, ../../../scss/_clix2017.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -5238,7 +5238,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background-size: 100% 100%; position: relative; } -/* line 5529, ../../../scss/_clix2017.scss */ +/* line 5532, ../../../scss/_clix2017.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -5252,13 +5252,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 5543, ../../../scss/_clix2017.scss */ +/* line 5546, ../../../scss/_clix2017.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 5548, ../../../scss/_clix2017.scss */ +/* line 5551, ../../../scss/_clix2017.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -5267,53 +5267,53 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { overflow: hidden; background-color: #fff; } -/* line 5556, ../../../scss/_clix2017.scss */ +/* line 5559, ../../../scss/_clix2017.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 5561, ../../../scss/_clix2017.scss */ +/* line 5564, ../../../scss/_clix2017.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 5566, ../../../scss/_clix2017.scss */ +/* line 5569, ../../../scss/_clix2017.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 5571, ../../../scss/_clix2017.scss */ +/* line 5574, ../../../scss/_clix2017.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 5579, ../../../scss/_clix2017.scss */ +/* line 5582, ../../../scss/_clix2017.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 5583, ../../../scss/_clix2017.scss */ +/* line 5586, ../../../scss/_clix2017.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 5593, ../../../scss/_clix2017.scss */ +/* line 5596, ../../../scss/_clix2017.scss */ .input_links { margin-left: 10px; } -/* line 5595, ../../../scss/_clix2017.scss */ +/* line 5598, ../../../scss/_clix2017.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 5601, ../../../scss/_clix2017.scss */ +/* line 5604, ../../../scss/_clix2017.scss */ #course-notification #status { width: 100% !important; } -/* line 5607, ../../../scss/_clix2017.scss */ +/* line 5610, ../../../scss/_clix2017.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; @@ -5325,7 +5325,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { color: #6153AE; } -/* line 5618, ../../../scss/_clix2017.scss */ +/* line 5621, ../../../scss/_clix2017.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -5337,7 +5337,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { color: #6153AE; } -/* line 5629, ../../../scss/_clix2017.scss */ +/* line 5632, ../../../scss/_clix2017.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -5347,12 +5347,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background-color: #f7f7f7; width: 85px; } -/* line 5637, ../../../scss/_clix2017.scss */ +/* line 5640, ../../../scss/_clix2017.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 5641, ../../../scss/_clix2017.scss */ +/* line 5644, ../../../scss/_clix2017.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -5363,39 +5363,39 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background-color: #f7f7f7; width: 85px; } -/* line 5650, ../../../scss/_clix2017.scss */ +/* line 5653, ../../../scss/_clix2017.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 5655, ../../../scss/_clix2017.scss */ +/* line 5658, ../../../scss/_clix2017.scss */ .jqtree-title > .fa-check { color: green; } -/* line 5658, ../../../scss/_clix2017.scss */ +/* line 5661, ../../../scss/_clix2017.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 5661, ../../../scss/_clix2017.scss */ +/* line 5664, ../../../scss/_clix2017.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 5664, ../../../scss/_clix2017.scss */ +/* line 5667, ../../../scss/_clix2017.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; } -/* line 5668, ../../../scss/_clix2017.scss */ +/* line 5671, ../../../scss/_clix2017.scss */ .img-height { height: 150px; width: 1351px; } -/* line 5673, ../../../scss/_clix2017.scss */ +/* line 5676, ../../../scss/_clix2017.scss */ .wrapper-footer { box-shadow: 0 -1px 5px 0 rgba(0, 0, 0, 0.1); border-top: 1px solid #c5c6c7; @@ -5409,7 +5409,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background: rgba(221, 221, 221, 0.18); clear: both; } -/* line 5689, ../../../scss/_clix2017.scss */ +/* line 5692, ../../../scss/_clix2017.scss */ .wrapper-footer #footer-clix { box-sizing: border-box; max-width: 1200px; @@ -5417,85 +5417,85 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-right: auto; margin: 0 auto; } -/* line 5697, ../../../scss/_clix2017.scss */ +/* line 5700, ../../../scss/_clix2017.scss */ .wrapper-footer #footer-clix .links-logos { float: left; display: block; margin-right: 2.35765%; width: 65.88078%; } -/* line 5703, ../../../scss/_clix2017.scss */ +/* line 5706, ../../../scss/_clix2017.scss */ .wrapper-footer #footer-clix .links-logos .nav-links-logos { margin: 10px 0px 0px 18px; } -/* line 5706, ../../../scss/_clix2017.scss */ +/* line 5709, ../../../scss/_clix2017.scss */ .wrapper-footer #footer-clix .links-logos .nav-links-logos ol { display: inline; list-style-type: none; } -/* line 5709, ../../../scss/_clix2017.scss */ +/* line 5712, ../../../scss/_clix2017.scss */ .wrapper-footer #footer-clix .links-logos .nav-links-logos ol li { float: left; margin-right: 15px; } -/* line 5712, ../../../scss/_clix2017.scss */ +/* line 5715, ../../../scss/_clix2017.scss */ .wrapper-footer #footer-clix .links-logos .nav-links-logos ol li > a { color: #ce7869; } -/* line 5714, ../../../scss/_clix2017.scss */ +/* line 5717, ../../../scss/_clix2017.scss */ .wrapper-footer #footer-clix .links-logos .nav-links-logos ol li > a:hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } -/* line 5725, ../../../scss/_clix2017.scss */ +/* line 5728, ../../../scss/_clix2017.scss */ .wrapper-footer #footer-clix .links-logos .nav-legal { margin: 0px 0px 0px 20px; } -/* line 5727, ../../../scss/_clix2017.scss */ +/* line 5730, ../../../scss/_clix2017.scss */ .wrapper-footer #footer-clix .links-logos .nav-legal ol { display: inline; list-style-type: none; } -/* line 5730, ../../../scss/_clix2017.scss */ +/* line 5733, ../../../scss/_clix2017.scss */ .wrapper-footer #footer-clix .links-logos .nav-legal ol li { float: left; margin-right: 15px; display: inline-block; font-size: 0.6875em; } -/* line 5735, ../../../scss/_clix2017.scss */ +/* line 5738, ../../../scss/_clix2017.scss */ .wrapper-footer #footer-clix .links-logos .nav-legal ol li > a { transition: link-color 0.15s ease-in-out 0s,border 0.15s ease-in-out 0s; border-bottom: none; color: #777; text-decoration: none !important; } -/* line 5740, ../../../scss/_clix2017.scss */ +/* line 5743, ../../../scss/_clix2017.scss */ .wrapper-footer #footer-clix .links-logos .nav-legal ol li > a:hover { color: #777; border-bottom: 3px solid #c90d97; } -/* line 5750, ../../../scss/_clix2017.scss */ +/* line 5753, ../../../scss/_clix2017.scss */ .wrapper-footer #footer-clix .links-logos .wrapper-logo { margin: 13px 0; display: inline-block; } -/* line 5753, ../../../scss/_clix2017.scss */ +/* line 5756, ../../../scss/_clix2017.scss */ .wrapper-footer #footer-clix .links-logos .wrapper-logo p { color: inherit; margin: 0; display: inline-block; } -/* line 5757, ../../../scss/_clix2017.scss */ +/* line 5760, ../../../scss/_clix2017.scss */ .wrapper-footer #footer-clix .links-logos .wrapper-logo p a { display: inline-block; } -/* line 5763, ../../../scss/_clix2017.scss */ +/* line 5766, ../../../scss/_clix2017.scss */ .wrapper-footer #footer-clix .links-logos .wrapper-logo .footer-logo > img { height: 10px; } -/* line 5773, ../../../scss/_clix2017.scss */ +/* line 5776, ../../../scss/_clix2017.scss */ #overlay { /* we set all of the properties for are overlay */ height: 116px; @@ -5516,7 +5516,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-radius: 10px; } -/* line 5793, ../../../scss/_clix2017.scss */ +/* line 5796, ../../../scss/_clix2017.scss */ #mask { /* create are mask */ position: fixed; @@ -5530,13 +5530,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* use :target to look for a link to the overlay then we find are mask */ -/* line 5804, ../../../scss/_clix2017.scss */ +/* line 5807, ../../../scss/_clix2017.scss */ #overlay:target, #overlay:target + #mask { display: block; opacity: 1; } -/* line 5808, ../../../scss/_clix2017.scss */ +/* line 5811, ../../../scss/_clix2017.scss */ .close { /* to make a nice looking pure CSS3 close button */ display: block; @@ -5558,7 +5558,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-radius: 38px; } -/* line 5827, ../../../scss/_clix2017.scss */ +/* line 5830, ../../../scss/_clix2017.scss */ #open-overlay { /* open the overlay */ padding: 0px 0px; @@ -5571,7 +5571,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -o-border-radius: 10px; } -/* line 5838, ../../../scss/_clix2017.scss */ +/* line 5841, ../../../scss/_clix2017.scss */ .enroll-btn { width: 90px; opacity: 1; @@ -5587,44 +5587,44 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background-color: #4b4852; } -/* line 5860, ../../../scss/_clix2017.scss */ +/* line 5863, ../../../scss/_clix2017.scss */ .img-style-land { margin-top: 28px; margin-left: -56px; } -/* line 5865, ../../../scss/_clix2017.scss */ +/* line 5868, ../../../scss/_clix2017.scss */ .top-margin-translation { margin-top: 0px; } -/* line 5869, ../../../scss/_clix2017.scss */ +/* line 5872, ../../../scss/_clix2017.scss */ .activity-editor-header-top { margin-top: -50px; } -/* line 5873, ../../../scss/_clix2017.scss */ +/* line 5876, ../../../scss/_clix2017.scss */ .add-lesson-top-margin { margin-top: 5px; } -/* line 5876, ../../../scss/_clix2017.scss */ +/* line 5879, ../../../scss/_clix2017.scss */ .translation-detail-top-margin { margin-top: 0px; } -/* line 5879, ../../../scss/_clix2017.scss */ +/* line 5882, ../../../scss/_clix2017.scss */ .outer { width: 100%; text-align: center; } -/* line 5884, ../../../scss/_clix2017.scss */ +/* line 5887, ../../../scss/_clix2017.scss */ .inner { display: inline-block !important; } -/* line 5889, ../../../scss/_clix2017.scss */ +/* line 5892, ../../../scss/_clix2017.scss */ .transcript-toggler { display: block; width: 155px !important; @@ -5640,33 +5640,33 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { text-transform: uppercase; } -/* line 5905, ../../../scss/_clix2017.scss */ +/* line 5908, ../../../scss/_clix2017.scss */ .double-buttons { margin-top: 100px; margin-left: 729px; } -/* line 5910, ../../../scss/_clix2017.scss */ +/* line 5913, ../../../scss/_clix2017.scss */ .lesson-form-name { padding-top: 10px; } -/* line 5914, ../../../scss/_clix2017.scss */ +/* line 5917, ../../../scss/_clix2017.scss */ .lesson-form-desc { padding-top: 25px; } -/* line 5918, ../../../scss/_clix2017.scss */ +/* line 5921, ../../../scss/_clix2017.scss */ .enroll_chkbox { transform: scale(1.5); } -/* line 5921, ../../../scss/_clix2017.scss */ +/* line 5924, ../../../scss/_clix2017.scss */ .enroll_all_users { width: 15% !important; } -/* line 5925, ../../../scss/_clix2017.scss */ +/* line 5928, ../../../scss/_clix2017.scss */ .enrollBtn { background: #a2238d; height: 50px; @@ -5682,24 +5682,24 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5959, ../../../scss/_clix2017.scss */ +/* line 5962, ../../../scss/_clix2017.scss */ .enroll-act_lbl { color: #0c2944; } -/* line 5964, ../../../scss/_clix2017.scss */ +/* line 5967, ../../../scss/_clix2017.scss */ .wrkspace { margin-right: 80px; } -/* line 5968, ../../../scss/_clix2017.scss */ +/* line 5971, ../../../scss/_clix2017.scss */ .status-btn { background-color: #fff; margin-right: auto; padding-bottom: 0px; text-transform: none; } -/* line 5973, ../../../scss/_clix2017.scss */ +/* line 5976, ../../../scss/_clix2017.scss */ .status-btn .disabled { background-color: #008cba; border-color: #007095; @@ -5709,64 +5709,64 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { box-shadow: none; } -/* line 5983, ../../../scss/_clix2017.scss */ +/* line 5986, ../../../scss/_clix2017.scss */ .margin-right-50 { margin-right: 50px; } /* responsive footer */ -/* line 5990, ../../../scss/_clix2017.scss */ +/* line 5993, ../../../scss/_clix2017.scss */ .clearfix { clear: both; } -/* line 5993, ../../../scss/_clix2017.scss */ +/* line 5996, ../../../scss/_clix2017.scss */ .clr1 { background: #FFFFFF; color: #333743; } -/* line 5994, ../../../scss/_clix2017.scss */ +/* line 5997, ../../../scss/_clix2017.scss */ .clr2 { background: #F1F3F5; color: #8F94A3; } -/* line 5995, ../../../scss/_clix2017.scss */ +/* line 5998, ../../../scss/_clix2017.scss */ .clr3 { background: rgba(221, 221, 221, 0.18); color: #BDC3CF; } -/* line 5996, ../../../scss/_clix2017.scss */ +/* line 5999, ../../../scss/_clix2017.scss */ .clr4 { background: rgba(221, 221, 221, 0.18); color: #E3E7F2; } -/* line 5997, ../../../scss/_clix2017.scss */ +/* line 6000, ../../../scss/_clix2017.scss */ .clr5 { color: #F1F3F5; } -/* line 5998, ../../../scss/_clix2017.scss */ +/* line 6001, ../../../scss/_clix2017.scss */ .clr6 { color: #39B5A1; } -/* line 5999, ../../../scss/_clix2017.scss */ +/* line 6002, ../../../scss/_clix2017.scss */ .clr7 { color: #D45245; } /*##### Footer Structure #####*/ -/* line 6004, ../../../scss/_clix2017.scss */ +/* line 6007, ../../../scss/_clix2017.scss */ .bo-wrap { clear: both; width: auto; } -/* line 6008, ../../../scss/_clix2017.scss */ +/* line 6011, ../../../scss/_clix2017.scss */ .bo-footer { clear: both; width: auto; @@ -5775,24 +5775,24 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin: 0 auto; } -/* line 6016, ../../../scss/_clix2017.scss */ +/* line 6019, ../../../scss/_clix2017.scss */ .bo-footer-social { text-align: left; line-height: 1px; padding: 10px 10px 10px 10px; } -/* line 6021, ../../../scss/_clix2017.scss */ +/* line 6024, ../../../scss/_clix2017.scss */ .bo-footer-social > a { color: #ce7869; word-spacing: 8px; } -/* line 6024, ../../../scss/_clix2017.scss */ +/* line 6027, ../../../scss/_clix2017.scss */ .bo-footer-social > a:hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } -/* line 6034, ../../../scss/_clix2017.scss */ +/* line 6037, ../../../scss/_clix2017.scss */ .bo-footer-copyright > a { transition: link-color 0.15s ease-in-out 0s,border 0.15s ease-in-out 0s; border-bottom: none; @@ -5800,13 +5800,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { text-decoration: none !important; word-spacing: 3px; } -/* line 6040, ../../../scss/_clix2017.scss */ +/* line 6043, ../../../scss/_clix2017.scss */ .bo-footer-copyright > a:hover { color: #777; border-bottom: 3px solid #c90d97; } -/* line 6047, ../../../scss/_clix2017.scss */ +/* line 6050, ../../../scss/_clix2017.scss */ .bo-footer-smap { width: 600px; float: left; @@ -5816,7 +5816,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { word-spacing: 20px; } -/* line 6056, ../../../scss/_clix2017.scss */ +/* line 6059, ../../../scss/_clix2017.scss */ .bo-footer-uonline { width: 300px; /* Account for margins + border values */ @@ -5825,7 +5825,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { text-align: center; } -/* line 6063, ../../../scss/_clix2017.scss */ +/* line 6066, ../../../scss/_clix2017.scss */ .bo-footer-power { width: 300px; padding: 5px 10px; @@ -5839,19 +5839,19 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { /*##### Footer Responsive #####*/ /* for 980px or less */ @media screen and (max-width: 980px) { - /* line 6079, ../../../scss/_clix2017.scss */ + /* line 6082, ../../../scss/_clix2017.scss */ .bo-footer { width: 95%; padding: 1% 2%; } - /* line 6083, ../../../scss/_clix2017.scss */ + /* line 6086, ../../../scss/_clix2017.scss */ .bo-footer-smap { width: 33%; padding: 1% 2%; } - /* line 6087, ../../../scss/_clix2017.scss */ + /* line 6090, ../../../scss/_clix2017.scss */ .bo-footer-uonline { width: 46%; padding: 1% 2%; @@ -5859,7 +5859,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { text-align: right; } - /* line 6094, ../../../scss/_clix2017.scss */ + /* line 6097, ../../../scss/_clix2017.scss */ .bo-footer-power { clear: both; padding: 1% 2%; @@ -5870,21 +5870,21 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* for 700px or less */ @media screen and (max-width: 600px) { - /* line 6105, ../../../scss/_clix2017.scss */ + /* line 6108, ../../../scss/_clix2017.scss */ .bo-footer-smap { width: auto; float: none; text-align: center; } - /* line 6111, ../../../scss/_clix2017.scss */ + /* line 6114, ../../../scss/_clix2017.scss */ .bo-footer-uonline { width: auto; float: none; text-align: center; } - /* line 6117, ../../../scss/_clix2017.scss */ + /* line 6120, ../../../scss/_clix2017.scss */ .bo-footer-power { width: auto; float: none; @@ -5892,36 +5892,36 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } } /* for 480px or less */ -/* line 6131, ../../../scss/_clix2017.scss */ +/* line 6134, ../../../scss/_clix2017.scss */ .color-btn { background-color: #720f5e; width: 77px; margin-left: 17px; } -/* line 6135, ../../../scss/_clix2017.scss */ +/* line 6138, ../../../scss/_clix2017.scss */ .color-btn:hover { color: #720f5e; background-color: #ffffff; } -/* line 6141, ../../../scss/_clix2017.scss */ +/* line 6144, ../../../scss/_clix2017.scss */ .mid_label { margin-top: 15px; font-size: 15px; } -/* line 6146, ../../../scss/_clix2017.scss */ +/* line 6149, ../../../scss/_clix2017.scss */ .compulsory { color: red; font-size: smaller; } -/* line 6151, ../../../scss/_clix2017.scss */ +/* line 6154, ../../../scss/_clix2017.scss */ .select-drop { height: auto; } -/* line 6155, ../../../scss/_clix2017.scss */ +/* line 6158, ../../../scss/_clix2017.scss */ .template-select { border: 1px solid #cccccc; border-radius: 5px; @@ -5930,41 +5930,41 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-size: 14px; } -/* line 6163, ../../../scss/_clix2017.scss */ +/* line 6166, ../../../scss/_clix2017.scss */ .white-text { color: white; } -/* line 6168, ../../../scss/_clix2017.scss */ +/* line 6171, ../../../scss/_clix2017.scss */ .quiz-player .quiz_qtn { margin-left: 20px !important; font-size: 20px; } -/* line 6172, ../../../scss/_clix2017.scss */ +/* line 6175, ../../../scss/_clix2017.scss */ .quiz-player .question_edit { margin-left: 20px !important; } -/* line 6176, ../../../scss/_clix2017.scss */ +/* line 6179, ../../../scss/_clix2017.scss */ .quiz-player input[type=checkbox], .quiz-player input[type=radio] { margin-right: 10px; width: 15px; height: 15px; } -/* line 6182, ../../../scss/_clix2017.scss */ +/* line 6185, ../../../scss/_clix2017.scss */ .quiz-player .chk_ans_lbl, .quiz-player .rad_ans_lbl { font-size: 22px; margin-left: 5px; } -/* line 6187, ../../../scss/_clix2017.scss */ +/* line 6190, ../../../scss/_clix2017.scss */ .quiz-player .fi-check { color: green; } -/* line 6191, ../../../scss/_clix2017.scss */ +/* line 6194, ../../../scss/_clix2017.scss */ .quiz-player .fi-x { color: red; } -/* line 6196, ../../../scss/_clix2017.scss */ +/* line 6199, ../../../scss/_clix2017.scss */ .hyperlink-tag { cursor: pointer; cursor: pointer; @@ -5977,7 +5977,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { color: #164A7B; } -/* line 6208, ../../../scss/_clix2017.scss */ +/* line 6211, ../../../scss/_clix2017.scss */ .scard { background: #FFF; border: 1px solid #AAA; @@ -5989,12 +5989,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { height: 9rem; /*float:left;*/ } -/* line 6217, ../../../scss/_clix2017.scss */ +/* line 6220, ../../../scss/_clix2017.scss */ .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 6223, ../../../scss/_clix2017.scss */ +/* line 6226, ../../../scss/_clix2017.scss */ .scard .scard_header { text-align: center; position: fixed; @@ -6012,7 +6012,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; } -/* line 6240, ../../../scss/_clix2017.scss */ +/* line 6243, ../../../scss/_clix2017.scss */ .scard-content { height: 2.7em; padding: 0.5rem; @@ -6025,7 +6025,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 6251, ../../../scss/_clix2017.scss */ +/* line 6254, ../../../scss/_clix2017.scss */ .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; @@ -6035,7 +6035,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { text-align: center; } -/* line 6264, ../../../scss/_clix2017.scss */ +/* line 6267, ../../../scss/_clix2017.scss */ .scard-action { height: height; font-size: 0.6em; @@ -6049,7 +6049,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background-color: #CCCCCC; } -/* line 6279, ../../../scss/_clix2017.scss */ +/* line 6282, ../../../scss/_clix2017.scss */ .scard-desc { font-size: 0.7em; color: #333333; @@ -6065,7 +6065,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { display-inline: block; } -/* line 6296, ../../../scss/_clix2017.scss */ +/* line 6299, ../../../scss/_clix2017.scss */ .scard-image { padding: 0px; margin: 0px; @@ -6076,7 +6076,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { overflow: hidden; background-color: #f2f2f2; } -/* line 6305, ../../../scss/_clix2017.scss */ +/* line 6308, ../../../scss/_clix2017.scss */ .scard-image img { border-radius: 2px 2px 0 0; display: block; @@ -6085,18 +6085,18 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { height: 100%; } -/* line 6317, ../../../scss/_clix2017.scss */ +/* line 6320, ../../../scss/_clix2017.scss */ .published.scard-action { background: #A6D9CB; } -/* line 6321, ../../../scss/_clix2017.scss */ +/* line 6324, ../../../scss/_clix2017.scss */ .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 6327, ../../../scss/_clix2017.scss */ +/* line 6330, ../../../scss/_clix2017.scss */ .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -6105,17 +6105,17 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { height: 2rem; } -/* line 6335, ../../../scss/_clix2017.scss */ +/* line 6338, ../../../scss/_clix2017.scss */ .auto_width { width: auto !important; } -/* line 6339, ../../../scss/_clix2017.scss */ +/* line 6342, ../../../scss/_clix2017.scss */ .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 6342, ../../../scss/_clix2017.scss */ +/* line 6345, ../../../scss/_clix2017.scss */ .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -6128,17 +6128,17 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 10px; margin-left: 20px; } -/* line 6353, ../../../scss/_clix2017.scss */ +/* line 6356, ../../../scss/_clix2017.scss */ .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 6359, ../../../scss/_clix2017.scss */ +/* line 6362, ../../../scss/_clix2017.scss */ .explore-settings-drop a { font-size: 16px; } -/* line 6362, ../../../scss/_clix2017.scss */ +/* line 6365, ../../../scss/_clix2017.scss */ .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -6146,37 +6146,37 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin: 0; background-color: #164A7B; } -/* line 6370, ../../../scss/_clix2017.scss */ +/* line 6373, ../../../scss/_clix2017.scss */ .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 6374, ../../../scss/_clix2017.scss */ +/* line 6377, ../../../scss/_clix2017.scss */ .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 6381, ../../../scss/_clix2017.scss */ +/* line 6384, ../../../scss/_clix2017.scss */ .attempts_count { color: #000000 !important; } -/* line 6387, ../../../scss/_clix2017.scss */ +/* line 6390, ../../../scss/_clix2017.scss */ #course-settings-drop li a { text-align: left; } -/* line 6395, ../../../scss/_clix2017.scss */ +/* line 6398, ../../../scss/_clix2017.scss */ #asset-settings-drop li a { text-align: left; } -/* line 6402, ../../../scss/_clix2017.scss */ +/* line 6405, ../../../scss/_clix2017.scss */ .button-bg { background-color: #74b3dc; } /* Tools page css listing*/ -/* line 6409, ../../../scss/_clix2017.scss */ +/* line 6412, ../../../scss/_clix2017.scss */ .polaroid { width: 330px; background-color: white; @@ -6190,7 +6190,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { cursor: pointer; } -/* line 6422, ../../../scss/_clix2017.scss */ +/* line 6425, ../../../scss/_clix2017.scss */ .polaroid:hover img { -webkit-transform: scale(1.05); -moz-transform: scale(1.05); @@ -6199,26 +6199,26 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { transform: scale(1.05); } -/* line 6431, ../../../scss/_clix2017.scss */ +/* line 6434, ../../../scss/_clix2017.scss */ .container { text-align: center; padding: 10px 20px; border-top: 5px solid #164a7b; margin-top: 0px; } -/* line 6437, ../../../scss/_clix2017.scss */ +/* line 6440, ../../../scss/_clix2017.scss */ .container > p { color: black; font-size: 16px; font-weight: 500; } -/* line 6446, ../../../scss/_clix2017.scss */ +/* line 6449, ../../../scss/_clix2017.scss */ .tool-bg { background-color: rgba(87, 198, 250, 0.07); } -/* line 6449, ../../../scss/_clix2017.scss */ +/* line 6452, ../../../scss/_clix2017.scss */ .purple-btn { width: inherit; text-transform: uppercase; @@ -6229,7 +6229,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border: 2px solid #6a0054; } -/* line 6459, ../../../scss/_clix2017.scss */ +/* line 6462, ../../../scss/_clix2017.scss */ .disable-purple-btn { width: inherit; text-transform: uppercase !important; @@ -6240,27 +6240,27 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border: 2px solid #4b4852; } -/* line 6469, ../../../scss/_clix2017.scss */ +/* line 6472, ../../../scss/_clix2017.scss */ .user-analytics-data { margin: 42px 37px 37px 37px; border: 2px solid #aaaaaa; } -/* line 6472, ../../../scss/_clix2017.scss */ +/* line 6475, ../../../scss/_clix2017.scss */ .user-analytics-data .close-reveal-modal { font-size: 20px; } -/* line 6476, ../../../scss/_clix2017.scss */ +/* line 6479, ../../../scss/_clix2017.scss */ .left-space { margin-left: 0.5em; } -/* line 6484, ../../../scss/_clix2017.scss */ +/* line 6487, ../../../scss/_clix2017.scss */ .top-right-menu { margin-right: 80px !important; } -/* line 6491, ../../../scss/_clix2017.scss */ +/* line 6494, ../../../scss/_clix2017.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -6278,12 +6278,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { transition: all .1s ease; margin-right: 1px; } -/* line 6507, ../../../scss/_clix2017.scss */ +/* line 6510, ../../../scss/_clix2017.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 6512, ../../../scss/_clix2017.scss */ +/* line 6515, ../../../scss/_clix2017.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -6295,13 +6295,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { transition: all .1s ease; margin-right: 1px; } -/* line 6522, ../../../scss/_clix2017.scss */ +/* line 6525, ../../../scss/_clix2017.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 6530, ../../../scss/_clix2017.scss */ +/* line 6533, ../../../scss/_clix2017.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -6318,7 +6318,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { color: #fff; transition: all .1s ease; } -/* line 6545, ../../../scss/_clix2017.scss */ +/* line 6548, ../../../scss/_clix2017.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss index 177df3f440..6d982fafb7 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss @@ -5165,7 +5165,7 @@ $module-card-lines-to-show: 3; margin-left: 40px; border-radius: 8px 0px 0px 8px; transition: border-radius .2s; - text-shadow: 3px 2px #164a7b; + text-shadow: -1px -1px 8px #000, 1px -1px 8px #000, -1px 1px 8px #000, 1px 1px 0 #000; } .right-margin{ From 805f38f182dfbc72cbedc0ff66540275223e85fc Mon Sep 17 00:00:00 2001 From: katkamrachana Date: Tue, 16 Jan 2018 15:21:05 +0530 Subject: [PATCH 252/766] scroll to selected activity in course tree of activity-player --- .../gnowsys_ndf/ndf/templates/ndf/activity_player.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/activity_player.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/activity_player.html index b6ac00420c..4f2464fd56 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/activity_player.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/activity_player.html @@ -47,7 +47,7 @@ {% firstof group_object.altnames group_object.name %} {% if "QuizItemEvent" in node.member_of_names_list or "QuizItem" in node.member_of_names_list%} - RESULTS + Results {% endif %}
    @@ -218,6 +218,13 @@ // start of document.ready() $(document).ready(function(event) { + + var $container = $('.course_tree'), + $scrollTo = $('.activity-title').children('li.active'); + $container.scrollTop( + $scrollTo.offset().top - $container.offset().top- $container.offset().top + $container.scrollTop() + ); + var iframes = document.getElementsByTagName('iframe'); var key = 'assessment.Bank'; From f1c6feba0f8b2a6a0fadda4b9c4e90d0994f394a Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Wed, 17 Jan 2018 19:50:52 +0530 Subject: [PATCH 253/766] Footer Cahnges partially --- .../ndf/static/ndf/css/themes/clix/styles.css | 189 +++++++++++++ .../ndf/css/themes/metastudio/styles.css | 190 +++++++++++++ .../static/ndf/css/themes/nroer/styles.css | 190 +++++++++++++ .../ndf/static/ndf/css/themes/tiss/styles.css | 190 +++++++++++++ .../ndf/static/ndf/scss/_app_styles.scss | 151 ++++++++++ .../ndf/templates/ndf/footer_clix.html | 264 ++++++------------ .../gnowsys_ndf/ndf/templates/ndf/gbase.html | 42 ++- .../ndf/templates/ndf/test_template.html | 100 +++++++ gnowsys-ndf/gnowsys_ndf/settings.py | 2 +- 9 files changed, 1144 insertions(+), 174 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css index c289da3fc7..c0fe4c6fea 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css @@ -31198,6 +31198,195 @@ button[disabled], .button.disabled, .button[disabled] { font-size: 15px; } +/*footer*/ +/* responsive footer */ +/* line 8099, ../../../scss/_app_styles.scss */ +.clearfix { + clear: both; +} + +/* line 8102, ../../../scss/_app_styles.scss */ +.clr1 { + background: #FFFFFF; + color: #333743; +} + +/* line 8103, ../../../scss/_app_styles.scss */ +.clr2 { + background: #F1F3F5; + color: #8F94A3; +} + +/* line 8104, ../../../scss/_app_styles.scss */ +.clr3 { + background: rgba(221, 221, 221, 0.18); + color: #BDC3CF; +} + +/* line 8105, ../../../scss/_app_styles.scss */ +.clr4 { + background: rgba(221, 221, 221, 0.18); + color: #E3E7F2; +} + +/* line 8106, ../../../scss/_app_styles.scss */ +.clr5 { + color: #F1F3F5; +} + +/* line 8107, ../../../scss/_app_styles.scss */ +.clr6 { + color: #39B5A1; +} + +/* line 8108, ../../../scss/_app_styles.scss */ +.clr7 { + color: #D45245; +} + +/*##### Footer Structure #####*/ +/* line 8113, ../../../scss/_app_styles.scss */ +.bo-wrap { + clear: both; + width: auto; +} + +/* line 8117, ../../../scss/_app_styles.scss */ +.bo-footer { + clear: both; + padding: 5px; + /*width: 700px;*/ + margin: 2 auto; + font-weight: bold; + font-size: 12px; +} + +/* line 8127, ../../../scss/_app_styles.scss */ +.bo-footer-social { + text-align: left; + line-height: 1px; + padding: 10px 10px 10px 10px; +} +/* line 8132, ../../../scss/_app_styles.scss */ +.bo-footer-social > a { + color: #ce7869; + word-spacing: 8px; +} +/* line 8135, ../../../scss/_app_styles.scss */ +.bo-footer-social > a:hover { + color: #ce7869; + border-bottom: 3px solid #ffc14e; +} + +/* line 8145, ../../../scss/_app_styles.scss */ +.bo-footer-copyright > a { + transition: link-color 0.15s ease-in-out 0s,border 0.15s ease-in-out 0s; + border-bottom: none; + color: #777; + text-decoration: none !important; + word-spacing: 3px; +} +/* line 8151, ../../../scss/_app_styles.scss */ +.bo-footer-copyright > a:hover { + color: #777; + border-bottom: 3px solid #c90d97; +} + +/* line 8158, ../../../scss/_app_styles.scss */ +.bo-footer-smap { + width: 670px; + float: left; + padding: 5px 10px; + text-align: left; + font-size: 18px; + word-spacing: 20px; +} + +/* line 8167, ../../../scss/_app_styles.scss */ +.bo-footer-images { + display: inline; + max-width: 120px; + max-height: 95px; + width: auto; + height: auto; + vertical-align: bottom; +} + +/* line 8176, ../../../scss/_app_styles.scss */ +.bo-footer-uonline { + width: 300px; + /* Account for margins + border values */ + float: left; + padding: 5px 10px; + text-align: center; +} + +/* line 8183, ../../../scss/_app_styles.scss */ +.bo-footer-power { + width: 300px; + padding: 5px 10px; + float: left; + text-align: right; + font-size: 14px; + color: #636A7D; + vertical-align: middle; +} + +/*##### Footer Responsive #####*/ +/* for 980px or less */ +@media screen and (max-width: 980px) { + /* line 8199, ../../../scss/_app_styles.scss */ + .bo-footer { + width: 95%; + padding: 1% 2%; + } + + /* line 8203, ../../../scss/_app_styles.scss */ + .bo-footer-smap { + width: 33%; + padding: 1% 2%; + } + + /* line 8207, ../../../scss/_app_styles.scss */ + .bo-footer-uonline { + width: 46%; + padding: 1% 2%; + float: right; + text-align: right; + } + + /* line 8214, ../../../scss/_app_styles.scss */ + .bo-footer-power { + clear: both; + padding: 1% 2%; + width: auto; + float: none; + text-align: center; + } +} +/* for 700px or less */ +@media screen and (max-width: 600px) { + /* line 8225, ../../../scss/_app_styles.scss */ + .bo-footer-smap { + width: auto; + float: none; + text-align: center; + } + + /* line 8231, ../../../scss/_app_styles.scss */ + .bo-footer-uonline { + width: auto; + float: none; + text-align: center; + } + + /* line 8237, ../../../scss/_app_styles.scss */ + .bo-footer-power { + width: auto; + float: none; + text-align: center; + } +} /* * CLIx Platform Stylesheet */ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css index 73e9cdfce1..921580964c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css @@ -31220,3 +31220,193 @@ button[disabled], .button.disabled, .button[disabled] { margin-top: 15px; font-size: 15px; } + +/*footer*/ +/* responsive footer */ +/* line 8099, ../../../scss/_app_styles.scss */ +.clearfix { + clear: both; +} + +/* line 8102, ../../../scss/_app_styles.scss */ +.clr1 { + background: #FFFFFF; + color: #333743; +} + +/* line 8103, ../../../scss/_app_styles.scss */ +.clr2 { + background: #F1F3F5; + color: #8F94A3; +} + +/* line 8104, ../../../scss/_app_styles.scss */ +.clr3 { + background: rgba(221, 221, 221, 0.18); + color: #BDC3CF; +} + +/* line 8105, ../../../scss/_app_styles.scss */ +.clr4 { + background: rgba(221, 221, 221, 0.18); + color: #E3E7F2; +} + +/* line 8106, ../../../scss/_app_styles.scss */ +.clr5 { + color: #F1F3F5; +} + +/* line 8107, ../../../scss/_app_styles.scss */ +.clr6 { + color: #39B5A1; +} + +/* line 8108, ../../../scss/_app_styles.scss */ +.clr7 { + color: #D45245; +} + +/*##### Footer Structure #####*/ +/* line 8113, ../../../scss/_app_styles.scss */ +.bo-wrap { + clear: both; + width: auto; +} + +/* line 8117, ../../../scss/_app_styles.scss */ +.bo-footer { + clear: both; + padding: 5px; + /*width: 700px;*/ + margin: 2 auto; + font-weight: bold; + font-size: 12px; +} + +/* line 8127, ../../../scss/_app_styles.scss */ +.bo-footer-social { + text-align: left; + line-height: 1px; + padding: 10px 10px 10px 10px; +} +/* line 8132, ../../../scss/_app_styles.scss */ +.bo-footer-social > a { + color: #ce7869; + word-spacing: 8px; +} +/* line 8135, ../../../scss/_app_styles.scss */ +.bo-footer-social > a:hover { + color: #ce7869; + border-bottom: 3px solid #ffc14e; +} + +/* line 8145, ../../../scss/_app_styles.scss */ +.bo-footer-copyright > a { + transition: link-color 0.15s ease-in-out 0s,border 0.15s ease-in-out 0s; + border-bottom: none; + color: #777; + text-decoration: none !important; + word-spacing: 3px; +} +/* line 8151, ../../../scss/_app_styles.scss */ +.bo-footer-copyright > a:hover { + color: #777; + border-bottom: 3px solid #c90d97; +} + +/* line 8158, ../../../scss/_app_styles.scss */ +.bo-footer-smap { + width: 670px; + float: left; + padding: 5px 10px; + text-align: left; + font-size: 18px; + word-spacing: 20px; +} + +/* line 8167, ../../../scss/_app_styles.scss */ +.bo-footer-images { + display: inline; + max-width: 120px; + max-height: 95px; + width: auto; + height: auto; + vertical-align: bottom; +} + +/* line 8176, ../../../scss/_app_styles.scss */ +.bo-footer-uonline { + width: 300px; + /* Account for margins + border values */ + float: left; + padding: 5px 10px; + text-align: center; +} + +/* line 8183, ../../../scss/_app_styles.scss */ +.bo-footer-power { + width: 300px; + padding: 5px 10px; + float: left; + text-align: right; + font-size: 14px; + color: #636A7D; + vertical-align: middle; +} + +/*##### Footer Responsive #####*/ +/* for 980px or less */ +@media screen and (max-width: 980px) { + /* line 8199, ../../../scss/_app_styles.scss */ + .bo-footer { + width: 95%; + padding: 1% 2%; + } + + /* line 8203, ../../../scss/_app_styles.scss */ + .bo-footer-smap { + width: 33%; + padding: 1% 2%; + } + + /* line 8207, ../../../scss/_app_styles.scss */ + .bo-footer-uonline { + width: 46%; + padding: 1% 2%; + float: right; + text-align: right; + } + + /* line 8214, ../../../scss/_app_styles.scss */ + .bo-footer-power { + clear: both; + padding: 1% 2%; + width: auto; + float: none; + text-align: center; + } +} +/* for 700px or less */ +@media screen and (max-width: 600px) { + /* line 8225, ../../../scss/_app_styles.scss */ + .bo-footer-smap { + width: auto; + float: none; + text-align: center; + } + + /* line 8231, ../../../scss/_app_styles.scss */ + .bo-footer-uonline { + width: auto; + float: none; + text-align: center; + } + + /* line 8237, ../../../scss/_app_styles.scss */ + .bo-footer-power { + width: auto; + float: none; + text-align: center; + } +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css index b8f554b7b9..6b441bf3e8 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css @@ -31313,3 +31313,193 @@ button[disabled], .button.disabled, .button[disabled] { margin-top: 15px; font-size: 15px; } + +/*footer*/ +/* responsive footer */ +/* line 8099, ../../../scss/_app_styles.scss */ +.clearfix { + clear: both; +} + +/* line 8102, ../../../scss/_app_styles.scss */ +.clr1 { + background: #FFFFFF; + color: #333743; +} + +/* line 8103, ../../../scss/_app_styles.scss */ +.clr2 { + background: #F1F3F5; + color: #8F94A3; +} + +/* line 8104, ../../../scss/_app_styles.scss */ +.clr3 { + background: rgba(221, 221, 221, 0.18); + color: #BDC3CF; +} + +/* line 8105, ../../../scss/_app_styles.scss */ +.clr4 { + background: rgba(221, 221, 221, 0.18); + color: #E3E7F2; +} + +/* line 8106, ../../../scss/_app_styles.scss */ +.clr5 { + color: #F1F3F5; +} + +/* line 8107, ../../../scss/_app_styles.scss */ +.clr6 { + color: #39B5A1; +} + +/* line 8108, ../../../scss/_app_styles.scss */ +.clr7 { + color: #D45245; +} + +/*##### Footer Structure #####*/ +/* line 8113, ../../../scss/_app_styles.scss */ +.bo-wrap { + clear: both; + width: auto; +} + +/* line 8117, ../../../scss/_app_styles.scss */ +.bo-footer { + clear: both; + padding: 5px; + /*width: 700px;*/ + margin: 2 auto; + font-weight: bold; + font-size: 12px; +} + +/* line 8127, ../../../scss/_app_styles.scss */ +.bo-footer-social { + text-align: left; + line-height: 1px; + padding: 10px 10px 10px 10px; +} +/* line 8132, ../../../scss/_app_styles.scss */ +.bo-footer-social > a { + color: #ce7869; + word-spacing: 8px; +} +/* line 8135, ../../../scss/_app_styles.scss */ +.bo-footer-social > a:hover { + color: #ce7869; + border-bottom: 3px solid #ffc14e; +} + +/* line 8145, ../../../scss/_app_styles.scss */ +.bo-footer-copyright > a { + transition: link-color 0.15s ease-in-out 0s,border 0.15s ease-in-out 0s; + border-bottom: none; + color: #777; + text-decoration: none !important; + word-spacing: 3px; +} +/* line 8151, ../../../scss/_app_styles.scss */ +.bo-footer-copyright > a:hover { + color: #777; + border-bottom: 3px solid #c90d97; +} + +/* line 8158, ../../../scss/_app_styles.scss */ +.bo-footer-smap { + width: 670px; + float: left; + padding: 5px 10px; + text-align: left; + font-size: 18px; + word-spacing: 20px; +} + +/* line 8167, ../../../scss/_app_styles.scss */ +.bo-footer-images { + display: inline; + max-width: 120px; + max-height: 95px; + width: auto; + height: auto; + vertical-align: bottom; +} + +/* line 8176, ../../../scss/_app_styles.scss */ +.bo-footer-uonline { + width: 300px; + /* Account for margins + border values */ + float: left; + padding: 5px 10px; + text-align: center; +} + +/* line 8183, ../../../scss/_app_styles.scss */ +.bo-footer-power { + width: 300px; + padding: 5px 10px; + float: left; + text-align: right; + font-size: 14px; + color: #636A7D; + vertical-align: middle; +} + +/*##### Footer Responsive #####*/ +/* for 980px or less */ +@media screen and (max-width: 980px) { + /* line 8199, ../../../scss/_app_styles.scss */ + .bo-footer { + width: 95%; + padding: 1% 2%; + } + + /* line 8203, ../../../scss/_app_styles.scss */ + .bo-footer-smap { + width: 33%; + padding: 1% 2%; + } + + /* line 8207, ../../../scss/_app_styles.scss */ + .bo-footer-uonline { + width: 46%; + padding: 1% 2%; + float: right; + text-align: right; + } + + /* line 8214, ../../../scss/_app_styles.scss */ + .bo-footer-power { + clear: both; + padding: 1% 2%; + width: auto; + float: none; + text-align: center; + } +} +/* for 700px or less */ +@media screen and (max-width: 600px) { + /* line 8225, ../../../scss/_app_styles.scss */ + .bo-footer-smap { + width: auto; + float: none; + text-align: center; + } + + /* line 8231, ../../../scss/_app_styles.scss */ + .bo-footer-uonline { + width: auto; + float: none; + text-align: center; + } + + /* line 8237, ../../../scss/_app_styles.scss */ + .bo-footer-power { + width: auto; + float: none; + text-align: center; + } +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css index 73e9cdfce1..921580964c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css @@ -31220,3 +31220,193 @@ button[disabled], .button.disabled, .button[disabled] { margin-top: 15px; font-size: 15px; } + +/*footer*/ +/* responsive footer */ +/* line 8099, ../../../scss/_app_styles.scss */ +.clearfix { + clear: both; +} + +/* line 8102, ../../../scss/_app_styles.scss */ +.clr1 { + background: #FFFFFF; + color: #333743; +} + +/* line 8103, ../../../scss/_app_styles.scss */ +.clr2 { + background: #F1F3F5; + color: #8F94A3; +} + +/* line 8104, ../../../scss/_app_styles.scss */ +.clr3 { + background: rgba(221, 221, 221, 0.18); + color: #BDC3CF; +} + +/* line 8105, ../../../scss/_app_styles.scss */ +.clr4 { + background: rgba(221, 221, 221, 0.18); + color: #E3E7F2; +} + +/* line 8106, ../../../scss/_app_styles.scss */ +.clr5 { + color: #F1F3F5; +} + +/* line 8107, ../../../scss/_app_styles.scss */ +.clr6 { + color: #39B5A1; +} + +/* line 8108, ../../../scss/_app_styles.scss */ +.clr7 { + color: #D45245; +} + +/*##### Footer Structure #####*/ +/* line 8113, ../../../scss/_app_styles.scss */ +.bo-wrap { + clear: both; + width: auto; +} + +/* line 8117, ../../../scss/_app_styles.scss */ +.bo-footer { + clear: both; + padding: 5px; + /*width: 700px;*/ + margin: 2 auto; + font-weight: bold; + font-size: 12px; +} + +/* line 8127, ../../../scss/_app_styles.scss */ +.bo-footer-social { + text-align: left; + line-height: 1px; + padding: 10px 10px 10px 10px; +} +/* line 8132, ../../../scss/_app_styles.scss */ +.bo-footer-social > a { + color: #ce7869; + word-spacing: 8px; +} +/* line 8135, ../../../scss/_app_styles.scss */ +.bo-footer-social > a:hover { + color: #ce7869; + border-bottom: 3px solid #ffc14e; +} + +/* line 8145, ../../../scss/_app_styles.scss */ +.bo-footer-copyright > a { + transition: link-color 0.15s ease-in-out 0s,border 0.15s ease-in-out 0s; + border-bottom: none; + color: #777; + text-decoration: none !important; + word-spacing: 3px; +} +/* line 8151, ../../../scss/_app_styles.scss */ +.bo-footer-copyright > a:hover { + color: #777; + border-bottom: 3px solid #c90d97; +} + +/* line 8158, ../../../scss/_app_styles.scss */ +.bo-footer-smap { + width: 670px; + float: left; + padding: 5px 10px; + text-align: left; + font-size: 18px; + word-spacing: 20px; +} + +/* line 8167, ../../../scss/_app_styles.scss */ +.bo-footer-images { + display: inline; + max-width: 120px; + max-height: 95px; + width: auto; + height: auto; + vertical-align: bottom; +} + +/* line 8176, ../../../scss/_app_styles.scss */ +.bo-footer-uonline { + width: 300px; + /* Account for margins + border values */ + float: left; + padding: 5px 10px; + text-align: center; +} + +/* line 8183, ../../../scss/_app_styles.scss */ +.bo-footer-power { + width: 300px; + padding: 5px 10px; + float: left; + text-align: right; + font-size: 14px; + color: #636A7D; + vertical-align: middle; +} + +/*##### Footer Responsive #####*/ +/* for 980px or less */ +@media screen and (max-width: 980px) { + /* line 8199, ../../../scss/_app_styles.scss */ + .bo-footer { + width: 95%; + padding: 1% 2%; + } + + /* line 8203, ../../../scss/_app_styles.scss */ + .bo-footer-smap { + width: 33%; + padding: 1% 2%; + } + + /* line 8207, ../../../scss/_app_styles.scss */ + .bo-footer-uonline { + width: 46%; + padding: 1% 2%; + float: right; + text-align: right; + } + + /* line 8214, ../../../scss/_app_styles.scss */ + .bo-footer-power { + clear: both; + padding: 1% 2%; + width: auto; + float: none; + text-align: center; + } +} +/* for 700px or less */ +@media screen and (max-width: 600px) { + /* line 8225, ../../../scss/_app_styles.scss */ + .bo-footer-smap { + width: auto; + float: none; + text-align: center; + } + + /* line 8231, ../../../scss/_app_styles.scss */ + .bo-footer-uonline { + width: auto; + float: none; + text-align: center; + } + + /* line 8237, ../../../scss/_app_styles.scss */ + .bo-footer-power { + width: auto; + float: none; + text-align: center; + } +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss index 6657d7f4b7..919f1621fc 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss @@ -8091,3 +8091,154 @@ $module-card-lines-to-show: 3; font-size: 15px; } + + +/*footer*/ + +/* responsive footer */ +.clearfix {clear: both;} + + +.clr1 {background: #FFFFFF; color: #333743;} +.clr2 {background: #F1F3F5; color: #8F94A3;} +.clr3 {background: rgba(221, 221, 221, 0.18); color: #BDC3CF;} +.clr4 {background: rgba(221, 221, 221, 0.18); color: #E3E7F2;} +.clr5 {color: #F1F3F5;} +.clr6 {color: #39B5A1;} +.clr7 {color: #D45245;} + + + +/*##### Footer Structure #####*/ +.bo-wrap { + clear:both; + width: auto; +} +.bo-footer { + clear:both; + + padding: 5px; + /*width: 700px;*/ + margin: 2 auto; + font-weight: bold; + font-size: 12px; +} + +.bo-footer-social { + text-align: left; + line-height: 1px; + padding: 10px 10px 10px 10px; + + &>a{ + color:$primary-orange; + word-spacing:8px; + &:hover { + color: $primary-orange; + border-bottom: 3px solid $secondary-orange; + + } + } + +} + +.bo-footer-copyright{ + &>a{ + transition: link-color 0.15s ease-in-out 0s,border 0.15s ease-in-out 0s; + border-bottom: none; + color: #777; + text-decoration: none !important; + word-spacing:3px; + &:hover { + color:#777; + border-bottom: 3px solid hsla(316, 88%, 42%, 1); + } + } +} + +.bo-footer-smap { + width: 670px; + float: left; + padding: 5px 10px; + text-align: left; + font-size: 18px; + word-spacing:20px; +} + +.bo-footer-images{ + display: inline; + max-width:120px; + max-height:95px; + width: auto; + height: auto; + vertical-align: bottom; +} + +.bo-footer-uonline { + width: 300px; /* Account for margins + border values */ + float: left; + padding: 5px 10px; + text-align: center; +} + +.bo-footer-power { + width: 300px; + padding: 5px 10px; + float: left; + text-align: right; + font-size: 14px; + color: #636A7D; + vertical-align: middle; +} + + + +/*##### Footer Responsive #####*/ +/* for 980px or less */ +@media screen and (max-width: 980px) { + + .bo-footer { + width: 95%; + padding: 1% 2%; + } + .bo-footer-smap { + width: 33%; + padding: 1% 2%; + } + .bo-footer-uonline { + width: 46%; + padding: 1% 2%; + float: right; + text-align: right; + } + + .bo-footer-power { + clear: both; + padding: 1% 2%; + width: auto; + float: none; + text-align: center; + } +} +/* for 700px or less */ +@media screen and (max-width: 600px) { + + .bo-footer-smap { + width: auto; + float: none; + text-align: center; + } + + .bo-footer-uonline { + width: auto; + float: none; + text-align: center; + } + + .bo-footer-power { + width: auto; + float: none; + text-align: center; + } + +} + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer_clix.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer_clix.html index 7be4a96677..8c821750e2 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer_clix.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer_clix.html @@ -4,192 +4,114 @@ + {% get_gstudio_footer_links as footer_links %} - -
    - -
    -
    - -
    -
    - - + - + {% get_gstudio_footer_links as footer_links %} +
    + +
    +
    + +
    +
    + +
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html index 78bbef5f92..050d71ee8f 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html @@ -74,27 +74,9 @@ {% block extended_header %}{% endblock %} - - {% block body_content %} -
    - -
    + {% endblock %} @@ -226,13 +208,23 @@ - - - {% if not no_footer %} @@ -239,7 +233,7 @@
    {% endif %} - + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html index 81cbc6d1be..43cbf37907 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html @@ -362,6 +362,11 @@ }, ], }); + + // will listener today click + $('#calendar').on('click', '.fc-button',function (){ + console.log('click'); + }); }); From 87d978a54990afd151c9a0f4eb00413d5de4563f Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Fri, 19 Jan 2018 16:38:37 +0530 Subject: [PATCH 265/766] css fixed for lms nav menu --- .../static/ndf/css/themes/clix/clix2017.css | 582 +++++++++--------- .../ndf/static/ndf/css/themes/clix/styles.css | 301 +++++---- .../ndf/static/ndf/scss/_clix2017.scss | 2 +- .../ndf/static/ndf/scss/_clix_styles.scss | 3 +- 4 files changed, 448 insertions(+), 440 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css index 1565f9dd4b..21c1aee695 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css @@ -4607,27 +4607,37 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #ffffff !important; text-shadow: 2px 0px 8px black; } -/* line 4857, ../../../scss/_clix2017.scss */ +/* line 4852, ../../../scss/_clix2017.scss */ +.module_card .card_title { + display: block; + width: 230px; + font-weight: 600; + text-align: center; + margin: 0px auto; + letter-spacing: 1px; + font-size: 1.4vw; +} +/* line 4863, ../../../scss/_clix2017.scss */ .module_card.animated_card .card_banner { border-radius: 8px; } -/* line 4860, ../../../scss/_clix2017.scss */ +/* line 4866, ../../../scss/_clix2017.scss */ .module_card.animated_card:hover .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 4865, ../../../scss/_clix2017.scss */ +/* line 4871, ../../../scss/_clix2017.scss */ .module_card.animated_card.isOpen .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 4869, ../../../scss/_clix2017.scss */ +/* line 4875, ../../../scss/_clix2017.scss */ .module_card.animated_card:hover .card_summary { left: 30px; } -/* line 4872, ../../../scss/_clix2017.scss */ +/* line 4878, ../../../scss/_clix2017.scss */ .module_card.animated_card .card_summary { left: 5px; } -/* line 4876, ../../../scss/_clix2017.scss */ +/* line 4882, ../../../scss/_clix2017.scss */ .module_card .card_summary { width: 290px; padding: 0px 15px; @@ -4643,35 +4653,35 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /* Safari */ transition-property: left; } -/* line 4890, ../../../scss/_clix2017.scss */ +/* line 4896, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_label { font-weight: 500; font-size: 12.5px; letter-spacing: 1px; color: black; } -/* line 4896, ../../../scss/_clix2017.scss */ +/* line 4902, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section { margin: 5px 0px; padding: 5px 0px; } -/* line 4900, ../../../scss/_clix2017.scss */ +/* line 4906, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section:not(:last-child) { border-bottom: 1px solid #ccc; } -/* line 4903, ../../../scss/_clix2017.scss */ +/* line 4909, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section p { margin-bottom: 7px; font-size: 12.5px; } -/* line 4907, ../../../scss/_clix2017.scss */ +/* line 4913, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section .ellipsis { width: 245px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -/* line 4915, ../../../scss/_clix2017.scss */ +/* line 4921, ../../../scss/_clix2017.scss */ .module_card .card_summary .module_brief { display: block; /* Fallback for non-webkit */ @@ -4688,14 +4698,14 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: black; } -/* line 4937, ../../../scss/_clix2017.scss */ +/* line 4943, ../../../scss/_clix2017.scss */ .lms_page .lms_banner { width: 100%; height: 150px; background-size: 100% 100%; position: relative; } -/* line 4945, ../../../scss/_clix2017.scss */ +/* line 4951, ../../../scss/_clix2017.scss */ .lms_page .lms_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -4708,27 +4718,27 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { bottom: 0; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 4958, ../../../scss/_clix2017.scss */ +/* line 4964, ../../../scss/_clix2017.scss */ .lms_page .lms_banner:before a { cursor: pointer; } -/* line 4963, ../../../scss/_clix2017.scss */ +/* line 4969, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .div-height { height: 150px !important; background-size: 100% 100%; position: absolute !important; } -/* line 4971, ../../../scss/_clix2017.scss */ +/* line 4977, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .enroll_unit > a { cursor: pointer; } -/* line 4975, ../../../scss/_clix2017.scss */ +/* line 4981, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .lms_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 4981, ../../../scss/_clix2017.scss */ +/* line 4987, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .lms_heading .unit_name { font-size: 36px; font-family: OpenSans-Semibold; @@ -4739,17 +4749,17 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { transition: border-radius .2s; text-shadow: -1px -1px 8px #000, 1px -1px 8px #000, -1px 1px 8px #000, 1px 1px 0 #000; } -/* line 4992, ../../../scss/_clix2017.scss */ +/* line 4998, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .lms_heading .right-margin { margin-right: 46px; } -/* line 5001, ../../../scss/_clix2017.scss */ +/* line 5007, ../../../scss/_clix2017.scss */ .border-bottom-lms-header { border-bottom: 1px solid #00000029; } -/* line 5006, ../../../scss/_clix2017.scss */ +/* line 5012, ../../../scss/_clix2017.scss */ .lms_secondary_header { width: 100%; position: relative; @@ -4757,11 +4767,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 5012, ../../../scss/_clix2017.scss */ +/* line 5018, ../../../scss/_clix2017.scss */ .lms_secondary_header .course_actions { margin-top: 8px; } -/* line 5015, ../../../scss/_clix2017.scss */ +/* line 5021, ../../../scss/_clix2017.scss */ .lms_secondary_header .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -4773,11 +4783,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { opacity: 0.8; } @media screen and (min-width: 980px) and (max-width: 1000px) { - /* line 5029, ../../../scss/_clix2017.scss */ + /* line 5035, ../../../scss/_clix2017.scss */ .lms_secondary_header .course_actions .course_actions { margin-top: 8px; } - /* line 5032, ../../../scss/_clix2017.scss */ + /* line 5038, ../../../scss/_clix2017.scss */ .lms_secondary_header .course_actions .course_actions > span { margin-left: 50px; background: #2e3f51; @@ -4791,7 +4801,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { } } -/* line 5054, ../../../scss/_clix2017.scss */ +/* line 5060, ../../../scss/_clix2017.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; @@ -4803,11 +4813,11 @@ ul.nav_menu_1 { /* ---------------------- */ /* tasks new UI */ } -/* line 5059, ../../../scss/_clix2017.scss */ +/* line 5065, ../../../scss/_clix2017.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 5061, ../../../scss/_clix2017.scss */ +/* line 5067, ../../../scss/_clix2017.scss */ ul.nav_menu_1 > li .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -4820,18 +4830,18 @@ ul.nav_menu_1 > li .course_actions > span { opacity: 0.8; margin-top: 100px; } -/* line 5079, ../../../scss/_clix2017.scss */ +/* line 5085, ../../../scss/_clix2017.scss */ ul.nav_menu_1 ul.authoring-tab { margin-bottom: 0px; display: inline; width: 50%; } -/* line 5083, ../../../scss/_clix2017.scss */ +/* line 5089, ../../../scss/_clix2017.scss */ ul.nav_menu_1 ul.authoring-tab > li { display: inline-block; background-color: #164a7b; } -/* line 5086, ../../../scss/_clix2017.scss */ +/* line 5092, ../../../scss/_clix2017.scss */ ul.nav_menu_1 ul.authoring-tab > li > a { list-style-type: none; margin-right: -4px; @@ -4844,30 +4854,30 @@ ul.nav_menu_1 ul.authoring-tab > li > a { border-bottom: 3px solid transparent; color: #ffffff !important; } -/* line 5097, ../../../scss/_clix2017.scss */ +/* line 5103, ../../../scss/_clix2017.scss */ ul.nav_menu_1 ul.authoring-tab > li > a.selected, ul.nav_menu_1 ul.authoring-tab > li > a:hover { border-bottom: 3px solid #a2238d; } -/* line 5106, ../../../scss/_clix2017.scss */ +/* line 5112, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 5114, ../../../scss/_clix2017.scss */ +/* line 5120, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 5117, ../../../scss/_clix2017.scss */ +/* line 5123, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 5119, ../../../scss/_clix2017.scss */ +/* line 5125, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 5127, ../../../scss/_clix2017.scss */ +/* line 5133, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .notifications_listing { max-width: 1176px !important; margin: 0 auto !important; @@ -4885,7 +4895,7 @@ ul.nav_menu_1 .notifications_listing { background: #fff; box-shadow: 0px 2px 6px #000; } -/* line 5144, ../../../scss/_clix2017.scss */ +/* line 5150, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .notifications_listing .notifications_content { display: -moz-box !important; display: -ms-flexbox !important; @@ -4906,11 +4916,11 @@ ul.nav_menu_1 .notifications_listing .notifications_content { -ms-flex-pack: justify !important; -webkit-box-pack: justify !important; } -/* line 5163, ../../../scss/_clix2017.scss */ +/* line 5169, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .notifications_listing .notifications_content:hover { background: #F0F1F2 !important; } -/* line 5166, ../../../scss/_clix2017.scss */ +/* line 5172, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .notifications_listing .notifications_content .notifications_content_left { display: -moz-box !important; display: -ms-flexbox !important; @@ -4923,7 +4933,7 @@ ul.nav_menu_1 .notifications_listing .notifications_content .notifications_conte -ms-flex-align: center !important; -webkit-box-align: center !important; } -/* line 5177, ../../../scss/_clix2017.scss */ +/* line 5183, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .notifications_listing .notifications_content .notifications_content_left .notifications_content_details { display: -moz-box !important; display: -ms-flexbox !important; @@ -4945,13 +4955,13 @@ ul.nav_menu_1 .notifications_listing .notifications_content .notifications_conte word-wrap: break-word !important; text-overflow: ellipsis !important; } -/* line 5197, ../../../scss/_clix2017.scss */ +/* line 5203, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .notifications_listing .notifications_content .notifications_content_left .notifications_content_details .hyperlink-user { border: 2px solid #b9b9b9; height: 50px; width: 50px; } -/* line 5202, ../../../scss/_clix2017.scss */ +/* line 5208, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .notifications_listing .notifications_content .notifications_content_left .notifications_content_details .hyperlink-style { text-decoration: none !important; font-family: inherit !important; @@ -4963,7 +4973,7 @@ ul.nav_menu_1 .notifications_listing .notifications_content .notifications_conte max-height: 50px !important; word-wrap: break-word !important; } -/* line 5213, ../../../scss/_clix2017.scss */ +/* line 5219, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .notifications_listing .notifications_content .notifications_content_left .notifications_content_details .hyperlink-info { text-decoration: none !important; font-family: inherit !important; @@ -4972,7 +4982,7 @@ ul.nav_menu_1 .notifications_listing .notifications_content .notifications_conte color: rgba(0, 0, 0, 0.56) !important; margin-top: 4px !important; } -/* line 5228, ../../../scss/_clix2017.scss */ +/* line 5234, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .analytics_listing { max-width: 1176px !important; margin: 0 auto !important; @@ -4990,7 +5000,7 @@ ul.nav_menu_1 .analytics_listing { background: #fff; box-shadow: 0px 2px 6px #000; } -/* line 5245, ../../../scss/_clix2017.scss */ +/* line 5251, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .analytics_listing .analytics_content { display: -moz-box !important; display: -ms-flexbox !important; @@ -5011,11 +5021,11 @@ ul.nav_menu_1 .analytics_listing .analytics_content { -ms-flex-pack: justify !important; -webkit-box-pack: justify !important; } -/* line 5264, ../../../scss/_clix2017.scss */ +/* line 5270, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .analytics_listing .analytics_content:hover { background: #F0F1F2 !important; } -/* line 5267, ../../../scss/_clix2017.scss */ +/* line 5273, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left { display: -moz-box !important; display: -ms-flexbox !important; @@ -5028,7 +5038,7 @@ ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left { -ms-flex-align: center !important; -webkit-box-align: center !important; } -/* line 5278, ../../../scss/_clix2017.scss */ +/* line 5284, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left .analytics_content_details { display: -moz-box !important; display: -ms-flexbox !important; @@ -5050,13 +5060,13 @@ ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left .ana word-wrap: break-word !important; text-overflow: ellipsis !important; } -/* line 5298, ../../../scss/_clix2017.scss */ +/* line 5304, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left .analytics_content_details .hyperlink-user { border: 2px solid #b9b9b9; height: 50px; width: 50px; } -/* line 5303, ../../../scss/_clix2017.scss */ +/* line 5309, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left .analytics_content_details .hyperlink-style { text-decoration: none !important; font-family: inherit !important; @@ -5068,7 +5078,7 @@ ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left .ana max-height: 50px !important; word-wrap: break-word !important; } -/* line 5314, ../../../scss/_clix2017.scss */ +/* line 5320, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left .analytics_content_details .hyperlink-info { text-decoration: none !important; font-family: inherit !important; @@ -5077,7 +5087,7 @@ ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left .ana color: rgba(0, 0, 0, 0.56) !important; margin-top: 4px !important; } -/* line 5330, ../../../scss/_clix2017.scss */ +/* line 5336, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lms_secondary_header { width: 100%; position: relative; @@ -5087,7 +5097,7 @@ ul.nav_menu_1 .lms_secondary_header { margin-top: 150px; } @media screen and (max-width: 480px) { - /* line 5340, ../../../scss/_clix2017.scss */ + /* line 5346, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lms_secondary_header { width: 100%; position: relative; @@ -5100,7 +5110,7 @@ ul.nav_menu_1 .lms_secondary_header { } } @media screen and (max-width: 640px) { - /* line 5352, ../../../scss/_clix2017.scss */ + /* line 5358, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lms_secondary_header { width: 100%; position: relative; @@ -5113,7 +5123,7 @@ ul.nav_menu_1 .lms_secondary_header { } } @media screen and (max-width: 800px) { - /* line 5364, ../../../scss/_clix2017.scss */ + /* line 5370, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lms_secondary_header { width: 100%; position: relative; @@ -5125,12 +5135,12 @@ ul.nav_menu_1 .lms_secondary_header { letter-spacing: 0.8px; } } -/* line 5377, ../../../scss/_clix2017.scss */ +/* line 5383, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .topnav { overflow: hidden; background-color: #fff; } -/* line 5382, ../../../scss/_clix2017.scss */ +/* line 5388, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .topnav a { float: left; display: block; @@ -5141,96 +5151,96 @@ ul.nav_menu_1 .topnav a { font-size: 18px; letter-spacing: 0.8px; } -/* line 5393, ../../../scss/_clix2017.scss */ +/* line 5399, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .topnav a:hover { border-bottom: 3px solid #ffc14e; color: #ce7869; } -/* line 5397, ../../../scss/_clix2017.scss */ +/* line 5403, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .selected { border-bottom: 3px solid #ffc14e; } -/* line 5401, ../../../scss/_clix2017.scss */ +/* line 5407, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .topnav .icon { display: none; } @media screen and (max-width: 600px) { - /* line 5406, ../../../scss/_clix2017.scss */ + /* line 5412, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .topnav a:not(:first-child) { display: none; } - /* line 5407, ../../../scss/_clix2017.scss */ + /* line 5413, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .topnav a.icon { float: right; display: block; } } @media screen and (max-width: 600px) { - /* line 5414, ../../../scss/_clix2017.scss */ + /* line 5420, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .topnav.responsive { position: relative; } - /* line 5415, ../../../scss/_clix2017.scss */ + /* line 5421, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .topnav.responsive .icon { position: absolute; right: 0; top: 0; } - /* line 5420, ../../../scss/_clix2017.scss */ + /* line 5426, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .topnav.responsive a { float: none; display: block; text-align: left; } } -/* line 5428, ../../../scss/_clix2017.scss */ +/* line 5434, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 5436, ../../../scss/_clix2017.scss */ +/* line 5442, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 5439, ../../../scss/_clix2017.scss */ +/* line 5445, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 5441, ../../../scss/_clix2017.scss */ +/* line 5447, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 5448, ../../../scss/_clix2017.scss */ +/* line 5454, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .course-content .course-unit-name { padding-left: 20px; } -/* line 5450, ../../../scss/_clix2017.scss */ +/* line 5456, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 5455, ../../../scss/_clix2017.scss */ +/* line 5461, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 5463, ../../../scss/_clix2017.scss */ +/* line 5469, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5469, ../../../scss/_clix2017.scss */ +/* line 5475, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5476, ../../../scss/_clix2017.scss */ +/* line 5482, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .listing-row { margin-top: 10px !important; } -/* line 5480, ../../../scss/_clix2017.scss */ +/* line 5486, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .raw_material_asset { width: auto; top: -0.50em; @@ -5246,7 +5256,7 @@ ul.nav_menu_1 .raw_material_asset { background-color: #eefaff; letter-spacing: 0.3px; } -/* line 5496, ../../../scss/_clix2017.scss */ +/* line 5502, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .status-completed { width: auto; top: -1.15em; @@ -5262,7 +5272,7 @@ ul.nav_menu_1 .status-completed { background-color: #008000; letter-spacing: 0.4px; } -/* line 5512, ../../../scss/_clix2017.scss */ +/* line 5518, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .status-in-progress { width: auto; top: -1.15em; @@ -5278,7 +5288,7 @@ ul.nav_menu_1 .status-in-progress { background-color: #ffc14e; letter-spacing: 0.4px; } -/* line 5529, ../../../scss/_clix2017.scss */ +/* line 5535, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .status-upcoming { width: auto; top: -1.15em; @@ -5294,7 +5304,7 @@ ul.nav_menu_1 .status-upcoming { background-color: #74b3dc; letter-spacing: 0.4px; } -/* line 5546, ../../../scss/_clix2017.scss */ +/* line 5552, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .status-draft { width: auto; top: -1.15em; @@ -5310,7 +5320,7 @@ ul.nav_menu_1 .status-draft { background-color: grey; letter-spacing: 0.4px; } -/* line 5563, ../../../scss/_clix2017.scss */ +/* line 5569, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .status-workspace { width: auto; top: -1.15em; @@ -5326,29 +5336,29 @@ ul.nav_menu_1 .status-workspace { background-color: #000000b8; letter-spacing: 0.4px; } -/* line 5580, ../../../scss/_clix2017.scss */ +/* line 5586, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lesson-dropdown ul { display: none; } -/* line 5584, ../../../scss/_clix2017.scss */ +/* line 5590, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lesson-dropdown:hover ul { display: block; } -/* line 5588, ../../../scss/_clix2017.scss */ +/* line 5594, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lesson_name_in_export { list-style: none; } -/* line 5590, ../../../scss/_clix2017.scss */ +/* line 5596, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lesson_name_in_export:hover { border-left: 2.5px solid #ce7869; } -/* line 5595, ../../../scss/_clix2017.scss */ +/* line 5601, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 5601, ../../../scss/_clix2017.scss */ +/* line 5607, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lc { width: 100%; height: 45px; @@ -5356,45 +5366,45 @@ ul.nav_menu_1 .lc { color: #164A7B; margin-top: -30px; } -/* line 5607, ../../../scss/_clix2017.scss */ +/* line 5613, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lc > p { margin-left: 81px; padding: 12px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 5613, ../../../scss/_clix2017.scss */ +/* line 5619, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lc > a { padding: 12px 85px 3px 0px; } -/* line 5617, ../../../scss/_clix2017.scss */ +/* line 5623, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lms_explore_head_unit { width: 100%; height: 50px; background-color: #fff; color: #164A7B; } -/* line 5622, ../../../scss/_clix2017.scss */ +/* line 5628, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lms_explore_head_unit > p { margin-left: 81px; padding: 0px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 5628, ../../../scss/_clix2017.scss */ +/* line 5634, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lms_explore_head_unit > a { padding: 0px 85px 3px 0px; } -/* line 5633, ../../../scss/_clix2017.scss */ +/* line 5639, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lms_explore_back { background-color: #fff; } -/* line 5637, ../../../scss/_clix2017.scss */ +/* line 5643, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lms_explore_back_unit { background-color: #fff; margin-top: -23.3px; } -/* line 5645, ../../../scss/_clix2017.scss */ +/* line 5651, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .mydesk_page .page_banner { width: 100%; height: 200px; @@ -5402,7 +5412,7 @@ ul.nav_menu_1 .mydesk_page .page_banner { background-size: 100% 100%; position: relative; } -/* line 5652, ../../../scss/_clix2017.scss */ +/* line 5658, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -5416,13 +5426,13 @@ ul.nav_menu_1 .mydesk_page .page_banner:before { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 5666, ../../../scss/_clix2017.scss */ +/* line 5672, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 5671, ../../../scss/_clix2017.scss */ +/* line 5677, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -5431,50 +5441,50 @@ ul.nav_menu_1 .mydesk_page .page_banner .banner_profile .buddy_logo { overflow: hidden; background-color: #fff; } -/* line 5679, ../../../scss/_clix2017.scss */ +/* line 5685, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 5684, ../../../scss/_clix2017.scss */ +/* line 5690, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 5689, ../../../scss/_clix2017.scss */ +/* line 5695, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 5694, ../../../scss/_clix2017.scss */ +/* line 5700, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 5702, ../../../scss/_clix2017.scss */ +/* line 5708, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 5706, ../../../scss/_clix2017.scss */ +/* line 5712, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 5716, ../../../scss/_clix2017.scss */ +/* line 5722, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .input_links { margin-left: 10px; } -/* line 5718, ../../../scss/_clix2017.scss */ +/* line 5724, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 5724, ../../../scss/_clix2017.scss */ +/* line 5730, ../../../scss/_clix2017.scss */ ul.nav_menu_1 #course-notification #status { width: 100% !important; } -/* line 5730, ../../../scss/_clix2017.scss */ +/* line 5736, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .add-note-btn { padding: 3px 11px; border-radius: 100%; @@ -5485,7 +5495,7 @@ ul.nav_menu_1 .add-note-btn { font-size: 23px; color: #6153AE; } -/* line 5741, ../../../scss/_clix2017.scss */ +/* line 5747, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -5496,7 +5506,7 @@ ul.nav_menu_1 .bef-note-btn { font-size: 23px; color: #6153AE; } -/* line 5752, ../../../scss/_clix2017.scss */ +/* line 5758, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -5506,11 +5516,11 @@ ul.nav_menu_1 .edit-note-btn { background-color: #f7f7f7; width: 85px; } -/* line 5760, ../../../scss/_clix2017.scss */ +/* line 5766, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .edit-note-btn i { margin-right: 5px; } -/* line 5764, ../../../scss/_clix2017.scss */ +/* line 5770, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -5521,29 +5531,29 @@ ul.nav_menu_1 .delete-note-btn { background-color: #f7f7f7; width: 85px; } -/* line 5773, ../../../scss/_clix2017.scss */ +/* line 5779, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .delete-note-btn i { margin-right: 5px; } -/* line 5778, ../../../scss/_clix2017.scss */ +/* line 5784, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .jqtree-title > .fa-check { color: green; } -/* line 5781, ../../../scss/_clix2017.scss */ +/* line 5787, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .jqtree-title > .fa-clock-o { color: orange; } -/* line 5784, ../../../scss/_clix2017.scss */ +/* line 5790, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .course-status-icon { font-size: 20px; margin-right: 5px; } -/* line 5788, ../../../scss/_clix2017.scss */ +/* line 5794, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .img-height { height: 150px; width: 1351px; } -/* line 5795, ../../../scss/_clix2017.scss */ +/* line 5801, ../../../scss/_clix2017.scss */ ul.nav_menu_1 #overlay { /* we set all of the properties for are overlay */ height: 116px; @@ -5563,7 +5573,7 @@ ul.nav_menu_1 #overlay { -o-border-radius: 10px; border-radius: 10px; } -/* line 5815, ../../../scss/_clix2017.scss */ +/* line 5821, ../../../scss/_clix2017.scss */ ul.nav_menu_1 #mask { /* create are mask */ position: fixed; @@ -5575,12 +5585,12 @@ ul.nav_menu_1 #mask { height: 100%; display: none; } -/* line 5826, ../../../scss/_clix2017.scss */ +/* line 5832, ../../../scss/_clix2017.scss */ ul.nav_menu_1 #overlay:target, ul.nav_menu_1 #overlay:target + #mask { display: block; opacity: 1; } -/* line 5830, ../../../scss/_clix2017.scss */ +/* line 5836, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .close { /* to make a nice looking pure CSS3 close button */ display: block; @@ -5601,7 +5611,7 @@ ul.nav_menu_1 .close { -o-border-radius: 40px; border-radius: 38px; } -/* line 5849, ../../../scss/_clix2017.scss */ +/* line 5855, ../../../scss/_clix2017.scss */ ul.nav_menu_1 #open-overlay { /* open the overlay */ padding: 0px 0px; @@ -5613,7 +5623,7 @@ ul.nav_menu_1 #open-overlay { -moz-border-radius: 10px; -o-border-radius: 10px; } -/* line 5860, ../../../scss/_clix2017.scss */ +/* line 5866, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .enroll-btn { width: 90px; opacity: 1; @@ -5628,37 +5638,37 @@ ul.nav_menu_1 .enroll-btn { border: 1px solid #c1b4b5; background-color: #4b4852; } -/* line 5880, ../../../scss/_clix2017.scss */ +/* line 5886, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .img-style-land { margin-top: 28px; margin-left: -56px; } -/* line 5885, ../../../scss/_clix2017.scss */ +/* line 5891, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .top-margin-translation { margin-top: 0px; } -/* line 5889, ../../../scss/_clix2017.scss */ +/* line 5895, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .activity-editor-header-top { margin-top: -50px; } -/* line 5893, ../../../scss/_clix2017.scss */ +/* line 5899, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .add-lesson-top-margin { margin-top: 5px; } -/* line 5896, ../../../scss/_clix2017.scss */ +/* line 5902, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .translation-detail-top-margin { margin-top: 0px; } -/* line 5899, ../../../scss/_clix2017.scss */ +/* line 5905, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .outer { width: 100%; text-align: center; } -/* line 5904, ../../../scss/_clix2017.scss */ +/* line 5910, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .inner { display: inline-block !important; } -/* line 5909, ../../../scss/_clix2017.scss */ +/* line 5915, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .transcript-toggler { display: block; width: 155px !important; @@ -5673,28 +5683,28 @@ ul.nav_menu_1 .transcript-toggler { padding-top: 7px !important; text-transform: uppercase; } -/* line 5925, ../../../scss/_clix2017.scss */ +/* line 5931, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .double-buttons { margin-top: 100px; margin-left: 729px; } -/* line 5930, ../../../scss/_clix2017.scss */ +/* line 5936, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lesson-form-name { padding-top: 10px; } -/* line 5934, ../../../scss/_clix2017.scss */ +/* line 5940, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lesson-form-desc { padding-top: 25px; } -/* line 5938, ../../../scss/_clix2017.scss */ +/* line 5944, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .enroll_chkbox { transform: scale(1.5); } -/* line 5941, ../../../scss/_clix2017.scss */ +/* line 5947, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .enroll_all_users { width: 15% !important; } -/* line 5945, ../../../scss/_clix2017.scss */ +/* line 5951, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .enrollBtn { width: 124px !important; background: rgba(75, 72, 82, 0.8); @@ -5708,27 +5718,27 @@ ul.nav_menu_1 .enrollBtn { margin-top: 101px !important; margin-right: 15px; } -/* line 5958, ../../../scss/_clix2017.scss */ +/* line 5964, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .enrollBtn:hover { background: rgba(75, 72, 82, 0.8); color: #000000; } -/* line 5964, ../../../scss/_clix2017.scss */ +/* line 5970, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .enroll-act_lbl { color: #0c2944; } -/* line 5969, ../../../scss/_clix2017.scss */ +/* line 5975, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .wrkspace { margin-right: 80px; } -/* line 5973, ../../../scss/_clix2017.scss */ +/* line 5979, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .status-btn { background-color: #fff; margin-right: auto; padding-bottom: 0px; text-transform: none; } -/* line 5978, ../../../scss/_clix2017.scss */ +/* line 5984, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .status-btn .disabled { background-color: #008cba; border-color: #007095; @@ -5737,36 +5747,36 @@ ul.nav_menu_1 .status-btn .disabled { opacity: 0.7; box-shadow: none; } -/* line 5988, ../../../scss/_clix2017.scss */ +/* line 5994, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .margin-right-50 { margin-right: 50px; } -/* line 5995, ../../../scss/_clix2017.scss */ +/* line 6001, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .color-btn { background-color: #720f5e; width: 77px; margin-left: 17px; } -/* line 5999, ../../../scss/_clix2017.scss */ +/* line 6005, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .color-btn:hover { color: #720f5e; background-color: #ffffff; } -/* line 6005, ../../../scss/_clix2017.scss */ +/* line 6011, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .mid_label { margin-top: 15px; font-size: 15px; } -/* line 6010, ../../../scss/_clix2017.scss */ +/* line 6016, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .compulsory { color: red; font-size: smaller; } -/* line 6015, ../../../scss/_clix2017.scss */ +/* line 6021, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .select-drop { height: auto; } -/* line 6019, ../../../scss/_clix2017.scss */ +/* line 6025, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .template-select { border: 1px solid #cccccc; border-radius: 5px; @@ -5774,39 +5784,39 @@ ul.nav_menu_1 .template-select { width: 40%; font-size: 14px; } -/* line 6027, ../../../scss/_clix2017.scss */ +/* line 6033, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .white-text { color: white; } -/* line 6032, ../../../scss/_clix2017.scss */ +/* line 6038, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .quiz-player .quiz_qtn { margin-left: 20px !important; font-size: 20px; } -/* line 6036, ../../../scss/_clix2017.scss */ +/* line 6042, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .quiz-player .question_edit { margin-left: 20px !important; } -/* line 6040, ../../../scss/_clix2017.scss */ +/* line 6046, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .quiz-player input[type=checkbox], ul.nav_menu_1 .quiz-player input[type=radio] { margin-right: 10px; width: 15px; height: 15px; } -/* line 6046, ../../../scss/_clix2017.scss */ +/* line 6052, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .quiz-player .chk_ans_lbl, ul.nav_menu_1 .quiz-player .rad_ans_lbl { font-size: 22px; margin-left: 5px; } -/* line 6051, ../../../scss/_clix2017.scss */ +/* line 6057, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .quiz-player .fi-check { color: green; } -/* line 6055, ../../../scss/_clix2017.scss */ +/* line 6061, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .quiz-player .fi-x { color: red; } -/* line 6060, ../../../scss/_clix2017.scss */ +/* line 6066, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .hyperlink-tag { cursor: pointer; cursor: pointer; @@ -5818,7 +5828,7 @@ ul.nav_menu_1 .hyperlink-tag { font-size: 24px; color: #164A7B; } -/* line 6072, ../../../scss/_clix2017.scss */ +/* line 6078, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .scard { background: #FFF; border: 1px solid #AAA; @@ -5830,12 +5840,12 @@ ul.nav_menu_1 .scard { height: 9rem; /*float:left;*/ } -/* line 6081, ../../../scss/_clix2017.scss */ +/* line 6087, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 6087, ../../../scss/_clix2017.scss */ +/* line 6093, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .scard .scard_header { text-align: center; position: fixed; @@ -5852,7 +5862,7 @@ ul.nav_menu_1 .scard .scard_header { font-size: 20px; font-weight: bold; } -/* line 6104, ../../../scss/_clix2017.scss */ +/* line 6110, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .scard-content { height: 2.7em; padding: 0.5rem; @@ -5865,7 +5875,7 @@ ul.nav_menu_1 .scard-content { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 6115, ../../../scss/_clix2017.scss */ +/* line 6121, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; @@ -5874,7 +5884,7 @@ ul.nav_menu_1 .scard-content .scard-title { display: inline-block; text-align: center; } -/* line 6128, ../../../scss/_clix2017.scss */ +/* line 6134, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .scard-action { height: height; font-size: 0.6em; @@ -5887,7 +5897,7 @@ ul.nav_menu_1 .scard-action { width: 11rem; background-color: #CCCCCC; } -/* line 6143, ../../../scss/_clix2017.scss */ +/* line 6149, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .scard-desc { font-size: 0.7em; color: #333333; @@ -5902,7 +5912,7 @@ ul.nav_menu_1 .scard-desc { background-color: #E6E6E6; display-inline: block; } -/* line 6160, ../../../scss/_clix2017.scss */ +/* line 6166, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .scard-image { padding: 0px; margin: 0px; @@ -5913,7 +5923,7 @@ ul.nav_menu_1 .scard-image { overflow: hidden; background-color: #f2f2f2; } -/* line 6169, ../../../scss/_clix2017.scss */ +/* line 6175, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .scard-image img { border-radius: 2px 2px 0 0; display: block; @@ -5921,16 +5931,16 @@ ul.nav_menu_1 .scard-image img { opacity: 0.9; height: 100%; } -/* line 6181, ../../../scss/_clix2017.scss */ +/* line 6187, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .published.scard-action { background: #A6D9CB; } -/* line 6185, ../../../scss/_clix2017.scss */ +/* line 6191, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 6191, ../../../scss/_clix2017.scss */ +/* line 6197, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -5938,16 +5948,16 @@ ul.nav_menu_1 .scard_footer { font-size: small; height: 2rem; } -/* line 6199, ../../../scss/_clix2017.scss */ +/* line 6205, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .auto_width { width: auto !important; } -/* line 6203, ../../../scss/_clix2017.scss */ +/* line 6209, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .explore-settings-drop { margin-left: 57%; display: inline-block; } -/* line 6206, ../../../scss/_clix2017.scss */ +/* line 6212, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -5960,17 +5970,17 @@ ul.nav_menu_1 .explore-settings-drop > button { margin-top: 10px; margin-left: 20px; } -/* line 6217, ../../../scss/_clix2017.scss */ +/* line 6223, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 6223, ../../../scss/_clix2017.scss */ +/* line 6229, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .explore-settings-drop a { font-size: 16px; } -/* line 6226, ../../../scss/_clix2017.scss */ +/* line 6232, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -5978,31 +5988,31 @@ ul.nav_menu_1 .explore-settings-drop .f-dropdown li { margin: 0; background-color: #164A7B; } -/* line 6234, ../../../scss/_clix2017.scss */ +/* line 6240, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 6238, ../../../scss/_clix2017.scss */ +/* line 6244, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 6245, ../../../scss/_clix2017.scss */ +/* line 6251, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .attempts_count { color: #000000 !important; } -/* line 6252, ../../../scss/_clix2017.scss */ +/* line 6258, ../../../scss/_clix2017.scss */ ul.nav_menu_1 #course-settings-drop li a { text-align: left; } -/* line 6260, ../../../scss/_clix2017.scss */ +/* line 6266, ../../../scss/_clix2017.scss */ ul.nav_menu_1 #asset-settings-drop li a { text-align: left; } -/* line 6267, ../../../scss/_clix2017.scss */ +/* line 6273, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .button-bg { background-color: #74b3dc; } -/* line 6274, ../../../scss/_clix2017.scss */ +/* line 6280, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .polaroid { width: 330px; background-color: white; @@ -6015,7 +6025,7 @@ ul.nav_menu_1 .polaroid { transition: all 0.3s; cursor: pointer; } -/* line 6287, ../../../scss/_clix2017.scss */ +/* line 6293, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .polaroid:hover img { -webkit-transform: scale(1.05); -moz-transform: scale(1.05); @@ -6023,24 +6033,24 @@ ul.nav_menu_1 .polaroid:hover img { -o-transform: scale(1.05); transform: scale(1.05); } -/* line 6296, ../../../scss/_clix2017.scss */ +/* line 6302, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .container { text-align: center; padding: 10px 20px; border-top: 5px solid #164a7b; margin-top: 0px; } -/* line 6302, ../../../scss/_clix2017.scss */ +/* line 6308, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .container > p { color: black; font-size: 16px; font-weight: 500; } -/* line 6311, ../../../scss/_clix2017.scss */ +/* line 6317, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .tool-bg { background-color: rgba(87, 198, 250, 0.07); } -/* line 6314, ../../../scss/_clix2017.scss */ +/* line 6320, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .purple-btn { width: inherit; text-transform: uppercase; @@ -6050,7 +6060,7 @@ ul.nav_menu_1 .purple-btn { color: #ffffff !important; border: 2px solid #6a0054; } -/* line 6324, ../../../scss/_clix2017.scss */ +/* line 6330, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .disable-purple-btn { width: inherit; text-transform: uppercase !important; @@ -6060,20 +6070,20 @@ ul.nav_menu_1 .disable-purple-btn { color: #ffffff !important; border: 2px solid #4b4852; } -/* line 6334, ../../../scss/_clix2017.scss */ +/* line 6340, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .user-analytics-data { margin: 42px 37px 37px 37px; border: 2px solid #aaaaaa; } -/* line 6337, ../../../scss/_clix2017.scss */ +/* line 6343, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .user-analytics-data .close-reveal-modal { font-size: 20px; } -/* line 6341, ../../../scss/_clix2017.scss */ +/* line 6347, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .left-space { margin-left: 0.5em; } -/* line 6349, ../../../scss/_clix2017.scss */ +/* line 6355, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .left_column { float: left; width: 625px; @@ -6082,7 +6092,7 @@ ul.nav_menu_1 .left_column { box-sizing: border-box; color: #444; } -/* line 6358, ../../../scss/_clix2017.scss */ +/* line 6364, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .dashboard { background: #fafafa; border: none; @@ -6092,7 +6102,7 @@ ul.nav_menu_1 .dashboard { position: relative; box-shadow: none; } -/* line 6368, ../../../scss/_clix2017.scss */ +/* line 6374, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .account_heading { border-bottom: 2px solid #E5E5E5; color: #444; @@ -6102,13 +6112,13 @@ ul.nav_menu_1 .account_heading { margin: 0; padding-bottom: 28px; } -/* line 6378, ../../../scss/_clix2017.scss */ +/* line 6384, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .account_group { display: table; padding: 20px 0; width: 100%; } -/* line 6383, ../../../scss/_clix2017.scss */ +/* line 6389, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .account_group .group_label { font-weight: bold; display: table-cell; @@ -6116,36 +6126,36 @@ ul.nav_menu_1 .account_group .group_label { vertical-align: top; width: 145px; } -/* line 6389, ../../../scss/_clix2017.scss */ +/* line 6395, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .account_group .group_label > h3 { font-weight: bold; margin: 0; } -/* line 6392, ../../../scss/_clix2017.scss */ +/* line 6398, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .account_group .group_label > h3 .account_subheading { font-size: 14px; line-height: 1.2; } -/* line 6398, ../../../scss/_clix2017.scss */ +/* line 6404, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .account_group .group_content { display: table-cell; padding: 0 10px; vertical-align: top; } -/* line 6404, ../../../scss/_clix2017.scss */ +/* line 6410, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .account_group .account { margin: 0 0 10px; display: block; position: relative; } -/* line 6410, ../../../scss/_clix2017.scss */ +/* line 6416, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .account_group .account .accordion_trigger_wrapper .accordion_label { color: #444; float: left; font-size: 14px; margin: 0; } -/* line 6416, ../../../scss/_clix2017.scss */ +/* line 6422, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .account_group .account .accordion_trigger_wrapper .pencil_edit_button { position: absolute; top: 50%; @@ -6166,7 +6176,7 @@ ul.nav_menu_1 .account_group .account .accordion_trigger_wrapper .pencil_edit_bu text-align: center; cursor: pointer; } -/* line 6438, ../../../scss/_clix2017.scss */ +/* line 6444, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .account_group .account .accordion_trigger_wrapper .accordion_content .input-setting input.text_field[type="text"] { background: transparent; border: 1px solid #D9D9D9; @@ -6179,21 +6189,21 @@ ul.nav_menu_1 .account_group .account .accordion_trigger_wrapper .accordion_cont width: 330px; border-radius: 2px; } -/* line 6452, ../../../scss/_clix2017.scss */ +/* line 6458, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .account_group .account .accordion_trigger_wrapper .accordion_content .password-wrapper input.password_placeholder[type="text"] { color: rgba(68, 68, 68, 0.45) !important; } -/* line 6455, ../../../scss/_clix2017.scss */ +/* line 6461, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .account_group .account .accordion_trigger_wrapper .accordion_content .password-wrapper input.password_field[type="password"] { position: relative; z-index: 2; } -/* line 6472, ../../../scss/_clix2017.scss */ +/* line 6478, ../../../scss/_clix2017.scss */ ul.nav_menu_1 #progressive-validation { width: 400px; margin: 100px auto 0 auto; } -/* line 6475, ../../../scss/_clix2017.scss */ +/* line 6481, ../../../scss/_clix2017.scss */ ul.nav_menu_1 #progressive-validation input { display: block; border-radius: 5px; @@ -6213,28 +6223,28 @@ ul.nav_menu_1 #progressive-validation input { background-position: right 23px; background-repeat: no-repeat; } -/* line 6493, ../../../scss/_clix2017.scss */ +/* line 6499, ../../../scss/_clix2017.scss */ ul.nav_menu_1 #progressive-validation input[type="submit"], ul.nav_menu_1 #progressive-validation input[type="submit"]:valid { background-color: #1a3e4c; color: white; background-image: none; } -/* line 6498, ../../../scss/_clix2017.scss */ +/* line 6504, ../../../scss/_clix2017.scss */ ul.nav_menu_1 #progressive-validation input:focus { box-shadow: 0 0 0 1px #00aeef; opacity: 1 !important; } -/* line 6502, ../../../scss/_clix2017.scss */ +/* line 6508, ../../../scss/_clix2017.scss */ ul.nav_menu_1 #progressive-validation input:enabled { opacity: .8; } -/* line 6505, ../../../scss/_clix2017.scss */ +/* line 6511, ../../../scss/_clix2017.scss */ ul.nav_menu_1 #progressive-validation input:valid { background-size: 46px 46px; background-position: right 0px; background-repeat: no-repeat; } -/* line 6515, ../../../scss/_clix2017.scss */ +/* line 6521, ../../../scss/_clix2017.scss */ ul.nav_menu_1 #analyticsFooter { background-color: #e9eaed; text-align: center; @@ -6244,22 +6254,22 @@ ul.nav_menu_1 #analyticsFooter { border-top: 1px solid #dddddd; min-width: 400px; } -/* line 6526, ../../../scss/_clix2017.scss */ +/* line 6532, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .img-circle { border-radius: 50%; border: 1px solid rgba(128, 128, 128, 0.15); } -/* line 6532, ../../../scss/_clix2017.scss */ +/* line 6538, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .container-px { background-color: #fafafa; min-width: 600px; min-height: 600px; } -/* line 6538, ../../../scss/_clix2017.scss */ +/* line 6544, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .noti { max-width: 400px !important; } -/* line 6541, ../../../scss/_clix2017.scss */ +/* line 6547, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .notification_body { max-width: 1546px !important; margin: 0 auto !important; @@ -6277,7 +6287,7 @@ ul.nav_menu_1 .notification_body { background: #fff; box-shadow: 0px 2px 6px #000; } -/* line 6559, ../../../scss/_clix2017.scss */ +/* line 6565, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .notifications_content { display: -moz-box !important; display: -ms-flexbox !important; @@ -6297,15 +6307,15 @@ ul.nav_menu_1 .notifications_content { -ms-flex-pack: justify !important; -webkit-box-pack: justify !important; } -/* line 6577, ../../../scss/_clix2017.scss */ +/* line 6583, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .notifications_content:hover { background: #F0F1F2 !important; } -/* line 6580, ../../../scss/_clix2017.scss */ +/* line 6586, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .notifications_content .content-body { border-bottom: 1px solid #D6D8DA !important; } -/* line 6591, ../../../scss/_clix2017.scss */ +/* line 6597, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -6313,29 +6323,29 @@ ul.nav_menu_1 .task_sheet { padding: 0px 0px; max-width: 100vw; } -/* line 6598, ../../../scss/_clix2017.scss */ +/* line 6604, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet > .columns { padding: 0px; height: 100%; } -/* line 6602, ../../../scss/_clix2017.scss */ +/* line 6608, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6608, ../../../scss/_clix2017.scss */ +/* line 6614, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .accordion .accordion-navigation > .content, ul.nav_menu_1 .task_sheet .task_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6614, ../../../scss/_clix2017.scss */ +/* line 6620, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor > div { display: inline-block; vertical-align: top; } -/* line 6619, ../../../scss/_clix2017.scss */ +/* line 6625, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -6345,25 +6355,25 @@ ul.nav_menu_1 .task_sheet .task_editor .task_tree { overflow-y: auto; height: 100vh; } -/* line 6628, ../../../scss/_clix2017.scss */ +/* line 6634, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6632, ../../../scss/_clix2017.scss */ +/* line 6638, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6637, ../../../scss/_clix2017.scss */ +/* line 6643, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6646, ../../../scss/_clix2017.scss */ +/* line 6652, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -6372,7 +6382,7 @@ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-nav transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6653, ../../../scss/_clix2017.scss */ +/* line 6659, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -6381,15 +6391,15 @@ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-nav position: relative; display: none; } -/* line 6662, ../../../scss/_clix2017.scss */ +/* line 6668, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6667, ../../../scss/_clix2017.scss */ +/* line 6673, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6670, ../../../scss/_clix2017.scss */ +/* line 6676, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -6397,21 +6407,21 @@ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-nav margin: 0px 10px; cursor: pointer; } -/* line 6680, ../../../scss/_clix2017.scss */ +/* line 6686, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6686, ../../../scss/_clix2017.scss */ +/* line 6692, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6694, ../../../scss/_clix2017.scss */ +/* line 6700, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6696, ../../../scss/_clix2017.scss */ +/* line 6702, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -6420,7 +6430,7 @@ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-nav transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6703, ../../../scss/_clix2017.scss */ +/* line 6709, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -6428,11 +6438,11 @@ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-nav transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6712, ../../../scss/_clix2017.scss */ +/* line 6718, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6721, ../../../scss/_clix2017.scss */ +/* line 6727, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task-editor-section { width: 0%; display: inline-block; @@ -6444,48 +6454,48 @@ ul.nav_menu_1 .task_sheet .task_editor .task-editor-section { overflow-y: auto; background: #fff; } -/* line 6731, ../../../scss/_clix2017.scss */ +/* line 6737, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6736, ../../../scss/_clix2017.scss */ +/* line 6742, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6739, ../../../scss/_clix2017.scss */ +/* line 6745, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6748, ../../../scss/_clix2017.scss */ +/* line 6754, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6753, ../../../scss/_clix2017.scss */ +/* line 6759, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6757, ../../../scss/_clix2017.scss */ +/* line 6763, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6759, ../../../scss/_clix2017.scss */ +/* line 6765, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6762, ../../../scss/_clix2017.scss */ +/* line 6768, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6768, ../../../scss/_clix2017.scss */ +/* line 6774, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -6493,7 +6503,7 @@ ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-tool .editor padding: 15px 5px; cursor: pointer; } -/* line 6784, ../../../scss/_clix2017.scss */ +/* line 6790, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_editor_section { background: white; min-height: 100vh; @@ -6503,41 +6513,41 @@ ul.nav_menu_1 .task_editor_section { width: 79%; box-shadow: 0px 0px 5px #73859f; } -/* line 6792, ../../../scss/_clix2017.scss */ +/* line 6798, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_editor_section #scstyle { margin-top: -10px; } -/* line 6795, ../../../scss/_clix2017.scss */ +/* line 6801, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_editor_section .task_editor_top { border-top: 4px solid #74b3dc; width: 101.3%; margin-left: -15px; margin-top: -1px; } -/* line 6802, ../../../scss/_clix2017.scss */ +/* line 6808, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_editor_section .task_head { height: 65px; font-size: 22px; padding: 16px 5px 5px 57px; color: black; } -/* line 6811, ../../../scss/_clix2017.scss */ +/* line 6817, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_editor_section form { font-size: 17px; padding: 10px 0px 0px 10px; } -/* line 6816, ../../../scss/_clix2017.scss */ +/* line 6822, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_editor_section .task_ex { border-bottom: 2px solid rgba(128, 128, 128, 0.23); } -/* line 6818, ../../../scss/_clix2017.scss */ +/* line 6824, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_editor_section .task_ex.active { border: 2px solid #74b3dc; margin-left: -16px; width: 101.5%; margin-top: -2px; } -/* line 6827, ../../../scss/_clix2017.scss */ +/* line 6833, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_editor_section .task_listing { max-width: 1176px !important; margin: 0 auto !important; @@ -6555,7 +6565,7 @@ ul.nav_menu_1 .task_editor_section .task_listing { background: #fff; box-shadow: 0px 2px 6px #000; } -/* line 6844, ../../../scss/_clix2017.scss */ +/* line 6850, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_editor_section .task_listing .task_content { display: -moz-box !important; display: -ms-flexbox !important; @@ -6576,11 +6586,11 @@ ul.nav_menu_1 .task_editor_section .task_listing .task_content { -ms-flex-pack: justify !important; -webkit-box-pack: justify !important; } -/* line 6863, ../../../scss/_clix2017.scss */ +/* line 6869, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_editor_section .task_listing .task_content:hover { background: #F0F1F2 !important; } -/* line 6866, ../../../scss/_clix2017.scss */ +/* line 6872, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_left { display: -moz-box !important; display: -ms-flexbox !important; @@ -6593,7 +6603,7 @@ ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_lef -ms-flex-align: center !important; -webkit-box-align: center !important; } -/* line 6877, ../../../scss/_clix2017.scss */ +/* line 6883, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_left .task_content_details { display: -moz-box !important; display: -ms-flexbox !important; @@ -6612,13 +6622,13 @@ ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_lef -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; } -/* line 6894, ../../../scss/_clix2017.scss */ +/* line 6900, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-user { border: 2px solid #b9b9b9; height: 50px; width: 50px; } -/* line 6899, ../../../scss/_clix2017.scss */ +/* line 6905, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-style { text-decoration: none !important; font-family: inherit !important; @@ -6631,7 +6641,7 @@ ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_lef overflow: hidden !important; text-overflow: ellipsis !important; } -/* line 6912, ../../../scss/_clix2017.scss */ +/* line 6918, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-info { text-decoration: none !important; font-family: inherit !important; @@ -6640,13 +6650,13 @@ ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_lef color: rgba(0, 0, 0, 0.56) !important; margin-top: 4px !important; } -/* line 6929, ../../../scss/_clix2017.scss */ +/* line 6935, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6935, ../../../scss/_clix2017.scss */ +/* line 6941, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .activity-title { font-size: 18px; padding-top: 10px; @@ -6654,7 +6664,7 @@ ul.nav_menu_1 .activity-title { margin: 0px; border: 2px solid rgba(128, 128, 128, 0.15); } -/* line 6942, ../../../scss/_clix2017.scss */ +/* line 6948, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -6666,27 +6676,27 @@ ul.nav_menu_1 .activity-title > li { height: 150px; background-color: white; } -/* line 6953, ../../../scss/_clix2017.scss */ +/* line 6959, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .activity-title > li.active { background: rgba(0, 140, 186, 0.42); height: 150px; margin-top: -10px; } -/* line 6959, ../../../scss/_clix2017.scss */ +/* line 6965, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .activity-title > li > a { color: black; } -/* line 6968, ../../../scss/_clix2017.scss */ +/* line 6974, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .task_page_rendered { margin-left: 20px; max-width: 900px; } -/* line 6976, ../../../scss/_clix2017.scss */ +/* line 6982, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .round { border-radius: 1px; background-color: orange; } -/* line 6982, ../../../scss/_clix2017.scss */ +/* line 6988, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .circle-normal { background: #ffc14e; -moz-border-radius: 50px; @@ -6695,7 +6705,7 @@ ul.nav_menu_1 .circle-normal { padding: 0px 0px 0px 20px; margin-right: 5px; } -/* line 6990, ../../../scss/_clix2017.scss */ +/* line 6996, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .circle-high { background: #f04124; -moz-border-radius: 50px; @@ -6704,7 +6714,7 @@ ul.nav_menu_1 .circle-high { padding: 0px 0px 0px 20px; margin-right: 5px; } -/* line 6998, ../../../scss/_clix2017.scss */ +/* line 7004, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .circle-low { background: #008cba; -moz-border-radius: 50px; @@ -6713,7 +6723,7 @@ ul.nav_menu_1 .circle-low { padding: 0px 0px 0px 20px; margin-right: 5px; } -/* line 7007, ../../../scss/_clix2017.scss */ +/* line 7013, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .status-indication { border-radius: 124px; padding: 0px 8px 3px 8px; @@ -6724,19 +6734,19 @@ ul.nav_menu_1 .status-indication { border: 2px solid rgba(115, 133, 159, 0.5); color: grey; } -/* line 7017, ../../../scss/_clix2017.scss */ +/* line 7023, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .priority-margin { margin-left: -30px; } -/* line 7021, ../../../scss/_clix2017.scss */ +/* line 7027, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .iconclr { color: #999999; } -/* line 7027, ../../../scss/_clix2017.scss */ +/* line 7033, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .top-right-menu { margin-right: 80px !important; } -/* line 7034, ../../../scss/_clix2017.scss */ +/* line 7040, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -6754,12 +6764,12 @@ ul.nav_menu_1 .button-cancel-new { transition: all .1s ease; margin-right: 1px; } -/* line 7050, ../../../scss/_clix2017.scss */ +/* line 7056, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7055, ../../../scss/_clix2017.scss */ +/* line 7061, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -6771,12 +6781,12 @@ ul.nav_menu_1 .button-cancel-new > a { transition: all .1s ease; margin-right: 1px; } -/* line 7065, ../../../scss/_clix2017.scss */ +/* line 7071, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7073, ../../../scss/_clix2017.scss */ +/* line 7079, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .button-save-new { height: 2rem; padding: 0 2rem; @@ -6793,7 +6803,7 @@ ul.nav_menu_1 .button-save-new { color: #fff; transition: all .1s ease; } -/* line 7088, ../../../scss/_clix2017.scss */ +/* line 7094, ../../../scss/_clix2017.scss */ ul.nav_menu_1 .button-save-new:hover { background-color: #fff; color: #912a7d; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css index 54d8fa1267..1f8a7184ad 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css @@ -35749,13 +35749,12 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; - border-bottom: 2px solid #80808063; } -/* line 5576, ../../../scss/_clix_styles.scss */ +/* line 5575, ../../../scss/_clix_styles.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 5579, ../../../scss/_clix_styles.scss */ +/* line 5578, ../../../scss/_clix_styles.scss */ ul.nav_menu_1 > li > a { list-style-type: none; display: inline-block; @@ -35766,61 +35765,61 @@ ul.nav_menu_1 > li > a { letter-spacing: 0.8px; border-bottom: 3px solid transparent; } -/* line 5590, ../../../scss/_clix_styles.scss */ +/* line 5589, ../../../scss/_clix_styles.scss */ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-bottom: 3px solid #a2238d; } -/* line 5598, ../../../scss/_clix_styles.scss */ +/* line 5597, ../../../scss/_clix_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 5606, ../../../scss/_clix_styles.scss */ +/* line 5605, ../../../scss/_clix_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 5609, ../../../scss/_clix_styles.scss */ +/* line 5608, ../../../scss/_clix_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 5611, ../../../scss/_clix_styles.scss */ +/* line 5610, ../../../scss/_clix_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 5618, ../../../scss/_clix_styles.scss */ +/* line 5617, ../../../scss/_clix_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 5620, ../../../scss/_clix_styles.scss */ +/* line 5619, ../../../scss/_clix_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 5625, ../../../scss/_clix_styles.scss */ +/* line 5624, ../../../scss/_clix_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 5633, ../../../scss/_clix_styles.scss */ +/* line 5632, ../../../scss/_clix_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5639, ../../../scss/_clix_styles.scss */ +/* line 5638, ../../../scss/_clix_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5646, ../../../scss/_clix_styles.scss */ +/* line 5645, ../../../scss/_clix_styles.scss */ .listing-row { margin-top: 10px !important; } -/* line 5650, ../../../scss/_clix_styles.scss */ +/* line 5649, ../../../scss/_clix_styles.scss */ .raw_material_asset { width: auto; top: -0.50em; @@ -35837,7 +35836,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.3px; } -/* line 5666, ../../../scss/_clix_styles.scss */ +/* line 5665, ../../../scss/_clix_styles.scss */ .status-completed { width: auto; top: -1.15em; @@ -35854,7 +35853,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5682, ../../../scss/_clix_styles.scss */ +/* line 5681, ../../../scss/_clix_styles.scss */ .status-in-progress { width: auto; top: -1.15em; @@ -35871,7 +35870,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5699, ../../../scss/_clix_styles.scss */ +/* line 5698, ../../../scss/_clix_styles.scss */ .status-upcoming { width: auto; top: -1.15em; @@ -35888,7 +35887,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5716, ../../../scss/_clix_styles.scss */ +/* line 5715, ../../../scss/_clix_styles.scss */ .status-draft { width: auto; top: -1.15em; @@ -35905,33 +35904,33 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5734, ../../../scss/_clix_styles.scss */ +/* line 5733, ../../../scss/_clix_styles.scss */ .lesson-dropdown ul { display: none; } -/* line 5738, ../../../scss/_clix_styles.scss */ +/* line 5737, ../../../scss/_clix_styles.scss */ .lesson-dropdown:hover ul { display: block; } -/* line 5742, ../../../scss/_clix_styles.scss */ +/* line 5741, ../../../scss/_clix_styles.scss */ .lesson_name_in_export { list-style: none; } -/* line 5744, ../../../scss/_clix_styles.scss */ +/* line 5743, ../../../scss/_clix_styles.scss */ .lesson_name_in_export:hover { border-left: 2.5px solid #ce7869; } -/* line 5749, ../../../scss/_clix_styles.scss */ +/* line 5748, ../../../scss/_clix_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 5755, ../../../scss/_clix_styles.scss */ +/* line 5754, ../../../scss/_clix_styles.scss */ .lms_explore_head { width: 100%; height: 45px; @@ -35939,63 +35938,63 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #164A7B; margin-top: -30px; } -/* line 5761, ../../../scss/_clix_styles.scss */ +/* line 5760, ../../../scss/_clix_styles.scss */ .lms_explore_head > p { margin-left: 81px; padding: 12px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 5767, ../../../scss/_clix_styles.scss */ +/* line 5766, ../../../scss/_clix_styles.scss */ .lms_explore_head > a { padding: 12px 85px 3px 0px; } -/* line 5771, ../../../scss/_clix_styles.scss */ +/* line 5770, ../../../scss/_clix_styles.scss */ .lms_explore_head_unit { width: 100%; height: 50px; background-color: #fff; color: #164A7B; } -/* line 5776, ../../../scss/_clix_styles.scss */ +/* line 5775, ../../../scss/_clix_styles.scss */ .lms_explore_head_unit > p { margin-left: 81px; padding: 0px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 5782, ../../../scss/_clix_styles.scss */ +/* line 5781, ../../../scss/_clix_styles.scss */ .lms_explore_head_unit > a { padding: 0px 85px 3px 0px; } -/* line 5787, ../../../scss/_clix_styles.scss */ +/* line 5786, ../../../scss/_clix_styles.scss */ .lms_explore_back { background-color: #fff; } -/* line 5791, ../../../scss/_clix_styles.scss */ +/* line 5790, ../../../scss/_clix_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -23.3px; } -/* line 5796, ../../../scss/_clix_styles.scss */ +/* line 5795, ../../../scss/_clix_styles.scss */ .empty-dashboard-message { border: 3px solid #e4e4e4; background: #f8f8f8; padding: 40px 0; text-align: center; } -/* line 5801, ../../../scss/_clix_styles.scss */ +/* line 5800, ../../../scss/_clix_styles.scss */ .empty-dashboard-message > p { font-size: 24px; color: #646464; margin-bottom: 20px; text-shadow: 0 1px rgba(255, 255, 255, 0.6); } -/* line 5807, ../../../scss/_clix_styles.scss */ +/* line 5806, ../../../scss/_clix_styles.scss */ .empty-dashboard-message > a { background-color: #164a7b; border: 1px solid #164a7b; @@ -36009,7 +36008,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-left: 5px; padding: 15px 20px; } -/* line 5820, ../../../scss/_clix_styles.scss */ +/* line 5819, ../../../scss/_clix_styles.scss */ .empty-dashboard-message .button-explore-courses { font-size: 20px; font-weight: normal; @@ -36019,7 +36018,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { width: 170px; } -/* line 5833, ../../../scss/_clix_styles.scss */ +/* line 5832, ../../../scss/_clix_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -36027,7 +36026,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-size: 100% 100%; position: relative; } -/* line 5840, ../../../scss/_clix_styles.scss */ +/* line 5839, ../../../scss/_clix_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -36041,13 +36040,13 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 5854, ../../../scss/_clix_styles.scss */ +/* line 5853, ../../../scss/_clix_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 5859, ../../../scss/_clix_styles.scss */ +/* line 5858, ../../../scss/_clix_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -36056,53 +36055,53 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { overflow: hidden; background-color: #fff; } -/* line 5867, ../../../scss/_clix_styles.scss */ +/* line 5866, ../../../scss/_clix_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 5872, ../../../scss/_clix_styles.scss */ +/* line 5871, ../../../scss/_clix_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 5877, ../../../scss/_clix_styles.scss */ +/* line 5876, ../../../scss/_clix_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 5882, ../../../scss/_clix_styles.scss */ +/* line 5881, ../../../scss/_clix_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 5890, ../../../scss/_clix_styles.scss */ +/* line 5889, ../../../scss/_clix_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 5894, ../../../scss/_clix_styles.scss */ +/* line 5893, ../../../scss/_clix_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 5904, ../../../scss/_clix_styles.scss */ +/* line 5903, ../../../scss/_clix_styles.scss */ .input_links { margin-left: 10px; } -/* line 5906, ../../../scss/_clix_styles.scss */ +/* line 5905, ../../../scss/_clix_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 5912, ../../../scss/_clix_styles.scss */ +/* line 5911, ../../../scss/_clix_styles.scss */ #course-notification #status { width: 100% !important; } -/* line 5918, ../../../scss/_clix_styles.scss */ +/* line 5917, ../../../scss/_clix_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; @@ -36114,7 +36113,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #6153AE; } -/* line 5929, ../../../scss/_clix_styles.scss */ +/* line 5928, ../../../scss/_clix_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -36126,7 +36125,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #6153AE; } -/* line 5940, ../../../scss/_clix_styles.scss */ +/* line 5939, ../../../scss/_clix_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -36136,12 +36135,12 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-color: #f7f7f7; width: 85px; } -/* line 5948, ../../../scss/_clix_styles.scss */ +/* line 5947, ../../../scss/_clix_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 5952, ../../../scss/_clix_styles.scss */ +/* line 5951, ../../../scss/_clix_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -36152,39 +36151,39 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-color: #f7f7f7; width: 85px; } -/* line 5961, ../../../scss/_clix_styles.scss */ +/* line 5960, ../../../scss/_clix_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 5966, ../../../scss/_clix_styles.scss */ +/* line 5965, ../../../scss/_clix_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 5969, ../../../scss/_clix_styles.scss */ +/* line 5968, ../../../scss/_clix_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 5972, ../../../scss/_clix_styles.scss */ +/* line 5971, ../../../scss/_clix_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 5975, ../../../scss/_clix_styles.scss */ +/* line 5974, ../../../scss/_clix_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; } -/* line 5979, ../../../scss/_clix_styles.scss */ +/* line 5978, ../../../scss/_clix_styles.scss */ .img-height { height: 150px; width: 1351px; } -/* line 5984, ../../../scss/_clix_styles.scss */ +/* line 5983, ../../../scss/_clix_styles.scss */ .wrapper-footer { box-shadow: 0 -1px 5px 0 rgba(0, 0, 0, 0.1); border-top: 1px solid #c5c6c7; @@ -36198,7 +36197,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background: rgba(221, 221, 221, 0.18); clear: both; } -/* line 6000, ../../../scss/_clix_styles.scss */ +/* line 5999, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix { box-sizing: border-box; max-width: 1200px; @@ -36206,85 +36205,85 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-right: auto; margin: 0 auto; } -/* line 6008, ../../../scss/_clix_styles.scss */ +/* line 6007, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos { float: left; display: block; margin-right: 2.35765%; width: 65.88078%; } -/* line 6014, ../../../scss/_clix_styles.scss */ +/* line 6013, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-links-logos { margin: 10px 0px 0px 18px; } -/* line 6017, ../../../scss/_clix_styles.scss */ +/* line 6016, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-links-logos ol { display: inline; list-style-type: none; } -/* line 6020, ../../../scss/_clix_styles.scss */ +/* line 6019, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-links-logos ol li { float: left; margin-right: 15px; } -/* line 6023, ../../../scss/_clix_styles.scss */ +/* line 6022, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-links-logos ol li > a { color: #ce7869; } -/* line 6025, ../../../scss/_clix_styles.scss */ +/* line 6024, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-links-logos ol li > a:hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } -/* line 6036, ../../../scss/_clix_styles.scss */ +/* line 6035, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-legal { margin: 0px 0px 0px 20px; } -/* line 6038, ../../../scss/_clix_styles.scss */ +/* line 6037, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-legal ol { display: inline; list-style-type: none; } -/* line 6041, ../../../scss/_clix_styles.scss */ +/* line 6040, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-legal ol li { float: left; margin-right: 15px; display: inline-block; font-size: 0.6875em; } -/* line 6046, ../../../scss/_clix_styles.scss */ +/* line 6045, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-legal ol li > a { transition: link-color 0.15s ease-in-out 0s,border 0.15s ease-in-out 0s; border-bottom: none; color: #777; text-decoration: none !important; } -/* line 6051, ../../../scss/_clix_styles.scss */ +/* line 6050, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-legal ol li > a:hover { color: #777; border-bottom: 3px solid #c90d97; } -/* line 6061, ../../../scss/_clix_styles.scss */ +/* line 6060, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .wrapper-logo { margin: 13px 0; display: inline-block; } -/* line 6064, ../../../scss/_clix_styles.scss */ +/* line 6063, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .wrapper-logo p { color: inherit; margin: 0; display: inline-block; } -/* line 6068, ../../../scss/_clix_styles.scss */ +/* line 6067, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .wrapper-logo p a { display: inline-block; } -/* line 6074, ../../../scss/_clix_styles.scss */ +/* line 6073, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .wrapper-logo .footer-logo > img { height: 10px; } -/* line 6084, ../../../scss/_clix_styles.scss */ +/* line 6083, ../../../scss/_clix_styles.scss */ #overlay { /* we set all of the properties for are overlay */ height: 116px; @@ -36305,7 +36304,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-radius: 10px; } -/* line 6104, ../../../scss/_clix_styles.scss */ +/* line 6103, ../../../scss/_clix_styles.scss */ #mask { /* create are mask */ position: fixed; @@ -36319,13 +36318,13 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { } /* use :target to look for a link to the overlay then we find are mask */ -/* line 6115, ../../../scss/_clix_styles.scss */ +/* line 6114, ../../../scss/_clix_styles.scss */ #overlay:target, #overlay:target + #mask { display: block; opacity: 1; } -/* line 6119, ../../../scss/_clix_styles.scss */ +/* line 6118, ../../../scss/_clix_styles.scss */ .close { /* to make a nice looking pure CSS3 close button */ display: block; @@ -36347,7 +36346,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-radius: 38px; } -/* line 6138, ../../../scss/_clix_styles.scss */ +/* line 6137, ../../../scss/_clix_styles.scss */ #open-overlay { /* open the overlay */ padding: 0px 0px; @@ -36360,7 +36359,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { -o-border-radius: 10px; } -/* line 6149, ../../../scss/_clix_styles.scss */ +/* line 6148, ../../../scss/_clix_styles.scss */ .enroll-btn { width: 90px; opacity: 1; @@ -36376,44 +36375,44 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-color: #4b4852; } -/* line 6171, ../../../scss/_clix_styles.scss */ +/* line 6170, ../../../scss/_clix_styles.scss */ .img-style-land { margin-top: 28px; margin-left: -56px; } -/* line 6176, ../../../scss/_clix_styles.scss */ +/* line 6175, ../../../scss/_clix_styles.scss */ .top-margin-translation { margin-top: 0px; } -/* line 6180, ../../../scss/_clix_styles.scss */ +/* line 6179, ../../../scss/_clix_styles.scss */ .activity-editor-header-top { margin-top: -50px; } -/* line 6184, ../../../scss/_clix_styles.scss */ +/* line 6183, ../../../scss/_clix_styles.scss */ .add-lesson-top-margin { margin-top: 5px; } -/* line 6187, ../../../scss/_clix_styles.scss */ +/* line 6186, ../../../scss/_clix_styles.scss */ .translation-detail-top-margin { margin-top: 0px; } -/* line 6190, ../../../scss/_clix_styles.scss */ +/* line 6189, ../../../scss/_clix_styles.scss */ .outer { width: 100%; text-align: center; } -/* line 6195, ../../../scss/_clix_styles.scss */ +/* line 6194, ../../../scss/_clix_styles.scss */ .inner { display: inline-block !important; } -/* line 6200, ../../../scss/_clix_styles.scss */ +/* line 6199, ../../../scss/_clix_styles.scss */ .transcript-toggler { display: block; width: 155px !important; @@ -36429,33 +36428,33 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { text-transform: uppercase; } -/* line 6216, ../../../scss/_clix_styles.scss */ +/* line 6215, ../../../scss/_clix_styles.scss */ .double-buttons { margin-top: 100px; margin-left: 729px; } -/* line 6221, ../../../scss/_clix_styles.scss */ +/* line 6220, ../../../scss/_clix_styles.scss */ .lesson-form-name { padding-top: 10px; } -/* line 6225, ../../../scss/_clix_styles.scss */ +/* line 6224, ../../../scss/_clix_styles.scss */ .lesson-form-desc { padding-top: 25px; } -/* line 6229, ../../../scss/_clix_styles.scss */ +/* line 6228, ../../../scss/_clix_styles.scss */ .enroll_chkbox { transform: scale(1.5); } -/* line 6232, ../../../scss/_clix_styles.scss */ +/* line 6231, ../../../scss/_clix_styles.scss */ .enroll_all_users { width: 15% !important; } -/* line 6236, ../../../scss/_clix_styles.scss */ +/* line 6235, ../../../scss/_clix_styles.scss */ .enrollBtn { background: #a2238d; height: 50px; @@ -36471,24 +36470,24 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 6270, ../../../scss/_clix_styles.scss */ +/* line 6269, ../../../scss/_clix_styles.scss */ .enroll-act_lbl { color: #0c2944; } -/* line 6275, ../../../scss/_clix_styles.scss */ +/* line 6274, ../../../scss/_clix_styles.scss */ .wrkspace { margin-right: 80px; } -/* line 6279, ../../../scss/_clix_styles.scss */ +/* line 6278, ../../../scss/_clix_styles.scss */ .status-btn { background-color: #fff; margin-right: auto; padding-bottom: 0px; text-transform: none; } -/* line 6284, ../../../scss/_clix_styles.scss */ +/* line 6283, ../../../scss/_clix_styles.scss */ .status-btn .disabled { background-color: #008cba; border-color: #007095; @@ -36498,41 +36497,41 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { box-shadow: none; } -/* line 6294, ../../../scss/_clix_styles.scss */ +/* line 6293, ../../../scss/_clix_styles.scss */ .margin-right-50 { margin-right: 50px; } -/* line 6303, ../../../scss/_clix_styles.scss */ +/* line 6302, ../../../scss/_clix_styles.scss */ .color-btn { background-color: #720f5e; width: 77px; margin-left: 17px; } -/* line 6307, ../../../scss/_clix_styles.scss */ +/* line 6306, ../../../scss/_clix_styles.scss */ .color-btn:hover { color: #720f5e; background-color: #ffffff; } -/* line 6313, ../../../scss/_clix_styles.scss */ +/* line 6312, ../../../scss/_clix_styles.scss */ .mid_label { margin-top: 15px; font-size: 15px; } -/* line 6318, ../../../scss/_clix_styles.scss */ +/* line 6317, ../../../scss/_clix_styles.scss */ .compulsory { color: red; font-size: smaller; } -/* line 6323, ../../../scss/_clix_styles.scss */ +/* line 6322, ../../../scss/_clix_styles.scss */ .select-drop { height: auto; } -/* line 6327, ../../../scss/_clix_styles.scss */ +/* line 6326, ../../../scss/_clix_styles.scss */ .template-select { border: 1px solid #cccccc; border-radius: 5px; @@ -36541,41 +36540,41 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { font-size: 14px; } -/* line 6335, ../../../scss/_clix_styles.scss */ +/* line 6334, ../../../scss/_clix_styles.scss */ .white-text { color: white; } -/* line 6340, ../../../scss/_clix_styles.scss */ +/* line 6339, ../../../scss/_clix_styles.scss */ .quiz-player .quiz_qtn { margin-left: 20px !important; font-size: 20px; } -/* line 6344, ../../../scss/_clix_styles.scss */ +/* line 6343, ../../../scss/_clix_styles.scss */ .quiz-player .question_edit { margin-left: 20px !important; } -/* line 6348, ../../../scss/_clix_styles.scss */ +/* line 6347, ../../../scss/_clix_styles.scss */ .quiz-player input[type=checkbox], .quiz-player input[type=radio] { margin-right: 10px; width: 15px; height: 15px; } -/* line 6354, ../../../scss/_clix_styles.scss */ +/* line 6353, ../../../scss/_clix_styles.scss */ .quiz-player .chk_ans_lbl, .quiz-player .rad_ans_lbl { font-size: 22px; margin-left: 5px; } -/* line 6359, ../../../scss/_clix_styles.scss */ +/* line 6358, ../../../scss/_clix_styles.scss */ .quiz-player .fi-check { color: green; } -/* line 6363, ../../../scss/_clix_styles.scss */ +/* line 6362, ../../../scss/_clix_styles.scss */ .quiz-player .fi-x { color: red; } -/* line 6368, ../../../scss/_clix_styles.scss */ +/* line 6367, ../../../scss/_clix_styles.scss */ .hyperlink-tag { cursor: pointer; cursor: pointer; @@ -36588,7 +36587,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #164A7B; } -/* line 6380, ../../../scss/_clix_styles.scss */ +/* line 6379, ../../../scss/_clix_styles.scss */ .scard { background: #FFF; border: 1px solid #AAA; @@ -36600,12 +36599,12 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { height: 9rem; /*float:left;*/ } -/* line 6389, ../../../scss/_clix_styles.scss */ +/* line 6388, ../../../scss/_clix_styles.scss */ .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 6395, ../../../scss/_clix_styles.scss */ +/* line 6394, ../../../scss/_clix_styles.scss */ .scard .scard_header { text-align: center; position: fixed; @@ -36623,7 +36622,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { font-weight: bold; } -/* line 6412, ../../../scss/_clix_styles.scss */ +/* line 6411, ../../../scss/_clix_styles.scss */ .scard-content { height: 2.7em; padding: 0.5rem; @@ -36636,7 +36635,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 6423, ../../../scss/_clix_styles.scss */ +/* line 6422, ../../../scss/_clix_styles.scss */ .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; @@ -36646,7 +36645,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { text-align: center; } -/* line 6436, ../../../scss/_clix_styles.scss */ +/* line 6435, ../../../scss/_clix_styles.scss */ .scard-action { height: height; font-size: 0.6em; @@ -36660,7 +36659,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-color: #CCCCCC; } -/* line 6451, ../../../scss/_clix_styles.scss */ +/* line 6450, ../../../scss/_clix_styles.scss */ .scard-desc { font-size: 0.7em; color: #333333; @@ -36676,7 +36675,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { display-inline: block; } -/* line 6468, ../../../scss/_clix_styles.scss */ +/* line 6467, ../../../scss/_clix_styles.scss */ .scard-image { padding: 0px; margin: 0px; @@ -36687,7 +36686,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { overflow: hidden; background-color: #f2f2f2; } -/* line 6477, ../../../scss/_clix_styles.scss */ +/* line 6476, ../../../scss/_clix_styles.scss */ .scard-image img { border-radius: 2px 2px 0 0; display: block; @@ -36696,18 +36695,18 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { height: 100%; } -/* line 6489, ../../../scss/_clix_styles.scss */ +/* line 6488, ../../../scss/_clix_styles.scss */ .published.scard-action { background: #A6D9CB; } -/* line 6493, ../../../scss/_clix_styles.scss */ +/* line 6492, ../../../scss/_clix_styles.scss */ .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 6499, ../../../scss/_clix_styles.scss */ +/* line 6498, ../../../scss/_clix_styles.scss */ .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -36716,17 +36715,17 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { height: 2rem; } -/* line 6507, ../../../scss/_clix_styles.scss */ +/* line 6506, ../../../scss/_clix_styles.scss */ .auto_width { width: auto !important; } -/* line 6511, ../../../scss/_clix_styles.scss */ +/* line 6510, ../../../scss/_clix_styles.scss */ .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 6514, ../../../scss/_clix_styles.scss */ +/* line 6513, ../../../scss/_clix_styles.scss */ .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -36739,17 +36738,17 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 10px; margin-left: 20px; } -/* line 6525, ../../../scss/_clix_styles.scss */ +/* line 6524, ../../../scss/_clix_styles.scss */ .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 6531, ../../../scss/_clix_styles.scss */ +/* line 6530, ../../../scss/_clix_styles.scss */ .explore-settings-drop a { font-size: 16px; } -/* line 6534, ../../../scss/_clix_styles.scss */ +/* line 6533, ../../../scss/_clix_styles.scss */ .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -36757,37 +36756,37 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin: 0; background-color: #164A7B; } -/* line 6542, ../../../scss/_clix_styles.scss */ +/* line 6541, ../../../scss/_clix_styles.scss */ .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 6546, ../../../scss/_clix_styles.scss */ +/* line 6545, ../../../scss/_clix_styles.scss */ .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 6553, ../../../scss/_clix_styles.scss */ +/* line 6552, ../../../scss/_clix_styles.scss */ .attempts_count { color: #000000 !important; } -/* line 6559, ../../../scss/_clix_styles.scss */ +/* line 6558, ../../../scss/_clix_styles.scss */ #course-settings-drop li a { text-align: left; } -/* line 6567, ../../../scss/_clix_styles.scss */ +/* line 6566, ../../../scss/_clix_styles.scss */ #asset-settings-drop li a { text-align: left; } -/* line 6574, ../../../scss/_clix_styles.scss */ +/* line 6573, ../../../scss/_clix_styles.scss */ .button-bg { background-color: #74b3dc; } /* Tools page css listing*/ -/* line 6581, ../../../scss/_clix_styles.scss */ +/* line 6580, ../../../scss/_clix_styles.scss */ .polaroid { width: 330px; background-color: white; @@ -36801,7 +36800,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { cursor: pointer; } -/* line 6594, ../../../scss/_clix_styles.scss */ +/* line 6593, ../../../scss/_clix_styles.scss */ .polaroid:hover img { -webkit-transform: scale(1.05); -moz-transform: scale(1.05); @@ -36810,26 +36809,26 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { transform: scale(1.05); } -/* line 6603, ../../../scss/_clix_styles.scss */ +/* line 6602, ../../../scss/_clix_styles.scss */ .container { text-align: center; padding: 10px 20px; border-top: 5px solid #164a7b; margin-top: 0px; } -/* line 6609, ../../../scss/_clix_styles.scss */ +/* line 6608, ../../../scss/_clix_styles.scss */ .container > p { color: black; font-size: 16px; font-weight: 500; } -/* line 6618, ../../../scss/_clix_styles.scss */ +/* line 6617, ../../../scss/_clix_styles.scss */ .tool-bg { background-color: rgba(87, 198, 250, 0.07); } -/* line 6621, ../../../scss/_clix_styles.scss */ +/* line 6620, ../../../scss/_clix_styles.scss */ .purple-btn { width: inherit; text-transform: uppercase; @@ -36840,7 +36839,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border: 2px solid #6a0054; } -/* line 6631, ../../../scss/_clix_styles.scss */ +/* line 6630, ../../../scss/_clix_styles.scss */ .disable-purple-btn { width: inherit; text-transform: uppercase !important; @@ -36851,22 +36850,22 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border: 2px solid #4b4852; } -/* line 6641, ../../../scss/_clix_styles.scss */ +/* line 6640, ../../../scss/_clix_styles.scss */ .user-analytics-data { margin: 42px 37px 37px 37px; border: 2px solid #aaaaaa; } -/* line 6644, ../../../scss/_clix_styles.scss */ +/* line 6643, ../../../scss/_clix_styles.scss */ .user-analytics-data .close-reveal-modal { font-size: 20px; } -/* line 6648, ../../../scss/_clix_styles.scss */ +/* line 6647, ../../../scss/_clix_styles.scss */ .left-space { margin-left: 0.5em; } -/* line 6656, ../../../scss/_clix_styles.scss */ +/* line 6655, ../../../scss/_clix_styles.scss */ .top-right-menu { margin-right: 80px !important; } diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss index a630e53404..cfb5c38ce0 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss @@ -4856,7 +4856,7 @@ $module-card-lines-to-show: 3; text-align: center; margin: 0px auto; letter-spacing: 1px; - font-size: 1.4vw; + font-size: 24px; } &.animated_card { diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix_styles.scss index 26cfc41841..6ba9b367c1 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix_styles.scss @@ -5345,7 +5345,7 @@ $module-card-lines-to-show: 3; .card_title { display: block; width:230px; - font-size: 1.4vw; + font-size: 24px; font-weight: 600; text-align: center; margin: 0px auto; @@ -5572,7 +5572,6 @@ $nav_menu_1_tab_border: #a2238d; ul.nav_menu_1 { margin-bottom: 0px; background-color: $nav_menu_1_bg_color; - border-bottom: 2px solid #80808063; >li { display: inline-block; From 6dfb7baf4d5c54a86c9d25096fbcdd8159c00807 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Fri, 19 Jan 2018 19:23:40 +0530 Subject: [PATCH 266/766] footer updated --- .../ndf/templates/ndf/footer_clix.html | 5 ++-- .../gnowsys_ndf/ndf/templates/ndf/gbase.html | 29 ++++++++++++++----- 2 files changed, 24 insertions(+), 10 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer_clix.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer_clix.html index e30882b045..4348be05f1 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer_clix.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer_clix.html @@ -155,6 +155,7 @@ {% get_gstudio_footer_links as footer_links %} +
    - - +
    +
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html index 03f9799729..77faf533d2 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html @@ -61,7 +61,7 @@ - +
    {% if site.BUDDY_LOGIN and user.is_authenticated and site.SITE_NAME == 'clix' and request.author.agency_type == 'Student'%} {% include "ndf/buddy.html" %} {% endif %} @@ -79,6 +79,7 @@ {% endblock %} + @@ -205,35 +206,47 @@ // }); {% block script %} {% endblock %} - + +
    + {% if not no_footer %} -
    + @@ -386,71 +386,71 @@ {% block script %} - {{block.super}} - - $(document).on('click','.enroll-btn',function(){ - //trigger the ajax call to enroll - $.ajax({ - url: "{% url 'enroll_to_course' group_id %}", - - data: { - 'csrfmiddlewaretoken': "{{csrf_token}}" - }, - - type: "POST", - - dataType: "json", - - success: function(data){ - success_state = data["success"] - if(success_state){ - $(".enroll-btn").attr('value', 'ENROLLED') - $(".enroll-btn").attr("disabled","disabled") - location.reload(); - } - }, - });//end of ajax +{{block.super}} + +$(document).on('click','.enroll-btn',function(){ +//trigger the ajax call to enroll +$.ajax({ +url: "{% url 'enroll_to_course' group_id %}", + +data: { +'csrfmiddlewaretoken': "{{csrf_token}}" +}, + +type: "POST", + +dataType: "json", + +success: function(data){ +success_state = data["success"] +if(success_state){ +$(".enroll-btn").attr('value', 'ENROLLED') +$(".enroll-btn").attr("disabled","disabled") +location.reload(); +} +}, +});//end of ajax +}) + +// -{% endblock %} + // + {% endblock %} From b7d7c53bf1b5ab2e2d33a727efb5516ee9ff9c62 Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Tue, 23 Jan 2018 13:06:19 +0530 Subject: [PATCH 271/766] create es_injection file --- doc/deployer/es_initialize.py | 13 +- doc/deployer/es_injection.py | 206 ++++++++++++++++++ doc/deployer/esinitialize_map.py | 7 +- gnowsys-ndf/gnowsys_ndf/ndf/forms.py | 2 +- .../ndf/templates/ndf/header_clix.html | 10 +- .../gnowsys_ndf/ndf/templates/ndf/sform.html | 130 +---------- .../gnowsys_ndf/ndf/templatetags/ndf_tags.py | 7 +- gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py | 3 +- gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py | 58 +++-- gnowsys-ndf/gnowsys_ndf/req_body.json | 2 +- gnowsys-ndf/gnowsys_ndf/settings.py | 10 +- 11 files changed, 267 insertions(+), 181 deletions(-) create mode 100644 doc/deployer/es_injection.py diff --git a/doc/deployer/es_initialize.py b/doc/deployer/es_initialize.py index 7f495e008b..7d2dbebc7a 100644 --- a/doc/deployer/es_initialize.py +++ b/doc/deployer/es_initialize.py @@ -4,30 +4,21 @@ import json from elasticsearch import Elasticsearch from gnowsys_ndf.ndf.models import * -<<<<<<< HEAD + from gnowsys_ndf.settings import GSTUDIO_SITE_NAME from gnowsys_ndf.local_settings import GSTUDIO_DOCUMENT_MAPPING -======= -from gnowsys_ndf.settings import GSTUDIO_SITE_NAME, GSTUDIO_DOCUMENT_MAPPING ->>>>>>> 3be8cc3b19dfd83abb70d72039df767fcf3e3396 + ##### use the below commented lines if you are working with Python 2.x ##### # reload(sys) # sys.setdefaultencoding('UTF8') -<<<<<<< HEAD es = Elasticsearch("http://elastic:changeme@gsearch:9200", timeout=100, retry_on_timeout=True) author_index = "author_" + GSTUDIO_SITE_NAME.lower() index = GSTUDIO_SITE_NAME.lower() gsystemtype_index = "node_type_" + GSTUDIO_SITE_NAME.lower() -======= -es = Elasticsearch("http://elsearch:changeit@gsearch:9200", timeout=30) -author_index = "author_" + GSTUDIO_SITE_NAME -index = GSTUDIO_SITE_NAME -gsystemtype_index = "node_type_" + GSTUDIO_SITE_NAME ->>>>>>> 3be8cc3b19dfd83abb70d72039df767fcf3e3396 page_id = 0 def index_docs(all_docs): diff --git a/doc/deployer/es_injection.py b/doc/deployer/es_injection.py new file mode 100644 index 0000000000..14bb73feaa --- /dev/null +++ b/doc/deployer/es_injection.py @@ -0,0 +1,206 @@ +from bson import json_util +import os +import sys +import json +from elasticsearch import Elasticsearch +from gnowsys_ndf.ndf.models import * + +#from gnowsys_ndf.settings import GSTUDIO_SITE_NAME +#from gnowsys_ndf.local_settings import GSTUDIO_DOCUMENT_MAPPING +from gnowsys_ndf.local_settings import GSTUDIO_ELASTIC_SEARCH_INDEX + +##### use the below commented lines if you are working with Python 2.x ##### +# reload(sys) +# sys.setdefaultencoding('UTF8') + +es = Elasticsearch("http://elastic:changeme@gsearch:9200", timeout=100, retry_on_timeout=True) + +#author_index = "author_" + GSTUDIO_SITE_NAME.lower() +#index = GSTUDIO_SITE_NAME.lower() +#gsystemtype_index = "node_type_" + GSTUDIO_SITE_NAME.lower() + + + +page_id = 0 + + +def index_docs(all_docs,index,doc_type,file_name): + k = 0 + all_docs_count = all_docs.count() + for docs in all_docs: + print "[ %s/%s ] : %s " % (k, all_docs_count, docs._id) + + + doc = json.dumps(docs, cls=NodeJSONEncoder) # convert mongoDB object to a JSON string + # doc = json.loads(doc,object_hook=json_util.object_hook) ->get back mongoDB object from JSON string + + document = json.loads(doc) # convert JSON string to a python dictionary + # doc = json.dumps(document) #convert python dictionary to JSON string + document["id"] = document.pop("_id") + document["type"] = document.pop("_type") + + #for docs in doc_type: + print document["type"] + #print document + + if document["type"] == "GAttribute": + es.index(index=index, doc_type="gattribute", id=document["id"], body=document) + #file_name.write(document["id"] + '\n') + + elif document["type"] == "GRelation": + es.index(index=index, doc_type="grelation", id=document["id"], body=document) + #file_name.write(document["id"] + '\n') + elif document["type"] == "MetaType": + es.index(index=index, doc_type="metaType", id=document["id"], body=document) + #file_name.write(document["id"] + '\n') + elif document["type"] == "GSystemType": + es.index(index=index, doc_type="gsystemType", id=document["id"], body=document) + #file_name.write(document["id"] + '\n') + elif document["type"] == "Author": + es.index(index=index, doc_type="author", id=document["id"], body=document) + #file_name.write(document["id"] + '\n') + elif document["type"] == "RelationType": + es.index(index=index, doc_type="relationtype", id=document["id"], body=document) + #file_name.write(document["id"] + '\n') + elif document["type"] == "AttributeType": + es.index(index=index, doc_type="attributetype", id=document["id"], body=document) + #file_name.write(document["id"] + '\n') + elif document["type"] == "GSystem": + es.index(index=index, doc_type="gsystem", id=document["id"], body=document) + #file_name.write(document["id"] + '\n') + get_doc_type=get_document_type(document) + print(get_doc_type) + es.index(index=index, doc_type=get_doc_type, id=document["id"], body=document) + + elif document["type"] == "Group": + es.index(index=index, doc_type="group", id=document["id"], body=document) + #file_name.write(document["id"] + '\n') + elif document["type"] == "ToReduceDocs": + es.index(index=index, doc_type="toreducedocs", id=document["id"], body=document) + # file_name.write(document["id"] + '\n') + elif document["type"] == "node_holder": + es.index(index=index, doc_type="node_holder", id=document["id"], body=document) + #file_name.write(document["id"] + '\n') + elif document["type"] == "File": + es.index(index=index, doc_type="file", id=document["id"], body=document) + #file_name.write(document["id"] + '\n') + + else: + print index + # print str(doc_type).strip('[]').replace("'", "").lower() + es.index(index=index, doc_type=str(doc_type).strip('[]').replace("'", "").lower(), id=document["id"], + body=document) + #file_name.write(document["id"] + '\n') + + + k += 1 + + #file_name.close() + + + +def get_document_type(document): + + if document["type"]=="GSystem": + #for ids in document['member_of']: #document is a member of the Page GSystemType + #if(ids == page_id): + #return "Page" + if('if_file' in document.keys()): + if(document["if_file"]["mime_type"] is not None): + data = document["if_file"]["mime_type"].split("/") + doc_type = data[0] + else: + doc_type = "NotMedia" + else: + doc_type = "NotMedia" + + else: + doc_type = "DontCare" + return doc_type + + + +def main(): + + + nodes = node_collection.find(no_cursor_timeout=True).batch_size(5) + triples= triple_collection.find(no_cursor_timeout=True).batch_size(5) + benchmarks = benchmark_collection.find(no_cursor_timeout=True).batch_size(5) + filehives = filehive_collection.find(no_cursor_timeout=True).batch_size(5) + buddys = buddy_collection.find(no_cursor_timeout=True).batch_size(5) + counters = counter_collection.find(no_cursor_timeout=True).batch_size(5) + + #all_docs = [ triples, buddys, benchmarks, nodes, counters] + print("Starting the indexing process...") + + res = es.search(index="nodes", body={"query": {"match_all": {}},"_source": ["id"] }, scroll= "1m",size="10000") + + print(res['_scroll_id']) + print(res['hits']['total']) + + + + if( res['hits']['total'] < nodes.counts()): + if(nodes.counts() < 10000): + f = open("/data/nodes.txt", "w+") + os.chmod("/data/nodes.txt", 0o777) + for hit in res['hits']['hits']: + #print(hit["_source"]["id"]) + f.write(hit["_source"]["id"] + '\n') + + + f.close() + # DELETING existing/old indexes + + for index in GSTUDIO_ELASTIC_SEARCH_INDEX.keys(): + if (es.indices.exists(index.lower())): + print("Deleting the existing index: " + index.lower() + " for reindexing") + res = es.indices.delete(index=index.lower()) + print("The delete response is %s " % res) + + # --- END of DELETING existing/old indexes + + + i=0 + + with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/req_body.json") as req_body: + request_body = json.load(req_body) + + for index, doc_type in GSTUDIO_ELASTIC_SEARCH_INDEX.items(): + res = es.indices.create(index=index.lower(), body=request_body) + print("Response for index creation") + #print "%s/%s" %(i,len(all_docs)) + + if(index.strip('[]').lower()=="triples"): + #f = open("/data/triples.txt", "w") + #os.chmod("/data/triples.txt", 0o777) + index_docs(triples ,index.lower(),doc_type,f) + + elif(index.strip('[]').lower()=="buddies"): + #f = open("/data/buddies.txt", "w") + #os.chmod("/data/buddies.txt", 0o777) + index_docs(buddys, index.lower(), doc_type,f) + + elif(index.strip('[]').lower()=="benchmarks"): + #f = open("/data/benchmarks.txt", "w+") + #os.chmod("/data/benchmarks.txt", 0o777) + index_docs(benchmarks, index.lower(), doc_type,f) + + elif (index.strip('[]').lower() == "nodes"): + #f = open("/data/nodes.txt", "w+") + #os.chmod("/data/nodes.txt", 0o777) + index_docs(nodes, index.lower(), doc_type,f) + + elif (index.strip('[]').lower() == "counters"): + #f = open("/data/counters.txt", "w") + #os.chmod("/data/counters.txt", 0o777) + index_docs(counters, index.lower(), doc_type,f) + + elif (index.strip('[]').lower() == "filehives"): + #f = open("/data/filehives.txt", "w") + ##os.chmod("/data/filehives.txt", 0o777) + index_docs(filehives, index.lower(), doc_type,f) + + i=i+1 + +main() \ No newline at end of file diff --git a/doc/deployer/esinitialize_map.py b/doc/deployer/esinitialize_map.py index 0d7b8c57a8..b5098c3864 100644 --- a/doc/deployer/esinitialize_map.py +++ b/doc/deployer/esinitialize_map.py @@ -4,11 +4,8 @@ import json # from elasticsearch import Elasticsearch from gnowsys_ndf.ndf.models import * -<<<<<<< HEAD + from gnowsys_ndf.local_settings import GSTUDIO_DOCUMENT_MAPPING -======= -from gnowsys_ndf.settings import GSTUDIO_DOCUMENT_MAPPING ->>>>>>> 3be8cc3b19dfd83abb70d72039df767fcf3e3396 # es = Elasticsearch("http://elsearch:changeit@gsearch:9200") @@ -51,7 +48,7 @@ def create_map(all_docs): for grid in node.member_of: gid = str(grid) for attr_dict in node.attribute_set: - for key in attr_dict.keys(): + for key in attr_dict.keys(): if(key not in attr): id_attribute_map[gid].append(key) for rel_dict in node.relation_set: diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py index 2f9d91e461..86b0804e26 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py @@ -11,7 +11,7 @@ from registration.forms import RegistrationForm from passwords.fields import PasswordField -CHOICES=[("all",'All'),("Author",'Users'),("image",'Images'),("video",'Video'),("text",'Text'),("audio","Audio"),("Page",'Page'),("Group",'Courses')] +CHOICES=[("all",'All'),("Author",'Users'),("image",'Images'),("video",'Video'),("application",'Application'),("text",'Text'),("audio","Audio"),("Page",'Page'),("Group",'Courses')] SEARCH_CHOICE = [(0,'Search for data'),(1,'Contributions of Author')] GROUP_CHOICES=[] NODE_TYPE_CHOICES = [] diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html index 83796236f6..aaf52d7581 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header_clix.html @@ -155,11 +155,7 @@ {% endif %} -<<<<<<< HEAD -<<<<<<< HEAD -======= -======= ->>>>>>> 3be8cc3b19dfd83abb70d72039df767fcf3e3396 +
      {% if request.user.id %} @@ -193,11 +189,7 @@ {% endif %}
    -<<<<<<< HEAD ->>>>>>> b48fc50698b3a6aed01e446e0d3c10ae2621ffc3 -======= ->>>>>>> 3be8cc3b19dfd83abb70d72039df767fcf3e3396 - - - -
    -
    -
      -
    • {{form.query}}
    • -
    • - -
    • -
    • {{form.search_select}}
    • -
      - {% with '{"all": "All", "Author": "Users", "image": "Images", "video": "Video", "text": "Text", "audio": "Audio", "Page": "Page", "Group": "Courses"}'|apply_eval as additional_filters_dict %} - {% for k, v in additional_filters_dict.iteritems %} - {{v}} - {% endfor %} - {% endwith %} - {% comment %} - - {% endcomment %} -
      - - - Advanced Search -
    -
    -
    - -
    - - {% for c in alternate %} -

    {{c|safe}}

    - {% endfor %} - - {% for c in header %} -

    {{c|safe}}

    - {% endfor %} - -
    -
      - {% for each in content %} - {% if each.group_set.0 %} -
    • - {% include "ndf/card_gsearch.html" with node=each url_name="node_detail" first_arg=each.group_set.0 second_arg=each.id %} -
    • - {% else %} -
    • - {% include "ndf/card_gsearch.html" with node=each url_name="node_detail" first_arg="5752ad5a2e01310a05dca583" second_arg=each.id %} -
    • - {% endif %} - {% endfor %} -
    - -
    - - {% if content.paginator.num_pages > 1 %} - - {% endif %} ->>>>>>> 3be8cc3b19dfd83abb70d72039df767fcf3e3396 {% endblock %} \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py b/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py index 8cd5aa9e89..b4f55c804f 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py @@ -133,14 +133,11 @@ def get_site_variables(): site_var['ENABLE_USER_DASHBOARD'] = GSTUDIO_ENABLE_USER_DASHBOARD site_var['BUDDY_LOGIN'] = GSTUDIO_BUDDY_LOGIN site_var['INSTITUTE_ID'] = GSTUDIO_INSTITUTE_ID -<<<<<<< HEAD + #site_var['HEADER_LANGUAGES'] = HEADER_LANGUAGES site_var['ELASTIC_SEARCH'] = GSTUDIO_ELASTIC_SEARCH -======= - site_var['ELASTIC_SEARCH'] = GSTUDIO_ELASTIC_SEARCH - site_var['HEADER_LANGUAGES'] = HEADER_LANGUAGES ->>>>>>> 3be8cc3b19dfd83abb70d72039df767fcf3e3396 + cache.set('site_var', site_var, 60 * 30) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py index 1fb3ed895f..0882efe70e 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py @@ -16,8 +16,7 @@ from gnowsys_ndf.ndf.views.custom_app_view import custom_app_view, custom_app_new_view from gnowsys_ndf.ndf.views import rpc_resources -from gnowsys_ndf.ndf.views.esearch import get_search, get_advanced_search_form, advanced_search - +from gnowsys_ndf.ndf.views.esearch import get_search,get_advanced_search_form,advanced_search if GSTUDIO_SITE_NAME.lower() == 'clix': login_template = 'registration/login_clix.html' diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index b737931210..8beaeae4c0 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -9,10 +9,14 @@ from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger from gnowsys_ndf.ndf.forms import SearchForm from gnowsys_ndf.ndf.models import * -from gnowsys_ndf.settings import GSTUDIO_SITE_NAME, GSTUDIO_NO_OF_OBJS_PP, GSTUDIO_DOCUMENT_MAPPING +from gnowsys_ndf.settings import GSTUDIO_NO_OF_OBJS_PP from gnowsys_ndf.settings import GSTUDIO_ELASTIC_SEARCH_ALIAS, GSTUDIO_ELASTIC_SEARCH_SUPERUSER, \ GSTUDIO_ELASTIC_SEARCH_PORT, GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD +from gnowsys_ndf.local_settings import GSTUDIO_SITE_NAME, GSTUDIO_DOCUMENT_MAPPING + +GSTUDIO_SITE_NAME = GSTUDIO_SITE_NAME.lower() + try: from elasticsearch import Elasticsearch es_connection_string = 'http://' + GSTUDIO_ELASTIC_SEARCH_SUPERUSER + ':' \ @@ -74,18 +78,24 @@ def get_search(request): group = request.GET.get("group") chkl = request.GET.getlist("groupspec") + if(len(chkl)>0): group = "All" page = request.GET.get("page") + if(page is None): query_display = "" - search_select = request.GET.get('search_select') + #search_select = request.GET.get('search_select') + search_select = 0 + search_filter = request.GET.getlist('checks[]') + if(str(search_select) == '1'): append_to_url = "" select = "Author" - resultSet = search_query(author_index, select, group, query) + + resultSet = search_query("nodes", select, group, query) hits = "

    No of docs found: %d

    " % len(resultSet) med_list = get_search_results(resultSet) if(group == "All"): @@ -96,12 +106,13 @@ def get_search(request): else: append_to_url = "" if(len(search_filter) == 0 or str(search_filter[0])=="all"): + #select = "Author,image,video,text,application,audio,Page,NotMedia,Group" select = "Author,image,video,text,application,audio,Page,NotMedia,Group" append_to_url += "&checks%5B%5D=all" else: select = "" for i in range(0,len(search_filter)-1): - select += search_filter[i]+"," + select += search_filter[i]+"," append_to_url += "&checks%5B%5D="+search_filter[i] append_to_url += "&checks%5B%5D="+search_filter[len(search_filter) - 1] select += search_filter[len(search_filter) - 1] @@ -119,9 +130,9 @@ def get_search(request): #including quotes if('"' in query): - l = re.split('(")', query) # this will split the query into tokens where delemiter is " and the delimiter is itself a token + l = re.split('(")', query) # this will split the query into tokens where delemiter is " and the delimiter is itself a token qlist = list(filter(lambda a: a!='', l)) - + itr = 0 while(itrShowing results for %s : node.py(node_detail function) which renders the media # by sending mongoDB node to ->result_detailed_view.html - return render(request, 'ndf/sform.html', { - 'form': form, 'grpnam': group, 'grp': GROUP_CHOICES, 'searchop': search_filter, - 'header':res_list, 'alternate': altinfo_list ,'content': results, 'append_to_url':append_to_url }) + return render(request, 'ndf/sform.html', {'form': form, 'grpnam': group, 'grp': GROUP_CHOICES, 'searchop': search_filter, 'header':res_list, 'alternate': altinfo_list ,'content': results, 'append_to_url':append_to_url}) + return render(request, 'ndf/sform.html', {'form': form, 'grp': GROUP_CHOICES, 'searchop': []}) @@ -305,7 +316,9 @@ def get_suggestion(suggestion_body, queryInfo, doc_types, query, field): This function searches for suggestion and if suggestion is not found, it may mean that the query is already indexed and if query is also not indexed, then the flag remains 0. If we find a suggestion or if the query is indexed, the flag is set to 1. ''' - res = es.suggest(body=suggestion_body, index=GSTUDIO_SITE_NAME) #first we search for suggestion in the name field as it has the highest priority + #print GSTUDIO_SITE_NAME + res = es.suggest(body=suggestion_body, index="nodes") #first we search for suggestion in the name field as it has the highest priority + #print(res) if(len(res['suggest'][0]['options'])>0): #if we get a suggestion means the phrase doesnt exist in the index for sugitem in res['suggest'][0]['options']: if sugitem['collate_match'] == True: #we find the suggestion with collate_match = True @@ -316,7 +329,7 @@ def get_suggestion(suggestion_body, queryInfo, doc_types, query, field): break else: #should slop be included in the search part here? query_body = {"query":{"match_phrase":{field: query,}}} - if(es.search(index=GSTUDIO_SITE_NAME, doc_type=doc_types, body=query_body)['hits']['total']>0): + if(es.search(index="nodes", doc_type=doc_types, body=query_body)['hits']['total']>0): queryInfo[0] = 1 #set queryNameInfo[0] = 1 when we found a suggestion or we found a hit in the indexed data queryInfo[2] = query @@ -360,7 +373,9 @@ def search_query(index_name, select, group, query): siz = 100 if(index_name == author_index): try: + doctype = author_map[str(query)] + except: return [] else: @@ -372,20 +387,21 @@ def search_query(index_name, select, group, query): "size": siz } - elif(index_name == GSTUDIO_SITE_NAME): + elif(index_name == "nodes"): doctype = select body = query - elif(index_name == gsystemtype_index): - body = query - doctype = select - + #elif(index_name == gsystemtype_index): + #body = query + #doctype = select + resultSet = [] temp = [] i = 0 while(True): body['from'] = i + print(doctype) res = es.search(index=index_name, doc_type=doctype, body=body) l = len(res["hits"]["hits"]) if(l==0): @@ -397,8 +413,8 @@ def search_query(index_name, select, group, query): temp = resources_in_group(res,group) resultSet.extend(temp) if l < siz: - break - i+=siz + break + i+=siz return resultSet @@ -428,7 +444,7 @@ def advanced_search(request): node_type = request.GET.get("node_type") arr_attributes = json.loads(request.GET["arr_attributes"]) arr_relations = json.loads(request.GET["arr_relations"]) - + print(node_type) query_body = "" if(len(arr_attributes.keys())>0): query_body = '{ "query": {"bool": { "must": [' diff --git a/gnowsys-ndf/gnowsys_ndf/req_body.json b/gnowsys-ndf/gnowsys_ndf/req_body.json index 3fb2933fe9..399d6cab86 100644 --- a/gnowsys-ndf/gnowsys_ndf/req_body.json +++ b/gnowsys-ndf/gnowsys_ndf/req_body.json @@ -463,4 +463,4 @@ } } } -} \ No newline at end of file +} diff --git a/gnowsys-ndf/gnowsys_ndf/settings.py b/gnowsys-ndf/gnowsys_ndf/settings.py index fa8201e3c0..b0b9db2899 100755 --- a/gnowsys-ndf/gnowsys_ndf/settings.py +++ b/gnowsys-ndf/gnowsys_ndf/settings.py @@ -1035,15 +1035,15 @@ # --- End of Institute ID, name configs # Elastic Search -GSTUDIO_DOCUMENT_MAPPING = '' -GSTUDIO_ELASTIC_SEARCH = False +GSTUDIO_DOCUMENT_MAPPING = '/data' +GSTUDIO_ELASTIC_SEARCH = True GSTUDIO_ELASTIC_SEARCH_ALIAS = 'gsearch' -GSTUDIO_ELASTIC_SEARCH_SUPERUSER = 'elsearch' -GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD = 'changeit' +GSTUDIO_ELASTIC_SEARCH_SUPERUSER = 'elastic' +GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD = 'changeme' GSTUDIO_ELASTIC_SEARCH_PORT = '9200' # --- End of Elastic Search - +GSTUDIO_ELASTIC_SEARCH_PASSWORD = "gelastic@412" # # textb # import warnings # warnings.filterwarnings( From 981283b9ab05e3f6f86dd785b945c2e333e99868 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Tue, 23 Jan 2018 14:42:40 +0530 Subject: [PATCH 272/766] Calendar backend updated --- .../static/ndf/css/themes/clix/clix2017.css | 1257 ++++----- .../ndf/static/ndf/css/themes/clix/styles.css | 2477 ++++++----------- .../ndf/css/themes/metastudio/styles.css | 2168 +++++---------- .../static/ndf/css/themes/nroer/styles.css | 2168 +++++---------- .../ndf/static/ndf/css/themes/tiss/styles.css | 2168 +++++---------- .../ndf/static/ndf/scss/_app_styles.scss | 1025 ++----- .../ndf/static/ndf/scss/_clix2017.scss | 238 +- .../ndf/static/ndf/scss/_clix_styles.scss | 3 +- .../ndf/templates/ndf/activity_player.html | 9 +- .../ndf/templates/ndf/add_asset.html | 11 +- .../gnowsys_ndf/ndf/templates/ndf/assets.html | 4 +- .../ndf/templates/ndf/card_group.html | 6 +- .../ndf/templates/ndf/course_about.html | 86 +- .../gnowsys_ndf/ndf/templates/ndf/gbase.html | 1 + .../gnowsys_ndf/ndf/templates/ndf/gevent.html | 127 +- .../ndf/templates/ndf/gtask_create_edit.html | 68 +- .../ndf/templates/ndf/gtask_list_view.html | 5 +- .../gnowsys_ndf/ndf/templates/ndf/header.html | 6 + .../ndf/templates/ndf/header_clix.html | 3 +- .../ndf/templates/ndf/horizontal_card.html | 10 +- .../gnowsys_ndf/ndf/templates/ndf/lms.html | 77 +- .../ndf/templates/ndf/lms_dashboard.html | 69 +- .../ndf/templates/ndf/module_detail.html | 16 +- .../ndf/templates/ndf/repository.html | 7 +- .../templates/ndf/user_course_analytics.html | 178 +- .../gnowsys_ndf/ndf/templatetags/ndf_tags.py | 11 +- gnowsys-ndf/gnowsys_ndf/ndf/urls/group.py | 1 + .../gnowsys_ndf/ndf/views/ajax_views.py | 1 + gnowsys-ndf/gnowsys_ndf/ndf/views/event.py | 43 +- gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py | 40 +- gnowsys-ndf/gnowsys_ndf/ndf/views/group.py | 2 +- gnowsys-ndf/gnowsys_ndf/ndf/views/gtask.py | 47 +- gnowsys-ndf/gnowsys_ndf/ndf/views/module.py | 8 +- 33 files changed, 4553 insertions(+), 7787 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css index f40627d133..60d8e5e382 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css @@ -4610,33 +4610,34 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /* line 4852, ../../../scss/_clix2017.scss */ .module_card .card_title { display: block; - font-size: 32px; + width: 230px; font-weight: 600; text-align: center; margin: 0px auto; letter-spacing: 1px; + font-size: 24px; } -/* line 4862, ../../../scss/_clix2017.scss */ +/* line 4863, ../../../scss/_clix2017.scss */ .module_card.animated_card .card_banner { border-radius: 8px; } -/* line 4865, ../../../scss/_clix2017.scss */ +/* line 4866, ../../../scss/_clix2017.scss */ .module_card.animated_card:hover .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 4870, ../../../scss/_clix2017.scss */ +/* line 4871, ../../../scss/_clix2017.scss */ .module_card.animated_card.isOpen .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 4874, ../../../scss/_clix2017.scss */ +/* line 4875, ../../../scss/_clix2017.scss */ .module_card.animated_card:hover .card_summary { left: 30px; } -/* line 4877, ../../../scss/_clix2017.scss */ +/* line 4878, ../../../scss/_clix2017.scss */ .module_card.animated_card .card_summary { left: 5px; } -/* line 4881, ../../../scss/_clix2017.scss */ +/* line 4882, ../../../scss/_clix2017.scss */ .module_card .card_summary { width: 290px; padding: 0px 15px; @@ -4652,35 +4653,35 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /* Safari */ transition-property: left; } -/* line 4895, ../../../scss/_clix2017.scss */ +/* line 4896, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_label { font-weight: 500; font-size: 12.5px; letter-spacing: 1px; color: black; } -/* line 4901, ../../../scss/_clix2017.scss */ +/* line 4902, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section { margin: 5px 0px; padding: 5px 0px; } -/* line 4905, ../../../scss/_clix2017.scss */ +/* line 4906, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section:not(:last-child) { border-bottom: 1px solid #ccc; } -/* line 4908, ../../../scss/_clix2017.scss */ +/* line 4909, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section p { margin-bottom: 7px; font-size: 12.5px; } -/* line 4912, ../../../scss/_clix2017.scss */ +/* line 4913, ../../../scss/_clix2017.scss */ .module_card .card_summary .card_section .ellipsis { width: 245px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -/* line 4920, ../../../scss/_clix2017.scss */ +/* line 4921, ../../../scss/_clix2017.scss */ .module_card .card_summary .module_brief { display: block; /* Fallback for non-webkit */ @@ -4697,14 +4698,14 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: black; } -/* line 4942, ../../../scss/_clix2017.scss */ +/* line 4943, ../../../scss/_clix2017.scss */ .lms_page .lms_banner { width: 100%; height: 150px; background-size: 100% 100%; position: relative; } -/* line 4950, ../../../scss/_clix2017.scss */ +/* line 4951, ../../../scss/_clix2017.scss */ .lms_page .lms_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -4717,27 +4718,27 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { bottom: 0; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 4963, ../../../scss/_clix2017.scss */ +/* line 4964, ../../../scss/_clix2017.scss */ .lms_page .lms_banner:before a { cursor: pointer; } -/* line 4968, ../../../scss/_clix2017.scss */ +/* line 4969, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .div-height { height: 150px !important; background-size: 100% 100%; position: absolute !important; } -/* line 4976, ../../../scss/_clix2017.scss */ +/* line 4977, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .enroll_unit > a { cursor: pointer; } -/* line 4980, ../../../scss/_clix2017.scss */ +/* line 4981, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .lms_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 4986, ../../../scss/_clix2017.scss */ +/* line 4987, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .lms_heading .unit_name { font-size: 36px; font-family: OpenSans-Semibold; @@ -4746,19 +4747,19 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-left: 40px; border-radius: 8px 0px 0px 8px; transition: border-radius .2s; - text-shadow: 3px 2px #164a7b; + text-shadow: -1px -1px 8px #000, 1px -1px 8px #000, -1px 1px 8px #000, 1px 1px 0 #000; } -/* line 4997, ../../../scss/_clix2017.scss */ +/* line 4998, ../../../scss/_clix2017.scss */ .lms_page .lms_banner .lms_heading .right-margin { margin-right: 46px; } -/* line 5006, ../../../scss/_clix2017.scss */ +/* line 5007, ../../../scss/_clix2017.scss */ .border-bottom-lms-header { border-bottom: 1px solid #00000029; } -/* line 5011, ../../../scss/_clix2017.scss */ +/* line 5012, ../../../scss/_clix2017.scss */ .lms_secondary_header { width: 100%; position: relative; @@ -4766,11 +4767,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 5017, ../../../scss/_clix2017.scss */ +/* line 5018, ../../../scss/_clix2017.scss */ .lms_secondary_header .course_actions { margin-top: 8px; } -/* line 5020, ../../../scss/_clix2017.scss */ +/* line 5021, ../../../scss/_clix2017.scss */ .lms_secondary_header .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -4782,11 +4783,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { opacity: 0.8; } @media screen and (min-width: 980px) and (max-width: 1000px) { - /* line 5034, ../../../scss/_clix2017.scss */ + /* line 5035, ../../../scss/_clix2017.scss */ .lms_secondary_header .course_actions .course_actions { margin-top: 8px; } - /* line 5037, ../../../scss/_clix2017.scss */ + /* line 5038, ../../../scss/_clix2017.scss */ .lms_secondary_header .course_actions .course_actions > span { margin-left: 50px; background: #2e3f51; @@ -4800,14 +4801,19 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { } } -/* line 5059, ../../../scss/_clix2017.scss */ +/* line 5060, ../../../scss/_clix2017.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; display: inline; width: 50%; + /* use :target to look for a link to the overlay then we find are mask */ + /* Tools page css listing*/ + /* User Dashboard Implementation */ + /* ---------------------- */ + /* tasks new UI */ } -/* line 5064, ../../../scss/_clix2017.scss */ +/* line 5065, ../../../scss/_clix2017.scss */ ul.nav_menu_1 > li { display: inline-block; } @@ -4824,20 +4830,19 @@ ul.nav_menu_1 > li .course_actions > span { opacity: 0.8; margin-top: 100px; } - -/* line 5087, ../../../scss/_clix2017.scss */ -ul.authoring-tab { - background-color: #164a7b; +/* line 5085, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 ul.authoring-tab { margin-bottom: 0px; display: inline; width: 50%; } -/* line 5092, ../../../scss/_clix2017.scss */ -ul.authoring-tab > li { +/* line 5089, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 ul.authoring-tab > li { display: inline-block; + background-color: #164a7b; } -/* line 5095, ../../../scss/_clix2017.scss */ -ul.authoring-tab > li > a { +/* line 5092, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 ul.authoring-tab > li > a { list-style-type: none; margin-right: -4px; background-color: #164a7b; @@ -4849,33 +4854,31 @@ ul.authoring-tab > li > a { border-bottom: 3px solid transparent; color: #ffffff !important; } -/* line 5106, ../../../scss/_clix2017.scss */ -ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { +/* line 5103, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 ul.authoring-tab > li > a.selected, ul.nav_menu_1 ul.authoring-tab > li > a:hover { border-bottom: 3px solid #a2238d; } - -/* line 5117, ../../../scss/_clix2017.scss */ -.course-content { +/* line 5112, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 5125, ../../../scss/_clix2017.scss */ -.course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { +/* line 5120, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 5128, ../../../scss/_clix2017.scss */ -.course-content ul.jqtree-tree .course-tree-node > div { +/* line 5123, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 5130, ../../../scss/_clix2017.scss */ -.course-content ul.jqtree-tree .course-tree-node > div a { +/* line 5125, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } - -/* line 5138, ../../../scss/_clix2017.scss */ -.notifications_listing { +/* line 5133, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_listing { max-width: 1176px !important; margin: 0 auto !important; display: -moz-box !important; @@ -4892,8 +4895,8 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background: #fff; box-shadow: 0px 2px 6px #000; } -/* line 5155, ../../../scss/_clix2017.scss */ -.notifications_listing .notifications_content { +/* line 5150, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_listing .notifications_content { display: -moz-box !important; display: -ms-flexbox !important; display: -webkit-box !important; @@ -4913,12 +4916,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -ms-flex-pack: justify !important; -webkit-box-pack: justify !important; } -/* line 5174, ../../../scss/_clix2017.scss */ -.notifications_listing .notifications_content:hover { +/* line 5169, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_listing .notifications_content:hover { background: #F0F1F2 !important; } -/* line 5177, ../../../scss/_clix2017.scss */ -.notifications_listing .notifications_content .notifications_content_left { +/* line 5172, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_listing .notifications_content .notifications_content_left { display: -moz-box !important; display: -ms-flexbox !important; display: -webkit-box !important; @@ -4930,8 +4933,8 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -ms-flex-align: center !important; -webkit-box-align: center !important; } -/* line 5188, ../../../scss/_clix2017.scss */ -.notifications_listing .notifications_content .notifications_content_left .notifications_content_details { +/* line 5183, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_listing .notifications_content .notifications_content_left .notifications_content_details { display: -moz-box !important; display: -ms-flexbox !important; display: -webkit-box !important; @@ -4952,14 +4955,14 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { word-wrap: break-word !important; text-overflow: ellipsis !important; } -/* line 5208, ../../../scss/_clix2017.scss */ -.notifications_listing .notifications_content .notifications_content_left .notifications_content_details .hyperlink-user { +/* line 5203, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_listing .notifications_content .notifications_content_left .notifications_content_details .hyperlink-user { border: 2px solid #b9b9b9; height: 50px; width: 50px; } -/* line 5213, ../../../scss/_clix2017.scss */ -.notifications_listing .notifications_content .notifications_content_left .notifications_content_details .hyperlink-style { +/* line 5208, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_listing .notifications_content .notifications_content_left .notifications_content_details .hyperlink-style { text-decoration: none !important; font-family: inherit !important; font-size: 12px !important; @@ -4970,8 +4973,8 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { max-height: 50px !important; word-wrap: break-word !important; } -/* line 5224, ../../../scss/_clix2017.scss */ -.notifications_listing .notifications_content .notifications_content_left .notifications_content_details .hyperlink-info { +/* line 5219, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_listing .notifications_content .notifications_content_left .notifications_content_details .hyperlink-info { text-decoration: none !important; font-family: inherit !important; font-size: 15px !important; @@ -4979,9 +4982,8 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { color: rgba(0, 0, 0, 0.56) !important; margin-top: 4px !important; } - -/* line 5239, ../../../scss/_clix2017.scss */ -.analytics_listing { +/* line 5234, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .analytics_listing { max-width: 1176px !important; margin: 0 auto !important; display: -moz-box !important; @@ -4998,8 +5000,8 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { background: #fff; box-shadow: 0px 2px 6px #000; } -/* line 5256, ../../../scss/_clix2017.scss */ -.analytics_listing .analytics_content { +/* line 5251, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .analytics_listing .analytics_content { display: -moz-box !important; display: -ms-flexbox !important; display: -webkit-box !important; @@ -5019,12 +5021,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -ms-flex-pack: justify !important; -webkit-box-pack: justify !important; } -/* line 5275, ../../../scss/_clix2017.scss */ -.analytics_listing .analytics_content:hover { +/* line 5270, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .analytics_listing .analytics_content:hover { background: #F0F1F2 !important; } -/* line 5278, ../../../scss/_clix2017.scss */ -.analytics_listing .analytics_content .analytics_content_left { +/* line 5273, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left { display: -moz-box !important; display: -ms-flexbox !important; display: -webkit-box !important; @@ -5036,8 +5038,8 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -ms-flex-align: center !important; -webkit-box-align: center !important; } -/* line 5289, ../../../scss/_clix2017.scss */ -.analytics_listing .analytics_content .analytics_content_left .analytics_content_details { +/* line 5284, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left .analytics_content_details { display: -moz-box !important; display: -ms-flexbox !important; display: -webkit-box !important; @@ -5058,14 +5060,14 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { word-wrap: break-word !important; text-overflow: ellipsis !important; } -/* line 5309, ../../../scss/_clix2017.scss */ -.analytics_listing .analytics_content .analytics_content_left .analytics_content_details .hyperlink-user { +/* line 5304, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left .analytics_content_details .hyperlink-user { border: 2px solid #b9b9b9; height: 50px; width: 50px; } -/* line 5314, ../../../scss/_clix2017.scss */ -.analytics_listing .analytics_content .analytics_content_left .analytics_content_details .hyperlink-style { +/* line 5309, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left .analytics_content_details .hyperlink-style { text-decoration: none !important; font-family: inherit !important; font-size: 12px !important; @@ -5076,8 +5078,8 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { max-height: 50px !important; word-wrap: break-word !important; } -/* line 5325, ../../../scss/_clix2017.scss */ -.analytics_listing .analytics_content .analytics_content_left .analytics_content_details .hyperlink-info { +/* line 5320, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .analytics_listing .analytics_content .analytics_content_left .analytics_content_details .hyperlink-info { text-decoration: none !important; font-family: inherit !important; font-size: 15px !important; @@ -5085,9 +5087,8 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { color: rgba(0, 0, 0, 0.56) !important; margin-top: 4px !important; } - -/* line 5341, ../../../scss/_clix2017.scss */ -.lms_secondary_header { +/* line 5336, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lms_secondary_header { width: 100%; position: relative; color: #fff; @@ -5095,10 +5096,9 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-bottom: 1px solid rgba(0, 0, 0, 0.25); margin-top: 150px; } - @media screen and (max-width: 480px) { - /* line 5351, ../../../scss/_clix2017.scss */ - .lms_secondary_header { + /* line 5346, ../../../scss/_clix2017.scss */ + ul.nav_menu_1 .lms_secondary_header { width: 100%; position: relative; color: #fff; @@ -5110,8 +5110,8 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } } @media screen and (max-width: 640px) { - /* line 5363, ../../../scss/_clix2017.scss */ - .lms_secondary_header { + /* line 5358, ../../../scss/_clix2017.scss */ + ul.nav_menu_1 .lms_secondary_header { width: 100%; position: relative; color: #fff; @@ -5123,8 +5123,8 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } } @media screen and (max-width: 800px) { - /* line 5375, ../../../scss/_clix2017.scss */ - .lms_secondary_header { + /* line 5370, ../../../scss/_clix2017.scss */ + ul.nav_menu_1 .lms_secondary_header { width: 100%; position: relative; color: #fff; @@ -5135,14 +5135,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.8px; } } -/* line 5388, ../../../scss/_clix2017.scss */ -.topnav { +/* line 5383, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .topnav { overflow: hidden; background-color: #fff; } - -/* line 5393, ../../../scss/_clix2017.scss */ -.topnav a { +/* line 5388, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .topnav a { float: left; display: block; color: #ce7869; @@ -5152,131 +5151,97 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-size: 18px; letter-spacing: 0.8px; } - -/* line 5404, ../../../scss/_clix2017.scss */ -.topnav a:hover { +/* line 5399, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .topnav a:hover { border-bottom: 3px solid #ffc14e; color: #ce7869; } - -/* line 5408, ../../../scss/_clix2017.scss */ -.selected { +/* line 5403, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .selected { border-bottom: 3px solid #ffc14e; } - -/* line 5412, ../../../scss/_clix2017.scss */ -.topnav .icon { +/* line 5407, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .topnav .icon { display: none; } - @media screen and (max-width: 600px) { - /* line 5417, ../../../scss/_clix2017.scss */ - .topnav a:not(:first-child) { + /* line 5412, ../../../scss/_clix2017.scss */ + ul.nav_menu_1 .topnav a:not(:first-child) { display: none; } - - /* line 5418, ../../../scss/_clix2017.scss */ - .topnav a.icon { + /* line 5413, ../../../scss/_clix2017.scss */ + ul.nav_menu_1 .topnav a.icon { float: right; display: block; } } @media screen and (max-width: 600px) { - /* line 5425, ../../../scss/_clix2017.scss */ - .topnav.responsive { + /* line 5420, ../../../scss/_clix2017.scss */ + ul.nav_menu_1 .topnav.responsive { position: relative; } - - /* line 5426, ../../../scss/_clix2017.scss */ - .topnav.responsive .icon { + /* line 5421, ../../../scss/_clix2017.scss */ + ul.nav_menu_1 .topnav.responsive .icon { position: absolute; right: 0; top: 0; } - - /* line 5431, ../../../scss/_clix2017.scss */ - .topnav.responsive a { + /* line 5426, ../../../scss/_clix2017.scss */ + ul.nav_menu_1 .topnav.responsive a { float: none; display: block; text-align: left; } } -/* line 5442, ../../../scss/_clix2017.scss */ -ul.nav_menu_1 { - margin-bottom: 0px; - background-color: #fff; -} -/* line 5445, ../../../scss/_clix2017.scss */ -ul.nav_menu_1 > li { - display: inline-block; -} -/* line 5448, ../../../scss/_clix2017.scss */ -ul.nav_menu_1 > li > a { - list-style-type: none; - display: inline-block; - padding: 12px 12px 9px; - color: #ce7869; - cursor: pointer; - font-size: 18px; - letter-spacing: 0.8px; - border-bottom: 3px solid transparent; -} -/* line 5459, ../../../scss/_clix2017.scss */ -ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { - border-bottom: 3px solid #ffc14e; -} - -/* line 5467, ../../../scss/_clix2017.scss */ -.course-content { +/* line 5434, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 5475, ../../../scss/_clix2017.scss */ -.course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { +/* line 5442, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 5478, ../../../scss/_clix2017.scss */ -.course-content ul.jqtree-tree .course-tree-node > div { +/* line 5445, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 5480, ../../../scss/_clix2017.scss */ -.course-content ul.jqtree-tree .course-tree-node > div a { +/* line 5447, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 5487, ../../../scss/_clix2017.scss */ -.course-content .course-unit-name { +/* line 5454, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content .course-unit-name { padding-left: 20px; } -/* line 5489, ../../../scss/_clix2017.scss */ -.course-content .course-unit-name:not(:last-child) { +/* line 5456, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 5494, ../../../scss/_clix2017.scss */ -.course-content .course-unit-name > div .jqtree-title { +/* line 5461, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 5502, ../../../scss/_clix2017.scss */ -.course-content .course-activity-group > div .jqtree-title { +/* line 5469, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5508, ../../../scss/_clix2017.scss */ -.course-content .course-activity-name > div .jqtree-title { +/* line 5475, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } - -/* line 5515, ../../../scss/_clix2017.scss */ -.listing-row { +/* line 5482, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .listing-row { margin-top: 10px !important; } - -/* line 5519, ../../../scss/_clix2017.scss */ -.raw_material_asset { +/* line 5486, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .raw_material_asset { width: auto; top: -0.50em; position: absolute; @@ -5291,9 +5256,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-color: #eefaff; letter-spacing: 0.3px; } - -/* line 5535, ../../../scss/_clix2017.scss */ -.status-completed { +/* line 5502, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .status-completed { width: auto; top: -1.15em; position: absolute; @@ -5308,9 +5272,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-color: #008000; letter-spacing: 0.4px; } - -/* line 5551, ../../../scss/_clix2017.scss */ -.status-in-progress { +/* line 5518, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .status-in-progress { width: auto; top: -1.15em; position: absolute; @@ -5325,9 +5288,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-color: #ffc14e; letter-spacing: 0.4px; } - -/* line 5568, ../../../scss/_clix2017.scss */ -.status-upcoming { +/* line 5535, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .status-upcoming { width: auto; top: -1.15em; position: absolute; @@ -5342,9 +5304,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-color: #74b3dc; letter-spacing: 0.4px; } - -/* line 5585, ../../../scss/_clix2017.scss */ -.status-draft { +/* line 5552, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .status-draft { width: auto; top: -1.15em; position: absolute; @@ -5359,93 +5320,100 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-color: grey; letter-spacing: 0.4px; } - -/* line 5603, ../../../scss/_clix2017.scss */ -.lesson-dropdown ul { +/* line 5569, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #000000b8; + letter-spacing: 0.4px; +} +/* line 5586, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lesson-dropdown ul { display: none; } - -/* line 5607, ../../../scss/_clix2017.scss */ -.lesson-dropdown:hover ul { +/* line 5590, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lesson-dropdown:hover ul { display: block; } - -/* line 5611, ../../../scss/_clix2017.scss */ -.lesson_name_in_export { +/* line 5594, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lesson_name_in_export { list-style: none; } -/* line 5613, ../../../scss/_clix2017.scss */ -.lesson_name_in_export:hover { +/* line 5596, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lesson_name_in_export:hover { border-left: 2.5px solid #ce7869; } - -/* line 5618, ../../../scss/_clix2017.scss */ -.buddy_margin { +/* line 5601, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } - -/* line 5624, ../../../scss/_clix2017.scss */ -.lms_explore_head { +/* line 5607, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lc { width: 100%; height: 45px; background-color: #fff; color: #164A7B; margin-top: -30px; } -/* line 5630, ../../../scss/_clix2017.scss */ -.lms_explore_head > p { +/* line 5613, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lc > p { margin-left: 81px; padding: 12px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 5636, ../../../scss/_clix2017.scss */ -.lms_explore_head > a { +/* line 5619, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lc > a { padding: 12px 85px 3px 0px; } - -/* line 5640, ../../../scss/_clix2017.scss */ -.lms_explore_head_unit { +/* line 5623, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lms_explore_head_unit { width: 100%; height: 50px; background-color: #fff; color: #164A7B; } -/* line 5645, ../../../scss/_clix2017.scss */ -.lms_explore_head_unit > p { +/* line 5628, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lms_explore_head_unit > p { margin-left: 81px; padding: 0px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 5651, ../../../scss/_clix2017.scss */ -.lms_explore_head_unit > a { +/* line 5634, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lms_explore_head_unit > a { padding: 0px 85px 3px 0px; } - -/* line 5656, ../../../scss/_clix2017.scss */ -.lms_explore_back { +/* line 5639, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lms_explore_back { background-color: #fff; } - -/* line 5660, ../../../scss/_clix2017.scss */ -.lms_explore_back_unit { +/* line 5643, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lms_explore_back_unit { background-color: #fff; margin-top: -23.3px; } - -/* line 5668, ../../../scss/_clix2017.scss */ -.mydesk_page .page_banner { +/* line 5651, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_banner { width: 100%; height: 200px; background-image: url("/static/ndf/images/mydesk_banner.png"); background-size: 100% 100%; position: relative; } -/* line 5675, ../../../scss/_clix2017.scss */ -.mydesk_page .page_banner:before { +/* line 5658, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); opacity: .5; @@ -5458,14 +5426,14 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 5689, ../../../scss/_clix2017.scss */ -.mydesk_page .page_banner .banner_profile { +/* line 5672, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 5694, ../../../scss/_clix2017.scss */ -.mydesk_page .page_banner .banner_profile .buddy_logo { +/* line 5677, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; height: 100px; @@ -5473,54 +5441,51 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { overflow: hidden; background-color: #fff; } -/* line 5702, ../../../scss/_clix2017.scss */ -.mydesk_page .page_banner .banner_profile .buddy_logo svg { +/* line 5685, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 5707, ../../../scss/_clix2017.scss */ -.mydesk_page .page_banner .banner_profile .buddy_logo svg path { +/* line 5690, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 5712, ../../../scss/_clix2017.scss */ -.mydesk_page .page_banner .banner_profile .banner_heading { +/* line 5695, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 5717, ../../../scss/_clix2017.scss */ -.mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { +/* line 5700, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 5725, ../../../scss/_clix2017.scss */ -.mydesk_page .page_menu { +/* line 5708, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 5729, ../../../scss/_clix2017.scss */ -.mydesk_page .page_menu li > a { +/* line 5712, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } - -/* line 5739, ../../../scss/_clix2017.scss */ -.input_links { +/* line 5722, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .input_links { margin-left: 10px; } -/* line 5741, ../../../scss/_clix2017.scss */ -.input_links a { +/* line 5724, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .input_links a { margin-right: 35px; margin-top: 5px; } - -/* line 5747, ../../../scss/_clix2017.scss */ -#course-notification +/* line 5730, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #course-notification #status { width: 100% !important; } - -/* line 5753, ../../../scss/_clix2017.scss */ -.add-note-btn { +/* line 5736, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .add-note-btn { padding: 3px 11px; border-radius: 100%; float: right; @@ -5530,9 +5495,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { font-size: 23px; color: #6153AE; } - -/* line 5764, ../../../scss/_clix2017.scss */ -.bef-note-btn { +/* line 5747, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .bef-note-btn { padding: 3px 11px; border-radius: 100%; float: right; @@ -5542,9 +5506,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { font-size: 23px; color: #6153AE; } - -/* line 5775, ../../../scss/_clix2017.scss */ -.edit-note-btn { +/* line 5758, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .edit-note-btn { float: right; border: 1px solid #CFCFCF; padding: 1px 16px; @@ -5553,13 +5516,12 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-color: #f7f7f7; width: 85px; } -/* line 5783, ../../../scss/_clix2017.scss */ -.edit-note-btn i { +/* line 5766, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .edit-note-btn i { margin-right: 5px; } - -/* line 5787, ../../../scss/_clix2017.scss */ -.delete-note-btn { +/* line 5770, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .delete-note-btn { float: right; border: 1px solid #CFCFCF; padding: 1px 6px; @@ -5569,35 +5531,30 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-color: #f7f7f7; width: 85px; } -/* line 5796, ../../../scss/_clix2017.scss */ -.delete-note-btn i { +/* line 5779, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .delete-note-btn i { margin-right: 5px; } - -/* line 5801, ../../../scss/_clix2017.scss */ -.jqtree-title > .fa-check { +/* line 5784, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .jqtree-title > .fa-check { color: green; } - -/* line 5804, ../../../scss/_clix2017.scss */ -.jqtree-title > .fa-clock-o { +/* line 5787, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .jqtree-title > .fa-clock-o { color: orange; } - -/* line 5807, ../../../scss/_clix2017.scss */ -.course-status-icon { +/* line 5790, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .course-status-icon { font-size: 20px; margin-right: 5px; } - -/* line 5811, ../../../scss/_clix2017.scss */ -.img-height { +/* line 5794, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .img-height { height: 150px; width: 1351px; } - -/* line 5818, ../../../scss/_clix2017.scss */ -#overlay { +/* line 5801, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #overlay { /* we set all of the properties for are overlay */ height: 116px; width: 1024px; @@ -5616,9 +5573,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { -o-border-radius: 10px; border-radius: 10px; } - -/* line 5838, ../../../scss/_clix2017.scss */ -#mask { +/* line 5821, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #mask { /* create are mask */ position: fixed; top: 0; @@ -5629,16 +5585,13 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { height: 100%; display: none; } - -/* use :target to look for a link to the overlay then we find are mask */ -/* line 5849, ../../../scss/_clix2017.scss */ -#overlay:target, #overlay:target + #mask { +/* line 5832, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #overlay:target, ul.nav_menu_1 #overlay:target + #mask { display: block; opacity: 1; } - -/* line 5853, ../../../scss/_clix2017.scss */ -.close { +/* line 5836, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .close { /* to make a nice looking pure CSS3 close button */ display: block; position: absolute; @@ -5658,9 +5611,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { -o-border-radius: 40px; border-radius: 38px; } - -/* line 5872, ../../../scss/_clix2017.scss */ -#open-overlay { +/* line 5855, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #open-overlay { /* open the overlay */ padding: 0px 0px; color: gray; @@ -5671,9 +5623,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { -moz-border-radius: 10px; -o-border-radius: 10px; } - -/* line 5883, ../../../scss/_clix2017.scss */ -.enroll-btn { +/* line 5866, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .enroll-btn { width: 90px; opacity: 1; background-color: rgba(0, 0, 0, 0.1); @@ -5687,46 +5638,38 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border: 1px solid #c1b4b5; background-color: #4b4852; } - -/* line 5903, ../../../scss/_clix2017.scss */ -.img-style-land { +/* line 5886, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .img-style-land { margin-top: 28px; margin-left: -56px; } - -/* line 5908, ../../../scss/_clix2017.scss */ -.top-margin-translation { +/* line 5891, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .top-margin-translation { margin-top: 0px; } - -/* line 5912, ../../../scss/_clix2017.scss */ -.activity-editor-header-top { +/* line 5895, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .activity-editor-header-top { margin-top: -50px; } - -/* line 5916, ../../../scss/_clix2017.scss */ -.add-lesson-top-margin { +/* line 5899, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .add-lesson-top-margin { margin-top: 5px; } - -/* line 5919, ../../../scss/_clix2017.scss */ -.translation-detail-top-margin { +/* line 5902, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .translation-detail-top-margin { margin-top: 0px; } - -/* line 5922, ../../../scss/_clix2017.scss */ -.outer { +/* line 5905, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .outer { width: 100%; text-align: center; } - -/* line 5927, ../../../scss/_clix2017.scss */ -.inner { +/* line 5910, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .inner { display: inline-block !important; } - -/* line 5932, ../../../scss/_clix2017.scss */ -.transcript-toggler { +/* line 5915, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .transcript-toggler { display: block; width: 155px !important; height: 30px; @@ -5740,35 +5683,29 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { padding-top: 7px !important; text-transform: uppercase; } - -/* line 5948, ../../../scss/_clix2017.scss */ -.double-buttons { +/* line 5931, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .double-buttons { margin-top: 100px; margin-left: 729px; } - -/* line 5953, ../../../scss/_clix2017.scss */ -.lesson-form-name { +/* line 5936, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lesson-form-name { padding-top: 10px; } - -/* line 5957, ../../../scss/_clix2017.scss */ -.lesson-form-desc { +/* line 5940, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lesson-form-desc { padding-top: 25px; } - -/* line 5961, ../../../scss/_clix2017.scss */ -.enroll_chkbox { +/* line 5944, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .enroll_chkbox { transform: scale(1.5); } - -/* line 5964, ../../../scss/_clix2017.scss */ -.enroll_all_users { +/* line 5947, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .enroll_all_users { width: 15% !important; } - -/* line 5968, ../../../scss/_clix2017.scss */ -.enrollBtn { +/* line 5951, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .enrollBtn { width: 124px !important; background: rgba(75, 72, 82, 0.8); border: 1px solid rgba(255, 255, 255, 0.7); @@ -5781,31 +5718,28 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 101px !important; margin-right: 15px; } -/* line 5981, ../../../scss/_clix2017.scss */ -.enrollBtn:hover { +/* line 5964, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .enrollBtn:hover { background: rgba(75, 72, 82, 0.8); color: #000000; } - -/* line 5987, ../../../scss/_clix2017.scss */ -.enroll-act_lbl { +/* line 5970, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .enroll-act_lbl { color: #0c2944; } - -/* line 5992, ../../../scss/_clix2017.scss */ -.wrkspace { +/* line 5975, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .wrkspace { margin-right: 80px; } - -/* line 5996, ../../../scss/_clix2017.scss */ -.status-btn { +/* line 5979, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .status-btn { background-color: #fff; margin-right: auto; padding-bottom: 0px; text-transform: none; } -/* line 6001, ../../../scss/_clix2017.scss */ -.status-btn .disabled { +/* line 5984, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .status-btn .disabled { background-color: #008cba; border-color: #007095; color: white; @@ -5813,86 +5747,77 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { opacity: 0.7; box-shadow: none; } - -/* line 6011, ../../../scss/_clix2017.scss */ -.margin-right-50 { +/* line 5994, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .margin-right-50 { margin-right: 50px; } - -/* line 6018, ../../../scss/_clix2017.scss */ -.color-btn { +/* line 6001, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .color-btn { background-color: #720f5e; width: 77px; margin-left: 17px; } -/* line 6022, ../../../scss/_clix2017.scss */ -.color-btn:hover { +/* line 6005, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .color-btn:hover { color: #720f5e; background-color: #ffffff; } - -/* line 6028, ../../../scss/_clix2017.scss */ -.mid_label { +/* line 6011, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .mid_label { margin-top: 15px; font-size: 15px; } - -/* line 6033, ../../../scss/_clix2017.scss */ -.compulsory { +/* line 6016, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .compulsory { color: red; font-size: smaller; } - -/* line 6038, ../../../scss/_clix2017.scss */ -.select-drop { +/* line 6021, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .select-drop { height: auto; } - -/* line 6042, ../../../scss/_clix2017.scss */ -.template-select { +/* line 6025, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .template-select { border: 1px solid #cccccc; border-radius: 5px; height: 38px; width: 40%; font-size: 14px; } - -/* line 6050, ../../../scss/_clix2017.scss */ -.white-text { +/* line 6033, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .white-text { color: white; } - -/* line 6055, ../../../scss/_clix2017.scss */ -.quiz-player .quiz_qtn { +/* line 6038, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .quiz-player .quiz_qtn { margin-left: 20px !important; font-size: 20px; } -/* line 6059, ../../../scss/_clix2017.scss */ -.quiz-player .question_edit { +/* line 6042, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .quiz-player .question_edit { margin-left: 20px !important; } -/* line 6063, ../../../scss/_clix2017.scss */ -.quiz-player input[type=checkbox], .quiz-player input[type=radio] { +/* line 6046, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .quiz-player input[type=checkbox], ul.nav_menu_1 .quiz-player input[type=radio] { margin-right: 10px; width: 15px; height: 15px; } -/* line 6069, ../../../scss/_clix2017.scss */ -.quiz-player .chk_ans_lbl, .quiz-player .rad_ans_lbl { +/* line 6052, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .quiz-player .chk_ans_lbl, ul.nav_menu_1 .quiz-player .rad_ans_lbl { font-size: 22px; margin-left: 5px; } -/* line 6074, ../../../scss/_clix2017.scss */ -.quiz-player .fi-check { +/* line 6057, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .quiz-player .fi-check { color: green; } -/* line 6078, ../../../scss/_clix2017.scss */ -.quiz-player .fi-x { +/* line 6061, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .quiz-player .fi-x { color: red; } - -/* line 6083, ../../../scss/_clix2017.scss */ -.hyperlink-tag { +/* line 6066, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .hyperlink-tag { cursor: pointer; cursor: pointer; /* text-align: center; */ @@ -5903,9 +5828,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { font-size: 24px; color: #164A7B; } - -/* line 6095, ../../../scss/_clix2017.scss */ -.scard { +/* line 6078, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard { background: #FFF; border: 1px solid #AAA; border-bottom: 3px solid #BBB; @@ -5916,13 +5840,13 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { height: 9rem; /*float:left;*/ } -/* line 6104, ../../../scss/_clix2017.scss */ -.scard:hover { +/* line 6087, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 6110, ../../../scss/_clix2017.scss */ -.scard .scard_header { +/* line 6093, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard .scard_header { text-align: center; position: fixed; height: 20rem; @@ -5938,9 +5862,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { font-size: 20px; font-weight: bold; } - -/* line 6127, ../../../scss/_clix2017.scss */ -.scard-content { +/* line 6110, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard-content { height: 2.7em; padding: 0.5rem; margin: 5px; @@ -5952,8 +5875,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 6138, ../../../scss/_clix2017.scss */ -.scard-content .scard-title { +/* line 6121, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; float: left; @@ -5961,9 +5884,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { display: inline-block; text-align: center; } - -/* line 6151, ../../../scss/_clix2017.scss */ -.scard-action { +/* line 6134, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard-action { height: height; font-size: 0.6em; padding: 0.5rem; @@ -5975,9 +5897,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { width: 11rem; background-color: #CCCCCC; } - -/* line 6166, ../../../scss/_clix2017.scss */ -.scard-desc { +/* line 6149, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard-desc { font-size: 0.7em; color: #333333; height: 40px; @@ -5991,9 +5912,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-color: #E6E6E6; display-inline: block; } - -/* line 6183, ../../../scss/_clix2017.scss */ -.scard-image { +/* line 6166, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard-image { padding: 0px; margin: 0px; height: 100%; @@ -6003,47 +5923,42 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { overflow: hidden; background-color: #f2f2f2; } -/* line 6192, ../../../scss/_clix2017.scss */ -.scard-image img { +/* line 6175, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard-image img { border-radius: 2px 2px 0 0; display: block; margin: 0 auto; opacity: 0.9; height: 100%; } - -/* line 6204, ../../../scss/_clix2017.scss */ -.published.scard-action { +/* line 6187, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .published.scard-action { background: #A6D9CB; } - -/* line 6208, ../../../scss/_clix2017.scss */ -.draft.scard-action { +/* line 6191, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .draft.scard-action { content: "Draft"; background: #DCDCDC; } - -/* line 6214, ../../../scss/_clix2017.scss */ -.scard_footer { +/* line 6197, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; color: gray; font-size: small; height: 2rem; } - -/* line 6222, ../../../scss/_clix2017.scss */ -.auto_width { +/* line 6205, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .auto_width { width: auto !important; } - -/* line 6226, ../../../scss/_clix2017.scss */ -.explore-settings-drop { +/* line 6209, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .explore-settings-drop { margin-left: 57%; display: inline-block; } -/* line 6229, ../../../scss/_clix2017.scss */ -.explore-settings-drop > button { +/* line 6212, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .explore-settings-drop > button { color: #164a7b; font-weight: 400; cursor: pointer; @@ -6055,56 +5970,50 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 10px; margin-left: 20px; } -/* line 6240, ../../../scss/_clix2017.scss */ -.explore-settings-drop > button:hover { +/* line 6223, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 6246, ../../../scss/_clix2017.scss */ -.explore-settings-drop a { +/* line 6229, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .explore-settings-drop a { font-size: 16px; } -/* line 6249, ../../../scss/_clix2017.scss */ -.explore-settings-drop .f-dropdown li { +/* line 6232, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; line-height: 1.125rem; margin: 0; background-color: #164A7B; } -/* line 6257, ../../../scss/_clix2017.scss */ -.explore-settings-drop .f-dropdown li a { +/* line 6240, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 6261, ../../../scss/_clix2017.scss */ -.explore-settings-drop .f-dropdown li:hover { +/* line 6244, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } - -/* line 6268, ../../../scss/_clix2017.scss */ -.attempts_count { +/* line 6251, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .attempts_count { color: #000000 !important; } - -/* line 6275, ../../../scss/_clix2017.scss */ -#course-settings-drop li a { +/* line 6258, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #course-settings-drop li a { text-align: left; } - -/* line 6283, ../../../scss/_clix2017.scss */ -#asset-settings-drop li a { +/* line 6266, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #asset-settings-drop li a { text-align: left; } - -/* line 6290, ../../../scss/_clix2017.scss */ -.button-bg { +/* line 6273, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .button-bg { background-color: #74b3dc; } - -/* Tools page css listing*/ -/* line 6297, ../../../scss/_clix2017.scss */ -.polaroid { +/* line 6280, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .polaroid { width: 330px; background-color: white; box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); @@ -6116,37 +6025,33 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { transition: all 0.3s; cursor: pointer; } - -/* line 6310, ../../../scss/_clix2017.scss */ -.polaroid:hover img { +/* line 6293, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .polaroid:hover img { -webkit-transform: scale(1.05); -moz-transform: scale(1.05); -ms-transform: scale(1.05); -o-transform: scale(1.05); transform: scale(1.05); } - -/* line 6319, ../../../scss/_clix2017.scss */ -.container { +/* line 6302, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .container { text-align: center; padding: 10px 20px; border-top: 5px solid #164a7b; margin-top: 0px; } -/* line 6325, ../../../scss/_clix2017.scss */ -.container > p { +/* line 6308, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .container > p { color: black; font-size: 16px; font-weight: 500; } - -/* line 6334, ../../../scss/_clix2017.scss */ -.tool-bg { +/* line 6317, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .tool-bg { background-color: rgba(87, 198, 250, 0.07); } - -/* line 6337, ../../../scss/_clix2017.scss */ -.purple-btn { +/* line 6320, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .purple-btn { width: inherit; text-transform: uppercase; border-radius: 5px; @@ -6155,9 +6060,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #ffffff !important; border: 2px solid #6a0054; } - -/* line 6347, ../../../scss/_clix2017.scss */ -.disable-purple-btn { +/* line 6330, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .disable-purple-btn { width: inherit; text-transform: uppercase !important; border-radius: 5px; @@ -6166,25 +6070,21 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #ffffff !important; border: 2px solid #4b4852; } - -/* line 6357, ../../../scss/_clix2017.scss */ -.user-analytics-data { +/* line 6340, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .user-analytics-data { margin: 42px 37px 37px 37px; border: 2px solid #aaaaaa; } -/* line 6360, ../../../scss/_clix2017.scss */ -.user-analytics-data .close-reveal-modal { +/* line 6343, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .user-analytics-data .close-reveal-modal { font-size: 20px; } - -/* line 6364, ../../../scss/_clix2017.scss */ -.left-space { +/* line 6347, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .left-space { margin-left: 0.5em; } - -/* User Dashboard Implementation */ -/* line 6372, ../../../scss/_clix2017.scss */ -.left_column { +/* line 6355, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .left_column { float: left; width: 625px; border-radius: 3px; @@ -6192,9 +6092,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { box-sizing: border-box; color: #444; } - -/* line 6381, ../../../scss/_clix2017.scss */ -.dashboard { +/* line 6364, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .dashboard { background: #fafafa; border: none; border-radius: 6px; @@ -6203,9 +6102,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { position: relative; box-shadow: none; } - -/* line 6391, ../../../scss/_clix2017.scss */ -.account_heading { +/* line 6374, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_heading { border-bottom: 2px solid #E5E5E5; color: #444; font-size: 24px; @@ -6214,52 +6112,51 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin: 0; padding-bottom: 28px; } - -/* line 6401, ../../../scss/_clix2017.scss */ -.account_group { +/* line 6384, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group { display: table; padding: 20px 0; width: 100%; } -/* line 6406, ../../../scss/_clix2017.scss */ -.account_group .group_label { +/* line 6389, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .group_label { font-weight: bold; display: table-cell; padding: 0 10px; vertical-align: top; width: 145px; } -/* line 6412, ../../../scss/_clix2017.scss */ -.account_group .group_label > h3 { +/* line 6395, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .group_label > h3 { font-weight: bold; margin: 0; } -/* line 6415, ../../../scss/_clix2017.scss */ -.account_group .group_label > h3 .account_subheading { +/* line 6398, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .group_label > h3 .account_subheading { font-size: 14px; line-height: 1.2; } -/* line 6421, ../../../scss/_clix2017.scss */ -.account_group .group_content { +/* line 6404, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .group_content { display: table-cell; padding: 0 10px; vertical-align: top; } -/* line 6427, ../../../scss/_clix2017.scss */ -.account_group .account { +/* line 6410, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .account { margin: 0 0 10px; display: block; position: relative; } -/* line 6433, ../../../scss/_clix2017.scss */ -.account_group .account .accordion_trigger_wrapper .accordion_label { +/* line 6416, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .account .accordion_trigger_wrapper .accordion_label { color: #444; float: left; font-size: 14px; margin: 0; } -/* line 6439, ../../../scss/_clix2017.scss */ -.account_group .account .accordion_trigger_wrapper .pencil_edit_button { +/* line 6422, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .account .accordion_trigger_wrapper .pencil_edit_button { position: absolute; top: 50%; right: -43px; @@ -6279,8 +6176,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { text-align: center; cursor: pointer; } -/* line 6461, ../../../scss/_clix2017.scss */ -.account_group .account .accordion_trigger_wrapper .accordion_content .input-setting input.text_field[type="text"] { +/* line 6444, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .account .accordion_trigger_wrapper .accordion_content .input-setting input.text_field[type="text"] { background: transparent; border: 1px solid #D9D9D9; color: #444; @@ -6292,24 +6189,22 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { width: 330px; border-radius: 2px; } -/* line 6475, ../../../scss/_clix2017.scss */ -.account_group .account .accordion_trigger_wrapper .accordion_content .password-wrapper input.password_placeholder[type="text"] { +/* line 6458, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .account .accordion_trigger_wrapper .accordion_content .password-wrapper input.password_placeholder[type="text"] { color: rgba(68, 68, 68, 0.45) !important; } -/* line 6478, ../../../scss/_clix2017.scss */ -.account_group .account .accordion_trigger_wrapper .accordion_content .password-wrapper input.password_field[type="password"] { +/* line 6461, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .account_group .account .accordion_trigger_wrapper .accordion_content .password-wrapper input.password_field[type="password"] { position: relative; z-index: 2; } - -/* ---------------------- */ -/* line 6495, ../../../scss/_clix2017.scss */ -#progressive-validation { +/* line 6478, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #progressive-validation { width: 400px; margin: 100px auto 0 auto; } -/* line 6498, ../../../scss/_clix2017.scss */ -#progressive-validation input { +/* line 6481, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #progressive-validation input { display: block; border-radius: 5px; border: none; @@ -6328,30 +6223,29 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-position: right 23px; background-repeat: no-repeat; } -/* line 6516, ../../../scss/_clix2017.scss */ -#progressive-validation input[type="submit"], #progressive-validation input[type="submit"]:valid { +/* line 6499, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #progressive-validation input[type="submit"], ul.nav_menu_1 #progressive-validation input[type="submit"]:valid { background-color: #1a3e4c; color: white; background-image: none; } -/* line 6521, ../../../scss/_clix2017.scss */ -#progressive-validation input:focus { +/* line 6504, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #progressive-validation input:focus { box-shadow: 0 0 0 1px #00aeef; opacity: 1 !important; } -/* line 6525, ../../../scss/_clix2017.scss */ -#progressive-validation input:enabled { +/* line 6508, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #progressive-validation input:enabled { opacity: .8; } -/* line 6528, ../../../scss/_clix2017.scss */ -#progressive-validation input:valid { +/* line 6511, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #progressive-validation input:valid { background-size: 46px 46px; background-position: right 0px; background-repeat: no-repeat; } - -/* line 6538, ../../../scss/_clix2017.scss */ -#analyticsFooter { +/* line 6521, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 #analyticsFooter { background-color: #e9eaed; text-align: center; font-weight: bold; @@ -6360,27 +6254,23 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-top: 1px solid #dddddd; min-width: 400px; } - -/* line 6549, ../../../scss/_clix2017.scss */ -.img-circle { +/* line 6532, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .img-circle { border-radius: 50%; border: 1px solid rgba(128, 128, 128, 0.15); } - -/* line 6555, ../../../scss/_clix2017.scss */ -.container-px { +/* line 6538, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .container-px { background-color: #fafafa; min-width: 600px; min-height: 600px; } - -/* line 6561, ../../../scss/_clix2017.scss */ -.noti { +/* line 6544, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .noti { max-width: 400px !important; } - -/* line 6564, ../../../scss/_clix2017.scss */ -.notification_body { +/* line 6547, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notification_body { max-width: 1546px !important; margin: 0 auto !important; display: -moz-box !important; @@ -6397,9 +6287,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background: #fff; box-shadow: 0px 2px 6px #000; } - -/* line 6582, ../../../scss/_clix2017.scss */ -.notifications_content { +/* line 6565, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_content { display: -moz-box !important; display: -ms-flexbox !important; display: -webkit-box !important; @@ -6418,48 +6307,46 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { -ms-flex-pack: justify !important; -webkit-box-pack: justify !important; } -/* line 6600, ../../../scss/_clix2017.scss */ -.notifications_content:hover { +/* line 6583, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_content:hover { background: #F0F1F2 !important; } -/* line 6603, ../../../scss/_clix2017.scss */ -.notifications_content .content-body { +/* line 6586, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .notifications_content .content-body { border-bottom: 1px solid #D6D8DA !important; } - -/* tasks new UI */ -/* line 6614, ../../../scss/_clix2017.scss */ -.task_sheet { +/* line 6597, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; margin: 0px auto; padding: 0px 0px; max-width: 100vw; } -/* line 6621, ../../../scss/_clix2017.scss */ -.task_sheet > .columns { +/* line 6604, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet > .columns { padding: 0px; height: 100%; } -/* line 6625, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor { +/* line 6608, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6631, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .accordion .accordion-navigation > .content, .task_sheet .task_editor .accordion dd > .content { +/* line 6614, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .accordion .accordion-navigation > .content, ul.nav_menu_1 .task_sheet .task_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6637, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor > div { +/* line 6620, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor > div { display: inline-block; vertical-align: top; } -/* line 6642, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task_tree { +/* line 6625, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree { transition: all 1s ease; -webkit-transition: all 1s ease; width: 100%; @@ -6468,26 +6355,26 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { overflow-y: auto; height: 100vh; } -/* line 6651, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task_tree .task-lessons dd { +/* line 6634, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6655, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation { +/* line 6638, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6660, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation > a:before { +/* line 6643, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6669, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title { +/* line 6652, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; font-weight: 600; @@ -6495,8 +6382,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6676, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity { +/* line 6659, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; letter-spacing: 0.5px; @@ -6504,38 +6391,38 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { position: relative; display: none; } -/* line 6685, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity i { +/* line 6668, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6690, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { +/* line 6673, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6693, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { +/* line 6676, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; display: inline-block; margin: 0px 10px; cursor: pointer; } -/* line 6703, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { +/* line 6686, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6709, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation.active > a:before { +/* line 6692, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6717, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities { +/* line 6700, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6719, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities > li { +/* line 6702, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; padding: 10px 0px 10px 30px; @@ -6543,20 +6430,20 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6726, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities > li > a { +/* line 6709, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; display: block; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6735, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .content { +/* line 6718, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task_tree .task-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6744, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task-editor-section { +/* line 6727, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section { width: 0%; display: inline-block; opacity: 0; @@ -6567,58 +6454,57 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { overflow-y: auto; background: #fff; } -/* line 6754, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task-editor-section .editor-header { +/* line 6737, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6759, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task-editor-section .editor-header .header-left { +/* line 6742, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6762, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task-editor-section .editor-header .header-left > span { +/* line 6745, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6771, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task-editor-section .editor-header .custom_dropdown { +/* line 6754, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6776, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task-editor-section .editor-tool .editor_actions { +/* line 6759, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6780, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul { +/* line 6763, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6782, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li { +/* line 6765, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6785, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li:not(:first-child) { +/* line 6768, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6791, ../../../scss/_clix2017.scss */ -.task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li span { +/* line 6774, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_sheet .task_editor .task-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; color: #999; padding: 15px 5px; cursor: pointer; } - -/* line 6807, ../../../scss/_clix2017.scss */ -.task_editor_section { +/* line 6790, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section { background: white; min-height: 100vh; margin-bottom: 10px; @@ -6627,42 +6513,42 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { width: 79%; box-shadow: 0px 0px 5px #73859f; } -/* line 6815, ../../../scss/_clix2017.scss */ -.task_editor_section #scstyle { +/* line 6798, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section #scstyle { margin-top: -10px; } -/* line 6818, ../../../scss/_clix2017.scss */ -.task_editor_section .task_editor_top { +/* line 6801, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_editor_top { border-top: 4px solid #74b3dc; width: 101.3%; margin-left: -15px; margin-top: -1px; } -/* line 6825, ../../../scss/_clix2017.scss */ -.task_editor_section .task_head { +/* line 6808, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_head { height: 65px; font-size: 22px; padding: 16px 5px 5px 57px; color: black; } -/* line 6834, ../../../scss/_clix2017.scss */ -.task_editor_section form { +/* line 6817, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section form { font-size: 17px; padding: 10px 0px 0px 10px; } -/* line 6839, ../../../scss/_clix2017.scss */ -.task_editor_section .task_ex { +/* line 6822, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_ex { border-bottom: 2px solid rgba(128, 128, 128, 0.23); } -/* line 6841, ../../../scss/_clix2017.scss */ -.task_editor_section .task_ex.active { +/* line 6824, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_ex.active { border: 2px solid #74b3dc; margin-left: -16px; width: 101.5%; margin-top: -2px; } -/* line 6850, ../../../scss/_clix2017.scss */ -.task_editor_section .task_listing { +/* line 6833, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_listing { max-width: 1176px !important; margin: 0 auto !important; display: -moz-box !important; @@ -6679,8 +6565,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background: #fff; box-shadow: 0px 2px 6px #000; } -/* line 6867, ../../../scss/_clix2017.scss */ -.task_editor_section .task_listing .task_content { +/* line 6850, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_listing .task_content { display: -moz-box !important; display: -ms-flexbox !important; display: -webkit-box !important; @@ -6700,12 +6586,12 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { -ms-flex-pack: justify !important; -webkit-box-pack: justify !important; } -/* line 6886, ../../../scss/_clix2017.scss */ -.task_editor_section .task_listing .task_content:hover { +/* line 6869, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_listing .task_content:hover { background: #F0F1F2 !important; } -/* line 6889, ../../../scss/_clix2017.scss */ -.task_editor_section .task_listing .task_content .task_content_left { +/* line 6872, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_left { display: -moz-box !important; display: -ms-flexbox !important; display: -webkit-box !important; @@ -6717,8 +6603,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { -ms-flex-align: center !important; -webkit-box-align: center !important; } -/* line 6900, ../../../scss/_clix2017.scss */ -.task_editor_section .task_listing .task_content .task_content_left .task_content_details { +/* line 6883, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_left .task_content_details { display: -moz-box !important; display: -ms-flexbox !important; display: -webkit-box !important; @@ -6736,14 +6622,14 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; } -/* line 6917, ../../../scss/_clix2017.scss */ -.task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-user { +/* line 6900, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-user { border: 2px solid #b9b9b9; height: 50px; width: 50px; } -/* line 6922, ../../../scss/_clix2017.scss */ -.task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-style { +/* line 6905, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-style { text-decoration: none !important; font-family: inherit !important; font-size: 17px !important; @@ -6755,8 +6641,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { overflow: hidden !important; text-overflow: ellipsis !important; } -/* line 6935, ../../../scss/_clix2017.scss */ -.task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-info { +/* line 6918, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_editor_section .task_listing .task_content .task_content_left .task_content_details .hyperlink-info { text-decoration: none !important; font-family: inherit !important; font-size: 15px !important; @@ -6764,24 +6650,22 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: rgba(0, 0, 0, 0.56) !important; margin-top: 4px !important; } - -/* line 6951, ../../../scss/_clix2017.scss */ -.lesson-title { +/* line 6935, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } - -/* line 6957, ../../../scss/_clix2017.scss */ -.activity-title { +/* line 6941, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; border: 2px solid rgba(128, 128, 128, 0.15); } -/* line 6964, ../../../scss/_clix2017.scss */ -.activity-title > li { +/* line 6948, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; padding: 9px 0px 9px 11px; @@ -6792,31 +6676,28 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { height: 150px; background-color: white; } -/* line 6975, ../../../scss/_clix2017.scss */ -.activity-title > li.active { +/* line 6959, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .activity-title > li.active { background: rgba(0, 140, 186, 0.42); height: 150px; margin-top: -10px; } -/* line 6981, ../../../scss/_clix2017.scss */ -.activity-title > li > a { +/* line 6965, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .activity-title > li > a { color: black; } - -/* line 6990, ../../../scss/_clix2017.scss */ -.task_page_rendered { +/* line 6974, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .task_page_rendered { margin-left: 20px; max-width: 900px; } - -/* line 6998, ../../../scss/_clix2017.scss */ -.round { +/* line 6982, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .round { border-radius: 1px; background-color: orange; } - -/* line 7004, ../../../scss/_clix2017.scss */ -.circle-normal { +/* line 6988, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .circle-normal { background: #ffc14e; -moz-border-radius: 50px; -webkit-border-radius: 50px; @@ -6824,9 +6705,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { padding: 0px 0px 0px 20px; margin-right: 5px; } - -/* line 7012, ../../../scss/_clix2017.scss */ -.circle-high { +/* line 6996, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .circle-high { background: #f04124; -moz-border-radius: 50px; -webkit-border-radius: 50px; @@ -6834,9 +6714,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { padding: 0px 0px 0px 20px; margin-right: 5px; } - -/* line 7020, ../../../scss/_clix2017.scss */ -.circle-low { +/* line 7004, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .circle-low { background: #008cba; -moz-border-radius: 50px; -webkit-border-radius: 50px; @@ -6844,9 +6723,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { padding: 0px 0px 0px 20px; margin-right: 5px; } - -/* line 7029, ../../../scss/_clix2017.scss */ -.status-indication { +/* line 7013, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .status-indication { border-radius: 124px; padding: 0px 8px 3px 8px; line-height: 25px; @@ -6856,24 +6734,20 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border: 2px solid rgba(115, 133, 159, 0.5); color: grey; } - -/* line 7039, ../../../scss/_clix2017.scss */ -.priority-margin { +/* line 7023, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .priority-margin { margin-left: -30px; } - -/* line 7043, ../../../scss/_clix2017.scss */ -.iconclr { +/* line 7027, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .iconclr { color: #999999; } - -/* line 7049, ../../../scss/_clix2017.scss */ -.top-right-menu { +/* line 7033, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .top-right-menu { margin-right: 80px !important; } - -/* line 7056, ../../../scss/_clix2017.scss */ -.button-cancel-new { +/* line 7040, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .button-cancel-new { height: 2rem; padding: 0 2rem; background: none; @@ -6890,13 +6764,13 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { transition: all .1s ease; margin-right: 1px; } -/* line 7072, ../../../scss/_clix2017.scss */ -.button-cancel-new:hover { +/* line 7056, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7077, ../../../scss/_clix2017.scss */ -.button-cancel-new > a { +/* line 7061, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; text-transform: uppercase; @@ -6907,14 +6781,13 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { transition: all .1s ease; margin-right: 1px; } -/* line 7087, ../../../scss/_clix2017.scss */ -.button-cancel-new > a:hover { +/* line 7071, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .button-cancel-new > a:hover { background-color: #fff; color: #333333; } - -/* line 7095, ../../../scss/_clix2017.scss */ -.button-save-new { +/* line 7079, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .button-save-new { height: 2rem; padding: 0 2rem; background: none; @@ -6930,8 +6803,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #fff; transition: all .1s ease; } -/* line 7110, ../../../scss/_clix2017.scss */ -.button-save-new:hover { +/* line 7094, ../../../scss/_clix2017.scss */ +ul.nav_menu_1 .button-save-new:hover { background-color: #fff; color: #912a7d; } diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css index a7813c7cc7..5b4d160ead 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css @@ -26294,34 +26294,29 @@ div.show-image:hover div.fullscreen-icon{ } /* line 3078, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page { - margin-left: 15px; background-color: #fff; padding-bottom: 30px; } -/* line 3083, ../../../scss/_app_styles.scss */ -.notebook .notebook-body .note-page .group_sections_content { - margin-top: 5px; -} -/* line 3086, ../../../scss/_app_styles.scss */ +/* line 3085, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .group_content { margin-top: 5px; margin-left: 0px; } -/* line 3091, ../../../scss/_app_styles.scss */ +/* line 3090, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page > div { background-color: #fff; } -/* line 3095, ../../../scss/_app_styles.scss */ +/* line 3094, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar { padding: 1.8em 1.2em 0em; margin: 0em; background-color: #FFF; } -/* line 3100, ../../../scss/_app_styles.scss */ +/* line 3099, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .note-creator { font-weight: bold; } -/* line 3103, ../../../scss/_app_styles.scss */ +/* line 3102, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-title { text-align: left; color: #C3C3C3; @@ -26329,102 +26324,102 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.3px; margin-top: 5px; } -/* line 3110, ../../../scss/_app_styles.scss */ +/* line 3109, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating { text-align: right; } -/* line 3112, ../../../scss/_app_styles.scss */ +/* line 3111, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating > div { display: inline-block; } -/* line 3117, ../../../scss/_app_styles.scss */ +/* line 3116, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-title { font-size: 2.3em; font-weight: 500; margin-right: 1em; } -/* line 3122, ../../../scss/_app_styles.scss */ +/* line 3121, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content { padding: 2em 2em 1em; background: #fff; margin: 0em; } -/* line 3129, ../../../scss/_app_styles.scss */ +/* line 3128, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-header > div { display: inline-block; } -/* line 3134, ../../../scss/_app_styles.scss */ +/* line 3133, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text { font-size: 19px; letter-spacing: 0.7px; } -/* line 3137, ../../../scss/_app_styles.scss */ +/* line 3136, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text p { padding: 0px; } -/* line 3143, ../../../scss/_app_styles.scss */ +/* line 3142, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections { padding: 0em 1em 0em; } -/* line 3147, ../../../scss/_app_styles.scss */ +/* line 3146, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header span { font-weight: bold; } -/* line 3150, ../../../scss/_app_styles.scss */ +/* line 3149, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { margin-left: 15px; } -/* line 3155, ../../../scss/_app_styles.scss */ +/* line 3154, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment { border-top: 1px solid grey; padding: 15px 10px; margin-top: 5px; } -/* line 3160, ../../../scss/_app_styles.scss */ +/* line 3159, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { min-height: 200px; margin-top: 0px; } -/* line 3166, ../../../scss/_app_styles.scss */ +/* line 3165, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { font-size: 90px; line-height: 0em; } -/* line 3176, ../../../scss/_app_styles.scss */ +/* line 3175, ../../../scss/_app_styles.scss */ #newNoteModal { width: 40%; } -/* line 3179, ../../../scss/_app_styles.scss */ +/* line 3178, ../../../scss/_app_styles.scss */ #newNoteModal > div { margin-bottom: 1em; } -/* line 3183, ../../../scss/_app_styles.scss */ +/* line 3182, ../../../scss/_app_styles.scss */ #newNoteModal input { width: 100%; } -/* line 3186, ../../../scss/_app_styles.scss */ +/* line 3185, ../../../scss/_app_styles.scss */ #newNoteModal .heading { margin-right: 1em; } -/* line 3190, ../../../scss/_app_styles.scss */ +/* line 3189, ../../../scss/_app_styles.scss */ #newNoteModal .note-tags { padding: 1em; border: 1px solid black; } -/* line 3196, ../../../scss/_app_styles.scss */ +/* line 3195, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button { float: left; margin-left: 1em; margin-bottom: 0px; } -/* line 3201, ../../../scss/_app_styles.scss */ +/* line 3200, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button:last-child { float: right; } -/* line 3209, ../../../scss/_app_styles.scss */ +/* line 3208, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header { line-height: 2em; border-top: 1px solid #797979; @@ -26432,33 +26427,33 @@ div.show-image:hover div.fullscreen-icon{ text-align: center; padding: 0.7em 1em; } -/* line 3216, ../../../scss/_app_styles.scss */ +/* line 3215, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input, .gallery-page .gallery-header select, .gallery-page .gallery-header a { border-radius: 4px; margin-bottom: 0em; } -/* line 3220, ../../../scss/_app_styles.scss */ +/* line 3219, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input.prefix, .gallery-page .gallery-header select.prefix, .gallery-page .gallery-header a.prefix { border-radius: 0px; } -/* line 3225, ../../../scss/_app_styles.scss */ +/* line 3224, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header i { font-size: 1em; color: #A29E9E; } -/* line 3231, ../../../scss/_app_styles.scss */ +/* line 3230, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .filters .columns { padding-left: 5px; } -/* line 3237, ../../../scss/_app_styles.scss */ +/* line 3236, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .columns { padding-left: 5px; } -/* line 3241, ../../../scss/_app_styles.scss */ +/* line 3240, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags { text-align: left; } -/* line 3244, ../../../scss/_app_styles.scss */ +/* line 3243, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag { padding: 0px 10px; background: #cccccc; @@ -26468,73 +26463,73 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.8em; color: #757575; } -/* line 3253, ../../../scss/_app_styles.scss */ +/* line 3252, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag span { margin: 0px 2px 0px 6px; cursor: pointer; } -/* line 3258, ../../../scss/_app_styles.scss */ +/* line 3257, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags > div { display: inline-block; } -/* line 3265, ../../../scss/_app_styles.scss */ +/* line 3264, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading { font-size: 19px; } -/* line 3268, ../../../scss/_app_styles.scss */ +/* line 3267, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading a { background: #e7e7e7; border-width: 1px 0px 1px 1px; border-color: #cccccc; border-style: solid; } -/* line 3275, ../../../scss/_app_styles.scss */ +/* line 3274, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading input { border-radius: 0px; box-shadow: none; border-left: 0px; } -/* line 3282, ../../../scss/_app_styles.scss */ +/* line 3281, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel { background: #FFF; } -/* line 3285, ../../../scss/_app_styles.scss */ +/* line 3284, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content { min-height: 250px; } -/* line 3288, ../../../scss/_app_styles.scss */ +/* line 3287, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader { line-height: 3em; padding: 10px 0px; } -/* line 3292, ../../../scss/_app_styles.scss */ +/* line 3291, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader upload-file { margin: 0px; font-size: 1em; } -/* line 3297, ../../../scss/_app_styles.scss */ +/* line 3296, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions { font-size: 1.2em; color: #2a79e4; } -/* line 3301, ../../../scss/_app_styles.scss */ +/* line 3300, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions > div { display: inline-block; margin-right: 10px; } -/* line 3308, ../../../scss/_app_styles.scss */ +/* line 3307, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel { background: #fff; } -/* line 3311, ../../../scss/_app_styles.scss */ +/* line 3310, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row { margin: 10px 0px; } -/* line 3314, ../../../scss/_app_styles.scss */ +/* line 3313, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row > div:first-child { font-weight: 500; } -/* line 3319, ../../../scss/_app_styles.scss */ +/* line 3318, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .file-name { font-size: 20px; font-weight: bold; @@ -26542,11 +26537,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 10px 0px 20px; } -/* line 3330, ../../../scss/_app_styles.scss */ +/* line 3329, ../../../scss/_app_styles.scss */ .gallery-card .select-file { vertical-align: top; } -/* line 3334, ../../../scss/_app_styles.scss */ +/* line 3333, ../../../scss/_app_styles.scss */ .gallery-card .file-item { width: 80%; color: #fff; @@ -26557,17 +26552,17 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid black; overflow: hidden; } -/* line 3344, ../../../scss/_app_styles.scss */ +/* line 3343, ../../../scss/_app_styles.scss */ .gallery-card .file-item .item-thumbnail-image { height: 100%; padding: 1em; } -/* line 3349, ../../../scss/_app_styles.scss */ +/* line 3348, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-details { margin-top: 10%; display: none; } -/* line 3354, ../../../scss/_app_styles.scss */ +/* line 3353, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions { display: none; position: absolute; @@ -26576,11 +26571,11 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; font-size: 25px; } -/* line 3362, ../../../scss/_app_styles.scss */ +/* line 3361, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions i { margin: 0px 10px; } -/* line 3367, ../../../scss/_app_styles.scss */ +/* line 3366, ../../../scss/_app_styles.scss */ .gallery-card .file-item .filename-footer { position: absolute; bottom: 0px; @@ -26591,24 +26586,24 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 600; background: #999999; } -/* line 3378, ../../../scss/_app_styles.scss */ +/* line 3377, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover { background: #999999; } -/* line 3381, ../../../scss/_app_styles.scss */ +/* line 3380, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .item-thumbnail-image { opacity: 0.2; } -/* line 3385, ../../../scss/_app_styles.scss */ +/* line 3384, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .file-details, .gallery-card .file-item:hover .file-actions { display: block; } -/* line 3388, ../../../scss/_app_styles.scss */ +/* line 3387, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .filename-footer { display: none; } -/* line 3396, ../../../scss/_app_styles.scss */ +/* line 3395, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'], dialog[id^='reveal-'] { width: 100vw; height: 100vh; @@ -26672,49 +26667,49 @@ div.show-image:hover div.fullscreen-icon{ } }*/ } -/* line 3460, ../../../scss/_app_styles.scss */ +/* line 3459, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body, dialog[id^='reveal-'] .gmodal-body { position: relative; height: 100%; } -/* line 3463, ../../../scss/_app_styles.scss */ +/* line 3462, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel { background-color: #fff; height: 100%; } -/* line 3465, ../../../scss/_app_styles.scss */ +/* line 3464, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray { display: none; } -/* line 3469, ../../../scss/_app_styles.scss */ +/* line 3468, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe { height: 550px !important; width: 130% !important; } -/* line 3474, ../../../scss/_app_styles.scss */ +/* line 3473, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page { margin-top: -10px !important; } -/* line 3478, ../../../scss/_app_styles.scss */ +/* line 3477, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel span, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel span { display: none !important; } -/* line 3482, ../../../scss/_app_styles.scss */ +/* line 3481, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .button, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .button { display: none !important; } -/* line 3489, ../../../scss/_app_styles.scss */ +/* line 3488, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder { height: 100%; } -/* line 3492, ../../../scss/_app_styles.scss */ +/* line 3491, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item { height: 100%; width: 100%; background: transparent; padding: 0px; } -/* line 3498, ../../../scss/_app_styles.scss */ +/* line 3497, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image { width: auto; margin: 0px auto; @@ -26722,7 +26717,7 @@ div.show-image:hover div.fullscreen-icon{ padding: 1em 0em; height: 100%; } -/* line 3507, ../../../scss/_app_styles.scss */ +/* line 3506, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer { height: 2em; line-height: 2em; @@ -26734,32 +26729,32 @@ div.show-image:hover div.fullscreen-icon{ opacity: 0; background-color: rgba(0, 0, 0, 0.9); } -/* line 3518, ../../../scss/_app_styles.scss */ +/* line 3517, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details), dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details) { cursor: pointer; } -/* line 3522, ../../../scss/_app_styles.scss */ +/* line 3521, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details { text-align: center; width: 100%; } -/* line 3526, ../../../scss/_app_styles.scss */ +/* line 3525, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i { margin-left: 1em; margin-right: 0.5em; cursor: pointer; } -/* line 3534, ../../../scss/_app_styles.scss */ +/* line 3533, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer { opacity: 0.8; transition: opacity 1s; } -/* line 3539, ../../../scss/_app_styles.scss */ +/* line 3538, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel { height: 100%; padding: 0px 25px; } -/* line 3543, ../../../scss/_app_styles.scss */ +/* line 3542, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side { background: #fff; height: 100%; @@ -26780,31 +26775,31 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.9em; }*/ } -/* line 3547, ../../../scss/_app_styles.scss */ +/* line 3546, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div { width: 100%; display: block; margin: 12px 0px; padding: 0px 10px; } -/* line 3554, ../../../scss/_app_styles.scss */ +/* line 3553, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal { font-size: 20px; top: 6px; right: 26px; } -/* line 3561, ../../../scss/_app_styles.scss */ +/* line 3560, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span { vertical-align: top; margin-right: 5px; line-height: 35px; } -/* line 3566, ../../../scss/_app_styles.scss */ +/* line 3565, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating { background: #ccc; padding: 2px 5px; } -/* line 3572, ../../../scss/_app_styles.scss */ +/* line 3571, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a { padding: 3px 7px; background: #fff; @@ -26814,13 +26809,13 @@ div.show-image:hover div.fullscreen-icon{ margin-right: 10px; display: inline-block; } -/* line 3583, ../../../scss/_app_styles.scss */ +/* line 3582, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3588, ../../../scss/_app_styles.scss */ +/* line 3587, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26829,17 +26824,17 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3596, ../../../scss/_app_styles.scss */ +/* line 3595, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a { border-radius: inherit; } -/* line 3600, ../../../scss/_app_styles.scss */ +/* line 3599, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3608, ../../../scss/_app_styles.scss */ +/* line 3607, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span { font-weight: 500; font-size: 16px; @@ -26847,20 +26842,20 @@ div.show-image:hover div.fullscreen-icon{ line-height: 35px; } -/* line 3638, ../../../scss/_app_styles.scss */ +/* line 3637, ../../../scss/_app_styles.scss */ .user-comment { display: inline-flex; width: 100%; } -/* line 3642, ../../../scss/_app_styles.scss */ +/* line 3641, ../../../scss/_app_styles.scss */ .user-comment > div { display: inline-block; } -/* line 3645, ../../../scss/_app_styles.scss */ +/* line 3644, ../../../scss/_app_styles.scss */ .user-comment > div:last-child { width: 100%; } -/* line 3650, ../../../scss/_app_styles.scss */ +/* line 3649, ../../../scss/_app_styles.scss */ .user-comment .comment-heading { color: #9C9C9C; border-bottom: 1px solid grey; @@ -26868,71 +26863,71 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 10px; margin-top: 10px; } -/* line 3658, ../../../scss/_app_styles.scss */ +/* line 3657, ../../../scss/_app_styles.scss */ .user-comment .comment-heading > div { display: inline-block; } -/* line 3662, ../../../scss/_app_styles.scss */ +/* line 3661, ../../../scss/_app_styles.scss */ .user-comment .comment-heading .commentor-name span { font-weight: bold; color: #333333; } -/* line 3667, ../../../scss/_app_styles.scss */ +/* line 3666, ../../../scss/_app_styles.scss */ .user-comment .comment-footer { font-size: 0.9em; font-weight: 400; border: 1px solid #9E9E9E; background: #CCCCCC; } -/* line 3673, ../../../scss/_app_styles.scss */ +/* line 3672, ../../../scss/_app_styles.scss */ .user-comment .comment-footer > div { cursor: pointer; } -/* line 3676, ../../../scss/_app_styles.scss */ +/* line 3675, ../../../scss/_app_styles.scss */ .user-comment .comment-footer i { margin-right: 1em; } -/* line 3682, ../../../scss/_app_styles.scss */ +/* line 3681, ../../../scss/_app_styles.scss */ .user-comment .comment-container .comment-add { margin-top: 0.4em; } -/* line 3686, ../../../scss/_app_styles.scss */ +/* line 3685, ../../../scss/_app_styles.scss */ .user-comment .user-avatar { font-size: 10em; font-size: 5em; line-height: 1em; } -/* line 3693, ../../../scss/_app_styles.scss */ +/* line 3692, ../../../scss/_app_styles.scss */ .course-content { /*border-top: 1px solid #000;*/ } -/* line 3695, ../../../scss/_app_styles.scss */ +/* line 3694, ../../../scss/_app_styles.scss */ .course-content .alert-box { padding: 5px; font-size: 1em; } -/* line 3699, ../../../scss/_app_styles.scss */ +/* line 3698, ../../../scss/_app_styles.scss */ .course-content .alert-box > div { display: inline-block; vertical-align: top; } -/* line 3703, ../../../scss/_app_styles.scss */ +/* line 3702, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note { width: 96%; } -/* line 3706, ../../../scss/_app_styles.scss */ +/* line 3705, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note > div:nth-child(2) { color: #000; margin-top: 5px; padding-top: 5px; border-top: 1px solid #000; } -/* line 3713, ../../../scss/_app_styles.scss */ +/* line 3712, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-icon { margin: 0px 5px; } -/* line 3716, ../../../scss/_app_styles.scss */ +/* line 3715, ../../../scss/_app_styles.scss */ .course-content .alert-box .close { position: relative; top: 0px; @@ -26942,17 +26937,17 @@ div.show-image:hover div.fullscreen-icon{ text-decoration: underline; color: #085394 !important; } -/* line 3727, ../../../scss/_app_styles.scss */ +/* line 3726, ../../../scss/_app_styles.scss */ .course-content .collection { overflow: visible; } -/* line 3730, ../../../scss/_app_styles.scss */ +/* line 3729, ../../../scss/_app_styles.scss */ .course-content .collection .course-module { position: relative; border-bottom: 1px solid #CCC; padding: 1em 0em; } -/* line 3737, ../../../scss/_app_styles.scss */ +/* line 3736, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-header .fa { position: absolute; left: -1.1em; @@ -26961,58 +26956,58 @@ div.show-image:hover div.fullscreen-icon{ background: #EAEAEA; font-size: 1.4em; } -/* line 3755, ../../../scss/_app_styles.scss */ +/* line 3754, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-page:hover span { text-decoration: underline; color: #9900ff !important; } -/* line 3760, ../../../scss/_app_styles.scss */ +/* line 3759, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .jqtree-tree .jqtree-title { cursor: pointer; } -/* line 3764, ../../../scss/_app_styles.scss */ +/* line 3763, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part { margin-left: 1em; } -/* line 3767, ../../../scss/_app_styles.scss */ +/* line 3766, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler { color: #585858; } -/* line 3770, ../../../scss/_app_styles.scss */ +/* line 3769, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler.jqtree-closed { color: #CCC; } -/* line 3774, ../../../scss/_app_styles.scss */ +/* line 3773, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part span { vertical-align: top; } -/* line 3777, ../../../scss/_app_styles.scss */ +/* line 3776, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .fa { display: inline; margin-right: 5px; } -/* line 3787, ../../../scss/_app_styles.scss */ +/* line 3786, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header { font-weight: 400; font-size: 1.3em; border-bottom: 1px solid #707070; color: #797979; } -/* line 3793, ../../../scss/_app_styles.scss */ +/* line 3792, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header > div { padding: 0.3em 0em; } -/* line 3797, ../../../scss/_app_styles.scss */ +/* line 3796, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header a { color: #797979; } -/* line 3801, ../../../scss/_app_styles.scss */ +/* line 3800, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous { cursor: pointer; padding: 0px; } -/* line 3805, ../../../scss/_app_styles.scss */ +/* line 3804, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous a:first-child { border-right: 1px solid grey; padding-right: 5px; @@ -27020,27 +27015,27 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3814, ../../../scss/_app_styles.scss */ +/* line 3813, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header i { margin-right: 0.1em; } -/* line 3818, ../../../scss/_app_styles.scss */ +/* line 3817, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .unit-title { text-align: center; color: #999999; } -/* line 3822, ../../../scss/_app_styles.scss */ +/* line 3821, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-title { text-align: center; color: #000; } -/* line 3826, ../../../scss/_app_styles.scss */ +/* line 3825, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note { color: #2a78e3; cursor: pointer; padding: 0px; } -/* line 3831, ../../../scss/_app_styles.scss */ +/* line 3830, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note a:last-child { border-left: 1px solid grey; padding-left: 5px; @@ -27048,11 +27043,11 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3839, ../../../scss/_app_styles.scss */ +/* line 3838, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note > div { float: right; } -/* line 3844, ../../../scss/_app_styles.scss */ +/* line 3843, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container { border: 1px solid black; height: 100%; @@ -27060,18 +27055,18 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 2em; padding: 0em 1em; } -/* line 3851, ../../../scss/_app_styles.scss */ +/* line 3850, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides { height: 100%; } -/* line 3855, ../../../scss/_app_styles.scss */ +/* line 3854, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 3863, ../../../scss/_app_styles.scss */ +/* line 3862, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -27079,12 +27074,12 @@ div.show-image:hover div.fullscreen-icon{ color: #999999; margin-left: 12%; } -/* line 3871, ../../../scss/_app_styles.scss */ +/* line 3870, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 3877, ../../../scss/_app_styles.scss */ +/* line 3876, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -27093,21 +27088,21 @@ div.show-image:hover div.fullscreen-icon{ display: none; color: #8E8E8E; } -/* line 3886, ../../../scss/_app_styles.scss */ +/* line 3885, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 3891, ../../../scss/_app_styles.scss */ +/* line 3890, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 3893, ../../../scss/_app_styles.scss */ +/* line 3892, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 3896, ../../../scss/_app_styles.scss */ +/* line 3895, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -27118,24 +27113,24 @@ div.show-image:hover div.fullscreen-icon{ color: #757575; margin-right: 20px; } -/* line 3906, ../../../scss/_app_styles.scss */ +/* line 3905, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 3910, ../../../scss/_app_styles.scss */ +/* line 3909, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 3913, ../../../scss/_app_styles.scss */ +/* line 3912, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 3918, ../../../scss/_app_styles.scss */ +/* line 3917, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 3922, ../../../scss/_app_styles.scss */ +/* line 3921, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content { width: 75%; margin: 0px auto; @@ -27146,7 +27141,7 @@ div.show-image:hover div.fullscreen-icon{ min-height: 50px; position: relative; } -/* line 3932, ../../../scss/_app_styles.scss */ +/* line 3931, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -27154,15 +27149,15 @@ div.show-image:hover div.fullscreen-icon{ left: 8px; top: 4px; } -/* line 3940, ../../../scss/_app_styles.scss */ +/* line 3939, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 3942, ../../../scss/_app_styles.scss */ +/* line 3941, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 3945, ../../../scss/_app_styles.scss */ +/* line 3944, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -27172,27 +27167,27 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.8px; color: #999999; } -/* line 3954, ../../../scss/_app_styles.scss */ +/* line 3953, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 3960, ../../../scss/_app_styles.scss */ +/* line 3959, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 3967, ../../../scss/_app_styles.scss */ +/* line 3966, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section { width: 75%; margin: 0px auto; } -/* line 3971, ../../../scss/_app_styles.scss */ +/* line 3970, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section .user-prof-image { font-size: 7em; text-align: center; } -/* line 3976, ../../../scss/_app_styles.scss */ +/* line 3975, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section #postCommentBtn { padding: 2em 3em; } @@ -27213,28 +27208,28 @@ div.show-image:hover div.fullscreen-icon{ position: absolute; } */ -/* line 3997, ../../../scss/_app_styles.scss */ +/* line 3996, ../../../scss/_app_styles.scss */ .rate-scale { cursor: pointer; } -/* line 4000, ../../../scss/_app_styles.scss */ +/* line 3999, ../../../scss/_app_styles.scss */ .rate-scale i { margin-right: 0em !important; padding-right: 0.5em; } -/* line 4004, ../../../scss/_app_styles.scss */ +/* line 4003, ../../../scss/_app_styles.scss */ .rate-scale .hover-rating, .rate-scale .rated { color: yellow; } -/* line 4010, ../../../scss/_app_styles.scss */ +/* line 4009, ../../../scss/_app_styles.scss */ #left-tab { position: absolute; left: 0px; bottom: 0px; } -/* line 4015, ../../../scss/_app_styles.scss */ +/* line 4014, ../../../scss/_app_styles.scss */ #right-tab { position: absolute; right: 0px; @@ -27242,12 +27237,12 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 6px; } -/* line 4021, ../../../scss/_app_styles.scss */ +/* line 4020, ../../../scss/_app_styles.scss */ #enrolled-btn { margin-bottom: 0px; } -/* line 4024, ../../../scss/_app_styles.scss */ +/* line 4023, ../../../scss/_app_styles.scss */ div.absol-descrip { position: absolute; top: 190px; @@ -27258,14 +27253,14 @@ div.absol-descrip { } /*overview-summary styling*/ -/* line 4034, ../../../scss/_app_styles.scss */ +/* line 4033, ../../../scss/_app_styles.scss */ .course-title, .course-date { color: white; padding-top: 0px; padding-bottom: 0px; } -/* line 4039, ../../../scss/_app_styles.scss */ +/* line 4038, ../../../scss/_app_styles.scss */ .course-description { color: #cccccc; padding-top: 0px; @@ -27277,48 +27272,48 @@ div.absol-descrip { overflow: hidden; } -/* line 4049, ../../../scss/_app_styles.scss */ +/* line 4048, ../../../scss/_app_styles.scss */ .course-para { padding: 0; } -/* line 4053, ../../../scss/_app_styles.scss */ +/* line 4052, ../../../scss/_app_styles.scss */ course-title { padding-left: 10px; } -/* line 4056, ../../../scss/_app_styles.scss */ +/* line 4055, ../../../scss/_app_styles.scss */ .enroll-status-margin { margin-bottom: 0; } -/* line 4060, ../../../scss/_app_styles.scss */ +/* line 4059, ../../../scss/_app_styles.scss */ .progress-summery { color: white; margin-top: 20px; } -/* line 4064, ../../../scss/_app_styles.scss */ +/* line 4063, ../../../scss/_app_styles.scss */ .course-description-thumbnails { margin: 0; padding: 0; } -/* line 4069, ../../../scss/_app_styles.scss */ +/* line 4068, ../../../scss/_app_styles.scss */ .left-shift { padding: 0; color: white !important; } /*course overview for Small screens*/ -/* line 4075, ../../../scss/_app_styles.scss */ +/* line 4074, ../../../scss/_app_styles.scss */ .course { /*position:relative;*/ border: 1px solid black; background-color: #999999; } -/* line 4081, ../../../scss/_app_styles.scss */ +/* line 4080, ../../../scss/_app_styles.scss */ .course-contents { /*position:absolute;*/ width: 100%; @@ -27326,7 +27321,7 @@ course-title { /*Medium screens*/ @media only screen and (min-width: 40.063em) { - /* line 4088, ../../../scss/_app_styles.scss */ + /* line 4087, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27334,7 +27329,7 @@ course-title { background-color: #999999; } - /* line 4094, ../../../scss/_app_styles.scss */ + /* line 4093, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27344,7 +27339,7 @@ course-title { /* min-width 641px, medium screens */ /* Large screens*/ @media only screen and (min-width: 64.063em) { - /* line 4104, ../../../scss/_app_styles.scss */ + /* line 4103, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27352,7 +27347,7 @@ course-title { background-color: #999999; } - /* line 4110, ../../../scss/_app_styles.scss */ + /* line 4109, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27361,14 +27356,14 @@ course-title { } /* min-width 1025px, large screens */ /*General config css*/ -/* line 4117, ../../../scss/_app_styles.scss */ +/* line 4116, ../../../scss/_app_styles.scss */ .alert-box.warning { background: #ffe7c0; border-color: #bf9000; color: #966000; } -/* line 4124, ../../../scss/_app_styles.scss */ +/* line 4123, ../../../scss/_app_styles.scss */ .badge { display: inline-block; line-height: 22px; @@ -27385,7 +27380,7 @@ course-title { font-size: 1.8em; } -/* line 4140, ../../../scss/_app_styles.scss */ +/* line 4139, ../../../scss/_app_styles.scss */ .badge { background: #67c1ef; border-color: #30aae9; @@ -27395,7 +27390,7 @@ course-title { background-image: linear-gradient(to bottom, #acddf6, #67c1ef); } -/* line 4149, ../../../scss/_app_styles.scss */ +/* line 4148, ../../../scss/_app_styles.scss */ .badge.green { background: #77cc51; border-color: #59ad33; @@ -27405,7 +27400,7 @@ course-title { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 4158, ../../../scss/_app_styles.scss */ +/* line 4157, ../../../scss/_app_styles.scss */ .badge.yellow { background: #faba3e; border-color: #f4a306; @@ -27415,7 +27410,7 @@ course-title { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 4168, ../../../scss/_app_styles.scss */ +/* line 4167, ../../../scss/_app_styles.scss */ .badge.red { background: #fa623f; border-color: #fa5a35; @@ -27426,12 +27421,12 @@ course-title { } /* Course/ Event Card CSS*/ -/* line 4184, ../../../scss/_app_styles.scss */ +/* line 4183, ../../../scss/_app_styles.scss */ .card-image-wrapper { position: relative; } -/* line 4188, ../../../scss/_app_styles.scss */ +/* line 4187, ../../../scss/_app_styles.scss */ .event-card { padding: 0px; min-height: 22rem; @@ -27440,12 +27435,12 @@ course-title { border-radius: 10px; background-color: #fff; } -/* line 4196, ../../../scss/_app_styles.scss */ +/* line 4195, ../../../scss/_app_styles.scss */ .event-card:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 4201, ../../../scss/_app_styles.scss */ +/* line 4200, ../../../scss/_app_styles.scss */ .event-card .event-card-status { z-index: 99; width: auto; @@ -27460,31 +27455,31 @@ course-title { border-radius: 4px; letter-spacing: 0.3px; } -/* line 4215, ../../../scss/_app_styles.scss */ +/* line 4214, ../../../scss/_app_styles.scss */ .event-card .event-card-status.open { background-color: #00b300; } -/* line 4218, ../../../scss/_app_styles.scss */ +/* line 4217, ../../../scss/_app_styles.scss */ .event-card .event-card-status.closed { background-color: red; } -/* line 4221, ../../../scss/_app_styles.scss */ +/* line 4220, ../../../scss/_app_styles.scss */ .event-card .event-card-status.in-progress { background-color: #00b300; } -/* line 4224, ../../../scss/_app_styles.scss */ +/* line 4223, ../../../scss/_app_styles.scss */ .event-card .event-card-status.forthcoming { background-color: #F2910D; } -/* line 4227, ../../../scss/_app_styles.scss */ +/* line 4226, ../../../scss/_app_styles.scss */ .event-card .event-card-status.upcoming { background-color: #F2910D; } -/* line 4231, ../../../scss/_app_styles.scss */ +/* line 4230, ../../../scss/_app_styles.scss */ .event-card .event-card-status.completed { background-color: #4d4d4d; } -/* line 4236, ../../../scss/_app_styles.scss */ +/* line 4235, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications { position: absolute; top: 2px; @@ -27493,46 +27488,46 @@ course-title { color: #F04124; font-weight: 600; } -/* line 4244, ../../../scss/_app_styles.scss */ +/* line 4243, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications .badge { padding: 0px 5px; font-size: 1.4em; font-weight: 600; } -/* line 4251, ../../../scss/_app_styles.scss */ +/* line 4250, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status { font-weight: 500; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 4256, ../../../scss/_app_styles.scss */ +/* line 4255, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.open { color: #00b300; } -/* line 4260, ../../../scss/_app_styles.scss */ +/* line 4259, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.closed { color: red; } -/* line 4264, ../../../scss/_app_styles.scss */ +/* line 4263, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.in-progress { color: #000; } -/* line 4267, ../../../scss/_app_styles.scss */ +/* line 4266, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.forthcoming { color: #F2910D; } -/* line 4271, ../../../scss/_app_styles.scss */ +/* line 4270, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.completed { color: #4d4d4d; } -/* line 4275, ../../../scss/_app_styles.scss */ +/* line 4274, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status .event-time { font-size: 0.7em; display: block; font-weight: 400; display: inline; } -/* line 4283, ../../../scss/_app_styles.scss */ +/* line 4282, ../../../scss/_app_styles.scss */ .event-card .event-card-title { color: #0d0d0d; display: inline-block; @@ -27543,19 +27538,19 @@ course-title { font-size: 2em; font-weight: 400; } -/* line 4294, ../../../scss/_app_styles.scss */ +/* line 4293, ../../../scss/_app_styles.scss */ .event-card .event-card-desc { word-wrap: break-word; font-size: 0.6em; color: #333333; padding-left: 4px; } -/* line 4300, ../../../scss/_app_styles.scss */ +/* line 4299, ../../../scss/_app_styles.scss */ .event-card p { margin: 0px; padding: 10px; } -/* line 4306, ../../../scss/_app_styles.scss */ +/* line 4305, ../../../scss/_app_styles.scss */ .event-card .event-card-image { padding: 0px; margin: 0px; @@ -27567,7 +27562,7 @@ course-title { background-color: #e5e5e5; border-radius: 10px 10px 0px 0px; } -/* line 4317, ../../../scss/_app_styles.scss */ +/* line 4316, ../../../scss/_app_styles.scss */ .event-card .event-card-image img { border-radius: 2px 2px 0 0; display: block; @@ -27576,7 +27571,7 @@ course-title { opacity: 0.25; height: 100%; } -/* line 4326, ../../../scss/_app_styles.scss */ +/* line 4325, ../../../scss/_app_styles.scss */ .event-card .event-card-image i { font-size: 7rem; opacity: 0.75; @@ -27590,51 +27585,51 @@ course-title { text-transform: none; text-decoration: inherit; } -/* line 4340, ../../../scss/_app_styles.scss */ +/* line 4339, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.file:before { content: "\f18e"; } -/* line 4343, ../../../scss/_app_styles.scss */ +/* line 4342, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.page:before { content: "\f18e"; } -/* line 4346, ../../../scss/_app_styles.scss */ +/* line 4345, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.collection:before { content: "\f18a"; } -/* line 4349, ../../../scss/_app_styles.scss */ +/* line 4348, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.documents:before { content: "\f18b"; } -/* line 4352, ../../../scss/_app_styles.scss */ +/* line 4351, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.pdf:before { content: "\f18b"; } -/* line 4355, ../../../scss/_app_styles.scss */ +/* line 4354, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.text:before { content: "\f18e"; } -/* line 4358, ../../../scss/_app_styles.scss */ +/* line 4357, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.interactives:before { content: "\f1b2"; } -/* line 4361, ../../../scss/_app_styles.scss */ +/* line 4360, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.ebooks:before { content: "\f11e"; } -/* line 4364, ../../../scss/_app_styles.scss */ +/* line 4363, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.images:before { content: "\f125"; } -/* line 4367, ../../../scss/_app_styles.scss */ +/* line 4366, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.audios:before, .event-card .event-card-image i.audio:before { content: "\f17b"; } -/* line 4370, ../../../scss/_app_styles.scss */ +/* line 4369, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.videos:before, .event-card .event-card-image i.video:before { content: "\f20e"; } -/* line 4374, ../../../scss/_app_styles.scss */ +/* line 4373, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer { padding: 0.7em 1em; border-top: 1px solid #DCDCDC; @@ -27645,7 +27640,7 @@ course-title { background-color: #F3F3F3; border-radius: 0px 0px 10px 10px; } -/* line 4384, ../../../scss/_app_styles.scss */ +/* line 4383, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .footer-label { text-transform: uppercase; font-size: 10px; @@ -27653,54 +27648,54 @@ course-title { margin-bottom: 2px; color: #ADADAD; } -/* line 4392, ../../../scss/_app_styles.scss */ +/* line 4391, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date { color: #929292; font-size: 0.85em; letter-spacing: 0.5px; } -/* line 4397, ../../../scss/_app_styles.scss */ +/* line 4396, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date i:not(.edit-course-duration, .edit-course-enrollment) { margin-right: 0.3em; } -/* line 4401, ../../../scss/_app_styles.scss */ +/* line 4400, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .row { margin: 10px 0px 0px; } -/* line 4405, ../../../scss/_app_styles.scss */ +/* line 4404, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration, .event-card .edit-course-enrollment { float: right; font-size: 1.5em; color: #DADADA; } -/* line 4409, ../../../scss/_app_styles.scss */ +/* line 4408, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration:hover, .event-card .edit-course-enrollment:hover { color: #565656; } -/* line 4413, ../../../scss/_app_styles.scss */ +/* line 4412, ../../../scss/_app_styles.scss */ .event-card .published.scard-action { background: #A6D9CB; } -/* line 4417, ../../../scss/_app_styles.scss */ +/* line 4416, ../../../scss/_app_styles.scss */ .event-card .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 4422, ../../../scss/_app_styles.scss */ +/* line 4421, ../../../scss/_app_styles.scss */ .event-card .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4427, ../../../scss/_app_styles.scss */ +/* line 4426, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action { border-color: transparent #6153ae transparent transparent; border-color: rgba(255, 255, 255, 0) #6153ae rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4431, ../../../scss/_app_styles.scss */ +/* line 4430, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 4435, ../../../scss/_app_styles.scss */ +/* line 4434, ../../../scss/_app_styles.scss */ .event-card .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -27711,17 +27706,17 @@ course-title { /* End Course/events Card CSS*/ /* Landing page */ -/* line 4447, ../../../scss/_app_styles.scss */ +/* line 4446, ../../../scss/_app_styles.scss */ .landing_page { position: relative; text-align: center; } -/* line 4451, ../../../scss/_app_styles.scss */ +/* line 4450, ../../../scss/_app_styles.scss */ .landing_page .panel { background-color: inherit; border: none; } -/* line 4456, ../../../scss/_app_styles.scss */ +/* line 4455, ../../../scss/_app_styles.scss */ .landing_page .landing_page_background { height: 100%; width: 100%; @@ -27733,24 +27728,24 @@ course-title { background: -ms-linear-gradient(left, #E9A900, #B0108D); background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 4468, ../../../scss/_app_styles.scss */ +/* line 4467, ../../../scss/_app_styles.scss */ .landing_page .clix_brief { text-align: left; padding: 20px 5%; } -/* line 4472, ../../../scss/_app_styles.scss */ +/* line 4471, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 30px 20px; height: 70px; } @media screen and (max-width: 450px) { - /* line 4472, ../../../scss/_app_styles.scss */ + /* line 4471, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 25px 10px; height: 55px; } } -/* line 4480, ../../../scss/_app_styles.scss */ +/* line 4479, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { color: #fff; font-size: 26px; @@ -27758,12 +27753,12 @@ course-title { font-family: 'ubuntu-light'; } @media screen and (max-width: 450px) { - /* line 4480, ../../../scss/_app_styles.scss */ + /* line 4479, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { font-size: 18px; } } -/* line 4491, ../../../scss/_app_styles.scss */ +/* line 4490, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { background-color: rgba(255, 255, 255, 0.92); border-radius: 10px; @@ -27774,12 +27769,12 @@ course-title { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); } @media screen and (min-width: 1025px) { - /* line 4491, ../../../scss/_app_styles.scss */ + /* line 4490, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { margin: 200px auto; } } -/* line 4503, ../../../scss/_app_styles.scss */ +/* line 4502, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix > span { font-family: 'ubuntu-bold'; color: #6658af; @@ -27790,7 +27785,7 @@ course-title { display: inline-block; vertical-align: middle; } -/* line 4513, ../../../scss/_app_styles.scss */ +/* line 4512, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix p { color: #b0108d; font-size: 21px; @@ -27798,28 +27793,28 @@ course-title { font-weight: 300; font-family: 'ubuntu-light'; } -/* line 4521, ../../../scss/_app_styles.scss */ +/* line 4520, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix img { height: 30px; } -/* line 4524, ../../../scss/_app_styles.scss */ +/* line 4523, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form { margin-top: 30px; } -/* line 4527, ../../../scss/_app_styles.scss */ +/* line 4526, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form input { font-size: 24px; height: 45px; margin: 5px 0px 24px; } -/* line 4534, ../../../scss/_app_styles.scss */ +/* line 4533, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix input.button { font-size: 15px; border-radius: 5px; font-family: 'ubuntu-bold'; text-transform: uppercase; } -/* line 4540, ../../../scss/_app_styles.scss */ +/* line 4539, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix a.grey { color: #999; /*display: inline-block; @@ -27830,7 +27825,7 @@ course-title { font-family: 'ubuntu-bold'; text-transform: uppercase;*/ } -/* line 4551, ../../../scss/_app_styles.scss */ +/* line 4550, ../../../scss/_app_styles.scss */ .landing_page .flowers { left: 50px; height: 500px; @@ -27838,18 +27833,18 @@ course-title { opacity: 0.6; } @media screen and (max-width: 450px) { - /* line 4551, ../../../scss/_app_styles.scss */ + /* line 4550, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 250px; } } @media screen and (min-width: 451px) and (max-width: 1025px) { - /* line 4551, ../../../scss/_app_styles.scss */ + /* line 4550, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 350px; } } -/* line 4563, ../../../scss/_app_styles.scss */ +/* line 4562, ../../../scss/_app_styles.scss */ .landing_page .bees { position: absolute; top: 5px; @@ -27857,40 +27852,40 @@ course-title { height: 150px; } @media screen and (max-width: 450px) { - /* line 4563, ../../../scss/_app_styles.scss */ + /* line 4562, ../../../scss/_app_styles.scss */ .landing_page .bees { right: 15px; height: 100px; } } -/* line 4573, ../../../scss/_app_styles.scss */ +/* line 4572, ../../../scss/_app_styles.scss */ .landing_page h2 { color: #A0148E; font-weight: 600; } -/* line 4577, ../../../scss/_app_styles.scss */ +/* line 4576, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text { color: #6153ae; } -/* line 4580, ../../../scss/_app_styles.scss */ +/* line 4579, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text p { font-size: 18px; } /* END of Landing page */ -/* line 4586, ../../../scss/_app_styles.scss */ +/* line 4585, ../../../scss/_app_styles.scss */ .audio-caption { cursor: pointer; } -/* line 4590, ../../../scss/_app_styles.scss */ +/* line 4589, ../../../scss/_app_styles.scss */ .gallery-image { cursor: pointer; max-height: 100px; border: 1px solid !important; } -/* line 4596, ../../../scss/_app_styles.scss */ +/* line 4595, ../../../scss/_app_styles.scss */ .show-collection { color: black !important; font-size: 1.1em; @@ -27903,25 +27898,25 @@ course-title { border: 1px solid #eee; } -/* line 4608, ../../../scss/_app_styles.scss */ +/* line 4607, ../../../scss/_app_styles.scss */ .processing-screen { background-color: #6153ae !important; } -/* line 4612, ../../../scss/_app_styles.scss */ +/* line 4611, ../../../scss/_app_styles.scss */ .processing-screen-label { width: 500px !important; font-style: normal !important; } -/* line 4616, ../../../scss/_app_styles.scss */ +/* line 4615, ../../../scss/_app_styles.scss */ h3 { font-size: 20px; color: #164A7B; font-family: 'OpenSans-Semibold'; } -/* line 4622, ../../../scss/_app_styles.scss */ +/* line 4621, ../../../scss/_app_styles.scss */ h5 { color: #99aaba; font-size: 10px; @@ -27930,7 +27925,7 @@ h5 { margin-left: 5px; } -/* line 4630, ../../../scss/_app_styles.scss */ +/* line 4629, ../../../scss/_app_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -27939,12 +27934,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4637, ../../../scss/_app_styles.scss */ +/* line 4636, ../../../scss/_app_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 4641, ../../../scss/_app_styles.scss */ +/* line 4640, ../../../scss/_app_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -27953,12 +27948,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4648, ../../../scss/_app_styles.scss */ +/* line 4647, ../../../scss/_app_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 4654, ../../../scss/_app_styles.scss */ +/* line 4653, ../../../scss/_app_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -27970,7 +27965,7 @@ h5 { color: #6153AE; } -/* line 4665, ../../../scss/_app_styles.scss */ +/* line 4664, ../../../scss/_app_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; @@ -27982,7 +27977,7 @@ h5 { color: #6153AE; } -/* line 4676, ../../../scss/_app_styles.scss */ +/* line 4675, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -27994,7 +27989,7 @@ h5 { border: 2px solid #6153ae; background-color: #dbd4e1; } -/* line 4687, ../../../scss/_app_styles.scss */ +/* line 4686, ../../../scss/_app_styles.scss */ .explore-button:hover { cursor: pointer; } @@ -28002,12 +27997,12 @@ h5 { /*Blue color variable*/ /*Orange color variables*/ /* module detail settings drop */ -/* line 4720, ../../../scss/_app_styles.scss */ +/* line 4719, ../../../scss/_app_styles.scss */ .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4723, ../../../scss/_app_styles.scss */ +/* line 4722, ../../../scss/_app_styles.scss */ .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28020,17 +28015,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4734, ../../../scss/_app_styles.scss */ +/* line 4733, ../../../scss/_app_styles.scss */ .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4740, ../../../scss/_app_styles.scss */ +/* line 4739, ../../../scss/_app_styles.scss */ .explore-settings-drop a { font-size: 16px; } -/* line 4743, ../../../scss/_app_styles.scss */ +/* line 4742, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28038,12 +28033,12 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4743, ../../../scss/_app_styles.scss */ +/* line 4742, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4746, ../../../scss/_app_styles.scss */ +/* line 4745, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28056,17 +28051,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4757, ../../../scss/_app_styles.scss */ +/* line 4756, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4763, ../../../scss/_app_styles.scss */ +/* line 4762, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop a { font-size: 16px; } -/* line 4766, ../../../scss/_app_styles.scss */ +/* line 4765, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28074,31 +28069,31 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4774, ../../../scss/_app_styles.scss */ +/* line 4773, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4778, ../../../scss/_app_styles.scss */ +/* line 4777, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4791, ../../../scss/_app_styles.scss */ +/* line 4790, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4795, ../../../scss/_app_styles.scss */ +/* line 4794, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4805, ../../../scss/_app_styles.scss */ +/* line 4804, ../../../scss/_app_styles.scss */ .lms_page .lms_banner { width: 100%; height: 150px; background-size: 100% 100%; position: relative; } -/* line 4813, ../../../scss/_app_styles.scss */ +/* line 4812, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -28111,27 +28106,27 @@ h5 { bottom: 0; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 4826, ../../../scss/_app_styles.scss */ +/* line 4825, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before a { cursor: pointer; } -/* line 4831, ../../../scss/_app_styles.scss */ +/* line 4830, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .div-height { height: 150px !important; background-size: 100% 100%; position: absolute !important; } -/* line 4839, ../../../scss/_app_styles.scss */ +/* line 4838, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .enroll_unit > a { cursor: pointer; } -/* line 4843, ../../../scss/_app_styles.scss */ +/* line 4842, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 4849, ../../../scss/_app_styles.scss */ +/* line 4848, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .unit_name { font-size: 36px; font-family: OpenSans-Semibold; @@ -28142,17 +28137,17 @@ h5 { transition: border-radius .2s; text-shadow: 3px 2px #164a7b; } -/* line 4860, ../../../scss/_app_styles.scss */ +/* line 4859, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .right-margin { margin-right: 46px; } -/* line 4869, ../../../scss/_app_styles.scss */ +/* line 4868, ../../../scss/_app_styles.scss */ .border-bottom-lms-header { border-bottom: 1px solid #00000029; } -/* line 4874, ../../../scss/_app_styles.scss */ +/* line 4873, ../../../scss/_app_styles.scss */ .lms_secondary_header { width: 100%; position: relative; @@ -28160,11 +28155,11 @@ h5 { box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 4880, ../../../scss/_app_styles.scss */ +/* line 4879, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions { margin-top: 8px; } -/* line 4883, ../../../scss/_app_styles.scss */ +/* line 4882, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28176,11 +28171,11 @@ h5 { opacity: 0.8; } @media screen and (min-width: 980px) and (max-width: 1000px) { - /* line 4897, ../../../scss/_app_styles.scss */ + /* line 4896, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions { margin-top: 8px; } - /* line 4900, ../../../scss/_app_styles.scss */ + /* line 4899, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions > span { margin-left: 50px; background: #2e3f51; @@ -28194,16 +28189,16 @@ h5 { } } -/* line 4920, ../../../scss/_app_styles.scss */ +/* line 4919, ../../../scss/_app_styles.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; } -/* line 4923, ../../../scss/_app_styles.scss */ +/* line 4922, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 4926, ../../../scss/_app_styles.scss */ +/* line 4925, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a { list-style-type: none; display: inline-block; @@ -28214,13 +28209,42 @@ ul.nav_menu_1 > li > a { letter-spacing: 0.8px; border-bottom: 3px solid transparent; } -/* line 4937, ../../../scss/_app_styles.scss */ +/* line 4936, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-bottom: 3px solid #a2238d; } +/* line 4947, ../../../scss/_app_styles.scss */ +ul.authoring-tab { + margin-bottom: 0px; + display: inline; + width: 50%; +} +/* line 4951, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li { + display: inline-block; + background-color: #164a7b; +} +/* line 4954, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li > a { + list-style-type: none; + margin-right: -4px; + background-color: #164a7b; + padding: 12px 12px 9px; + cursor: pointer; + font-size: 18px; + display: inline-block; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; + color: #ffffff !important; +} +/* line 4965, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { + border-bottom: 3px solid #a2238d; +} + /* Secondary Top Bar */ -/* line 4948, ../../../scss/_app_styles.scss */ +/* line 4975, ../../../scss/_app_styles.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -28228,34 +28252,34 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-bottom: 30px; } -/* line 4958, ../../../scss/_app_styles.scss */ +/* line 4985, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 4963, ../../../scss/_app_styles.scss */ +/* line 4990, ../../../scss/_app_styles.scss */ .top-bar-second .name { text-align: center; } -/* line 4966, ../../../scss/_app_styles.scss */ +/* line 4993, ../../../scss/_app_styles.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 4976, ../../../scss/_app_styles.scss */ +/* line 5003, ../../../scss/_app_styles.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 4984, ../../../scss/_app_styles.scss */ +/* line 5011, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 4986, ../../../scss/_app_styles.scss */ +/* line 5013, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -28264,31 +28288,31 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { font-weight: bold; letter-spacing: 0.5px; } -/* line 4997, ../../../scss/_app_styles.scss */ +/* line 5024, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 5005, ../../../scss/_app_styles.scss */ +/* line 5032, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 5011, ../../../scss/_app_styles.scss */ +/* line 5038, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 5022, ../../../scss/_app_styles.scss */ + /* line 5049, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 5024, ../../../scss/_app_styles.scss */ + /* line 5051, ../../../scss/_app_styles.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 5031, ../../../scss/_app_styles.scss */ + /* line 5058, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -28296,32 +28320,32 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { line-height: 52px; border-left-width: 0px; } - /* line 5038, ../../../scss/_app_styles.scss */ + /* line 5065, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5044, ../../../scss/_app_styles.scss */ + /* line 5071, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5052, ../../../scss/_app_styles.scss */ + /* line 5079, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 5062, ../../../scss/_app_styles.scss */ + /* line 5089, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 5071, ../../../scss/_app_styles.scss */ + /* line 5098, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 5078, ../../../scss/_app_styles.scss */ + /* line 5105, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; @@ -28336,7 +28360,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /** * Sass styles related to unit cards */ -/* line 5105, ../../../scss/_app_styles.scss */ +/* line 5132, ../../../scss/_app_styles.scss */ .unit_card { width: 300px; color: #000; @@ -28348,7 +28372,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { position: relative; height: 210px; } -/* line 5119, ../../../scss/_app_styles.scss */ +/* line 5146, ../../../scss/_app_styles.scss */ .unit_card .unit_status { position: absolute; right: 0px; @@ -28359,11 +28383,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-radius: 3px; letter-spacing: 0.6px; } -/* line 5130, ../../../scss/_app_styles.scss */ +/* line 5157, ../../../scss/_app_styles.scss */ .unit_card .unit_header { display: table; } -/* line 5132, ../../../scss/_app_styles.scss */ +/* line 5159, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_banner { display: table-cell; border-radius: 5px; @@ -28372,7 +28396,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-right: 10px; color: #333333; } -/* line 5140, ../../../scss/_app_styles.scss */ +/* line 5167, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_title { display: table-cell; font-size: 20px; @@ -28386,7 +28410,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { vertical-align: middle; color: #333333; } -/* line 5154, ../../../scss/_app_styles.scss */ +/* line 5181, ../../../scss/_app_styles.scss */ .unit_card .unit_desc { display: block; /* Fallback for non-webkit */ @@ -28403,16 +28427,16 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin: 10px 0px 20px; color: #333333; } -/* line 5170, ../../../scss/_app_styles.scss */ +/* line 5197, ../../../scss/_app_styles.scss */ .unit_card .unit_breif .unit_breif_row i { margin-right: 10px; color: #99aaba; } -/* line 5176, ../../../scss/_app_styles.scss */ +/* line 5203, ../../../scss/_app_styles.scss */ .unit_card .unit_actions { padding: 5px 0px; } -/* line 5181, ../../../scss/_app_styles.scss */ +/* line 5208, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol { background: #a2238d; height: 37px; @@ -28425,11 +28449,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5193, ../../../scss/_app_styles.scss */ +/* line 5220, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 5198, ../../../scss/_app_styles.scss */ +/* line 5225, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics { color: #a2238d; font-weight: 500; @@ -28437,7 +28461,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.3px; border-bottom: 2px solid #a2238d; } -/* line 5206, ../../../scss/_app_styles.scss */ +/* line 5233, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics-points { background: #ffffff; color: #a2238d; @@ -28448,7 +28472,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { font-weight: bold; cursor: default; } -/* line 5217, ../../../scss/_app_styles.scss */ +/* line 5244, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit { height: 37px; text-align: center; @@ -28457,13 +28481,13 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5225, ../../../scss/_app_styles.scss */ +/* line 5252, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit:hover { border-bottom: 2px solid #ffc14e; } /* unit cards labels */ -/* line 5235, ../../../scss/_app_styles.scss */ +/* line 5262, ../../../scss/_app_styles.scss */ .status-completed { width: auto; top: -1.15em; @@ -28480,7 +28504,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5251, ../../../scss/_app_styles.scss */ +/* line 5278, ../../../scss/_app_styles.scss */ .status-in-progress { width: auto; top: -1.15em; @@ -28497,7 +28521,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5268, ../../../scss/_app_styles.scss */ +/* line 5295, ../../../scss/_app_styles.scss */ .status-upcoming { width: auto; top: -1.15em; @@ -28514,7 +28538,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5285, ../../../scss/_app_styles.scss */ +/* line 5312, ../../../scss/_app_styles.scss */ .status-draft { width: auto; top: -1.15em; @@ -28531,48 +28555,65 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5302, ../../../scss/_app_styles.scss */ +/* line 5330, ../../../scss/_app_styles.scss */ +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #000000b8; + letter-spacing: 0.4px; +} + +/* line 5347, ../../../scss/_app_styles.scss */ .icon-widget { font-size: 24px; } /* module detail css */ -/* line 5311, ../../../scss/_app_styles.scss */ +/* line 5356, ../../../scss/_app_styles.scss */ .thumbnail_style { margin-top: -30px; margin-left: -30px; } -/* line 5316, ../../../scss/_app_styles.scss */ +/* line 5361, ../../../scss/_app_styles.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 5322, ../../../scss/_app_styles.scss */ +/* line 5367, ../../../scss/_app_styles.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); margin-top: -29px; padding-left: 10px; } -/* line 5326, ../../../scss/_app_styles.scss */ +/* line 5371, ../../../scss/_app_styles.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 5336, ../../../scss/_app_styles.scss */ +/* line 5381, ../../../scss/_app_styles.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 5341, ../../../scss/_app_styles.scss */ +/* line 5386, ../../../scss/_app_styles.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 5344, ../../../scss/_app_styles.scss */ +/* line 5389, ../../../scss/_app_styles.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28586,7 +28627,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 5361, ../../../scss/_app_styles.scss */ +/* line 5406, ../../../scss/_app_styles.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -28600,7 +28641,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { } /* Creating and editing course Structure */ -/* line 5378, ../../../scss/_app_styles.scss */ +/* line 5423, ../../../scss/_app_styles.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -28611,34 +28652,34 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 5387, ../../../scss/_app_styles.scss */ +/* line 5432, ../../../scss/_app_styles.scss */ .group_tile:hover { opacity: 0.7; } -/* line 5390, ../../../scss/_app_styles.scss */ +/* line 5435, ../../../scss/_app_styles.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 5397, ../../../scss/_app_styles.scss */ +/* line 5442, ../../../scss/_app_styles.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 5404, ../../../scss/_app_styles.scss */ +/* line 5449, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 5407, ../../../scss/_app_styles.scss */ +/* line 5452, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 5410, ../../../scss/_app_styles.scss */ +/* line 5455, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -28646,15 +28687,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 5418, ../../../scss/_app_styles.scss */ +/* line 5463, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 5422, ../../../scss/_app_styles.scss */ +/* line 5467, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 5424, ../../../scss/_app_styles.scss */ +/* line 5469, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -28665,38 +28706,37 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 5434, ../../../scss/_app_styles.scss */ +/* line 5479, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 5439, ../../../scss/_app_styles.scss */ +/* line 5484, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 5445, ../../../scss/_app_styles.scss */ +/* line 5490, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 5452, ../../../scss/_app_styles.scss */ +/* line 5497, ../../../scss/_app_styles.scss */ .max-width { max-width: 100%; } -/* line 5458, ../../../scss/_app_styles.scss */ +/* line 5503, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; - height: 200px; overflow-y: auto; background: url("/static/ndf/images/course-cover.png") no-repeat; background-size: 100% 100%; margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 5467, ../../../scss/_app_styles.scss */ +/* line 5512, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -28713,7 +28753,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 5480, ../../../scss/_app_styles.scss */ +/* line 5525, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -28723,29 +28763,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 5489, ../../../scss/_app_styles.scss */ +/* line 5534, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 5494, ../../../scss/_app_styles.scss */ +/* line 5539, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background-color: #ffffff; } -/* line 5499, ../../../scss/_app_styles.scss */ +/* line 5544, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { - min-height: 100%; background-color: #fff; - margin-bottom: -180px; + margin-bottom: 100px; margin-top: -1px; } -/* line 5505, ../../../scss/_app_styles.scss */ +/* line 5550, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 5509, ../../../scss/_app_styles.scss */ +/* line 5554, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -28758,7 +28797,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 5522, ../../../scss/_app_styles.scss */ +/* line 5567, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -28773,7 +28812,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Unit_Structure styles */ -/* line 5540, ../../../scss/_app_styles.scss */ +/* line 5585, ../../../scss/_app_styles.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -28781,12 +28820,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 5548, ../../../scss/_app_styles.scss */ +/* line 5593, ../../../scss/_app_styles.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 5552, ../../../scss/_app_styles.scss */ +/* line 5597, ../../../scss/_app_styles.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -28794,17 +28833,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 5558, ../../../scss/_app_styles.scss */ +/* line 5603, ../../../scss/_app_styles.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 5564, ../../../scss/_app_styles.scss */ +/* line 5609, ../../../scss/_app_styles.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 5569, ../../../scss/_app_styles.scss */ +/* line 5614, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28814,25 +28853,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 5578, ../../../scss/_app_styles.scss */ +/* line 5623, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5582, ../../../scss/_app_styles.scss */ +/* line 5627, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 5587, ../../../scss/_app_styles.scss */ +/* line 5632, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 5596, ../../../scss/_app_styles.scss */ +/* line 5641, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -28841,7 +28880,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5603, ../../../scss/_app_styles.scss */ +/* line 5648, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -28850,15 +28889,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 5612, ../../../scss/_app_styles.scss */ +/* line 5657, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 5617, ../../../scss/_app_styles.scss */ +/* line 5662, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 5620, ../../../scss/_app_styles.scss */ +/* line 5665, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -28866,21 +28905,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 5630, ../../../scss/_app_styles.scss */ +/* line 5675, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 5636, ../../../scss/_app_styles.scss */ +/* line 5681, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 5644, ../../../scss/_app_styles.scss */ +/* line 5689, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 5646, ../../../scss/_app_styles.scss */ +/* line 5691, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -28889,7 +28928,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5653, ../../../scss/_app_styles.scss */ +/* line 5698, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -28897,11 +28936,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5662, ../../../scss/_app_styles.scss */ +/* line 5707, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 5671, ../../../scss/_app_styles.scss */ +/* line 5716, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -28913,49 +28952,49 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 5681, ../../../scss/_app_styles.scss */ +/* line 5726, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 5687, ../../../scss/_app_styles.scss */ +/* line 5732, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 5690, ../../../scss/_app_styles.scss */ +/* line 5735, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 5699, ../../../scss/_app_styles.scss */ +/* line 5744, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 5704, ../../../scss/_app_styles.scss */ +/* line 5749, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 5708, ../../../scss/_app_styles.scss */ +/* line 5753, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 5710, ../../../scss/_app_styles.scss */ +/* line 5755, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 5713, ../../../scss/_app_styles.scss */ +/* line 5758, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 5719, ../../../scss/_app_styles.scss */ +/* line 5764, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -28963,29 +29002,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 15px 5px; cursor: pointer; } -/* line 5734, ../../../scss/_app_styles.scss */ +/* line 5779, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 5742, ../../../scss/_app_styles.scss */ +/* line 5787, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 5748, ../../../scss/_app_styles.scss */ +/* line 5793, ../../../scss/_app_styles.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 5757, ../../../scss/_app_styles.scss */ +/* line 5802, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 5762, ../../../scss/_app_styles.scss */ +/* line 5807, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28993,28 +29032,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 5769, ../../../scss/_app_styles.scss */ +/* line 5814, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5774, ../../../scss/_app_styles.scss */ +/* line 5819, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5779, ../../../scss/_app_styles.scss */ +/* line 5824, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 5781, ../../../scss/_app_styles.scss */ +/* line 5826, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 5785, ../../../scss/_app_styles.scss */ +/* line 5830, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -29026,21 +29065,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; border-radius: 3px; } -/* line 5796, ../../../scss/_app_styles.scss */ +/* line 5841, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 5801, ../../../scss/_app_styles.scss */ +/* line 5846, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 5807, ../../../scss/_app_styles.scss */ +/* line 5852, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 5813, ../../../scss/_app_styles.scss */ +/* line 5858, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -29048,19 +29087,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 5820, ../../../scss/_app_styles.scss */ +/* line 5865, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 5827, ../../../scss/_app_styles.scss */ +/* line 5872, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5838, ../../../scss/_app_styles.scss */ +/* line 5883, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -29071,7 +29110,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 5855, ../../../scss/_app_styles.scss */ +/* line 5900, ../../../scss/_app_styles.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -29086,66 +29125,66 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* lesspn listing LMS */ -/* line 5871, ../../../scss/_app_styles.scss */ +/* line 5916, ../../../scss/_app_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 5879, ../../../scss/_app_styles.scss */ +/* line 5924, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 5882, ../../../scss/_app_styles.scss */ +/* line 5927, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 5884, ../../../scss/_app_styles.scss */ +/* line 5929, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 5891, ../../../scss/_app_styles.scss */ +/* line 5936, ../../../scss/_app_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 5893, ../../../scss/_app_styles.scss */ +/* line 5938, ../../../scss/_app_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 5898, ../../../scss/_app_styles.scss */ +/* line 5943, ../../../scss/_app_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 5906, ../../../scss/_app_styles.scss */ +/* line 5951, ../../../scss/_app_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5912, ../../../scss/_app_styles.scss */ +/* line 5957, ../../../scss/_app_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5919, ../../../scss/_app_styles.scss */ +/* line 5964, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 5922, ../../../scss/_app_styles.scss */ +/* line 5967, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 5925, ../../../scss/_app_styles.scss */ +/* line 5970, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 5928, ../../../scss/_app_styles.scss */ +/* line 5973, ../../../scss/_app_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; @@ -29155,23 +29194,23 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Styling for the Secondary header 2 */ -/* line 5947, ../../../scss/_app_styles.scss */ +/* line 5992, ../../../scss/_app_styles.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 5950, ../../../scss/_app_styles.scss */ +/* line 5995, ../../../scss/_app_styles.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 5958, ../../../scss/_app_styles.scss */ +/* line 6003, ../../../scss/_app_styles.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 5967, ../../../scss/_app_styles.scss */ +/* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { position: relative; color: #fff; @@ -29182,56 +29221,56 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: -2px; border-right: 1px solid white; } -/* line 5976, ../../../scss/_app_styles.scss */ +/* line 6021, ../../../scss/_app_styles.scss */ .activity_player_header .header_title a { color: #ffc14f; } @media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 5967, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 938px); } } @media only screen and (min-device-width: 2131px) { - /* line 5967, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 970px); } } @media only screen and (max-device-width: 1024px) { - /* line 5967, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 753px); } } -/* line 6053, ../../../scss/_app_styles.scss */ +/* line 6098, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon { font-size: 16px; line-height: 45px; color: #ffc14f; } -/* line 6059, ../../../scss/_app_styles.scss */ +/* line 6104, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 6065, ../../../scss/_app_styles.scss */ +/* line 6110, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 10px; } @media screen and (min-width: 1025px) { - /* line 6065, ../../../scss/_app_styles.scss */ + /* line 6110, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 15px; } } @media screen and (min-width: 1025px) { - /* line 6072, ../../../scss/_app_styles.scss */ + /* line 6117, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { float: right; margin-right: 70px; @@ -29239,73 +29278,73 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media screen and (max-width: 1024px) { - /* line 6072, ../../../scss/_app_styles.scss */ + /* line 6117, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { background-color: rgba(107, 0, 84, 0.97); } } -/* line 6085, ../../../scss/_app_styles.scss */ +/* line 6130, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6091, ../../../scss/_app_styles.scss */ +/* line 6136, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block { padding: 0px 15px; margin-left: -2px; border-right: 1px solid white; } -/* line 6095, ../../../scss/_app_styles.scss */ +/* line 6140, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block a { color: #ffc14f; } -/* line 6101, ../../../scss/_app_styles.scss */ +/* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 9px; } @media screen and (min-width: 1025px) { - /* line 6101, ../../../scss/_app_styles.scss */ + /* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 15px; } } -/* line 6109, ../../../scss/_app_styles.scss */ +/* line 6154, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 7px; } @media screen and (min-width: 1025px) { - /* line 6109, ../../../scss/_app_styles.scss */ + /* line 6154, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 15px; } } -/* line 6118, ../../../scss/_app_styles.scss */ +/* line 6163, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 6121, ../../../scss/_app_styles.scss */ +/* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button i { color: #71318b; } -/* line 6127, ../../../scss/_app_styles.scss */ +/* line 6172, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 6131, ../../../scss/_app_styles.scss */ +/* line 6176, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 6137, ../../../scss/_app_styles.scss */ +/* line 6182, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .pagination:not(i) { color: #a983b9; } -/* line 6145, ../../../scss/_app_styles.scss */ +/* line 6190, ../../../scss/_app_styles.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -29313,29 +29352,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 6152, ../../../scss/_app_styles.scss */ +/* line 6197, ../../../scss/_app_styles.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 6156, ../../../scss/_app_styles.scss */ +/* line 6201, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6162, ../../../scss/_app_styles.scss */ +/* line 6207, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6168, ../../../scss/_app_styles.scss */ +/* line 6213, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 6173, ../../../scss/_app_styles.scss */ +/* line 6218, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29345,25 +29384,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 6182, ../../../scss/_app_styles.scss */ +/* line 6227, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6186, ../../../scss/_app_styles.scss */ +/* line 6231, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6191, ../../../scss/_app_styles.scss */ +/* line 6236, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6200, ../../../scss/_app_styles.scss */ +/* line 6245, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29372,7 +29411,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6207, ../../../scss/_app_styles.scss */ +/* line 6252, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29381,15 +29420,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 6216, ../../../scss/_app_styles.scss */ +/* line 6261, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6221, ../../../scss/_app_styles.scss */ +/* line 6266, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6224, ../../../scss/_app_styles.scss */ +/* line 6269, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29397,21 +29436,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 6234, ../../../scss/_app_styles.scss */ +/* line 6279, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6240, ../../../scss/_app_styles.scss */ +/* line 6285, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6248, ../../../scss/_app_styles.scss */ +/* line 6293, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6250, ../../../scss/_app_styles.scss */ +/* line 6295, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29420,7 +29459,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6257, ../../../scss/_app_styles.scss */ +/* line 6302, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29428,11 +29467,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6266, ../../../scss/_app_styles.scss */ +/* line 6311, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6275, ../../../scss/_app_styles.scss */ +/* line 6320, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29444,48 +29483,48 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 6285, ../../../scss/_app_styles.scss */ +/* line 6330, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6290, ../../../scss/_app_styles.scss */ +/* line 6335, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6293, ../../../scss/_app_styles.scss */ +/* line 6338, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6302, ../../../scss/_app_styles.scss */ +/* line 6347, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6307, ../../../scss/_app_styles.scss */ +/* line 6352, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6311, ../../../scss/_app_styles.scss */ +/* line 6356, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6313, ../../../scss/_app_styles.scss */ +/* line 6358, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6316, ../../../scss/_app_styles.scss */ +/* line 6361, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6322, ../../../scss/_app_styles.scss */ +/* line 6367, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29494,7 +29533,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; } -/* line 6340, ../../../scss/_app_styles.scss */ +/* line 6385, ../../../scss/_app_styles.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -29502,26 +29541,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 10px; padding-right: 4px; } -/* line 6346, ../../../scss/_app_styles.scss */ +/* line 6391, ../../../scss/_app_styles.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 6351, ../../../scss/_app_styles.scss */ +/* line 6396, ../../../scss/_app_styles.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6357, ../../../scss/_app_styles.scss */ +/* line 6402, ../../../scss/_app_styles.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 6363, ../../../scss/_app_styles.scss */ +/* line 6408, ../../../scss/_app_styles.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29531,29 +29570,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 6372, ../../../scss/_app_styles.scss */ +/* line 6417, ../../../scss/_app_styles.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 6376, ../../../scss/_app_styles.scss */ +/* line 6421, ../../../scss/_app_styles.scss */ .activity-title > li > a { color: black; } -/* line 6385, ../../../scss/_app_styles.scss */ +/* line 6430, ../../../scss/_app_styles.scss */ .activity_page_rendered { margin-left: 20px; max-width: 900px; } /* Rating css */ -/* line 6393, ../../../scss/_app_styles.scss */ +/* line 6438, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 6395, ../../../scss/_app_styles.scss */ +/* line 6440, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -29561,19 +29600,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { unicode-bidi: bidi-override; direction: rtl; } -/* line 6403, ../../../scss/_app_styles.scss */ +/* line 6448, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 6405, ../../../scss/_app_styles.scss */ +/* line 6450, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 6411, ../../../scss/_app_styles.scss */ +/* line 6456, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 6413, ../../../scss/_app_styles.scss */ +/* line 6458, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -29586,7 +29625,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0; vertical-align: bottom; } -/* line 6425, ../../../scss/_app_styles.scss */ +/* line 6470, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -29594,32 +29633,32 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* WHITE STAR */ color: #888; } -/* line 6432, ../../../scss/_app_styles.scss */ +/* line 6477, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 6443, ../../../scss/_app_styles.scss */ +/* line 6488, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 6450, ../../../scss/_app_styles.scss */ +/* line 6495, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 6458, ../../../scss/_app_styles.scss */ +/* line 6503, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 6463, ../../../scss/_app_styles.scss */ +/* line 6508, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -29628,29 +29667,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-shadow: 0 0 1px #333; } -/* line 6473, ../../../scss/_app_styles.scss */ +/* line 6518, ../../../scss/_app_styles.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 6477, ../../../scss/_app_styles.scss */ +/* line 6522, ../../../scss/_app_styles.scss */ .input_links { margin-left: 10px; } -/* line 6479, ../../../scss/_app_styles.scss */ +/* line 6524, ../../../scss/_app_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 6485, ../../../scss/_app_styles.scss */ +/* line 6530, ../../../scss/_app_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 6493, ../../../scss/_app_styles.scss */ +/* line 6538, ../../../scss/_app_styles.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -29659,19 +29698,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 6502, ../../../scss/_app_styles.scss */ +/* line 6547, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 6507, ../../../scss/_app_styles.scss */ +/* line 6552, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 6513, ../../../scss/_app_styles.scss */ +/* line 6558, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -29679,12 +29718,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; margin-left: 12%; } -/* line 6521, ../../../scss/_app_styles.scss */ +/* line 6566, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 6527, ../../../scss/_app_styles.scss */ +/* line 6572, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -29693,21 +29732,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: none; color: #8E8E8E; } -/* line 6536, ../../../scss/_app_styles.scss */ +/* line 6581, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 6541, ../../../scss/_app_styles.scss */ +/* line 6586, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 6543, ../../../scss/_app_styles.scss */ +/* line 6588, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 6546, ../../../scss/_app_styles.scss */ +/* line 6591, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -29718,24 +29757,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #757575; margin-right: 20px; } -/* line 6556, ../../../scss/_app_styles.scss */ +/* line 6601, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 6560, ../../../scss/_app_styles.scss */ +/* line 6605, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 6563, ../../../scss/_app_styles.scss */ +/* line 6608, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 6568, ../../../scss/_app_styles.scss */ +/* line 6613, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 6572, ../../../scss/_app_styles.scss */ +/* line 6617, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -29747,7 +29786,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; color: #222222; } -/* line 6583, ../../../scss/_app_styles.scss */ +/* line 6628, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -29755,15 +29794,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 8px; top: 4px; } -/* line 6591, ../../../scss/_app_styles.scss */ +/* line 6636, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 6593, ../../../scss/_app_styles.scss */ +/* line 6638, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 6596, ../../../scss/_app_styles.scss */ +/* line 6641, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -29773,25 +29812,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { letter-spacing: 0.8px; color: #999999; } -/* line 6605, ../../../scss/_app_styles.scss */ +/* line 6650, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 6611, ../../../scss/_app_styles.scss */ +/* line 6656, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 6620, ../../../scss/_app_styles.scss */ +/* line 6665, ../../../scss/_app_styles.scss */ .icon-color { color: #2e3f51 !important; padding: right; } /* The asset tile */ -/* line 6630, ../../../scss/_app_styles.scss */ +/* line 6675, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29801,7 +29840,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 6639, ../../../scss/_app_styles.scss */ +/* line 6684, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -29818,7 +29857,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 6652, ../../../scss/_app_styles.scss */ +/* line 6697, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -29828,28 +29867,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 6661, ../../../scss/_app_styles.scss */ +/* line 6706, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 6666, ../../../scss/_app_styles.scss */ +/* line 6711, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 6671, ../../../scss/_app_styles.scss */ +/* line 6716, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 6677, ../../../scss/_app_styles.scss */ +/* line 6722, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 6681, ../../../scss/_app_styles.scss */ +/* line 6726, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -29862,7 +29901,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 6694, ../../../scss/_app_styles.scss */ +/* line 6739, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -29876,7 +29915,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 6709, ../../../scss/_app_styles.scss */ +/* line 6754, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -29885,22 +29924,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6718, ../../../scss/_app_styles.scss */ +/* line 6763, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6725, ../../../scss/_app_styles.scss */ +/* line 6770, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6731, ../../../scss/_app_styles.scss */ +/* line 6776, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6733, ../../../scss/_app_styles.scss */ +/* line 6778, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -29909,15 +29948,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6740, ../../../scss/_app_styles.scss */ +/* line 6785, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6744, ../../../scss/_app_styles.scss */ +/* line 6789, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6750, ../../../scss/_app_styles.scss */ +/* line 6795, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -29926,7 +29965,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6761, ../../../scss/_app_styles.scss */ +/* line 6806, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -29935,24 +29974,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6770, ../../../scss/_app_styles.scss */ +/* line 6815, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6777, ../../../scss/_app_styles.scss */ +/* line 6822, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 6782, ../../../scss/_app_styles.scss */ +/* line 6827, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 6786, ../../../scss/_app_styles.scss */ +/* line 6831, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -29963,14 +30002,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 6796, ../../../scss/_app_styles.scss */ +/* line 6841, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 6803, ../../../scss/_app_styles.scss */ + /* line 6848, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -29978,7 +30017,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6812, ../../../scss/_app_styles.scss */ + /* line 6857, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -29986,7 +30025,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6819, ../../../scss/_app_styles.scss */ + /* line 6864, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -29994,14 +30033,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6826, ../../../scss/_app_styles.scss */ + /* line 6871, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 6834, ../../../scss/_app_styles.scss */ +/* line 6879, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30016,14 +30055,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6850, ../../../scss/_app_styles.scss */ +/* line 6895, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 6857, ../../../scss/_app_styles.scss */ + /* line 6902, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30034,7 +30073,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6868, ../../../scss/_app_styles.scss */ + /* line 6913, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30045,7 +30084,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6879, ../../../scss/_app_styles.scss */ + /* line 6924, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30056,7 +30095,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6890, ../../../scss/_app_styles.scss */ + /* line 6935, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30066,7 +30105,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6901, ../../../scss/_app_styles.scss */ +/* line 6946, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30081,14 +30120,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6917, ../../../scss/_app_styles.scss */ +/* line 6962, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 6924, ../../../scss/_app_styles.scss */ + /* line 6969, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30099,7 +30138,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6935, ../../../scss/_app_styles.scss */ + /* line 6980, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30110,7 +30149,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6946, ../../../scss/_app_styles.scss */ + /* line 6991, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30121,7 +30160,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6957, ../../../scss/_app_styles.scss */ + /* line 7002, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30131,11 +30170,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6968, ../../../scss/_app_styles.scss */ +/* line 7013, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 6970, ../../../scss/_app_styles.scss */ +/* line 7015, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30144,11 +30183,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6978, ../../../scss/_app_styles.scss */ +/* line 7023, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 6984, ../../../scss/_app_styles.scss */ +/* line 7029, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30157,7 +30196,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6995, ../../../scss/_app_styles.scss */ +/* line 7040, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30168,22 +30207,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7005, ../../../scss/_app_styles.scss */ +/* line 7050, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7008, ../../../scss/_app_styles.scss */ +/* line 7053, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7013, ../../../scss/_app_styles.scss */ +/* line 7058, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7024, ../../../scss/_app_styles.scss */ +/* line 7069, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30194,26 +30233,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7034, ../../../scss/_app_styles.scss */ +/* line 7079, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7037, ../../../scss/_app_styles.scss */ +/* line 7082, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7041, ../../../scss/_app_styles.scss */ +/* line 7086, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7047, ../../../scss/_app_styles.scss */ +/* line 7092, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7049, ../../../scss/_app_styles.scss */ +/* line 7094, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30222,7 +30261,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7058, ../../../scss/_app_styles.scss */ +/* line 7103, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30231,7 +30270,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7072, ../../../scss/_app_styles.scss */ +/* line 7117, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -30241,20 +30280,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Asset detail */ -/* line 7083, ../../../scss/_app_styles.scss */ +/* line 7128, ../../../scss/_app_styles.scss */ .overlay-head { background-color: #fff; height: 60px; margin-bottom: 20px; } -/* line 7089, ../../../scss/_app_styles.scss */ +/* line 7134, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7094, ../../../scss/_app_styles.scss */ +/* line 7139, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30268,13 +30307,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7106, ../../../scss/_app_styles.scss */ +/* line 7151, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7113, ../../../scss/_app_styles.scss */ +/* line 7158, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30286,7 +30325,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7124, ../../../scss/_app_styles.scss */ +/* line 7169, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30294,13 +30333,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7133, ../../../scss/_app_styles.scss */ +/* line 7178, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7141, ../../../scss/_app_styles.scss */ +/* line 7186, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30318,12 +30357,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7157, ../../../scss/_app_styles.scss */ +/* line 7202, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7162, ../../../scss/_app_styles.scss */ +/* line 7207, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30335,13 +30374,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7172, ../../../scss/_app_styles.scss */ +/* line 7217, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7180, ../../../scss/_app_styles.scss */ +/* line 7225, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30355,848 +30394,149 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { align-items: center; border: .2rem solid #912a7d; background-color: #912a7d; - color: #fff; - transition: all .1s ease; -} -/* line 7195, ../../../scss/_app_styles.scss */ -.button-save-new:hover { - background-color: #fff; - color: #912a7d; -} - -/* create units */ -/* line 7208, ../../../scss/_app_styles.scss */ -.course_creator_header { - width: 100%; - height: 50px; - background: #fff; - padding: 5px 15px; - box-shadow: 1px 0px 0px #000; -} -/* line 7215, ../../../scss/_app_styles.scss */ -.course_creator_header .unit_editor { - width: 100%; - height: 320px; - background: #fff; - padding: 5px 15px; - box-shadow: 1px 0px 0px #000; -} -/* line 7224, ../../../scss/_app_styles.scss */ -.course_creator_header .back_to_group { - padding: 0px 15px 0px 10px; - border-right: 1px solid #ccc; - margin-right: 15px; -} -/* line 7230, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading_unit { - width: 500px; - height: 40px; - border: 1px solid #74b3dc; - box-shadow: none; - float: right; - text-align: center; -} -/* line 7239, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading_unit:focus { - border: 1px solid #74b3dc; -} -/* line 7243, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading_unit::-webkit-input-placeholder - { - color: #d9dfe4; - letter-spacing: 0.8px; -} -/* line 7251, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading_unit select { - font-size: 14px; - font-family: 'OpenSans-Regular', sans-serif; - color: gray; - border: 0px solid #74b3dc; -} -/* line 7260, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading input { - width: 500px; - height: 40px; - border: 0px solid #74b3dc; - box-shadow: none; - float: right; - text-align: center; -} -/* line 7268, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading input:focus { - border: 1px solid #74b3dc; -} -/* line 7272, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading input::-webkit-input-placeholder - { - color: #d9dfe4; - letter-spacing: 0.8px; -} -/* line 7282, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading h5 { - margin-top: 15px; -} -/* line 7287, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading span { - letter-spacing: 0.9px; - font-weight: 600; - line-height: 50px; -} -/* line 7295, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions ul { - margin: 0px; -} -/* line 7298, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions ul li { - list-style-type: none; - display: inline-block; - padding: 12px; - color: #7ca0d0; - cursor: pointer; - letter-spacing: 0.8px; -} -/* line 7307, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { - border-bottom: 3px solid #ffc14e; -} -/* line 7312, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions span { - margin-right: 5px; - background: rgba(0, 0, 0, 0.6); - border: 1px solid rgba(255, 255, 255, 0.7); - padding: 1px 8px; - color: #fff; - font-size: 12px; - margin: 0px 10px 0px 0px; - cursor: pointer; - border-radius: 3px; -} -/* line 7324, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions i { - margin-right: 5px; - background: rgba(0, 0, 0, 0.6); - border: 1px solid rgba(255, 255, 255, 0.7); - padding: 1px 8px; - color: #fff; - font-size: 12px; - margin: 0px 10px 0px 0px; - cursor: pointer; - border-radius: 3px; -} - -/* line 7342, ../../../scss/_app_styles.scss */ -.create_unit { - background: #fff; - box-shadow: 0px 2px 3px #000; - margin: 10px auto; - padding: 10px; -} - -/* line 7350, ../../../scss/_app_styles.scss */ -.button-hollow-black { - background: #fff; - border: 2px solid #164A7B; - border-radius: 5px; - color: #164A7B; - font-weight: 600; - letter-spacing: 0.9px; - padding: 2px 10px; -} - -/* line 7360, ../../../scss/_app_styles.scss */ -.vertically-center { - top: 50%; - transform: translateY(-50%); -} - -/* line 7369, ../../../scss/_app_styles.scss */ -.top-bar-second, .top-bar-second .name { - height: 52px; - background: #ddeff9; - color: #719dc9; - margin-bottom: 30px; -} - -/* line 7379, ../../../scss/_app_styles.scss */ -.top-bar-second .title-area { - box-shadow: 0px 0.6px 3px #000; - z-index: 20; - width: 100%; -} -/* line 7384, ../../../scss/_app_styles.scss */ -.top-bar-second .name { - text-align: center; -} -/* line 7387, ../../../scss/_app_styles.scss */ -.top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { - position: absolute; - left: 15px; - color: #fff; - font-weight: 100; -} -/* line 7397, ../../../scss/_app_styles.scss */ -.top-bar-second li.toggle-topbar i { - color: #fff; - display: inline-block; - vertical-align: bottom; -} -/* line 7405, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section ul li { - background: #164A7B; -} -/* line 7407, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section ul li > a { - border-left: 3px solid transparent; - border-bottom: 1px solid #4b5b6b; - color: #74b3dc; - line-height: 40px; - font-weight: bold; - letter-spacing: 0.5px; -} -/* line 7418, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { - border-left-color: #ffc14e; - color: #ce7869; -} -/* line 7426, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section .dropdown li.parent-link a { - display: none; -} -/* line 7432, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { - color: #2e3f51; - background: #acd4fa; -} - -@media screen and (min-width: 40.063em) { - /* line 7443, ../../../scss/_app_styles.scss */ - .top-bar-second .title-area { - box-shadow: none; - } - /* line 7445, ../../../scss/_app_styles.scss */ - .top-bar-second .title-area .name { - text-align: right; - } - /* line 7452, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { - cursor: pointer; - background: transparent; - border-bottom: 0px; - line-height: 52px; - border-left-width: 0px; - } - /* line 7459, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { - color: #ce7869; - border-bottom: 3px solid #ffc14e; - } - /* line 7465, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { - color: #ce7869; - border-bottom: 3px solid #ffc14e; - } - /* line 7473, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { - color: #74b3dc; - border-bottom: 0px; - } - /* line 7483, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { - background: transparent; - } - /* line 7492, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { - border-left-width: 2px; - color: #74b3dc; - background: #164A7B; - } - /* line 7499, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { - background: #164A7B; - color: #74b3dc; - border-bottom: 0px; - border-left-width: 2px; - /*&:hover { - color: $secondry-blue; - border-bottom: 0px; - }*/ - } -} -/* Buttons custom css */ -/* line 7520, ../../../scss/_app_styles.scss */ -.secondary-header-tabs { - color: #719dc7; - font-weight: 400; - padding: 14px 10px 3px 10px; - cursor: pointer; - transition: color 1s ease, border-color 1s ease; - -webkit-transition: color 1s ease, border-color 1s ease; - display: inline-block; -} -/* line 7529, ../../../scss/_app_styles.scss */ -.secondary-header-tabs:hover { - color: #164A7B; -} -/* line 7533, ../../../scss/_app_styles.scss */ -.secondary-header-tabs.active { - color: #164A7B; - border-bottom: 2px solid #164A7B; - padding-bottom: 14px; - font-weight: 600; -} - -/* line 7542, ../../../scss/_app_styles.scss */ -.secondary-header-button { - color: #3c556d; - font-weight: 700; - padding: 17px 0px 0px 10px; - cursor: pointer; - transition: color 1s ease, border-color 1s ease; - -webkit-transition: color 1s ease, border-color 1s ease; - display: inline-block; - text-transform: uppercase; - font-size: 13px; - letter-spacing: 1.2px; -} -/* line 7554, ../../../scss/_app_styles.scss */ -.secondary-header-button:hover { - opacity: 0.5; -} - -/* line 7561, ../../../scss/_app_styles.scss */ -.orange-button { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 5px !important; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 8px; - cursor: pointer; -} -/* line 7573, ../../../scss/_app_styles.scss */ -.orange-button:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7579, ../../../scss/_app_styles.scss */ -.pink-button { - background: #a2238d; - height: 37px; - text-align: center; - color: #ffffff; - font-size: 19px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 120px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; -} -/* line 7590, ../../../scss/_app_styles.scss */ -.pink-button:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); -} - -/* line 7595, ../../../scss/_app_styles.scss */ -.orange-button-template { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 10px; -} -/* line 7606, ../../../scss/_app_styles.scss */ -.orange-button-template:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7614, ../../../scss/_app_styles.scss */ -.orange-button-subtitle { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 10px; -} -/* line 7625, ../../../scss/_app_styles.scss */ -.orange-button-subtitle:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7632, ../../../scss/_app_styles.scss */ -.asset-unit-button { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 30px; - margin-bottom: 8px; - margin-top: 300px; -} -/* line 7643, ../../../scss/_app_styles.scss */ -.asset-unit-button:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7650, ../../../scss/_app_styles.scss */ -.disab-button { - margin-right: 10px; - background-color: #fff; - text-transform: none; - font-size: 14px; -} - -/* line 7658, ../../../scss/_app_styles.scss */ -.save-asset { - margin-top: 9px; - margin-right: -133px; -} - -/* line 7662, ../../../scss/_app_styles.scss */ -.asset-save-button { - color: #ce7869; - display: inline-block; - border: 1px solid #ce7869; - border-radius: 5px; - padding: 8px 10px; - outline: none; - white-space: nowrap; - -webkit-user-select: none; - cursor: pointer; - font-weight: 500; - color: #cc7769; - border-color: #cc7769; - float: right; - background: #fff; - margin-right: 5px; - margin-top: 5px; -} - -/* line 7682, ../../../scss/_app_styles.scss */ -.blue-white-button { - color: #fff; - background: #164A7B; - border-radius: 4px; - padding: 5px; - margin-right: 40px; - margin-top: 8px; - padding: 8px 10px; -} - -/* line 7692, ../../../scss/_app_styles.scss */ -button[disabled], .button.disabled, .button[disabled] { - background-color: #eefaff; - border-color: #eefaff; - color: gray; - cursor: default; - opacity: 0.7; - box-shadow: none; - border-radius: 4px; - margin-right: 40px; - margin-top: 8px; - padding: 8px 10px; -} - -/* line 7706, ../../../scss/_app_styles.scss */ -.button-small { - padding: 1px 5px; -} - -/* Tag styles */ -/* line 7714, ../../../scss/_app_styles.scss */ -.asset-tags-container { - width: 100%; - height: 50px; - background: #fff; - padding: 5px 15px; - margin-bottom: 65px; -} -/* line 7721, ../../../scss/_app_styles.scss */ -.asset-tags-container .tag-input-ele { - margin-left: 17px; - width: 96%; -} -/* line 7726, ../../../scss/_app_styles.scss */ -.asset-tags-container .added-tags-div { - margin-left: -206px; -} -/* line 7731, ../../../scss/_app_styles.scss */ -.asset-tags-container #add-tag-btn { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 5px !important; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 8px; - cursor: pointer; - display: inline-block; -} -/* line 7744, ../../../scss/_app_styles.scss */ -.asset-tags-container #add-tag-btn:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7754, ../../../scss/_app_styles.scss */ -.tags-container { - width: 100%; - height: 50px; - background: #fff; - padding: 5px 15px; - box-shadow: 1px 0px 0px #000; - margin-bottom: 65px; -} -/* line 7762, ../../../scss/_app_styles.scss */ -.tags-container .add-tag-heading span { - width: 40%; - color: #99aaba; - font-size: 10px; - text-transform: uppercase; - letter-spacing: 2px; - margin-top: 15px; - margin-left: 8px; - font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", "sans-serif"; -} -/* line 7773, ../../../scss/_app_styles.scss */ -.tags-container .tag-input-ele { - margin-left: 193px; - width: 54%; -} -/* line 7778, ../../../scss/_app_styles.scss */ -.tags-container .added-tags-div { - margin-left: 293px !important; - width: 54%; -} -/* line 7783, ../../../scss/_app_styles.scss */ -.tags-container #add-tag-btn { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 5px !important; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 8px; - cursor: pointer; - display: inline-block; -} -/* line 7796, ../../../scss/_app_styles.scss */ -.tags-container #add-tag-btn:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7805, ../../../scss/_app_styles.scss */ -.asset-unit-button { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 30px; - margin-bottom: 8px; - margin-top: 300px; -} -/* line 7816, ../../../scss/_app_styles.scss */ -.asset-unit-button:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* exploer back*/ -/* line 7824, ../../../scss/_app_styles.scss */ -.lms_explore_head { - width: 100%; - height: 45px; - background-color: #fff; - color: #164A7B; - margin-top: -30px; -} -/* line 7830, ../../../scss/_app_styles.scss */ -.lms_explore_head > p { - margin-left: 81px; - padding: 12px 0px 0px 1px; - font-family: OpenSans-Semibold; - font-size: 20px; -} -/* line 7836, ../../../scss/_app_styles.scss */ -.lms_explore_head > a { - padding: 12px 85px 3px 0px; -} - -/* line 7840, ../../../scss/_app_styles.scss */ -.lms_explore_head_unit { - width: 100%; - height: 50px; - background-color: #fff; - color: #164A7B; -} -/* line 7845, ../../../scss/_app_styles.scss */ -.lms_explore_head_unit > p { - margin-left: 81px; - padding: 0px 0px 0px 1px; - font-family: OpenSans-Semibold; - font-size: 20px; -} -/* line 7851, ../../../scss/_app_styles.scss */ -.lms_explore_head_unit > a { - padding: 0px 85px 3px 0px; -} - -/* line 7856, ../../../scss/_app_styles.scss */ -.lms_explore_back { - background-color: #fff; + color: #fff; + transition: all .1s ease; } - -/* line 7860, ../../../scss/_app_styles.scss */ -.lms_explore_back_unit { +/* line 7240, ../../../scss/_app_styles.scss */ +.button-save-new:hover { background-color: #fff; - margin-top: -23.3px; + color: #912a7d; } -/** - * Sass styles related to module cards - */ -/* line 7877, ../../../scss/_app_styles.scss */ -.module_card { - display: table; - height: 290px; - width: 526px; - cursor: pointer; - margin: 10px; - border-radius: 5px; - position: relative; - box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); -} -/* line 7887, ../../../scss/_app_styles.scss */ -.module_card:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); -} -/* line 7891, ../../../scss/_app_styles.scss */ -.module_card > div { - display: table-cell; - height: 290px; -} -/* line 7896, ../../../scss/_app_styles.scss */ -.module_card .card_banner { - width: 250px; - height: 290px; - vertical-align: middle; - overflow: hidden; +/* line 7251, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner { + width: 100%; + height: 200px; + background-image: url("/static/ndf/images/mydesk_banner.png"); background-size: 100% 100%; - border-radius: 8px 0px 0px 8px; - box-shadow: inset 0 0 5px 2px; position: relative; - z-index: 3; - -webkit-transition: border-radius .2s; - transition: border-radius .2s; } -/* line 7909, ../../../scss/_app_styles.scss */ -.module_card .card_banner > img { - height: 100%; +/* line 7258, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner:before { + content: ' '; + background-color: rgba(0, 0, 0, 0.1); + opacity: .5; width: 100%; - border-radius: 4px; - -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); -} -/* line 7914, ../../../scss/_app_styles.scss */ -.module_card .card_banner > img:hover { - -webkit-transform: scale(1.03); - -moz-transform: scale(1.03); - -ms-transform: scale(1.03); - -o-transform: scale(1.03); - transform: scale(1.03); - opacity: 0.8; -} -/* line 7926, ../../../scss/_app_styles.scss */ -.module_card .card_banner > h4 { position: absolute; - top: 100px; + top: 0; left: 0; - width: 100%; - color: #ffffff !important; - text-shadow: 2px 0px 8px black; -} -/* line 7941, ../../../scss/_app_styles.scss */ -.module_card .card_title { - display: block; - width: 230px; - font-size: 32px; - font-weight: 600; - text-align: center; - margin: 0px auto; - letter-spacing: 1px; -} -/* line 7952, ../../../scss/_app_styles.scss */ -.module_card.animated_card .card_banner { - border-radius: 8px; -} -/* line 7955, ../../../scss/_app_styles.scss */ -.module_card.animated_card:hover .card_banner { - border-radius: 8px 0px 0px 8px; -} -/* line 7960, ../../../scss/_app_styles.scss */ -.module_card.animated_card.isOpen .card_banner { - border-radius: 8px 0px 0px 8px; + right: 0; + bottom: 0; + z-index: 10; + box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7964, ../../../scss/_app_styles.scss */ -.module_card.animated_card:hover .card_summary { - left: 30px; +/* line 7272, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile { + position: absolute; + bottom: 30px; + left: 40px; } -/* line 7967, ../../../scss/_app_styles.scss */ -.module_card.animated_card .card_summary { - left: 5px; +/* line 7277, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo { + display: inline-block; + margin-right: 10px; + height: 100px; + border-radius: 5px; + overflow: hidden; + background-color: #fff; } -/* line 7971, ../../../scss/_app_styles.scss */ -.module_card .card_summary { - width: 290px; - padding: 0px 15px; - vertical-align: middle; - border-style: solid; - border-width: 1px 1px 1px 0px; - border-radius: 0px 7px 7px 0px; - border-color: #d5d5d5; - box-shadow: inset 2px 0px 13px -5px; - -webkit-transition: left .4s ease-in-out; - transition: left .4s ease-in-out; - -webkit-transition-property: left; - /* Safari */ - transition-property: left; +/* line 7285, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg { + height: 100px; + width: 100px; } -/* line 7985, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_label { - font-weight: 500; - font-size: 12.5px; - letter-spacing: 1px; - color: black; +/* line 7290, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg path { + fill: #7a422a; } -/* line 7991, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section { - margin: 5px 0px; - padding: 5px 0px; +/* line 7295, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading { + color: #fff; + display: inline-block; + vertical-align: top; } -/* line 7995, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section:not(:last-child) { - border-bottom: 1px solid #ccc; +/* line 7300, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { + font-size: 23px; + display: block; + margin-bottom: 10px; } -/* line 7998, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section p { - margin-bottom: 7px; - font-size: 12.5px; +/* line 7308, ../../../scss/_app_styles.scss */ +.mydesk_page .page_menu { + border-bottom: 1px solid #e5e5e5; } -/* line 8002, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section .ellipsis { - width: 245px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; +/* line 7312, ../../../scss/_app_styles.scss */ +.mydesk_page .page_menu li > a { + padding: 12px 20px 9px; } -/* line 8010, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section .module-card-enrol { - background: #a2238d; - height: 37px; - text-align: center; - color: #ffffff; - width: 172px; - font-size: 19px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 164px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; + +/* line 7322, ../../../scss/_app_styles.scss */ +.lms_explore_back_unit { + background-color: #fff; + margin-top: -19.3px; } -/* line 8023, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section .module-card-enrol:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); + +/* line 7329, ../../../scss/_app_styles.scss */ +.course-students-data { + margin: 2px 2px 2px 2px; + border: 2px solid #164a7b; + padding: 19px 14px 0px 5px; } -/* line 8029, ../../../scss/_app_styles.scss */ -.module_card .card_summary .module_brief { - display: block; - /* Fallback for non-webkit */ - display: -webkit-box; - height: 52.5px; - /* Fallback for non-webkit */ - max-width: 400px; - overflow: hidden; - text-overflow: ellipsis; - font-size: 12.5px; - line-height: 1.4; - -webkit-line-clamp: 3; - -webkit-box-orient: vertical; - color: black; +/* line 7336, ../../../scss/_app_styles.scss */ +.course-students-data .students-table-legends > span:nth-child(odd) { + margin: 0px 10px; } - -/* line 8047, ../../../scss/_app_styles.scss */ -.img-height { - height: 150px; - width: 1351px; +/* line 7339, ../../../scss/_app_styles.scss */ +.course-students-data .students-table-legends > span:nth-child(even) { + display: inline-block; + vertical-align: top; + margin-right: 10px; } -/* - Common css - */ -/* line 8056, ../../../scss/_app_styles.scss */ -.text-button-blue { - background-color: transparent; - color: #00A9EE; - padding: 3px 10px; - font-size: 16px; - letter-spacing: 0.7px; - line-height: 25px; +/* line 7347, ../../../scss/_app_styles.scss */ +.badge_ex { + display: inline-block; + line-height: 22px; + height: 22px; + font-weight: bolder; + padding: 0px 7px; + /*font-family: Arial, sans-serif;*/ + color: white; + text-shadow: 0 1px rgba(0, 0, 0, 0.25); + border: 1px solid; + border-radius: 18px; + -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 8068, ../../../scss/_app_styles.scss */ -.dropdown-settings { - text-align: left; - text-transform: none; - margin-top: 0px; - margin-right: 0px; - width: 198px; - background: white; - border-radius: 1px; -} -/* line 8076, ../../../scss/_app_styles.scss */ -.dropdown-settings:hover { - color: #ce7869; - border-left: 2px solid #ffc14e; +/* line 7366, ../../../scss/_app_styles.scss */ +.badge_ex.green { + background: #77cc51; + border-color: #59ad33; + background-image: -webkit-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -moz-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -o-linear-gradient(top, #a5dd8c, #77cc51); + background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 8084, ../../../scss/_app_styles.scss */ -.inner { - display: inline-block !important; +/* line 7375, ../../../scss/_app_styles.scss */ +.badge_ex.yellow { + background: #faba3e; + border-color: #f4a306; + background-image: -webkit-linear-gradient(top, #fcd589, #faba3e); + background-image: -moz-linear-gradient(top, #fcd589, #faba3e); + background-image: -o-linear-gradient(top, #fcd589, #faba3e); + background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 8089, ../../../scss/_app_styles.scss */ -.mid_label { - margin-top: 15px; - font-size: 15px; +/* line 7384, ../../../scss/_app_styles.scss */ +.badge_ex.red { + background: #fa623f; + border-color: #fa5a35; + background-image: -webkit-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -o-linear-gradient(top, #fc9f8a, #fa623f); + background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); } /* @@ -36197,7 +35537,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { .module_card .card_title { display: block; width: 230px; - font-size: 32px; + font-size: 24px; font-weight: 600; text-align: center; margin: 0px auto; @@ -36409,13 +35749,12 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; - border-bottom: 2px solid #80808063; } -/* line 5576, ../../../scss/_clix_styles.scss */ +/* line 5575, ../../../scss/_clix_styles.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 5579, ../../../scss/_clix_styles.scss */ +/* line 5578, ../../../scss/_clix_styles.scss */ ul.nav_menu_1 > li > a { list-style-type: none; display: inline-block; @@ -36426,61 +35765,61 @@ ul.nav_menu_1 > li > a { letter-spacing: 0.8px; border-bottom: 3px solid transparent; } -/* line 5590, ../../../scss/_clix_styles.scss */ +/* line 5589, ../../../scss/_clix_styles.scss */ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-bottom: 3px solid #a2238d; } -/* line 5598, ../../../scss/_clix_styles.scss */ +/* line 5597, ../../../scss/_clix_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 5606, ../../../scss/_clix_styles.scss */ +/* line 5605, ../../../scss/_clix_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 5609, ../../../scss/_clix_styles.scss */ +/* line 5608, ../../../scss/_clix_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 5611, ../../../scss/_clix_styles.scss */ +/* line 5610, ../../../scss/_clix_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 5618, ../../../scss/_clix_styles.scss */ +/* line 5617, ../../../scss/_clix_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 5620, ../../../scss/_clix_styles.scss */ +/* line 5619, ../../../scss/_clix_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 5625, ../../../scss/_clix_styles.scss */ +/* line 5624, ../../../scss/_clix_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 5633, ../../../scss/_clix_styles.scss */ +/* line 5632, ../../../scss/_clix_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5639, ../../../scss/_clix_styles.scss */ +/* line 5638, ../../../scss/_clix_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5646, ../../../scss/_clix_styles.scss */ +/* line 5645, ../../../scss/_clix_styles.scss */ .listing-row { margin-top: 10px !important; } -/* line 5650, ../../../scss/_clix_styles.scss */ +/* line 5649, ../../../scss/_clix_styles.scss */ .raw_material_asset { width: auto; top: -0.50em; @@ -36497,7 +35836,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.3px; } -/* line 5666, ../../../scss/_clix_styles.scss */ +/* line 5665, ../../../scss/_clix_styles.scss */ .status-completed { width: auto; top: -1.15em; @@ -36514,7 +35853,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5682, ../../../scss/_clix_styles.scss */ +/* line 5681, ../../../scss/_clix_styles.scss */ .status-in-progress { width: auto; top: -1.15em; @@ -36531,7 +35870,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5699, ../../../scss/_clix_styles.scss */ +/* line 5698, ../../../scss/_clix_styles.scss */ .status-upcoming { width: auto; top: -1.15em; @@ -36548,7 +35887,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5716, ../../../scss/_clix_styles.scss */ +/* line 5715, ../../../scss/_clix_styles.scss */ .status-draft { width: auto; top: -1.15em; @@ -36565,33 +35904,33 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5734, ../../../scss/_clix_styles.scss */ +/* line 5733, ../../../scss/_clix_styles.scss */ .lesson-dropdown ul { display: none; } -/* line 5738, ../../../scss/_clix_styles.scss */ +/* line 5737, ../../../scss/_clix_styles.scss */ .lesson-dropdown:hover ul { display: block; } -/* line 5742, ../../../scss/_clix_styles.scss */ +/* line 5741, ../../../scss/_clix_styles.scss */ .lesson_name_in_export { list-style: none; } -/* line 5744, ../../../scss/_clix_styles.scss */ +/* line 5743, ../../../scss/_clix_styles.scss */ .lesson_name_in_export:hover { border-left: 2.5px solid #ce7869; } -/* line 5749, ../../../scss/_clix_styles.scss */ +/* line 5748, ../../../scss/_clix_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 5755, ../../../scss/_clix_styles.scss */ +/* line 5754, ../../../scss/_clix_styles.scss */ .lms_explore_head { width: 100%; height: 45px; @@ -36599,63 +35938,63 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #164A7B; margin-top: -30px; } -/* line 5761, ../../../scss/_clix_styles.scss */ +/* line 5760, ../../../scss/_clix_styles.scss */ .lms_explore_head > p { margin-left: 81px; padding: 12px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 5767, ../../../scss/_clix_styles.scss */ +/* line 5766, ../../../scss/_clix_styles.scss */ .lms_explore_head > a { padding: 12px 85px 3px 0px; } -/* line 5771, ../../../scss/_clix_styles.scss */ +/* line 5770, ../../../scss/_clix_styles.scss */ .lms_explore_head_unit { width: 100%; height: 50px; background-color: #fff; color: #164A7B; } -/* line 5776, ../../../scss/_clix_styles.scss */ +/* line 5775, ../../../scss/_clix_styles.scss */ .lms_explore_head_unit > p { margin-left: 81px; padding: 0px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 5782, ../../../scss/_clix_styles.scss */ +/* line 5781, ../../../scss/_clix_styles.scss */ .lms_explore_head_unit > a { padding: 0px 85px 3px 0px; } -/* line 5787, ../../../scss/_clix_styles.scss */ +/* line 5786, ../../../scss/_clix_styles.scss */ .lms_explore_back { background-color: #fff; } -/* line 5791, ../../../scss/_clix_styles.scss */ +/* line 5790, ../../../scss/_clix_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -23.3px; } -/* line 5796, ../../../scss/_clix_styles.scss */ +/* line 5795, ../../../scss/_clix_styles.scss */ .empty-dashboard-message { border: 3px solid #e4e4e4; background: #f8f8f8; padding: 40px 0; text-align: center; } -/* line 5801, ../../../scss/_clix_styles.scss */ +/* line 5800, ../../../scss/_clix_styles.scss */ .empty-dashboard-message > p { font-size: 24px; color: #646464; margin-bottom: 20px; text-shadow: 0 1px rgba(255, 255, 255, 0.6); } -/* line 5807, ../../../scss/_clix_styles.scss */ +/* line 5806, ../../../scss/_clix_styles.scss */ .empty-dashboard-message > a { background-color: #164a7b; border: 1px solid #164a7b; @@ -36669,7 +36008,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-left: 5px; padding: 15px 20px; } -/* line 5820, ../../../scss/_clix_styles.scss */ +/* line 5819, ../../../scss/_clix_styles.scss */ .empty-dashboard-message .button-explore-courses { font-size: 20px; font-weight: normal; @@ -36679,7 +36018,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { width: 170px; } -/* line 5833, ../../../scss/_clix_styles.scss */ +/* line 5832, ../../../scss/_clix_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -36687,7 +36026,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-size: 100% 100%; position: relative; } -/* line 5840, ../../../scss/_clix_styles.scss */ +/* line 5839, ../../../scss/_clix_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -36701,13 +36040,13 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 5854, ../../../scss/_clix_styles.scss */ +/* line 5853, ../../../scss/_clix_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 5859, ../../../scss/_clix_styles.scss */ +/* line 5858, ../../../scss/_clix_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -36716,53 +36055,53 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { overflow: hidden; background-color: #fff; } -/* line 5867, ../../../scss/_clix_styles.scss */ +/* line 5866, ../../../scss/_clix_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 5872, ../../../scss/_clix_styles.scss */ +/* line 5871, ../../../scss/_clix_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 5877, ../../../scss/_clix_styles.scss */ +/* line 5876, ../../../scss/_clix_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 5882, ../../../scss/_clix_styles.scss */ +/* line 5881, ../../../scss/_clix_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 5890, ../../../scss/_clix_styles.scss */ +/* line 5889, ../../../scss/_clix_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 5894, ../../../scss/_clix_styles.scss */ +/* line 5893, ../../../scss/_clix_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 5904, ../../../scss/_clix_styles.scss */ +/* line 5903, ../../../scss/_clix_styles.scss */ .input_links { margin-left: 10px; } -/* line 5906, ../../../scss/_clix_styles.scss */ +/* line 5905, ../../../scss/_clix_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 5912, ../../../scss/_clix_styles.scss */ +/* line 5911, ../../../scss/_clix_styles.scss */ #course-notification #status { width: 100% !important; } -/* line 5918, ../../../scss/_clix_styles.scss */ +/* line 5917, ../../../scss/_clix_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; @@ -36774,7 +36113,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #6153AE; } -/* line 5929, ../../../scss/_clix_styles.scss */ +/* line 5928, ../../../scss/_clix_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -36786,7 +36125,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #6153AE; } -/* line 5940, ../../../scss/_clix_styles.scss */ +/* line 5939, ../../../scss/_clix_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -36796,12 +36135,12 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-color: #f7f7f7; width: 85px; } -/* line 5948, ../../../scss/_clix_styles.scss */ +/* line 5947, ../../../scss/_clix_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 5952, ../../../scss/_clix_styles.scss */ +/* line 5951, ../../../scss/_clix_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -36812,39 +36151,39 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-color: #f7f7f7; width: 85px; } -/* line 5961, ../../../scss/_clix_styles.scss */ +/* line 5960, ../../../scss/_clix_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 5966, ../../../scss/_clix_styles.scss */ +/* line 5965, ../../../scss/_clix_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 5969, ../../../scss/_clix_styles.scss */ +/* line 5968, ../../../scss/_clix_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 5972, ../../../scss/_clix_styles.scss */ +/* line 5971, ../../../scss/_clix_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 5975, ../../../scss/_clix_styles.scss */ +/* line 5974, ../../../scss/_clix_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; } -/* line 5979, ../../../scss/_clix_styles.scss */ +/* line 5978, ../../../scss/_clix_styles.scss */ .img-height { height: 150px; width: 1351px; } -/* line 5984, ../../../scss/_clix_styles.scss */ +/* line 5983, ../../../scss/_clix_styles.scss */ .wrapper-footer { box-shadow: 0 -1px 5px 0 rgba(0, 0, 0, 0.1); border-top: 1px solid #c5c6c7; @@ -36858,7 +36197,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background: rgba(221, 221, 221, 0.18); clear: both; } -/* line 6000, ../../../scss/_clix_styles.scss */ +/* line 5999, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix { box-sizing: border-box; max-width: 1200px; @@ -36866,85 +36205,85 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-right: auto; margin: 0 auto; } -/* line 6008, ../../../scss/_clix_styles.scss */ +/* line 6007, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos { float: left; display: block; margin-right: 2.35765%; width: 65.88078%; } -/* line 6014, ../../../scss/_clix_styles.scss */ +/* line 6013, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-links-logos { margin: 10px 0px 0px 18px; } -/* line 6017, ../../../scss/_clix_styles.scss */ +/* line 6016, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-links-logos ol { display: inline; list-style-type: none; } -/* line 6020, ../../../scss/_clix_styles.scss */ +/* line 6019, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-links-logos ol li { float: left; margin-right: 15px; } -/* line 6023, ../../../scss/_clix_styles.scss */ +/* line 6022, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-links-logos ol li > a { color: #ce7869; } -/* line 6025, ../../../scss/_clix_styles.scss */ +/* line 6024, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-links-logos ol li > a:hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } -/* line 6036, ../../../scss/_clix_styles.scss */ +/* line 6035, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-legal { margin: 0px 0px 0px 20px; } -/* line 6038, ../../../scss/_clix_styles.scss */ +/* line 6037, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-legal ol { display: inline; list-style-type: none; } -/* line 6041, ../../../scss/_clix_styles.scss */ +/* line 6040, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-legal ol li { float: left; margin-right: 15px; display: inline-block; font-size: 0.6875em; } -/* line 6046, ../../../scss/_clix_styles.scss */ +/* line 6045, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-legal ol li > a { transition: link-color 0.15s ease-in-out 0s,border 0.15s ease-in-out 0s; border-bottom: none; color: #777; text-decoration: none !important; } -/* line 6051, ../../../scss/_clix_styles.scss */ +/* line 6050, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .nav-legal ol li > a:hover { color: #777; border-bottom: 3px solid #c90d97; } -/* line 6061, ../../../scss/_clix_styles.scss */ +/* line 6060, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .wrapper-logo { margin: 13px 0; display: inline-block; } -/* line 6064, ../../../scss/_clix_styles.scss */ +/* line 6063, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .wrapper-logo p { color: inherit; margin: 0; display: inline-block; } -/* line 6068, ../../../scss/_clix_styles.scss */ +/* line 6067, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .wrapper-logo p a { display: inline-block; } -/* line 6074, ../../../scss/_clix_styles.scss */ +/* line 6073, ../../../scss/_clix_styles.scss */ .wrapper-footer #footer-clix .links-logos .wrapper-logo .footer-logo > img { height: 10px; } -/* line 6084, ../../../scss/_clix_styles.scss */ +/* line 6083, ../../../scss/_clix_styles.scss */ #overlay { /* we set all of the properties for are overlay */ height: 116px; @@ -36965,7 +36304,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-radius: 10px; } -/* line 6104, ../../../scss/_clix_styles.scss */ +/* line 6103, ../../../scss/_clix_styles.scss */ #mask { /* create are mask */ position: fixed; @@ -36979,13 +36318,13 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { } /* use :target to look for a link to the overlay then we find are mask */ -/* line 6115, ../../../scss/_clix_styles.scss */ +/* line 6114, ../../../scss/_clix_styles.scss */ #overlay:target, #overlay:target + #mask { display: block; opacity: 1; } -/* line 6119, ../../../scss/_clix_styles.scss */ +/* line 6118, ../../../scss/_clix_styles.scss */ .close { /* to make a nice looking pure CSS3 close button */ display: block; @@ -37007,7 +36346,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-radius: 38px; } -/* line 6138, ../../../scss/_clix_styles.scss */ +/* line 6137, ../../../scss/_clix_styles.scss */ #open-overlay { /* open the overlay */ padding: 0px 0px; @@ -37020,7 +36359,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { -o-border-radius: 10px; } -/* line 6149, ../../../scss/_clix_styles.scss */ +/* line 6148, ../../../scss/_clix_styles.scss */ .enroll-btn { width: 90px; opacity: 1; @@ -37036,44 +36375,44 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-color: #4b4852; } -/* line 6171, ../../../scss/_clix_styles.scss */ +/* line 6170, ../../../scss/_clix_styles.scss */ .img-style-land { margin-top: 28px; margin-left: -56px; } -/* line 6176, ../../../scss/_clix_styles.scss */ +/* line 6175, ../../../scss/_clix_styles.scss */ .top-margin-translation { margin-top: 0px; } -/* line 6180, ../../../scss/_clix_styles.scss */ +/* line 6179, ../../../scss/_clix_styles.scss */ .activity-editor-header-top { margin-top: -50px; } -/* line 6184, ../../../scss/_clix_styles.scss */ +/* line 6183, ../../../scss/_clix_styles.scss */ .add-lesson-top-margin { margin-top: 5px; } -/* line 6187, ../../../scss/_clix_styles.scss */ +/* line 6186, ../../../scss/_clix_styles.scss */ .translation-detail-top-margin { margin-top: 0px; } -/* line 6190, ../../../scss/_clix_styles.scss */ +/* line 6189, ../../../scss/_clix_styles.scss */ .outer { width: 100%; text-align: center; } -/* line 6195, ../../../scss/_clix_styles.scss */ +/* line 6194, ../../../scss/_clix_styles.scss */ .inner { display: inline-block !important; } -/* line 6200, ../../../scss/_clix_styles.scss */ +/* line 6199, ../../../scss/_clix_styles.scss */ .transcript-toggler { display: block; width: 155px !important; @@ -37089,33 +36428,33 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { text-transform: uppercase; } -/* line 6216, ../../../scss/_clix_styles.scss */ +/* line 6215, ../../../scss/_clix_styles.scss */ .double-buttons { margin-top: 100px; margin-left: 729px; } -/* line 6221, ../../../scss/_clix_styles.scss */ +/* line 6220, ../../../scss/_clix_styles.scss */ .lesson-form-name { padding-top: 10px; } -/* line 6225, ../../../scss/_clix_styles.scss */ +/* line 6224, ../../../scss/_clix_styles.scss */ .lesson-form-desc { padding-top: 25px; } -/* line 6229, ../../../scss/_clix_styles.scss */ +/* line 6228, ../../../scss/_clix_styles.scss */ .enroll_chkbox { transform: scale(1.5); } -/* line 6232, ../../../scss/_clix_styles.scss */ +/* line 6231, ../../../scss/_clix_styles.scss */ .enroll_all_users { width: 15% !important; } -/* line 6236, ../../../scss/_clix_styles.scss */ +/* line 6235, ../../../scss/_clix_styles.scss */ .enrollBtn { background: #a2238d; height: 50px; @@ -37131,24 +36470,24 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 6270, ../../../scss/_clix_styles.scss */ +/* line 6269, ../../../scss/_clix_styles.scss */ .enroll-act_lbl { color: #0c2944; } -/* line 6275, ../../../scss/_clix_styles.scss */ +/* line 6274, ../../../scss/_clix_styles.scss */ .wrkspace { margin-right: 80px; } -/* line 6279, ../../../scss/_clix_styles.scss */ +/* line 6278, ../../../scss/_clix_styles.scss */ .status-btn { background-color: #fff; margin-right: auto; padding-bottom: 0px; text-transform: none; } -/* line 6284, ../../../scss/_clix_styles.scss */ +/* line 6283, ../../../scss/_clix_styles.scss */ .status-btn .disabled { background-color: #008cba; border-color: #007095; @@ -37158,41 +36497,41 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { box-shadow: none; } -/* line 6294, ../../../scss/_clix_styles.scss */ +/* line 6293, ../../../scss/_clix_styles.scss */ .margin-right-50 { margin-right: 50px; } -/* line 6303, ../../../scss/_clix_styles.scss */ +/* line 6302, ../../../scss/_clix_styles.scss */ .color-btn { background-color: #720f5e; width: 77px; margin-left: 17px; } -/* line 6307, ../../../scss/_clix_styles.scss */ +/* line 6306, ../../../scss/_clix_styles.scss */ .color-btn:hover { color: #720f5e; background-color: #ffffff; } -/* line 6313, ../../../scss/_clix_styles.scss */ +/* line 6312, ../../../scss/_clix_styles.scss */ .mid_label { margin-top: 15px; font-size: 15px; } -/* line 6318, ../../../scss/_clix_styles.scss */ +/* line 6317, ../../../scss/_clix_styles.scss */ .compulsory { color: red; font-size: smaller; } -/* line 6323, ../../../scss/_clix_styles.scss */ +/* line 6322, ../../../scss/_clix_styles.scss */ .select-drop { height: auto; } -/* line 6327, ../../../scss/_clix_styles.scss */ +/* line 6326, ../../../scss/_clix_styles.scss */ .template-select { border: 1px solid #cccccc; border-radius: 5px; @@ -37201,41 +36540,41 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { font-size: 14px; } -/* line 6335, ../../../scss/_clix_styles.scss */ +/* line 6334, ../../../scss/_clix_styles.scss */ .white-text { color: white; } -/* line 6340, ../../../scss/_clix_styles.scss */ +/* line 6339, ../../../scss/_clix_styles.scss */ .quiz-player .quiz_qtn { margin-left: 20px !important; font-size: 20px; } -/* line 6344, ../../../scss/_clix_styles.scss */ +/* line 6343, ../../../scss/_clix_styles.scss */ .quiz-player .question_edit { margin-left: 20px !important; } -/* line 6348, ../../../scss/_clix_styles.scss */ +/* line 6347, ../../../scss/_clix_styles.scss */ .quiz-player input[type=checkbox], .quiz-player input[type=radio] { margin-right: 10px; width: 15px; height: 15px; } -/* line 6354, ../../../scss/_clix_styles.scss */ +/* line 6353, ../../../scss/_clix_styles.scss */ .quiz-player .chk_ans_lbl, .quiz-player .rad_ans_lbl { font-size: 22px; margin-left: 5px; } -/* line 6359, ../../../scss/_clix_styles.scss */ +/* line 6358, ../../../scss/_clix_styles.scss */ .quiz-player .fi-check { color: green; } -/* line 6363, ../../../scss/_clix_styles.scss */ +/* line 6362, ../../../scss/_clix_styles.scss */ .quiz-player .fi-x { color: red; } -/* line 6368, ../../../scss/_clix_styles.scss */ +/* line 6367, ../../../scss/_clix_styles.scss */ .hyperlink-tag { cursor: pointer; cursor: pointer; @@ -37248,7 +36587,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { color: #164A7B; } -/* line 6380, ../../../scss/_clix_styles.scss */ +/* line 6379, ../../../scss/_clix_styles.scss */ .scard { background: #FFF; border: 1px solid #AAA; @@ -37260,12 +36599,12 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { height: 9rem; /*float:left;*/ } -/* line 6389, ../../../scss/_clix_styles.scss */ +/* line 6388, ../../../scss/_clix_styles.scss */ .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 6395, ../../../scss/_clix_styles.scss */ +/* line 6394, ../../../scss/_clix_styles.scss */ .scard .scard_header { text-align: center; position: fixed; @@ -37283,7 +36622,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { font-weight: bold; } -/* line 6412, ../../../scss/_clix_styles.scss */ +/* line 6411, ../../../scss/_clix_styles.scss */ .scard-content { height: 2.7em; padding: 0.5rem; @@ -37296,7 +36635,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 6423, ../../../scss/_clix_styles.scss */ +/* line 6422, ../../../scss/_clix_styles.scss */ .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; @@ -37306,7 +36645,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { text-align: center; } -/* line 6436, ../../../scss/_clix_styles.scss */ +/* line 6435, ../../../scss/_clix_styles.scss */ .scard-action { height: height; font-size: 0.6em; @@ -37320,7 +36659,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { background-color: #CCCCCC; } -/* line 6451, ../../../scss/_clix_styles.scss */ +/* line 6450, ../../../scss/_clix_styles.scss */ .scard-desc { font-size: 0.7em; color: #333333; @@ -37336,7 +36675,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { display-inline: block; } -/* line 6468, ../../../scss/_clix_styles.scss */ +/* line 6467, ../../../scss/_clix_styles.scss */ .scard-image { padding: 0px; margin: 0px; @@ -37347,7 +36686,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { overflow: hidden; background-color: #f2f2f2; } -/* line 6477, ../../../scss/_clix_styles.scss */ +/* line 6476, ../../../scss/_clix_styles.scss */ .scard-image img { border-radius: 2px 2px 0 0; display: block; @@ -37356,18 +36695,18 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { height: 100%; } -/* line 6489, ../../../scss/_clix_styles.scss */ +/* line 6488, ../../../scss/_clix_styles.scss */ .published.scard-action { background: #A6D9CB; } -/* line 6493, ../../../scss/_clix_styles.scss */ +/* line 6492, ../../../scss/_clix_styles.scss */ .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 6499, ../../../scss/_clix_styles.scss */ +/* line 6498, ../../../scss/_clix_styles.scss */ .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -37376,17 +36715,17 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { height: 2rem; } -/* line 6507, ../../../scss/_clix_styles.scss */ +/* line 6506, ../../../scss/_clix_styles.scss */ .auto_width { width: auto !important; } -/* line 6511, ../../../scss/_clix_styles.scss */ +/* line 6510, ../../../scss/_clix_styles.scss */ .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 6514, ../../../scss/_clix_styles.scss */ +/* line 6513, ../../../scss/_clix_styles.scss */ .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -37399,17 +36738,17 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 10px; margin-left: 20px; } -/* line 6525, ../../../scss/_clix_styles.scss */ +/* line 6524, ../../../scss/_clix_styles.scss */ .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 6531, ../../../scss/_clix_styles.scss */ +/* line 6530, ../../../scss/_clix_styles.scss */ .explore-settings-drop a { font-size: 16px; } -/* line 6534, ../../../scss/_clix_styles.scss */ +/* line 6533, ../../../scss/_clix_styles.scss */ .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -37417,37 +36756,37 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin: 0; background-color: #164A7B; } -/* line 6542, ../../../scss/_clix_styles.scss */ +/* line 6541, ../../../scss/_clix_styles.scss */ .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 6546, ../../../scss/_clix_styles.scss */ +/* line 6545, ../../../scss/_clix_styles.scss */ .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 6553, ../../../scss/_clix_styles.scss */ +/* line 6552, ../../../scss/_clix_styles.scss */ .attempts_count { color: #000000 !important; } -/* line 6559, ../../../scss/_clix_styles.scss */ +/* line 6558, ../../../scss/_clix_styles.scss */ #course-settings-drop li a { text-align: left; } -/* line 6567, ../../../scss/_clix_styles.scss */ +/* line 6566, ../../../scss/_clix_styles.scss */ #asset-settings-drop li a { text-align: left; } -/* line 6574, ../../../scss/_clix_styles.scss */ +/* line 6573, ../../../scss/_clix_styles.scss */ .button-bg { background-color: #74b3dc; } /* Tools page css listing*/ -/* line 6581, ../../../scss/_clix_styles.scss */ +/* line 6580, ../../../scss/_clix_styles.scss */ .polaroid { width: 330px; background-color: white; @@ -37461,7 +36800,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { cursor: pointer; } -/* line 6594, ../../../scss/_clix_styles.scss */ +/* line 6593, ../../../scss/_clix_styles.scss */ .polaroid:hover img { -webkit-transform: scale(1.05); -moz-transform: scale(1.05); @@ -37470,26 +36809,26 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { transform: scale(1.05); } -/* line 6603, ../../../scss/_clix_styles.scss */ +/* line 6602, ../../../scss/_clix_styles.scss */ .container { text-align: center; padding: 10px 20px; border-top: 5px solid #164a7b; margin-top: 0px; } -/* line 6609, ../../../scss/_clix_styles.scss */ +/* line 6608, ../../../scss/_clix_styles.scss */ .container > p { color: black; font-size: 16px; font-weight: 500; } -/* line 6618, ../../../scss/_clix_styles.scss */ +/* line 6617, ../../../scss/_clix_styles.scss */ .tool-bg { background-color: rgba(87, 198, 250, 0.07); } -/* line 6621, ../../../scss/_clix_styles.scss */ +/* line 6620, ../../../scss/_clix_styles.scss */ .purple-btn { width: inherit; text-transform: uppercase; @@ -37500,7 +36839,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border: 2px solid #6a0054; } -/* line 6631, ../../../scss/_clix_styles.scss */ +/* line 6630, ../../../scss/_clix_styles.scss */ .disable-purple-btn { width: inherit; text-transform: uppercase !important; @@ -37511,22 +36850,22 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border: 2px solid #4b4852; } -/* line 6641, ../../../scss/_clix_styles.scss */ +/* line 6640, ../../../scss/_clix_styles.scss */ .user-analytics-data { margin: 42px 37px 37px 37px; border: 2px solid #aaaaaa; } -/* line 6644, ../../../scss/_clix_styles.scss */ +/* line 6643, ../../../scss/_clix_styles.scss */ .user-analytics-data .close-reveal-modal { font-size: 20px; } -/* line 6648, ../../../scss/_clix_styles.scss */ +/* line 6647, ../../../scss/_clix_styles.scss */ .left-space { margin-left: 0.5em; } -/* line 6656, ../../../scss/_clix_styles.scss */ +/* line 6655, ../../../scss/_clix_styles.scss */ .top-right-menu { margin-right: 80px !important; } diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css index 2bdbb41b38..3053eda596 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css @@ -26317,34 +26317,29 @@ div.show-image:hover div.fullscreen-icon{ } /* line 3078, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page { - margin-left: 15px; background-color: #fff; padding-bottom: 30px; } -/* line 3083, ../../../scss/_app_styles.scss */ -.notebook .notebook-body .note-page .group_sections_content { - margin-top: 5px; -} -/* line 3086, ../../../scss/_app_styles.scss */ +/* line 3085, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .group_content { margin-top: 5px; margin-left: 0px; } -/* line 3091, ../../../scss/_app_styles.scss */ +/* line 3090, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page > div { background-color: #fff; } -/* line 3095, ../../../scss/_app_styles.scss */ +/* line 3094, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar { padding: 1.8em 1.2em 0em; margin: 0em; background-color: #FFF; } -/* line 3100, ../../../scss/_app_styles.scss */ +/* line 3099, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .note-creator { font-weight: bold; } -/* line 3103, ../../../scss/_app_styles.scss */ +/* line 3102, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-title { text-align: left; color: #C3C3C3; @@ -26352,102 +26347,102 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.3px; margin-top: 5px; } -/* line 3110, ../../../scss/_app_styles.scss */ +/* line 3109, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating { text-align: right; } -/* line 3112, ../../../scss/_app_styles.scss */ +/* line 3111, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating > div { display: inline-block; } -/* line 3117, ../../../scss/_app_styles.scss */ +/* line 3116, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-title { font-size: 2.3em; font-weight: 500; margin-right: 1em; } -/* line 3122, ../../../scss/_app_styles.scss */ +/* line 3121, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content { padding: 2em 2em 1em; background: #fff; margin: 0em; } -/* line 3129, ../../../scss/_app_styles.scss */ +/* line 3128, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-header > div { display: inline-block; } -/* line 3134, ../../../scss/_app_styles.scss */ +/* line 3133, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text { font-size: 19px; letter-spacing: 0.7px; } -/* line 3137, ../../../scss/_app_styles.scss */ +/* line 3136, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text p { padding: 0px; } -/* line 3143, ../../../scss/_app_styles.scss */ +/* line 3142, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections { padding: 0em 1em 0em; } -/* line 3147, ../../../scss/_app_styles.scss */ +/* line 3146, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header span { font-weight: bold; } -/* line 3150, ../../../scss/_app_styles.scss */ +/* line 3149, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { margin-left: 15px; } -/* line 3155, ../../../scss/_app_styles.scss */ +/* line 3154, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment { border-top: 1px solid grey; padding: 15px 10px; margin-top: 5px; } -/* line 3160, ../../../scss/_app_styles.scss */ +/* line 3159, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { min-height: 200px; margin-top: 0px; } -/* line 3166, ../../../scss/_app_styles.scss */ +/* line 3165, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { font-size: 90px; line-height: 0em; } -/* line 3176, ../../../scss/_app_styles.scss */ +/* line 3175, ../../../scss/_app_styles.scss */ #newNoteModal { width: 40%; } -/* line 3179, ../../../scss/_app_styles.scss */ +/* line 3178, ../../../scss/_app_styles.scss */ #newNoteModal > div { margin-bottom: 1em; } -/* line 3183, ../../../scss/_app_styles.scss */ +/* line 3182, ../../../scss/_app_styles.scss */ #newNoteModal input { width: 100%; } -/* line 3186, ../../../scss/_app_styles.scss */ +/* line 3185, ../../../scss/_app_styles.scss */ #newNoteModal .heading { margin-right: 1em; } -/* line 3190, ../../../scss/_app_styles.scss */ +/* line 3189, ../../../scss/_app_styles.scss */ #newNoteModal .note-tags { padding: 1em; border: 1px solid black; } -/* line 3196, ../../../scss/_app_styles.scss */ +/* line 3195, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button { float: left; margin-left: 1em; margin-bottom: 0px; } -/* line 3201, ../../../scss/_app_styles.scss */ +/* line 3200, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button:last-child { float: right; } -/* line 3209, ../../../scss/_app_styles.scss */ +/* line 3208, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header { line-height: 2em; border-top: 1px solid #797979; @@ -26455,33 +26450,33 @@ div.show-image:hover div.fullscreen-icon{ text-align: center; padding: 0.7em 1em; } -/* line 3216, ../../../scss/_app_styles.scss */ +/* line 3215, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input, .gallery-page .gallery-header select, .gallery-page .gallery-header a { border-radius: 4px; margin-bottom: 0em; } -/* line 3220, ../../../scss/_app_styles.scss */ +/* line 3219, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input.prefix, .gallery-page .gallery-header select.prefix, .gallery-page .gallery-header a.prefix { border-radius: 0px; } -/* line 3225, ../../../scss/_app_styles.scss */ +/* line 3224, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header i { font-size: 1em; color: #A29E9E; } -/* line 3231, ../../../scss/_app_styles.scss */ +/* line 3230, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .filters .columns { padding-left: 5px; } -/* line 3237, ../../../scss/_app_styles.scss */ +/* line 3236, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .columns { padding-left: 5px; } -/* line 3241, ../../../scss/_app_styles.scss */ +/* line 3240, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags { text-align: left; } -/* line 3244, ../../../scss/_app_styles.scss */ +/* line 3243, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag { padding: 0px 10px; background: #cccccc; @@ -26491,73 +26486,73 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.8em; color: #757575; } -/* line 3253, ../../../scss/_app_styles.scss */ +/* line 3252, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag span { margin: 0px 2px 0px 6px; cursor: pointer; } -/* line 3258, ../../../scss/_app_styles.scss */ +/* line 3257, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags > div { display: inline-block; } -/* line 3265, ../../../scss/_app_styles.scss */ +/* line 3264, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading { font-size: 19px; } -/* line 3268, ../../../scss/_app_styles.scss */ +/* line 3267, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading a { background: #e7e7e7; border-width: 1px 0px 1px 1px; border-color: #cccccc; border-style: solid; } -/* line 3275, ../../../scss/_app_styles.scss */ +/* line 3274, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading input { border-radius: 0px; box-shadow: none; border-left: 0px; } -/* line 3282, ../../../scss/_app_styles.scss */ +/* line 3281, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel { background: #FFF; } -/* line 3285, ../../../scss/_app_styles.scss */ +/* line 3284, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content { min-height: 250px; } -/* line 3288, ../../../scss/_app_styles.scss */ +/* line 3287, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader { line-height: 3em; padding: 10px 0px; } -/* line 3292, ../../../scss/_app_styles.scss */ +/* line 3291, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader upload-file { margin: 0px; font-size: 1em; } -/* line 3297, ../../../scss/_app_styles.scss */ +/* line 3296, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions { font-size: 1.2em; color: #2a79e4; } -/* line 3301, ../../../scss/_app_styles.scss */ +/* line 3300, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions > div { display: inline-block; margin-right: 10px; } -/* line 3308, ../../../scss/_app_styles.scss */ +/* line 3307, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel { background: #fff; } -/* line 3311, ../../../scss/_app_styles.scss */ +/* line 3310, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row { margin: 10px 0px; } -/* line 3314, ../../../scss/_app_styles.scss */ +/* line 3313, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row > div:first-child { font-weight: 500; } -/* line 3319, ../../../scss/_app_styles.scss */ +/* line 3318, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .file-name { font-size: 20px; font-weight: bold; @@ -26565,11 +26560,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 10px 0px 20px; } -/* line 3330, ../../../scss/_app_styles.scss */ +/* line 3329, ../../../scss/_app_styles.scss */ .gallery-card .select-file { vertical-align: top; } -/* line 3334, ../../../scss/_app_styles.scss */ +/* line 3333, ../../../scss/_app_styles.scss */ .gallery-card .file-item { width: 80%; color: #fff; @@ -26580,17 +26575,17 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid black; overflow: hidden; } -/* line 3344, ../../../scss/_app_styles.scss */ +/* line 3343, ../../../scss/_app_styles.scss */ .gallery-card .file-item .item-thumbnail-image { height: 100%; padding: 1em; } -/* line 3349, ../../../scss/_app_styles.scss */ +/* line 3348, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-details { margin-top: 10%; display: none; } -/* line 3354, ../../../scss/_app_styles.scss */ +/* line 3353, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions { display: none; position: absolute; @@ -26599,11 +26594,11 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; font-size: 25px; } -/* line 3362, ../../../scss/_app_styles.scss */ +/* line 3361, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions i { margin: 0px 10px; } -/* line 3367, ../../../scss/_app_styles.scss */ +/* line 3366, ../../../scss/_app_styles.scss */ .gallery-card .file-item .filename-footer { position: absolute; bottom: 0px; @@ -26614,24 +26609,24 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 600; background: #999999; } -/* line 3378, ../../../scss/_app_styles.scss */ +/* line 3377, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover { background: #999999; } -/* line 3381, ../../../scss/_app_styles.scss */ +/* line 3380, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .item-thumbnail-image { opacity: 0.2; } -/* line 3385, ../../../scss/_app_styles.scss */ +/* line 3384, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .file-details, .gallery-card .file-item:hover .file-actions { display: block; } -/* line 3388, ../../../scss/_app_styles.scss */ +/* line 3387, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .filename-footer { display: none; } -/* line 3396, ../../../scss/_app_styles.scss */ +/* line 3395, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'], dialog[id^='reveal-'] { width: 100vw; height: 100vh; @@ -26695,49 +26690,49 @@ div.show-image:hover div.fullscreen-icon{ } }*/ } -/* line 3460, ../../../scss/_app_styles.scss */ +/* line 3459, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body, dialog[id^='reveal-'] .gmodal-body { position: relative; height: 100%; } -/* line 3463, ../../../scss/_app_styles.scss */ +/* line 3462, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel { background-color: #fff; height: 100%; } -/* line 3465, ../../../scss/_app_styles.scss */ +/* line 3464, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray { display: none; } -/* line 3469, ../../../scss/_app_styles.scss */ +/* line 3468, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe { height: 550px !important; width: 130% !important; } -/* line 3474, ../../../scss/_app_styles.scss */ +/* line 3473, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page { margin-top: -10px !important; } -/* line 3478, ../../../scss/_app_styles.scss */ +/* line 3477, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel span, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel span { display: none !important; } -/* line 3482, ../../../scss/_app_styles.scss */ +/* line 3481, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .button, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .button { display: none !important; } -/* line 3489, ../../../scss/_app_styles.scss */ +/* line 3488, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder { height: 100%; } -/* line 3492, ../../../scss/_app_styles.scss */ +/* line 3491, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item { height: 100%; width: 100%; background: transparent; padding: 0px; } -/* line 3498, ../../../scss/_app_styles.scss */ +/* line 3497, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image { width: auto; margin: 0px auto; @@ -26745,7 +26740,7 @@ div.show-image:hover div.fullscreen-icon{ padding: 1em 0em; height: 100%; } -/* line 3507, ../../../scss/_app_styles.scss */ +/* line 3506, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer { height: 2em; line-height: 2em; @@ -26757,32 +26752,32 @@ div.show-image:hover div.fullscreen-icon{ opacity: 0; background-color: rgba(0, 0, 0, 0.9); } -/* line 3518, ../../../scss/_app_styles.scss */ +/* line 3517, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details), dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details) { cursor: pointer; } -/* line 3522, ../../../scss/_app_styles.scss */ +/* line 3521, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details { text-align: center; width: 100%; } -/* line 3526, ../../../scss/_app_styles.scss */ +/* line 3525, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i { margin-left: 1em; margin-right: 0.5em; cursor: pointer; } -/* line 3534, ../../../scss/_app_styles.scss */ +/* line 3533, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer { opacity: 0.8; transition: opacity 1s; } -/* line 3539, ../../../scss/_app_styles.scss */ +/* line 3538, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel { height: 100%; padding: 0px 25px; } -/* line 3543, ../../../scss/_app_styles.scss */ +/* line 3542, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side { background: #fff; height: 100%; @@ -26803,31 +26798,31 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.9em; }*/ } -/* line 3547, ../../../scss/_app_styles.scss */ +/* line 3546, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div { width: 100%; display: block; margin: 12px 0px; padding: 0px 10px; } -/* line 3554, ../../../scss/_app_styles.scss */ +/* line 3553, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal { font-size: 20px; top: 6px; right: 26px; } -/* line 3561, ../../../scss/_app_styles.scss */ +/* line 3560, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span { vertical-align: top; margin-right: 5px; line-height: 35px; } -/* line 3566, ../../../scss/_app_styles.scss */ +/* line 3565, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating { background: #ccc; padding: 2px 5px; } -/* line 3572, ../../../scss/_app_styles.scss */ +/* line 3571, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a { padding: 3px 7px; background: #fff; @@ -26837,13 +26832,13 @@ div.show-image:hover div.fullscreen-icon{ margin-right: 10px; display: inline-block; } -/* line 3583, ../../../scss/_app_styles.scss */ +/* line 3582, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3588, ../../../scss/_app_styles.scss */ +/* line 3587, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26852,17 +26847,17 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3596, ../../../scss/_app_styles.scss */ +/* line 3595, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a { border-radius: inherit; } -/* line 3600, ../../../scss/_app_styles.scss */ +/* line 3599, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3608, ../../../scss/_app_styles.scss */ +/* line 3607, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span { font-weight: 500; font-size: 16px; @@ -26870,20 +26865,20 @@ div.show-image:hover div.fullscreen-icon{ line-height: 35px; } -/* line 3638, ../../../scss/_app_styles.scss */ +/* line 3637, ../../../scss/_app_styles.scss */ .user-comment { display: inline-flex; width: 100%; } -/* line 3642, ../../../scss/_app_styles.scss */ +/* line 3641, ../../../scss/_app_styles.scss */ .user-comment > div { display: inline-block; } -/* line 3645, ../../../scss/_app_styles.scss */ +/* line 3644, ../../../scss/_app_styles.scss */ .user-comment > div:last-child { width: 100%; } -/* line 3650, ../../../scss/_app_styles.scss */ +/* line 3649, ../../../scss/_app_styles.scss */ .user-comment .comment-heading { color: #9C9C9C; border-bottom: 1px solid grey; @@ -26891,71 +26886,71 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 10px; margin-top: 10px; } -/* line 3658, ../../../scss/_app_styles.scss */ +/* line 3657, ../../../scss/_app_styles.scss */ .user-comment .comment-heading > div { display: inline-block; } -/* line 3662, ../../../scss/_app_styles.scss */ +/* line 3661, ../../../scss/_app_styles.scss */ .user-comment .comment-heading .commentor-name span { font-weight: bold; color: #333333; } -/* line 3667, ../../../scss/_app_styles.scss */ +/* line 3666, ../../../scss/_app_styles.scss */ .user-comment .comment-footer { font-size: 0.9em; font-weight: 400; border: 1px solid #9E9E9E; background: #CCCCCC; } -/* line 3673, ../../../scss/_app_styles.scss */ +/* line 3672, ../../../scss/_app_styles.scss */ .user-comment .comment-footer > div { cursor: pointer; } -/* line 3676, ../../../scss/_app_styles.scss */ +/* line 3675, ../../../scss/_app_styles.scss */ .user-comment .comment-footer i { margin-right: 1em; } -/* line 3682, ../../../scss/_app_styles.scss */ +/* line 3681, ../../../scss/_app_styles.scss */ .user-comment .comment-container .comment-add { margin-top: 0.4em; } -/* line 3686, ../../../scss/_app_styles.scss */ +/* line 3685, ../../../scss/_app_styles.scss */ .user-comment .user-avatar { font-size: 10em; font-size: 5em; line-height: 1em; } -/* line 3693, ../../../scss/_app_styles.scss */ +/* line 3692, ../../../scss/_app_styles.scss */ .course-content { /*border-top: 1px solid #000;*/ } -/* line 3695, ../../../scss/_app_styles.scss */ +/* line 3694, ../../../scss/_app_styles.scss */ .course-content .alert-box { padding: 5px; font-size: 1em; } -/* line 3699, ../../../scss/_app_styles.scss */ +/* line 3698, ../../../scss/_app_styles.scss */ .course-content .alert-box > div { display: inline-block; vertical-align: top; } -/* line 3703, ../../../scss/_app_styles.scss */ +/* line 3702, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note { width: 96%; } -/* line 3706, ../../../scss/_app_styles.scss */ +/* line 3705, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note > div:nth-child(2) { color: #000; margin-top: 5px; padding-top: 5px; border-top: 1px solid #000; } -/* line 3713, ../../../scss/_app_styles.scss */ +/* line 3712, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-icon { margin: 0px 5px; } -/* line 3716, ../../../scss/_app_styles.scss */ +/* line 3715, ../../../scss/_app_styles.scss */ .course-content .alert-box .close { position: relative; top: 0px; @@ -26965,17 +26960,17 @@ div.show-image:hover div.fullscreen-icon{ text-decoration: underline; color: #085394 !important; } -/* line 3727, ../../../scss/_app_styles.scss */ +/* line 3726, ../../../scss/_app_styles.scss */ .course-content .collection { overflow: visible; } -/* line 3730, ../../../scss/_app_styles.scss */ +/* line 3729, ../../../scss/_app_styles.scss */ .course-content .collection .course-module { position: relative; border-bottom: 1px solid #CCC; padding: 1em 0em; } -/* line 3737, ../../../scss/_app_styles.scss */ +/* line 3736, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-header .fa { position: absolute; left: -1.1em; @@ -26984,58 +26979,58 @@ div.show-image:hover div.fullscreen-icon{ background: #EAEAEA; font-size: 1.4em; } -/* line 3755, ../../../scss/_app_styles.scss */ +/* line 3754, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-page:hover span { text-decoration: underline; color: #9900ff !important; } -/* line 3760, ../../../scss/_app_styles.scss */ +/* line 3759, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .jqtree-tree .jqtree-title { cursor: pointer; } -/* line 3764, ../../../scss/_app_styles.scss */ +/* line 3763, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part { margin-left: 1em; } -/* line 3767, ../../../scss/_app_styles.scss */ +/* line 3766, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler { color: #585858; } -/* line 3770, ../../../scss/_app_styles.scss */ +/* line 3769, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler.jqtree-closed { color: #CCC; } -/* line 3774, ../../../scss/_app_styles.scss */ +/* line 3773, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part span { vertical-align: top; } -/* line 3777, ../../../scss/_app_styles.scss */ +/* line 3776, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .fa { display: inline; margin-right: 5px; } -/* line 3787, ../../../scss/_app_styles.scss */ +/* line 3786, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header { font-weight: 400; font-size: 1.3em; border-bottom: 1px solid #707070; color: #797979; } -/* line 3793, ../../../scss/_app_styles.scss */ +/* line 3792, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header > div { padding: 0.3em 0em; } -/* line 3797, ../../../scss/_app_styles.scss */ +/* line 3796, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header a { color: #797979; } -/* line 3801, ../../../scss/_app_styles.scss */ +/* line 3800, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous { cursor: pointer; padding: 0px; } -/* line 3805, ../../../scss/_app_styles.scss */ +/* line 3804, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous a:first-child { border-right: 1px solid grey; padding-right: 5px; @@ -27043,27 +27038,27 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3814, ../../../scss/_app_styles.scss */ +/* line 3813, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header i { margin-right: 0.1em; } -/* line 3818, ../../../scss/_app_styles.scss */ +/* line 3817, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .unit-title { text-align: center; color: #999999; } -/* line 3822, ../../../scss/_app_styles.scss */ +/* line 3821, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-title { text-align: center; color: #000; } -/* line 3826, ../../../scss/_app_styles.scss */ +/* line 3825, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note { color: #2a78e3; cursor: pointer; padding: 0px; } -/* line 3831, ../../../scss/_app_styles.scss */ +/* line 3830, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note a:last-child { border-left: 1px solid grey; padding-left: 5px; @@ -27071,11 +27066,11 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3839, ../../../scss/_app_styles.scss */ +/* line 3838, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note > div { float: right; } -/* line 3844, ../../../scss/_app_styles.scss */ +/* line 3843, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container { border: 1px solid black; height: 100%; @@ -27083,18 +27078,18 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 2em; padding: 0em 1em; } -/* line 3851, ../../../scss/_app_styles.scss */ +/* line 3850, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides { height: 100%; } -/* line 3855, ../../../scss/_app_styles.scss */ +/* line 3854, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 3863, ../../../scss/_app_styles.scss */ +/* line 3862, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -27102,12 +27097,12 @@ div.show-image:hover div.fullscreen-icon{ color: #999999; margin-left: 12%; } -/* line 3871, ../../../scss/_app_styles.scss */ +/* line 3870, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 3877, ../../../scss/_app_styles.scss */ +/* line 3876, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -27116,21 +27111,21 @@ div.show-image:hover div.fullscreen-icon{ display: none; color: #8E8E8E; } -/* line 3886, ../../../scss/_app_styles.scss */ +/* line 3885, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 3891, ../../../scss/_app_styles.scss */ +/* line 3890, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 3893, ../../../scss/_app_styles.scss */ +/* line 3892, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 3896, ../../../scss/_app_styles.scss */ +/* line 3895, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -27141,24 +27136,24 @@ div.show-image:hover div.fullscreen-icon{ color: #757575; margin-right: 20px; } -/* line 3906, ../../../scss/_app_styles.scss */ +/* line 3905, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 3910, ../../../scss/_app_styles.scss */ +/* line 3909, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 3913, ../../../scss/_app_styles.scss */ +/* line 3912, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 3918, ../../../scss/_app_styles.scss */ +/* line 3917, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 3922, ../../../scss/_app_styles.scss */ +/* line 3921, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content { width: 75%; margin: 0px auto; @@ -27169,7 +27164,7 @@ div.show-image:hover div.fullscreen-icon{ min-height: 50px; position: relative; } -/* line 3932, ../../../scss/_app_styles.scss */ +/* line 3931, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -27177,15 +27172,15 @@ div.show-image:hover div.fullscreen-icon{ left: 8px; top: 4px; } -/* line 3940, ../../../scss/_app_styles.scss */ +/* line 3939, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 3942, ../../../scss/_app_styles.scss */ +/* line 3941, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 3945, ../../../scss/_app_styles.scss */ +/* line 3944, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -27195,27 +27190,27 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.8px; color: #999999; } -/* line 3954, ../../../scss/_app_styles.scss */ +/* line 3953, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 3960, ../../../scss/_app_styles.scss */ +/* line 3959, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 3967, ../../../scss/_app_styles.scss */ +/* line 3966, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section { width: 75%; margin: 0px auto; } -/* line 3971, ../../../scss/_app_styles.scss */ +/* line 3970, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section .user-prof-image { font-size: 7em; text-align: center; } -/* line 3976, ../../../scss/_app_styles.scss */ +/* line 3975, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section #postCommentBtn { padding: 2em 3em; } @@ -27236,28 +27231,28 @@ div.show-image:hover div.fullscreen-icon{ position: absolute; } */ -/* line 3997, ../../../scss/_app_styles.scss */ +/* line 3996, ../../../scss/_app_styles.scss */ .rate-scale { cursor: pointer; } -/* line 4000, ../../../scss/_app_styles.scss */ +/* line 3999, ../../../scss/_app_styles.scss */ .rate-scale i { margin-right: 0em !important; padding-right: 0.5em; } -/* line 4004, ../../../scss/_app_styles.scss */ +/* line 4003, ../../../scss/_app_styles.scss */ .rate-scale .hover-rating, .rate-scale .rated { color: yellow; } -/* line 4010, ../../../scss/_app_styles.scss */ +/* line 4009, ../../../scss/_app_styles.scss */ #left-tab { position: absolute; left: 0px; bottom: 0px; } -/* line 4015, ../../../scss/_app_styles.scss */ +/* line 4014, ../../../scss/_app_styles.scss */ #right-tab { position: absolute; right: 0px; @@ -27265,12 +27260,12 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 6px; } -/* line 4021, ../../../scss/_app_styles.scss */ +/* line 4020, ../../../scss/_app_styles.scss */ #enrolled-btn { margin-bottom: 0px; } -/* line 4024, ../../../scss/_app_styles.scss */ +/* line 4023, ../../../scss/_app_styles.scss */ div.absol-descrip { position: absolute; top: 190px; @@ -27281,14 +27276,14 @@ div.absol-descrip { } /*overview-summary styling*/ -/* line 4034, ../../../scss/_app_styles.scss */ +/* line 4033, ../../../scss/_app_styles.scss */ .course-title, .course-date { color: white; padding-top: 0px; padding-bottom: 0px; } -/* line 4039, ../../../scss/_app_styles.scss */ +/* line 4038, ../../../scss/_app_styles.scss */ .course-description { color: #cccccc; padding-top: 0px; @@ -27300,48 +27295,48 @@ div.absol-descrip { overflow: hidden; } -/* line 4049, ../../../scss/_app_styles.scss */ +/* line 4048, ../../../scss/_app_styles.scss */ .course-para { padding: 0; } -/* line 4053, ../../../scss/_app_styles.scss */ +/* line 4052, ../../../scss/_app_styles.scss */ course-title { padding-left: 10px; } -/* line 4056, ../../../scss/_app_styles.scss */ +/* line 4055, ../../../scss/_app_styles.scss */ .enroll-status-margin { margin-bottom: 0; } -/* line 4060, ../../../scss/_app_styles.scss */ +/* line 4059, ../../../scss/_app_styles.scss */ .progress-summery { color: white; margin-top: 20px; } -/* line 4064, ../../../scss/_app_styles.scss */ +/* line 4063, ../../../scss/_app_styles.scss */ .course-description-thumbnails { margin: 0; padding: 0; } -/* line 4069, ../../../scss/_app_styles.scss */ +/* line 4068, ../../../scss/_app_styles.scss */ .left-shift { padding: 0; color: white !important; } /*course overview for Small screens*/ -/* line 4075, ../../../scss/_app_styles.scss */ +/* line 4074, ../../../scss/_app_styles.scss */ .course { /*position:relative;*/ border: 1px solid black; background-color: #999999; } -/* line 4081, ../../../scss/_app_styles.scss */ +/* line 4080, ../../../scss/_app_styles.scss */ .course-contents { /*position:absolute;*/ width: 100%; @@ -27349,7 +27344,7 @@ course-title { /*Medium screens*/ @media only screen and (min-width: 40.063em) { - /* line 4088, ../../../scss/_app_styles.scss */ + /* line 4087, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27357,7 +27352,7 @@ course-title { background-color: #999999; } - /* line 4094, ../../../scss/_app_styles.scss */ + /* line 4093, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27367,7 +27362,7 @@ course-title { /* min-width 641px, medium screens */ /* Large screens*/ @media only screen and (min-width: 64.063em) { - /* line 4104, ../../../scss/_app_styles.scss */ + /* line 4103, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27375,7 +27370,7 @@ course-title { background-color: #999999; } - /* line 4110, ../../../scss/_app_styles.scss */ + /* line 4109, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27384,14 +27379,14 @@ course-title { } /* min-width 1025px, large screens */ /*General config css*/ -/* line 4117, ../../../scss/_app_styles.scss */ +/* line 4116, ../../../scss/_app_styles.scss */ .alert-box.warning { background: #ffe7c0; border-color: #bf9000; color: #966000; } -/* line 4124, ../../../scss/_app_styles.scss */ +/* line 4123, ../../../scss/_app_styles.scss */ .badge { display: inline-block; line-height: 22px; @@ -27408,7 +27403,7 @@ course-title { font-size: 1.8em; } -/* line 4140, ../../../scss/_app_styles.scss */ +/* line 4139, ../../../scss/_app_styles.scss */ .badge { background: #67c1ef; border-color: #30aae9; @@ -27418,7 +27413,7 @@ course-title { background-image: linear-gradient(to bottom, #acddf6, #67c1ef); } -/* line 4149, ../../../scss/_app_styles.scss */ +/* line 4148, ../../../scss/_app_styles.scss */ .badge.green { background: #77cc51; border-color: #59ad33; @@ -27428,7 +27423,7 @@ course-title { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 4158, ../../../scss/_app_styles.scss */ +/* line 4157, ../../../scss/_app_styles.scss */ .badge.yellow { background: #faba3e; border-color: #f4a306; @@ -27438,7 +27433,7 @@ course-title { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 4168, ../../../scss/_app_styles.scss */ +/* line 4167, ../../../scss/_app_styles.scss */ .badge.red { background: #fa623f; border-color: #fa5a35; @@ -27449,12 +27444,12 @@ course-title { } /* Course/ Event Card CSS*/ -/* line 4184, ../../../scss/_app_styles.scss */ +/* line 4183, ../../../scss/_app_styles.scss */ .card-image-wrapper { position: relative; } -/* line 4188, ../../../scss/_app_styles.scss */ +/* line 4187, ../../../scss/_app_styles.scss */ .event-card { padding: 0px; min-height: 22rem; @@ -27463,12 +27458,12 @@ course-title { border-radius: 10px; background-color: #fff; } -/* line 4196, ../../../scss/_app_styles.scss */ +/* line 4195, ../../../scss/_app_styles.scss */ .event-card:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 4201, ../../../scss/_app_styles.scss */ +/* line 4200, ../../../scss/_app_styles.scss */ .event-card .event-card-status { z-index: 99; width: auto; @@ -27483,31 +27478,31 @@ course-title { border-radius: 4px; letter-spacing: 0.3px; } -/* line 4215, ../../../scss/_app_styles.scss */ +/* line 4214, ../../../scss/_app_styles.scss */ .event-card .event-card-status.open { background-color: #00b300; } -/* line 4218, ../../../scss/_app_styles.scss */ +/* line 4217, ../../../scss/_app_styles.scss */ .event-card .event-card-status.closed { background-color: red; } -/* line 4221, ../../../scss/_app_styles.scss */ +/* line 4220, ../../../scss/_app_styles.scss */ .event-card .event-card-status.in-progress { background-color: #00b300; } -/* line 4224, ../../../scss/_app_styles.scss */ +/* line 4223, ../../../scss/_app_styles.scss */ .event-card .event-card-status.forthcoming { background-color: #F2910D; } -/* line 4227, ../../../scss/_app_styles.scss */ +/* line 4226, ../../../scss/_app_styles.scss */ .event-card .event-card-status.upcoming { background-color: #F2910D; } -/* line 4231, ../../../scss/_app_styles.scss */ +/* line 4230, ../../../scss/_app_styles.scss */ .event-card .event-card-status.completed { background-color: #4d4d4d; } -/* line 4236, ../../../scss/_app_styles.scss */ +/* line 4235, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications { position: absolute; top: 2px; @@ -27516,46 +27511,46 @@ course-title { color: #F04124; font-weight: 600; } -/* line 4244, ../../../scss/_app_styles.scss */ +/* line 4243, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications .badge { padding: 0px 5px; font-size: 1.4em; font-weight: 600; } -/* line 4251, ../../../scss/_app_styles.scss */ +/* line 4250, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status { font-weight: 500; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 4256, ../../../scss/_app_styles.scss */ +/* line 4255, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.open { color: #00b300; } -/* line 4260, ../../../scss/_app_styles.scss */ +/* line 4259, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.closed { color: red; } -/* line 4264, ../../../scss/_app_styles.scss */ +/* line 4263, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.in-progress { color: #000; } -/* line 4267, ../../../scss/_app_styles.scss */ +/* line 4266, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.forthcoming { color: #F2910D; } -/* line 4271, ../../../scss/_app_styles.scss */ +/* line 4270, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.completed { color: #4d4d4d; } -/* line 4275, ../../../scss/_app_styles.scss */ +/* line 4274, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status .event-time { font-size: 0.7em; display: block; font-weight: 400; display: inline; } -/* line 4283, ../../../scss/_app_styles.scss */ +/* line 4282, ../../../scss/_app_styles.scss */ .event-card .event-card-title { color: #0d0d0d; display: inline-block; @@ -27566,19 +27561,19 @@ course-title { font-size: 2em; font-weight: 400; } -/* line 4294, ../../../scss/_app_styles.scss */ +/* line 4293, ../../../scss/_app_styles.scss */ .event-card .event-card-desc { word-wrap: break-word; font-size: 0.6em; color: #333333; padding-left: 4px; } -/* line 4300, ../../../scss/_app_styles.scss */ +/* line 4299, ../../../scss/_app_styles.scss */ .event-card p { margin: 0px; padding: 10px; } -/* line 4306, ../../../scss/_app_styles.scss */ +/* line 4305, ../../../scss/_app_styles.scss */ .event-card .event-card-image { padding: 0px; margin: 0px; @@ -27590,7 +27585,7 @@ course-title { background-color: #e5e5e5; border-radius: 10px 10px 0px 0px; } -/* line 4317, ../../../scss/_app_styles.scss */ +/* line 4316, ../../../scss/_app_styles.scss */ .event-card .event-card-image img { border-radius: 2px 2px 0 0; display: block; @@ -27599,7 +27594,7 @@ course-title { opacity: 0.25; height: 100%; } -/* line 4326, ../../../scss/_app_styles.scss */ +/* line 4325, ../../../scss/_app_styles.scss */ .event-card .event-card-image i { font-size: 7rem; opacity: 0.75; @@ -27613,51 +27608,51 @@ course-title { text-transform: none; text-decoration: inherit; } -/* line 4340, ../../../scss/_app_styles.scss */ +/* line 4339, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.file:before { content: "\f18e"; } -/* line 4343, ../../../scss/_app_styles.scss */ +/* line 4342, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.page:before { content: "\f18e"; } -/* line 4346, ../../../scss/_app_styles.scss */ +/* line 4345, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.collection:before { content: "\f18a"; } -/* line 4349, ../../../scss/_app_styles.scss */ +/* line 4348, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.documents:before { content: "\f18b"; } -/* line 4352, ../../../scss/_app_styles.scss */ +/* line 4351, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.pdf:before { content: "\f18b"; } -/* line 4355, ../../../scss/_app_styles.scss */ +/* line 4354, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.text:before { content: "\f18e"; } -/* line 4358, ../../../scss/_app_styles.scss */ +/* line 4357, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.interactives:before { content: "\f1b2"; } -/* line 4361, ../../../scss/_app_styles.scss */ +/* line 4360, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.ebooks:before { content: "\f11e"; } -/* line 4364, ../../../scss/_app_styles.scss */ +/* line 4363, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.images:before { content: "\f125"; } -/* line 4367, ../../../scss/_app_styles.scss */ +/* line 4366, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.audios:before, .event-card .event-card-image i.audio:before { content: "\f17b"; } -/* line 4370, ../../../scss/_app_styles.scss */ +/* line 4369, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.videos:before, .event-card .event-card-image i.video:before { content: "\f20e"; } -/* line 4374, ../../../scss/_app_styles.scss */ +/* line 4373, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer { padding: 0.7em 1em; border-top: 1px solid #DCDCDC; @@ -27668,7 +27663,7 @@ course-title { background-color: #F3F3F3; border-radius: 0px 0px 10px 10px; } -/* line 4384, ../../../scss/_app_styles.scss */ +/* line 4383, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .footer-label { text-transform: uppercase; font-size: 10px; @@ -27676,54 +27671,54 @@ course-title { margin-bottom: 2px; color: #ADADAD; } -/* line 4392, ../../../scss/_app_styles.scss */ +/* line 4391, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date { color: #929292; font-size: 0.85em; letter-spacing: 0.5px; } -/* line 4397, ../../../scss/_app_styles.scss */ +/* line 4396, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date i:not(.edit-course-duration, .edit-course-enrollment) { margin-right: 0.3em; } -/* line 4401, ../../../scss/_app_styles.scss */ +/* line 4400, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .row { margin: 10px 0px 0px; } -/* line 4405, ../../../scss/_app_styles.scss */ +/* line 4404, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration, .event-card .edit-course-enrollment { float: right; font-size: 1.5em; color: #DADADA; } -/* line 4409, ../../../scss/_app_styles.scss */ +/* line 4408, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration:hover, .event-card .edit-course-enrollment:hover { color: #565656; } -/* line 4413, ../../../scss/_app_styles.scss */ +/* line 4412, ../../../scss/_app_styles.scss */ .event-card .published.scard-action { background: #A6D9CB; } -/* line 4417, ../../../scss/_app_styles.scss */ +/* line 4416, ../../../scss/_app_styles.scss */ .event-card .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 4422, ../../../scss/_app_styles.scss */ +/* line 4421, ../../../scss/_app_styles.scss */ .event-card .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4427, ../../../scss/_app_styles.scss */ +/* line 4426, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4431, ../../../scss/_app_styles.scss */ +/* line 4430, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 4435, ../../../scss/_app_styles.scss */ +/* line 4434, ../../../scss/_app_styles.scss */ .event-card .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -27734,17 +27729,17 @@ course-title { /* End Course/events Card CSS*/ /* Landing page */ -/* line 4447, ../../../scss/_app_styles.scss */ +/* line 4446, ../../../scss/_app_styles.scss */ .landing_page { position: relative; text-align: center; } -/* line 4451, ../../../scss/_app_styles.scss */ +/* line 4450, ../../../scss/_app_styles.scss */ .landing_page .panel { background-color: inherit; border: none; } -/* line 4456, ../../../scss/_app_styles.scss */ +/* line 4455, ../../../scss/_app_styles.scss */ .landing_page .landing_page_background { height: 100%; width: 100%; @@ -27756,24 +27751,24 @@ course-title { background: -ms-linear-gradient(left, #E9A900, #B0108D); background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 4468, ../../../scss/_app_styles.scss */ +/* line 4467, ../../../scss/_app_styles.scss */ .landing_page .clix_brief { text-align: left; padding: 20px 5%; } -/* line 4472, ../../../scss/_app_styles.scss */ +/* line 4471, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 30px 20px; height: 70px; } @media screen and (max-width: 450px) { - /* line 4472, ../../../scss/_app_styles.scss */ + /* line 4471, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 25px 10px; height: 55px; } } -/* line 4480, ../../../scss/_app_styles.scss */ +/* line 4479, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { color: #fff; font-size: 26px; @@ -27781,12 +27776,12 @@ course-title { font-family: 'ubuntu-light'; } @media screen and (max-width: 450px) { - /* line 4480, ../../../scss/_app_styles.scss */ + /* line 4479, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { font-size: 18px; } } -/* line 4491, ../../../scss/_app_styles.scss */ +/* line 4490, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { background-color: rgba(255, 255, 255, 0.92); border-radius: 10px; @@ -27797,12 +27792,12 @@ course-title { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); } @media screen and (min-width: 1025px) { - /* line 4491, ../../../scss/_app_styles.scss */ + /* line 4490, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { margin: 200px auto; } } -/* line 4503, ../../../scss/_app_styles.scss */ +/* line 4502, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix > span { font-family: 'ubuntu-bold'; color: #6658af; @@ -27813,7 +27808,7 @@ course-title { display: inline-block; vertical-align: middle; } -/* line 4513, ../../../scss/_app_styles.scss */ +/* line 4512, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix p { color: #b0108d; font-size: 21px; @@ -27821,28 +27816,28 @@ course-title { font-weight: 300; font-family: 'ubuntu-light'; } -/* line 4521, ../../../scss/_app_styles.scss */ +/* line 4520, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix img { height: 30px; } -/* line 4524, ../../../scss/_app_styles.scss */ +/* line 4523, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form { margin-top: 30px; } -/* line 4527, ../../../scss/_app_styles.scss */ +/* line 4526, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form input { font-size: 24px; height: 45px; margin: 5px 0px 24px; } -/* line 4534, ../../../scss/_app_styles.scss */ +/* line 4533, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix input.button { font-size: 15px; border-radius: 5px; font-family: 'ubuntu-bold'; text-transform: uppercase; } -/* line 4540, ../../../scss/_app_styles.scss */ +/* line 4539, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix a.grey { color: #999; /*display: inline-block; @@ -27853,7 +27848,7 @@ course-title { font-family: 'ubuntu-bold'; text-transform: uppercase;*/ } -/* line 4551, ../../../scss/_app_styles.scss */ +/* line 4550, ../../../scss/_app_styles.scss */ .landing_page .flowers { left: 50px; height: 500px; @@ -27861,18 +27856,18 @@ course-title { opacity: 0.6; } @media screen and (max-width: 450px) { - /* line 4551, ../../../scss/_app_styles.scss */ + /* line 4550, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 250px; } } @media screen and (min-width: 451px) and (max-width: 1025px) { - /* line 4551, ../../../scss/_app_styles.scss */ + /* line 4550, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 350px; } } -/* line 4563, ../../../scss/_app_styles.scss */ +/* line 4562, ../../../scss/_app_styles.scss */ .landing_page .bees { position: absolute; top: 5px; @@ -27880,40 +27875,40 @@ course-title { height: 150px; } @media screen and (max-width: 450px) { - /* line 4563, ../../../scss/_app_styles.scss */ + /* line 4562, ../../../scss/_app_styles.scss */ .landing_page .bees { right: 15px; height: 100px; } } -/* line 4573, ../../../scss/_app_styles.scss */ +/* line 4572, ../../../scss/_app_styles.scss */ .landing_page h2 { color: #A0148E; font-weight: 600; } -/* line 4577, ../../../scss/_app_styles.scss */ +/* line 4576, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text { color: #6153ae; } -/* line 4580, ../../../scss/_app_styles.scss */ +/* line 4579, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text p { font-size: 18px; } /* END of Landing page */ -/* line 4586, ../../../scss/_app_styles.scss */ +/* line 4585, ../../../scss/_app_styles.scss */ .audio-caption { cursor: pointer; } -/* line 4590, ../../../scss/_app_styles.scss */ +/* line 4589, ../../../scss/_app_styles.scss */ .gallery-image { cursor: pointer; max-height: 100px; border: 1px solid !important; } -/* line 4596, ../../../scss/_app_styles.scss */ +/* line 4595, ../../../scss/_app_styles.scss */ .show-collection { color: black !important; font-size: 1.1em; @@ -27926,25 +27921,25 @@ course-title { border: 1px solid #eee; } -/* line 4608, ../../../scss/_app_styles.scss */ +/* line 4607, ../../../scss/_app_styles.scss */ .processing-screen { background-color: #0eacb5 !important; } -/* line 4612, ../../../scss/_app_styles.scss */ +/* line 4611, ../../../scss/_app_styles.scss */ .processing-screen-label { width: 500px !important; font-style: normal !important; } -/* line 4616, ../../../scss/_app_styles.scss */ +/* line 4615, ../../../scss/_app_styles.scss */ h3 { font-size: 20px; color: #164A7B; font-family: 'OpenSans-Semibold'; } -/* line 4622, ../../../scss/_app_styles.scss */ +/* line 4621, ../../../scss/_app_styles.scss */ h5 { color: #99aaba; font-size: 10px; @@ -27953,7 +27948,7 @@ h5 { margin-left: 5px; } -/* line 4630, ../../../scss/_app_styles.scss */ +/* line 4629, ../../../scss/_app_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -27962,12 +27957,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4637, ../../../scss/_app_styles.scss */ +/* line 4636, ../../../scss/_app_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 4641, ../../../scss/_app_styles.scss */ +/* line 4640, ../../../scss/_app_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -27976,12 +27971,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4648, ../../../scss/_app_styles.scss */ +/* line 4647, ../../../scss/_app_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 4654, ../../../scss/_app_styles.scss */ +/* line 4653, ../../../scss/_app_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -27993,7 +27988,7 @@ h5 { color: #6153AE; } -/* line 4665, ../../../scss/_app_styles.scss */ +/* line 4664, ../../../scss/_app_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28005,7 +28000,7 @@ h5 { color: #6153AE; } -/* line 4676, ../../../scss/_app_styles.scss */ +/* line 4675, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -28017,7 +28012,7 @@ h5 { border: 2px solid #6153ae; background-color: #dbd4e1; } -/* line 4687, ../../../scss/_app_styles.scss */ +/* line 4686, ../../../scss/_app_styles.scss */ .explore-button:hover { cursor: pointer; } @@ -28025,12 +28020,12 @@ h5 { /*Blue color variable*/ /*Orange color variables*/ /* module detail settings drop */ -/* line 4720, ../../../scss/_app_styles.scss */ +/* line 4719, ../../../scss/_app_styles.scss */ .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4723, ../../../scss/_app_styles.scss */ +/* line 4722, ../../../scss/_app_styles.scss */ .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28043,17 +28038,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4734, ../../../scss/_app_styles.scss */ +/* line 4733, ../../../scss/_app_styles.scss */ .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4740, ../../../scss/_app_styles.scss */ +/* line 4739, ../../../scss/_app_styles.scss */ .explore-settings-drop a { font-size: 16px; } -/* line 4743, ../../../scss/_app_styles.scss */ +/* line 4742, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28061,12 +28056,12 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4743, ../../../scss/_app_styles.scss */ +/* line 4742, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4746, ../../../scss/_app_styles.scss */ +/* line 4745, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28079,17 +28074,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4757, ../../../scss/_app_styles.scss */ +/* line 4756, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4763, ../../../scss/_app_styles.scss */ +/* line 4762, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop a { font-size: 16px; } -/* line 4766, ../../../scss/_app_styles.scss */ +/* line 4765, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28097,31 +28092,31 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4774, ../../../scss/_app_styles.scss */ +/* line 4773, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4778, ../../../scss/_app_styles.scss */ +/* line 4777, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4791, ../../../scss/_app_styles.scss */ +/* line 4790, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4795, ../../../scss/_app_styles.scss */ +/* line 4794, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4805, ../../../scss/_app_styles.scss */ +/* line 4804, ../../../scss/_app_styles.scss */ .lms_page .lms_banner { width: 100%; height: 150px; background-size: 100% 100%; position: relative; } -/* line 4813, ../../../scss/_app_styles.scss */ +/* line 4812, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -28134,27 +28129,27 @@ h5 { bottom: 0; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 4826, ../../../scss/_app_styles.scss */ +/* line 4825, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before a { cursor: pointer; } -/* line 4831, ../../../scss/_app_styles.scss */ +/* line 4830, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .div-height { height: 150px !important; background-size: 100% 100%; position: absolute !important; } -/* line 4839, ../../../scss/_app_styles.scss */ +/* line 4838, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .enroll_unit > a { cursor: pointer; } -/* line 4843, ../../../scss/_app_styles.scss */ +/* line 4842, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 4849, ../../../scss/_app_styles.scss */ +/* line 4848, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .unit_name { font-size: 36px; font-family: OpenSans-Semibold; @@ -28165,17 +28160,17 @@ h5 { transition: border-radius .2s; text-shadow: 3px 2px #164a7b; } -/* line 4860, ../../../scss/_app_styles.scss */ +/* line 4859, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .right-margin { margin-right: 46px; } -/* line 4869, ../../../scss/_app_styles.scss */ +/* line 4868, ../../../scss/_app_styles.scss */ .border-bottom-lms-header { border-bottom: 1px solid #00000029; } -/* line 4874, ../../../scss/_app_styles.scss */ +/* line 4873, ../../../scss/_app_styles.scss */ .lms_secondary_header { width: 100%; position: relative; @@ -28183,11 +28178,11 @@ h5 { box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 4880, ../../../scss/_app_styles.scss */ +/* line 4879, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions { margin-top: 8px; } -/* line 4883, ../../../scss/_app_styles.scss */ +/* line 4882, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28199,11 +28194,11 @@ h5 { opacity: 0.8; } @media screen and (min-width: 980px) and (max-width: 1000px) { - /* line 4897, ../../../scss/_app_styles.scss */ + /* line 4896, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions { margin-top: 8px; } - /* line 4900, ../../../scss/_app_styles.scss */ + /* line 4899, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions > span { margin-left: 50px; background: #2e3f51; @@ -28217,16 +28212,16 @@ h5 { } } -/* line 4920, ../../../scss/_app_styles.scss */ +/* line 4919, ../../../scss/_app_styles.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; } -/* line 4923, ../../../scss/_app_styles.scss */ +/* line 4922, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 4926, ../../../scss/_app_styles.scss */ +/* line 4925, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a { list-style-type: none; display: inline-block; @@ -28237,13 +28232,42 @@ ul.nav_menu_1 > li > a { letter-spacing: 0.8px; border-bottom: 3px solid transparent; } -/* line 4937, ../../../scss/_app_styles.scss */ +/* line 4936, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-bottom: 3px solid #a2238d; } +/* line 4947, ../../../scss/_app_styles.scss */ +ul.authoring-tab { + margin-bottom: 0px; + display: inline; + width: 50%; +} +/* line 4951, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li { + display: inline-block; + background-color: #164a7b; +} +/* line 4954, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li > a { + list-style-type: none; + margin-right: -4px; + background-color: #164a7b; + padding: 12px 12px 9px; + cursor: pointer; + font-size: 18px; + display: inline-block; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; + color: #ffffff !important; +} +/* line 4965, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { + border-bottom: 3px solid #a2238d; +} + /* Secondary Top Bar */ -/* line 4948, ../../../scss/_app_styles.scss */ +/* line 4975, ../../../scss/_app_styles.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -28251,34 +28275,34 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-bottom: 30px; } -/* line 4958, ../../../scss/_app_styles.scss */ +/* line 4985, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 4963, ../../../scss/_app_styles.scss */ +/* line 4990, ../../../scss/_app_styles.scss */ .top-bar-second .name { text-align: center; } -/* line 4966, ../../../scss/_app_styles.scss */ +/* line 4993, ../../../scss/_app_styles.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 4976, ../../../scss/_app_styles.scss */ +/* line 5003, ../../../scss/_app_styles.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 4984, ../../../scss/_app_styles.scss */ +/* line 5011, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 4986, ../../../scss/_app_styles.scss */ +/* line 5013, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -28287,31 +28311,31 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { font-weight: bold; letter-spacing: 0.5px; } -/* line 4997, ../../../scss/_app_styles.scss */ +/* line 5024, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 5005, ../../../scss/_app_styles.scss */ +/* line 5032, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 5011, ../../../scss/_app_styles.scss */ +/* line 5038, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 5022, ../../../scss/_app_styles.scss */ + /* line 5049, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 5024, ../../../scss/_app_styles.scss */ + /* line 5051, ../../../scss/_app_styles.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 5031, ../../../scss/_app_styles.scss */ + /* line 5058, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -28319,32 +28343,32 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { line-height: 52px; border-left-width: 0px; } - /* line 5038, ../../../scss/_app_styles.scss */ + /* line 5065, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5044, ../../../scss/_app_styles.scss */ + /* line 5071, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5052, ../../../scss/_app_styles.scss */ + /* line 5079, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 5062, ../../../scss/_app_styles.scss */ + /* line 5089, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 5071, ../../../scss/_app_styles.scss */ + /* line 5098, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 5078, ../../../scss/_app_styles.scss */ + /* line 5105, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; @@ -28359,7 +28383,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /** * Sass styles related to unit cards */ -/* line 5105, ../../../scss/_app_styles.scss */ +/* line 5132, ../../../scss/_app_styles.scss */ .unit_card { width: 300px; color: #000; @@ -28371,7 +28395,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { position: relative; height: 210px; } -/* line 5119, ../../../scss/_app_styles.scss */ +/* line 5146, ../../../scss/_app_styles.scss */ .unit_card .unit_status { position: absolute; right: 0px; @@ -28382,11 +28406,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-radius: 3px; letter-spacing: 0.6px; } -/* line 5130, ../../../scss/_app_styles.scss */ +/* line 5157, ../../../scss/_app_styles.scss */ .unit_card .unit_header { display: table; } -/* line 5132, ../../../scss/_app_styles.scss */ +/* line 5159, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_banner { display: table-cell; border-radius: 5px; @@ -28395,7 +28419,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-right: 10px; color: #333333; } -/* line 5140, ../../../scss/_app_styles.scss */ +/* line 5167, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_title { display: table-cell; font-size: 20px; @@ -28409,7 +28433,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { vertical-align: middle; color: #333333; } -/* line 5154, ../../../scss/_app_styles.scss */ +/* line 5181, ../../../scss/_app_styles.scss */ .unit_card .unit_desc { display: block; /* Fallback for non-webkit */ @@ -28426,16 +28450,16 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin: 10px 0px 20px; color: #333333; } -/* line 5170, ../../../scss/_app_styles.scss */ +/* line 5197, ../../../scss/_app_styles.scss */ .unit_card .unit_breif .unit_breif_row i { margin-right: 10px; color: #99aaba; } -/* line 5176, ../../../scss/_app_styles.scss */ +/* line 5203, ../../../scss/_app_styles.scss */ .unit_card .unit_actions { padding: 5px 0px; } -/* line 5181, ../../../scss/_app_styles.scss */ +/* line 5208, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol { background: #a2238d; height: 37px; @@ -28448,11 +28472,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5193, ../../../scss/_app_styles.scss */ +/* line 5220, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 5198, ../../../scss/_app_styles.scss */ +/* line 5225, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics { color: #a2238d; font-weight: 500; @@ -28460,7 +28484,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.3px; border-bottom: 2px solid #a2238d; } -/* line 5206, ../../../scss/_app_styles.scss */ +/* line 5233, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics-points { background: #ffffff; color: #a2238d; @@ -28471,7 +28495,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { font-weight: bold; cursor: default; } -/* line 5217, ../../../scss/_app_styles.scss */ +/* line 5244, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit { height: 37px; text-align: center; @@ -28480,13 +28504,13 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5225, ../../../scss/_app_styles.scss */ +/* line 5252, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit:hover { border-bottom: 2px solid #ffc14e; } /* unit cards labels */ -/* line 5235, ../../../scss/_app_styles.scss */ +/* line 5262, ../../../scss/_app_styles.scss */ .status-completed { width: auto; top: -1.15em; @@ -28503,7 +28527,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5251, ../../../scss/_app_styles.scss */ +/* line 5278, ../../../scss/_app_styles.scss */ .status-in-progress { width: auto; top: -1.15em; @@ -28520,7 +28544,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5268, ../../../scss/_app_styles.scss */ +/* line 5295, ../../../scss/_app_styles.scss */ .status-upcoming { width: auto; top: -1.15em; @@ -28537,7 +28561,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5285, ../../../scss/_app_styles.scss */ +/* line 5312, ../../../scss/_app_styles.scss */ .status-draft { width: auto; top: -1.15em; @@ -28554,48 +28578,65 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5302, ../../../scss/_app_styles.scss */ +/* line 5330, ../../../scss/_app_styles.scss */ +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #000000b8; + letter-spacing: 0.4px; +} + +/* line 5347, ../../../scss/_app_styles.scss */ .icon-widget { font-size: 24px; } /* module detail css */ -/* line 5311, ../../../scss/_app_styles.scss */ +/* line 5356, ../../../scss/_app_styles.scss */ .thumbnail_style { margin-top: -30px; margin-left: -30px; } -/* line 5316, ../../../scss/_app_styles.scss */ +/* line 5361, ../../../scss/_app_styles.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 5322, ../../../scss/_app_styles.scss */ +/* line 5367, ../../../scss/_app_styles.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); margin-top: -29px; padding-left: 10px; } -/* line 5326, ../../../scss/_app_styles.scss */ +/* line 5371, ../../../scss/_app_styles.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 5336, ../../../scss/_app_styles.scss */ +/* line 5381, ../../../scss/_app_styles.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 5341, ../../../scss/_app_styles.scss */ +/* line 5386, ../../../scss/_app_styles.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 5344, ../../../scss/_app_styles.scss */ +/* line 5389, ../../../scss/_app_styles.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28609,7 +28650,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 5361, ../../../scss/_app_styles.scss */ +/* line 5406, ../../../scss/_app_styles.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -28623,7 +28664,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { } /* Creating and editing course Structure */ -/* line 5378, ../../../scss/_app_styles.scss */ +/* line 5423, ../../../scss/_app_styles.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -28634,34 +28675,34 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 5387, ../../../scss/_app_styles.scss */ +/* line 5432, ../../../scss/_app_styles.scss */ .group_tile:hover { opacity: 0.7; } -/* line 5390, ../../../scss/_app_styles.scss */ +/* line 5435, ../../../scss/_app_styles.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 5397, ../../../scss/_app_styles.scss */ +/* line 5442, ../../../scss/_app_styles.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 5404, ../../../scss/_app_styles.scss */ +/* line 5449, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 5407, ../../../scss/_app_styles.scss */ +/* line 5452, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 5410, ../../../scss/_app_styles.scss */ +/* line 5455, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -28669,15 +28710,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 5418, ../../../scss/_app_styles.scss */ +/* line 5463, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 5422, ../../../scss/_app_styles.scss */ +/* line 5467, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 5424, ../../../scss/_app_styles.scss */ +/* line 5469, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -28688,38 +28729,37 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 5434, ../../../scss/_app_styles.scss */ +/* line 5479, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 5439, ../../../scss/_app_styles.scss */ +/* line 5484, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 5445, ../../../scss/_app_styles.scss */ +/* line 5490, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 5452, ../../../scss/_app_styles.scss */ +/* line 5497, ../../../scss/_app_styles.scss */ .max-width { max-width: 100%; } -/* line 5458, ../../../scss/_app_styles.scss */ +/* line 5503, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; - height: 200px; overflow-y: auto; background: url("/static/ndf/images/course-cover.png") no-repeat; background-size: 100% 100%; margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 5467, ../../../scss/_app_styles.scss */ +/* line 5512, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -28736,7 +28776,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 5480, ../../../scss/_app_styles.scss */ +/* line 5525, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -28746,29 +28786,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 5489, ../../../scss/_app_styles.scss */ +/* line 5534, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 5494, ../../../scss/_app_styles.scss */ +/* line 5539, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background-color: #ffffff; } -/* line 5499, ../../../scss/_app_styles.scss */ +/* line 5544, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { - min-height: 100%; background-color: #fff; - margin-bottom: -180px; + margin-bottom: 100px; margin-top: -1px; } -/* line 5505, ../../../scss/_app_styles.scss */ +/* line 5550, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 5509, ../../../scss/_app_styles.scss */ +/* line 5554, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -28781,7 +28820,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 5522, ../../../scss/_app_styles.scss */ +/* line 5567, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -28796,7 +28835,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Unit_Structure styles */ -/* line 5540, ../../../scss/_app_styles.scss */ +/* line 5585, ../../../scss/_app_styles.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -28804,12 +28843,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 5548, ../../../scss/_app_styles.scss */ +/* line 5593, ../../../scss/_app_styles.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 5552, ../../../scss/_app_styles.scss */ +/* line 5597, ../../../scss/_app_styles.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -28817,17 +28856,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 5558, ../../../scss/_app_styles.scss */ +/* line 5603, ../../../scss/_app_styles.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 5564, ../../../scss/_app_styles.scss */ +/* line 5609, ../../../scss/_app_styles.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 5569, ../../../scss/_app_styles.scss */ +/* line 5614, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28837,25 +28876,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 5578, ../../../scss/_app_styles.scss */ +/* line 5623, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5582, ../../../scss/_app_styles.scss */ +/* line 5627, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 5587, ../../../scss/_app_styles.scss */ +/* line 5632, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 5596, ../../../scss/_app_styles.scss */ +/* line 5641, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -28864,7 +28903,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5603, ../../../scss/_app_styles.scss */ +/* line 5648, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -28873,15 +28912,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 5612, ../../../scss/_app_styles.scss */ +/* line 5657, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 5617, ../../../scss/_app_styles.scss */ +/* line 5662, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 5620, ../../../scss/_app_styles.scss */ +/* line 5665, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -28889,21 +28928,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 5630, ../../../scss/_app_styles.scss */ +/* line 5675, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 5636, ../../../scss/_app_styles.scss */ +/* line 5681, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 5644, ../../../scss/_app_styles.scss */ +/* line 5689, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 5646, ../../../scss/_app_styles.scss */ +/* line 5691, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -28912,7 +28951,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5653, ../../../scss/_app_styles.scss */ +/* line 5698, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -28920,11 +28959,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5662, ../../../scss/_app_styles.scss */ +/* line 5707, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 5671, ../../../scss/_app_styles.scss */ +/* line 5716, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -28936,49 +28975,49 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 5681, ../../../scss/_app_styles.scss */ +/* line 5726, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 5687, ../../../scss/_app_styles.scss */ +/* line 5732, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 5690, ../../../scss/_app_styles.scss */ +/* line 5735, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 5699, ../../../scss/_app_styles.scss */ +/* line 5744, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 5704, ../../../scss/_app_styles.scss */ +/* line 5749, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 5708, ../../../scss/_app_styles.scss */ +/* line 5753, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 5710, ../../../scss/_app_styles.scss */ +/* line 5755, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 5713, ../../../scss/_app_styles.scss */ +/* line 5758, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 5719, ../../../scss/_app_styles.scss */ +/* line 5764, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -28986,29 +29025,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 15px 5px; cursor: pointer; } -/* line 5734, ../../../scss/_app_styles.scss */ +/* line 5779, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 5742, ../../../scss/_app_styles.scss */ +/* line 5787, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 5748, ../../../scss/_app_styles.scss */ +/* line 5793, ../../../scss/_app_styles.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 5757, ../../../scss/_app_styles.scss */ +/* line 5802, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 5762, ../../../scss/_app_styles.scss */ +/* line 5807, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29016,28 +29055,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 5769, ../../../scss/_app_styles.scss */ +/* line 5814, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5774, ../../../scss/_app_styles.scss */ +/* line 5819, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5779, ../../../scss/_app_styles.scss */ +/* line 5824, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 5781, ../../../scss/_app_styles.scss */ +/* line 5826, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 5785, ../../../scss/_app_styles.scss */ +/* line 5830, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -29049,21 +29088,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; border-radius: 3px; } -/* line 5796, ../../../scss/_app_styles.scss */ +/* line 5841, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 5801, ../../../scss/_app_styles.scss */ +/* line 5846, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 5807, ../../../scss/_app_styles.scss */ +/* line 5852, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 5813, ../../../scss/_app_styles.scss */ +/* line 5858, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -29071,19 +29110,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 5820, ../../../scss/_app_styles.scss */ +/* line 5865, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 5827, ../../../scss/_app_styles.scss */ +/* line 5872, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5838, ../../../scss/_app_styles.scss */ +/* line 5883, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -29094,7 +29133,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 5855, ../../../scss/_app_styles.scss */ +/* line 5900, ../../../scss/_app_styles.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -29109,66 +29148,66 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* lesspn listing LMS */ -/* line 5871, ../../../scss/_app_styles.scss */ +/* line 5916, ../../../scss/_app_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 5879, ../../../scss/_app_styles.scss */ +/* line 5924, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 5882, ../../../scss/_app_styles.scss */ +/* line 5927, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 5884, ../../../scss/_app_styles.scss */ +/* line 5929, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 5891, ../../../scss/_app_styles.scss */ +/* line 5936, ../../../scss/_app_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 5893, ../../../scss/_app_styles.scss */ +/* line 5938, ../../../scss/_app_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 5898, ../../../scss/_app_styles.scss */ +/* line 5943, ../../../scss/_app_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 5906, ../../../scss/_app_styles.scss */ +/* line 5951, ../../../scss/_app_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5912, ../../../scss/_app_styles.scss */ +/* line 5957, ../../../scss/_app_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5919, ../../../scss/_app_styles.scss */ +/* line 5964, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 5922, ../../../scss/_app_styles.scss */ +/* line 5967, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 5925, ../../../scss/_app_styles.scss */ +/* line 5970, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 5928, ../../../scss/_app_styles.scss */ +/* line 5973, ../../../scss/_app_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; @@ -29178,23 +29217,23 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Styling for the Secondary header 2 */ -/* line 5947, ../../../scss/_app_styles.scss */ +/* line 5992, ../../../scss/_app_styles.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 5950, ../../../scss/_app_styles.scss */ +/* line 5995, ../../../scss/_app_styles.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 5958, ../../../scss/_app_styles.scss */ +/* line 6003, ../../../scss/_app_styles.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 5967, ../../../scss/_app_styles.scss */ +/* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { position: relative; color: #fff; @@ -29205,56 +29244,56 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: -2px; border-right: 1px solid white; } -/* line 5976, ../../../scss/_app_styles.scss */ +/* line 6021, ../../../scss/_app_styles.scss */ .activity_player_header .header_title a { color: #ffc14f; } @media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 5967, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 938px); } } @media only screen and (min-device-width: 2131px) { - /* line 5967, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 970px); } } @media only screen and (max-device-width: 1024px) { - /* line 5967, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 753px); } } -/* line 6053, ../../../scss/_app_styles.scss */ +/* line 6098, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon { font-size: 16px; line-height: 45px; color: #ffc14f; } -/* line 6059, ../../../scss/_app_styles.scss */ +/* line 6104, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 6065, ../../../scss/_app_styles.scss */ +/* line 6110, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 10px; } @media screen and (min-width: 1025px) { - /* line 6065, ../../../scss/_app_styles.scss */ + /* line 6110, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 15px; } } @media screen and (min-width: 1025px) { - /* line 6072, ../../../scss/_app_styles.scss */ + /* line 6117, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { float: right; margin-right: 70px; @@ -29262,73 +29301,73 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media screen and (max-width: 1024px) { - /* line 6072, ../../../scss/_app_styles.scss */ + /* line 6117, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { background-color: rgba(107, 0, 84, 0.97); } } -/* line 6085, ../../../scss/_app_styles.scss */ +/* line 6130, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6091, ../../../scss/_app_styles.scss */ +/* line 6136, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block { padding: 0px 15px; margin-left: -2px; border-right: 1px solid white; } -/* line 6095, ../../../scss/_app_styles.scss */ +/* line 6140, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block a { color: #ffc14f; } -/* line 6101, ../../../scss/_app_styles.scss */ +/* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 9px; } @media screen and (min-width: 1025px) { - /* line 6101, ../../../scss/_app_styles.scss */ + /* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 15px; } } -/* line 6109, ../../../scss/_app_styles.scss */ +/* line 6154, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 7px; } @media screen and (min-width: 1025px) { - /* line 6109, ../../../scss/_app_styles.scss */ + /* line 6154, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 15px; } } -/* line 6118, ../../../scss/_app_styles.scss */ +/* line 6163, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 6121, ../../../scss/_app_styles.scss */ +/* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button i { color: #71318b; } -/* line 6127, ../../../scss/_app_styles.scss */ +/* line 6172, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 6131, ../../../scss/_app_styles.scss */ +/* line 6176, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 6137, ../../../scss/_app_styles.scss */ +/* line 6182, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .pagination:not(i) { color: #a983b9; } -/* line 6145, ../../../scss/_app_styles.scss */ +/* line 6190, ../../../scss/_app_styles.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -29336,29 +29375,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 6152, ../../../scss/_app_styles.scss */ +/* line 6197, ../../../scss/_app_styles.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 6156, ../../../scss/_app_styles.scss */ +/* line 6201, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6162, ../../../scss/_app_styles.scss */ +/* line 6207, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6168, ../../../scss/_app_styles.scss */ +/* line 6213, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 6173, ../../../scss/_app_styles.scss */ +/* line 6218, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29368,25 +29407,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 6182, ../../../scss/_app_styles.scss */ +/* line 6227, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6186, ../../../scss/_app_styles.scss */ +/* line 6231, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6191, ../../../scss/_app_styles.scss */ +/* line 6236, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6200, ../../../scss/_app_styles.scss */ +/* line 6245, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29395,7 +29434,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6207, ../../../scss/_app_styles.scss */ +/* line 6252, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29404,15 +29443,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 6216, ../../../scss/_app_styles.scss */ +/* line 6261, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6221, ../../../scss/_app_styles.scss */ +/* line 6266, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6224, ../../../scss/_app_styles.scss */ +/* line 6269, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29420,21 +29459,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 6234, ../../../scss/_app_styles.scss */ +/* line 6279, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6240, ../../../scss/_app_styles.scss */ +/* line 6285, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6248, ../../../scss/_app_styles.scss */ +/* line 6293, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6250, ../../../scss/_app_styles.scss */ +/* line 6295, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29443,7 +29482,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6257, ../../../scss/_app_styles.scss */ +/* line 6302, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29451,11 +29490,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6266, ../../../scss/_app_styles.scss */ +/* line 6311, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6275, ../../../scss/_app_styles.scss */ +/* line 6320, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29467,48 +29506,48 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 6285, ../../../scss/_app_styles.scss */ +/* line 6330, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6290, ../../../scss/_app_styles.scss */ +/* line 6335, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6293, ../../../scss/_app_styles.scss */ +/* line 6338, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6302, ../../../scss/_app_styles.scss */ +/* line 6347, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6307, ../../../scss/_app_styles.scss */ +/* line 6352, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6311, ../../../scss/_app_styles.scss */ +/* line 6356, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6313, ../../../scss/_app_styles.scss */ +/* line 6358, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6316, ../../../scss/_app_styles.scss */ +/* line 6361, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6322, ../../../scss/_app_styles.scss */ +/* line 6367, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29517,7 +29556,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; } -/* line 6340, ../../../scss/_app_styles.scss */ +/* line 6385, ../../../scss/_app_styles.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -29525,26 +29564,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 10px; padding-right: 4px; } -/* line 6346, ../../../scss/_app_styles.scss */ +/* line 6391, ../../../scss/_app_styles.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 6351, ../../../scss/_app_styles.scss */ +/* line 6396, ../../../scss/_app_styles.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6357, ../../../scss/_app_styles.scss */ +/* line 6402, ../../../scss/_app_styles.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 6363, ../../../scss/_app_styles.scss */ +/* line 6408, ../../../scss/_app_styles.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29554,29 +29593,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 6372, ../../../scss/_app_styles.scss */ +/* line 6417, ../../../scss/_app_styles.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 6376, ../../../scss/_app_styles.scss */ +/* line 6421, ../../../scss/_app_styles.scss */ .activity-title > li > a { color: black; } -/* line 6385, ../../../scss/_app_styles.scss */ +/* line 6430, ../../../scss/_app_styles.scss */ .activity_page_rendered { margin-left: 20px; max-width: 900px; } /* Rating css */ -/* line 6393, ../../../scss/_app_styles.scss */ +/* line 6438, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 6395, ../../../scss/_app_styles.scss */ +/* line 6440, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -29584,19 +29623,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { unicode-bidi: bidi-override; direction: rtl; } -/* line 6403, ../../../scss/_app_styles.scss */ +/* line 6448, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 6405, ../../../scss/_app_styles.scss */ +/* line 6450, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 6411, ../../../scss/_app_styles.scss */ +/* line 6456, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 6413, ../../../scss/_app_styles.scss */ +/* line 6458, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -29609,7 +29648,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0; vertical-align: bottom; } -/* line 6425, ../../../scss/_app_styles.scss */ +/* line 6470, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -29617,32 +29656,32 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* WHITE STAR */ color: #888; } -/* line 6432, ../../../scss/_app_styles.scss */ +/* line 6477, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 6443, ../../../scss/_app_styles.scss */ +/* line 6488, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 6450, ../../../scss/_app_styles.scss */ +/* line 6495, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 6458, ../../../scss/_app_styles.scss */ +/* line 6503, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 6463, ../../../scss/_app_styles.scss */ +/* line 6508, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -29651,29 +29690,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-shadow: 0 0 1px #333; } -/* line 6473, ../../../scss/_app_styles.scss */ +/* line 6518, ../../../scss/_app_styles.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 6477, ../../../scss/_app_styles.scss */ +/* line 6522, ../../../scss/_app_styles.scss */ .input_links { margin-left: 10px; } -/* line 6479, ../../../scss/_app_styles.scss */ +/* line 6524, ../../../scss/_app_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 6485, ../../../scss/_app_styles.scss */ +/* line 6530, ../../../scss/_app_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 6493, ../../../scss/_app_styles.scss */ +/* line 6538, ../../../scss/_app_styles.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -29682,19 +29721,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 6502, ../../../scss/_app_styles.scss */ +/* line 6547, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 6507, ../../../scss/_app_styles.scss */ +/* line 6552, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 6513, ../../../scss/_app_styles.scss */ +/* line 6558, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -29702,12 +29741,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; margin-left: 12%; } -/* line 6521, ../../../scss/_app_styles.scss */ +/* line 6566, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 6527, ../../../scss/_app_styles.scss */ +/* line 6572, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -29716,21 +29755,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: none; color: #8E8E8E; } -/* line 6536, ../../../scss/_app_styles.scss */ +/* line 6581, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 6541, ../../../scss/_app_styles.scss */ +/* line 6586, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 6543, ../../../scss/_app_styles.scss */ +/* line 6588, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 6546, ../../../scss/_app_styles.scss */ +/* line 6591, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -29741,24 +29780,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #757575; margin-right: 20px; } -/* line 6556, ../../../scss/_app_styles.scss */ +/* line 6601, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 6560, ../../../scss/_app_styles.scss */ +/* line 6605, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 6563, ../../../scss/_app_styles.scss */ +/* line 6608, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 6568, ../../../scss/_app_styles.scss */ +/* line 6613, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 6572, ../../../scss/_app_styles.scss */ +/* line 6617, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -29770,7 +29809,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; color: #222222; } -/* line 6583, ../../../scss/_app_styles.scss */ +/* line 6628, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -29778,15 +29817,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 8px; top: 4px; } -/* line 6591, ../../../scss/_app_styles.scss */ +/* line 6636, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 6593, ../../../scss/_app_styles.scss */ +/* line 6638, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 6596, ../../../scss/_app_styles.scss */ +/* line 6641, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -29796,25 +29835,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { letter-spacing: 0.8px; color: #999999; } -/* line 6605, ../../../scss/_app_styles.scss */ +/* line 6650, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 6611, ../../../scss/_app_styles.scss */ +/* line 6656, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 6620, ../../../scss/_app_styles.scss */ +/* line 6665, ../../../scss/_app_styles.scss */ .icon-color { color: #2e3f51 !important; padding: right; } /* The asset tile */ -/* line 6630, ../../../scss/_app_styles.scss */ +/* line 6675, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29824,7 +29863,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 6639, ../../../scss/_app_styles.scss */ +/* line 6684, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -29841,7 +29880,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 6652, ../../../scss/_app_styles.scss */ +/* line 6697, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -29851,28 +29890,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 6661, ../../../scss/_app_styles.scss */ +/* line 6706, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 6666, ../../../scss/_app_styles.scss */ +/* line 6711, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 6671, ../../../scss/_app_styles.scss */ +/* line 6716, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 6677, ../../../scss/_app_styles.scss */ +/* line 6722, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 6681, ../../../scss/_app_styles.scss */ +/* line 6726, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -29885,7 +29924,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 6694, ../../../scss/_app_styles.scss */ +/* line 6739, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -29899,7 +29938,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 6709, ../../../scss/_app_styles.scss */ +/* line 6754, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -29908,22 +29947,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6718, ../../../scss/_app_styles.scss */ +/* line 6763, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6725, ../../../scss/_app_styles.scss */ +/* line 6770, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6731, ../../../scss/_app_styles.scss */ +/* line 6776, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6733, ../../../scss/_app_styles.scss */ +/* line 6778, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -29932,15 +29971,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6740, ../../../scss/_app_styles.scss */ +/* line 6785, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6744, ../../../scss/_app_styles.scss */ +/* line 6789, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6750, ../../../scss/_app_styles.scss */ +/* line 6795, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -29949,7 +29988,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6761, ../../../scss/_app_styles.scss */ +/* line 6806, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -29958,24 +29997,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6770, ../../../scss/_app_styles.scss */ +/* line 6815, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6777, ../../../scss/_app_styles.scss */ +/* line 6822, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 6782, ../../../scss/_app_styles.scss */ +/* line 6827, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 6786, ../../../scss/_app_styles.scss */ +/* line 6831, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -29986,14 +30025,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 6796, ../../../scss/_app_styles.scss */ +/* line 6841, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 6803, ../../../scss/_app_styles.scss */ + /* line 6848, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30001,7 +30040,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6812, ../../../scss/_app_styles.scss */ + /* line 6857, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30009,7 +30048,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6819, ../../../scss/_app_styles.scss */ + /* line 6864, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30017,14 +30056,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6826, ../../../scss/_app_styles.scss */ + /* line 6871, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 6834, ../../../scss/_app_styles.scss */ +/* line 6879, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30039,14 +30078,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6850, ../../../scss/_app_styles.scss */ +/* line 6895, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 6857, ../../../scss/_app_styles.scss */ + /* line 6902, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30057,7 +30096,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6868, ../../../scss/_app_styles.scss */ + /* line 6913, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30068,7 +30107,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6879, ../../../scss/_app_styles.scss */ + /* line 6924, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30079,7 +30118,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6890, ../../../scss/_app_styles.scss */ + /* line 6935, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30089,7 +30128,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6901, ../../../scss/_app_styles.scss */ +/* line 6946, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30104,14 +30143,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6917, ../../../scss/_app_styles.scss */ +/* line 6962, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 6924, ../../../scss/_app_styles.scss */ + /* line 6969, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30122,7 +30161,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6935, ../../../scss/_app_styles.scss */ + /* line 6980, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30133,7 +30172,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6946, ../../../scss/_app_styles.scss */ + /* line 6991, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30144,7 +30183,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6957, ../../../scss/_app_styles.scss */ + /* line 7002, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30154,11 +30193,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6968, ../../../scss/_app_styles.scss */ +/* line 7013, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 6970, ../../../scss/_app_styles.scss */ +/* line 7015, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30167,11 +30206,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6978, ../../../scss/_app_styles.scss */ +/* line 7023, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 6984, ../../../scss/_app_styles.scss */ +/* line 7029, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30180,7 +30219,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6995, ../../../scss/_app_styles.scss */ +/* line 7040, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30191,22 +30230,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7005, ../../../scss/_app_styles.scss */ +/* line 7050, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7008, ../../../scss/_app_styles.scss */ +/* line 7053, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7013, ../../../scss/_app_styles.scss */ +/* line 7058, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7024, ../../../scss/_app_styles.scss */ +/* line 7069, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30217,26 +30256,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7034, ../../../scss/_app_styles.scss */ +/* line 7079, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7037, ../../../scss/_app_styles.scss */ +/* line 7082, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7041, ../../../scss/_app_styles.scss */ +/* line 7086, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7047, ../../../scss/_app_styles.scss */ +/* line 7092, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7049, ../../../scss/_app_styles.scss */ +/* line 7094, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30245,7 +30284,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7058, ../../../scss/_app_styles.scss */ +/* line 7103, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30254,7 +30293,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7072, ../../../scss/_app_styles.scss */ +/* line 7117, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -30264,20 +30303,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Asset detail */ -/* line 7083, ../../../scss/_app_styles.scss */ +/* line 7128, ../../../scss/_app_styles.scss */ .overlay-head { background-color: #fff; height: 60px; margin-bottom: 20px; } -/* line 7089, ../../../scss/_app_styles.scss */ +/* line 7134, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7094, ../../../scss/_app_styles.scss */ +/* line 7139, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30291,13 +30330,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7106, ../../../scss/_app_styles.scss */ +/* line 7151, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7113, ../../../scss/_app_styles.scss */ +/* line 7158, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30309,7 +30348,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7124, ../../../scss/_app_styles.scss */ +/* line 7169, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30317,13 +30356,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7133, ../../../scss/_app_styles.scss */ +/* line 7178, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7141, ../../../scss/_app_styles.scss */ +/* line 7186, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30341,12 +30380,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7157, ../../../scss/_app_styles.scss */ +/* line 7202, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7162, ../../../scss/_app_styles.scss */ +/* line 7207, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30358,13 +30397,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7172, ../../../scss/_app_styles.scss */ +/* line 7217, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7180, ../../../scss/_app_styles.scss */ +/* line 7225, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30381,843 +30420,144 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7195, ../../../scss/_app_styles.scss */ +/* line 7240, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* create units */ -/* line 7208, ../../../scss/_app_styles.scss */ -.course_creator_header { +/* line 7251, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner { width: 100%; - height: 50px; - background: #fff; - padding: 5px 15px; - box-shadow: 1px 0px 0px #000; + height: 200px; + background-image: url("/static/ndf/images/mydesk_banner.png"); + background-size: 100% 100%; + position: relative; } -/* line 7215, ../../../scss/_app_styles.scss */ -.course_creator_header .unit_editor { +/* line 7258, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner:before { + content: ' '; + background-color: rgba(0, 0, 0, 0.1); + opacity: .5; width: 100%; - height: 320px; - background: #fff; - padding: 5px 15px; - box-shadow: 1px 0px 0px #000; -} -/* line 7224, ../../../scss/_app_styles.scss */ -.course_creator_header .back_to_group { - padding: 0px 15px 0px 10px; - border-right: 1px solid #ccc; - margin-right: 15px; -} -/* line 7230, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading_unit { - width: 500px; - height: 40px; - border: 1px solid #74b3dc; - box-shadow: none; - float: right; - text-align: center; -} -/* line 7239, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading_unit:focus { - border: 1px solid #74b3dc; -} -/* line 7243, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading_unit::-webkit-input-placeholder - { - color: #d9dfe4; - letter-spacing: 0.8px; -} -/* line 7251, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading_unit select { - font-size: 14px; - font-family: 'OpenSans-Regular', sans-serif; - color: gray; - border: 0px solid #74b3dc; -} -/* line 7260, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading input { - width: 500px; - height: 40px; - border: 0px solid #74b3dc; - box-shadow: none; - float: right; - text-align: center; -} -/* line 7268, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading input:focus { - border: 1px solid #74b3dc; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 10; + box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } /* line 7272, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading input::-webkit-input-placeholder - { - color: #d9dfe4; - letter-spacing: 0.8px; +.mydesk_page .page_banner .banner_profile { + position: absolute; + bottom: 30px; + left: 40px; } -/* line 7282, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading h5 { - margin-top: 15px; +/* line 7277, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo { + display: inline-block; + margin-right: 10px; + height: 100px; + border-radius: 5px; + overflow: hidden; + background-color: #fff; } -/* line 7287, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading span { - letter-spacing: 0.9px; - font-weight: 600; - line-height: 50px; +/* line 7285, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg { + height: 100px; + width: 100px; } -/* line 7295, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions ul { - margin: 0px; +/* line 7290, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg path { + fill: #7a422a; } -/* line 7298, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions ul li { - list-style-type: none; +/* line 7295, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading { + color: #fff; display: inline-block; - padding: 12px; - color: #7ca0d0; - cursor: pointer; - letter-spacing: 0.8px; + vertical-align: top; } -/* line 7307, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { - border-bottom: 3px solid #ffc14e; +/* line 7300, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { + font-size: 23px; + display: block; + margin-bottom: 10px; } -/* line 7312, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions span { - margin-right: 5px; - background: rgba(0, 0, 0, 0.6); - border: 1px solid rgba(255, 255, 255, 0.7); - padding: 1px 8px; - color: #fff; - font-size: 12px; - margin: 0px 10px 0px 0px; - cursor: pointer; - border-radius: 3px; +/* line 7308, ../../../scss/_app_styles.scss */ +.mydesk_page .page_menu { + border-bottom: 1px solid #e5e5e5; } -/* line 7324, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions i { - margin-right: 5px; - background: rgba(0, 0, 0, 0.6); - border: 1px solid rgba(255, 255, 255, 0.7); - padding: 1px 8px; - color: #fff; - font-size: 12px; - margin: 0px 10px 0px 0px; - cursor: pointer; - border-radius: 3px; +/* line 7312, ../../../scss/_app_styles.scss */ +.mydesk_page .page_menu li > a { + padding: 12px 20px 9px; } -/* line 7342, ../../../scss/_app_styles.scss */ -.create_unit { - background: #fff; - box-shadow: 0px 2px 3px #000; - margin: 10px auto; - padding: 10px; +/* line 7322, ../../../scss/_app_styles.scss */ +.lms_explore_back_unit { + background-color: #fff; + margin-top: -19.3px; } -/* line 7350, ../../../scss/_app_styles.scss */ -.button-hollow-black { - background: #fff; - border: 2px solid #164A7B; - border-radius: 5px; - color: #164A7B; - font-weight: 600; - letter-spacing: 0.9px; - padding: 2px 10px; +/* line 7329, ../../../scss/_app_styles.scss */ +.course-students-data { + margin: 2px 2px 2px 2px; + border: 2px solid #164a7b; + padding: 19px 14px 0px 5px; +} +/* line 7336, ../../../scss/_app_styles.scss */ +.course-students-data .students-table-legends > span:nth-child(odd) { + margin: 0px 10px; +} +/* line 7339, ../../../scss/_app_styles.scss */ +.course-students-data .students-table-legends > span:nth-child(even) { + display: inline-block; + vertical-align: top; + margin-right: 10px; } -/* line 7360, ../../../scss/_app_styles.scss */ -.vertically-center { - top: 50%; - transform: translateY(-50%); +/* line 7347, ../../../scss/_app_styles.scss */ +.badge_ex { + display: inline-block; + line-height: 22px; + height: 22px; + font-weight: bolder; + padding: 0px 7px; + /*font-family: Arial, sans-serif;*/ + color: white; + text-shadow: 0 1px rgba(0, 0, 0, 0.25); + border: 1px solid; + border-radius: 18px; + -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7369, ../../../scss/_app_styles.scss */ -.top-bar-second, .top-bar-second .name { - height: 52px; - background: #ddeff9; - color: #719dc9; - margin-bottom: 30px; +/* line 7366, ../../../scss/_app_styles.scss */ +.badge_ex.green { + background: #77cc51; + border-color: #59ad33; + background-image: -webkit-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -moz-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -o-linear-gradient(top, #a5dd8c, #77cc51); + background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7379, ../../../scss/_app_styles.scss */ -.top-bar-second .title-area { - box-shadow: 0px 0.6px 3px #000; - z-index: 20; - width: 100%; +/* line 7375, ../../../scss/_app_styles.scss */ +.badge_ex.yellow { + background: #faba3e; + border-color: #f4a306; + background-image: -webkit-linear-gradient(top, #fcd589, #faba3e); + background-image: -moz-linear-gradient(top, #fcd589, #faba3e); + background-image: -o-linear-gradient(top, #fcd589, #faba3e); + background-image: linear-gradient(to bottom, #fcd589, #faba3e); } + /* line 7384, ../../../scss/_app_styles.scss */ -.top-bar-second .name { - text-align: center; -} -/* line 7387, ../../../scss/_app_styles.scss */ -.top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { - position: absolute; - left: 15px; - color: #fff; - font-weight: 100; -} -/* line 7397, ../../../scss/_app_styles.scss */ -.top-bar-second li.toggle-topbar i { - color: #fff; - display: inline-block; - vertical-align: bottom; -} -/* line 7405, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section ul li { - background: #164A7B; -} -/* line 7407, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section ul li > a { - border-left: 3px solid transparent; - border-bottom: 1px solid #4b5b6b; - color: #74b3dc; - line-height: 40px; - font-weight: bold; - letter-spacing: 0.5px; -} -/* line 7418, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { - border-left-color: #ffc14e; - color: #ce7869; -} -/* line 7426, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section .dropdown li.parent-link a { - display: none; -} -/* line 7432, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { - color: #2e3f51; - background: #acd4fa; -} - -@media screen and (min-width: 40.063em) { - /* line 7443, ../../../scss/_app_styles.scss */ - .top-bar-second .title-area { - box-shadow: none; - } - /* line 7445, ../../../scss/_app_styles.scss */ - .top-bar-second .title-area .name { - text-align: right; - } - /* line 7452, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { - cursor: pointer; - background: transparent; - border-bottom: 0px; - line-height: 52px; - border-left-width: 0px; - } - /* line 7459, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { - color: #ce7869; - border-bottom: 3px solid #ffc14e; - } - /* line 7465, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { - color: #ce7869; - border-bottom: 3px solid #ffc14e; - } - /* line 7473, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { - color: #74b3dc; - border-bottom: 0px; - } - /* line 7483, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { - background: transparent; - } - /* line 7492, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { - border-left-width: 2px; - color: #74b3dc; - background: #164A7B; - } - /* line 7499, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { - background: #164A7B; - color: #74b3dc; - border-bottom: 0px; - border-left-width: 2px; - /*&:hover { - color: $secondry-blue; - border-bottom: 0px; - }*/ - } -} -/* Buttons custom css */ -/* line 7520, ../../../scss/_app_styles.scss */ -.secondary-header-tabs { - color: #719dc7; - font-weight: 400; - padding: 14px 10px 3px 10px; - cursor: pointer; - transition: color 1s ease, border-color 1s ease; - -webkit-transition: color 1s ease, border-color 1s ease; - display: inline-block; -} -/* line 7529, ../../../scss/_app_styles.scss */ -.secondary-header-tabs:hover { - color: #164A7B; -} -/* line 7533, ../../../scss/_app_styles.scss */ -.secondary-header-tabs.active { - color: #164A7B; - border-bottom: 2px solid #164A7B; - padding-bottom: 14px; - font-weight: 600; -} - -/* line 7542, ../../../scss/_app_styles.scss */ -.secondary-header-button { - color: #3c556d; - font-weight: 700; - padding: 17px 0px 0px 10px; - cursor: pointer; - transition: color 1s ease, border-color 1s ease; - -webkit-transition: color 1s ease, border-color 1s ease; - display: inline-block; - text-transform: uppercase; - font-size: 13px; - letter-spacing: 1.2px; -} -/* line 7554, ../../../scss/_app_styles.scss */ -.secondary-header-button:hover { - opacity: 0.5; -} - -/* line 7561, ../../../scss/_app_styles.scss */ -.orange-button { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 5px !important; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 8px; - cursor: pointer; -} -/* line 7573, ../../../scss/_app_styles.scss */ -.orange-button:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7579, ../../../scss/_app_styles.scss */ -.pink-button { - background: #a2238d; - height: 37px; - text-align: center; - color: #ffffff; - font-size: 19px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 120px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; -} -/* line 7590, ../../../scss/_app_styles.scss */ -.pink-button:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); -} - -/* line 7595, ../../../scss/_app_styles.scss */ -.orange-button-template { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 10px; -} -/* line 7606, ../../../scss/_app_styles.scss */ -.orange-button-template:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7614, ../../../scss/_app_styles.scss */ -.orange-button-subtitle { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 10px; -} -/* line 7625, ../../../scss/_app_styles.scss */ -.orange-button-subtitle:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7632, ../../../scss/_app_styles.scss */ -.asset-unit-button { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 30px; - margin-bottom: 8px; - margin-top: 300px; -} -/* line 7643, ../../../scss/_app_styles.scss */ -.asset-unit-button:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7650, ../../../scss/_app_styles.scss */ -.disab-button { - margin-right: 10px; - background-color: #fff; - text-transform: none; - font-size: 14px; -} - -/* line 7658, ../../../scss/_app_styles.scss */ -.save-asset { - margin-top: 9px; - margin-right: -133px; -} - -/* line 7662, ../../../scss/_app_styles.scss */ -.asset-save-button { - color: #ce7869; - display: inline-block; - border: 1px solid #ce7869; - border-radius: 5px; - padding: 8px 10px; - outline: none; - white-space: nowrap; - -webkit-user-select: none; - cursor: pointer; - font-weight: 500; - color: #cc7769; - border-color: #cc7769; - float: right; - background: #fff; - margin-right: 5px; - margin-top: 5px; -} - -/* line 7682, ../../../scss/_app_styles.scss */ -.blue-white-button { - color: #fff; - background: #164A7B; - border-radius: 4px; - padding: 5px; - margin-right: 40px; - margin-top: 8px; - padding: 8px 10px; -} - -/* line 7692, ../../../scss/_app_styles.scss */ -button[disabled], .button.disabled, .button[disabled] { - background-color: #eefaff; - border-color: #eefaff; - color: gray; - cursor: default; - opacity: 0.7; - box-shadow: none; - border-radius: 4px; - margin-right: 40px; - margin-top: 8px; - padding: 8px 10px; -} - -/* line 7706, ../../../scss/_app_styles.scss */ -.button-small { - padding: 1px 5px; -} - -/* Tag styles */ -/* line 7714, ../../../scss/_app_styles.scss */ -.asset-tags-container { - width: 100%; - height: 50px; - background: #fff; - padding: 5px 15px; - margin-bottom: 65px; -} -/* line 7721, ../../../scss/_app_styles.scss */ -.asset-tags-container .tag-input-ele { - margin-left: 17px; - width: 96%; -} -/* line 7726, ../../../scss/_app_styles.scss */ -.asset-tags-container .added-tags-div { - margin-left: -206px; -} -/* line 7731, ../../../scss/_app_styles.scss */ -.asset-tags-container #add-tag-btn { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 5px !important; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 8px; - cursor: pointer; - display: inline-block; -} -/* line 7744, ../../../scss/_app_styles.scss */ -.asset-tags-container #add-tag-btn:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7754, ../../../scss/_app_styles.scss */ -.tags-container { - width: 100%; - height: 50px; - background: #fff; - padding: 5px 15px; - box-shadow: 1px 0px 0px #000; - margin-bottom: 65px; -} -/* line 7762, ../../../scss/_app_styles.scss */ -.tags-container .add-tag-heading span { - width: 40%; - color: #99aaba; - font-size: 10px; - text-transform: uppercase; - letter-spacing: 2px; - margin-top: 15px; - margin-left: 8px; - font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", "sans-serif"; -} -/* line 7773, ../../../scss/_app_styles.scss */ -.tags-container .tag-input-ele { - margin-left: 193px; - width: 54%; -} -/* line 7778, ../../../scss/_app_styles.scss */ -.tags-container .added-tags-div { - margin-left: 293px !important; - width: 54%; -} -/* line 7783, ../../../scss/_app_styles.scss */ -.tags-container #add-tag-btn { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 5px !important; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 8px; - cursor: pointer; - display: inline-block; -} -/* line 7796, ../../../scss/_app_styles.scss */ -.tags-container #add-tag-btn:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7805, ../../../scss/_app_styles.scss */ -.asset-unit-button { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 30px; - margin-bottom: 8px; - margin-top: 300px; -} -/* line 7816, ../../../scss/_app_styles.scss */ -.asset-unit-button:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* exploer back*/ -/* line 7824, ../../../scss/_app_styles.scss */ -.lms_explore_head { - width: 100%; - height: 45px; - background-color: #fff; - color: #164A7B; - margin-top: -30px; -} -/* line 7830, ../../../scss/_app_styles.scss */ -.lms_explore_head > p { - margin-left: 81px; - padding: 12px 0px 0px 1px; - font-family: OpenSans-Semibold; - font-size: 20px; -} -/* line 7836, ../../../scss/_app_styles.scss */ -.lms_explore_head > a { - padding: 12px 85px 3px 0px; -} - -/* line 7840, ../../../scss/_app_styles.scss */ -.lms_explore_head_unit { - width: 100%; - height: 50px; - background-color: #fff; - color: #164A7B; -} -/* line 7845, ../../../scss/_app_styles.scss */ -.lms_explore_head_unit > p { - margin-left: 81px; - padding: 0px 0px 0px 1px; - font-family: OpenSans-Semibold; - font-size: 20px; -} -/* line 7851, ../../../scss/_app_styles.scss */ -.lms_explore_head_unit > a { - padding: 0px 85px 3px 0px; -} - -/* line 7856, ../../../scss/_app_styles.scss */ -.lms_explore_back { - background-color: #fff; -} - -/* line 7860, ../../../scss/_app_styles.scss */ -.lms_explore_back_unit { - background-color: #fff; - margin-top: -23.3px; -} - -/** - * Sass styles related to module cards - */ -/* line 7877, ../../../scss/_app_styles.scss */ -.module_card { - display: table; - height: 290px; - width: 526px; - cursor: pointer; - margin: 10px; - border-radius: 5px; - position: relative; - box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); -} -/* line 7887, ../../../scss/_app_styles.scss */ -.module_card:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); -} -/* line 7891, ../../../scss/_app_styles.scss */ -.module_card > div { - display: table-cell; - height: 290px; -} -/* line 7896, ../../../scss/_app_styles.scss */ -.module_card .card_banner { - width: 250px; - height: 290px; - vertical-align: middle; - overflow: hidden; - background-size: 100% 100%; - border-radius: 8px 0px 0px 8px; - box-shadow: inset 0 0 5px 2px; - position: relative; - z-index: 3; - -webkit-transition: border-radius .2s; - transition: border-radius .2s; -} -/* line 7909, ../../../scss/_app_styles.scss */ -.module_card .card_banner > img { - height: 100%; - width: 100%; - border-radius: 4px; - -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); -} -/* line 7914, ../../../scss/_app_styles.scss */ -.module_card .card_banner > img:hover { - -webkit-transform: scale(1.03); - -moz-transform: scale(1.03); - -ms-transform: scale(1.03); - -o-transform: scale(1.03); - transform: scale(1.03); - opacity: 0.8; -} -/* line 7926, ../../../scss/_app_styles.scss */ -.module_card .card_banner > h4 { - position: absolute; - top: 100px; - left: 0; - width: 100%; - color: #ffffff !important; - text-shadow: 2px 0px 8px black; -} -/* line 7941, ../../../scss/_app_styles.scss */ -.module_card .card_title { - display: block; - width: 230px; - font-size: 32px; - font-weight: 600; - text-align: center; - margin: 0px auto; - letter-spacing: 1px; -} -/* line 7952, ../../../scss/_app_styles.scss */ -.module_card.animated_card .card_banner { - border-radius: 8px; -} -/* line 7955, ../../../scss/_app_styles.scss */ -.module_card.animated_card:hover .card_banner { - border-radius: 8px 0px 0px 8px; -} -/* line 7960, ../../../scss/_app_styles.scss */ -.module_card.animated_card.isOpen .card_banner { - border-radius: 8px 0px 0px 8px; -} -/* line 7964, ../../../scss/_app_styles.scss */ -.module_card.animated_card:hover .card_summary { - left: 30px; -} -/* line 7967, ../../../scss/_app_styles.scss */ -.module_card.animated_card .card_summary { - left: 5px; -} -/* line 7971, ../../../scss/_app_styles.scss */ -.module_card .card_summary { - width: 290px; - padding: 0px 15px; - vertical-align: middle; - border-style: solid; - border-width: 1px 1px 1px 0px; - border-radius: 0px 7px 7px 0px; - border-color: #d5d5d5; - box-shadow: inset 2px 0px 13px -5px; - -webkit-transition: left .4s ease-in-out; - transition: left .4s ease-in-out; - -webkit-transition-property: left; - /* Safari */ - transition-property: left; -} -/* line 7985, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_label { - font-weight: 500; - font-size: 12.5px; - letter-spacing: 1px; - color: black; -} -/* line 7991, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section { - margin: 5px 0px; - padding: 5px 0px; -} -/* line 7995, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section:not(:last-child) { - border-bottom: 1px solid #ccc; -} -/* line 7998, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section p { - margin-bottom: 7px; - font-size: 12.5px; -} -/* line 8002, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section .ellipsis { - width: 245px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -/* line 8010, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section .module-card-enrol { - background: #a2238d; - height: 37px; - text-align: center; - color: #ffffff; - width: 172px; - font-size: 19px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 164px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; -} -/* line 8023, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section .module-card-enrol:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); -} -/* line 8029, ../../../scss/_app_styles.scss */ -.module_card .card_summary .module_brief { - display: block; - /* Fallback for non-webkit */ - display: -webkit-box; - height: 52.5px; - /* Fallback for non-webkit */ - max-width: 400px; - overflow: hidden; - text-overflow: ellipsis; - font-size: 12.5px; - line-height: 1.4; - -webkit-line-clamp: 3; - -webkit-box-orient: vertical; - color: black; -} - -/* line 8047, ../../../scss/_app_styles.scss */ -.img-height { - height: 150px; - width: 1351px; -} - -/* - Common css - */ -/* line 8056, ../../../scss/_app_styles.scss */ -.text-button-blue { - background-color: transparent; - color: #00A9EE; - padding: 3px 10px; - font-size: 16px; - letter-spacing: 0.7px; - line-height: 25px; -} - -/* line 8068, ../../../scss/_app_styles.scss */ -.dropdown-settings { - text-align: left; - text-transform: none; - margin-top: 0px; - margin-right: 0px; - width: 198px; - background: white; - border-radius: 1px; -} -/* line 8076, ../../../scss/_app_styles.scss */ -.dropdown-settings:hover { - color: #ce7869; - border-left: 2px solid #ffc14e; -} - -/* line 8084, ../../../scss/_app_styles.scss */ -.inner { - display: inline-block !important; -} - -/* line 8089, ../../../scss/_app_styles.scss */ -.mid_label { - margin-top: 15px; - font-size: 15px; +.badge_ex.red { + background: #fa623f; + border-color: #fa5a35; + background-image: -webkit-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -o-linear-gradient(top, #fc9f8a, #fa623f); + background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); } diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css index 986d230515..e91de5f9c2 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css @@ -26410,34 +26410,29 @@ div.show-image:hover div.fullscreen-icon{ } /* line 3078, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page { - margin-left: 15px; background-color: #fff; padding-bottom: 30px; } -/* line 3083, ../../../scss/_app_styles.scss */ -.notebook .notebook-body .note-page .group_sections_content { - margin-top: 5px; -} -/* line 3086, ../../../scss/_app_styles.scss */ +/* line 3085, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .group_content { margin-top: 5px; margin-left: 0px; } -/* line 3091, ../../../scss/_app_styles.scss */ +/* line 3090, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page > div { background-color: #fff; } -/* line 3095, ../../../scss/_app_styles.scss */ +/* line 3094, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar { padding: 1.8em 1.2em 0em; margin: 0em; background-color: #FFF; } -/* line 3100, ../../../scss/_app_styles.scss */ +/* line 3099, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .note-creator { font-weight: bold; } -/* line 3103, ../../../scss/_app_styles.scss */ +/* line 3102, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-title { text-align: left; color: #C3C3C3; @@ -26445,102 +26440,102 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.3px; margin-top: 5px; } -/* line 3110, ../../../scss/_app_styles.scss */ +/* line 3109, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating { text-align: right; } -/* line 3112, ../../../scss/_app_styles.scss */ +/* line 3111, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating > div { display: inline-block; } -/* line 3117, ../../../scss/_app_styles.scss */ +/* line 3116, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-title { font-size: 2.3em; font-weight: 500; margin-right: 1em; } -/* line 3122, ../../../scss/_app_styles.scss */ +/* line 3121, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content { padding: 2em 2em 1em; background: #fff; margin: 0em; } -/* line 3129, ../../../scss/_app_styles.scss */ +/* line 3128, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-header > div { display: inline-block; } -/* line 3134, ../../../scss/_app_styles.scss */ +/* line 3133, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text { font-size: 19px; letter-spacing: 0.7px; } -/* line 3137, ../../../scss/_app_styles.scss */ +/* line 3136, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text p { padding: 0px; } -/* line 3143, ../../../scss/_app_styles.scss */ +/* line 3142, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections { padding: 0em 1em 0em; } -/* line 3147, ../../../scss/_app_styles.scss */ +/* line 3146, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header span { font-weight: bold; } -/* line 3150, ../../../scss/_app_styles.scss */ +/* line 3149, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { margin-left: 15px; } -/* line 3155, ../../../scss/_app_styles.scss */ +/* line 3154, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment { border-top: 1px solid grey; padding: 15px 10px; margin-top: 5px; } -/* line 3160, ../../../scss/_app_styles.scss */ +/* line 3159, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { min-height: 200px; margin-top: 0px; } -/* line 3166, ../../../scss/_app_styles.scss */ +/* line 3165, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { font-size: 90px; line-height: 0em; } -/* line 3176, ../../../scss/_app_styles.scss */ +/* line 3175, ../../../scss/_app_styles.scss */ #newNoteModal { width: 40%; } -/* line 3179, ../../../scss/_app_styles.scss */ +/* line 3178, ../../../scss/_app_styles.scss */ #newNoteModal > div { margin-bottom: 1em; } -/* line 3183, ../../../scss/_app_styles.scss */ +/* line 3182, ../../../scss/_app_styles.scss */ #newNoteModal input { width: 100%; } -/* line 3186, ../../../scss/_app_styles.scss */ +/* line 3185, ../../../scss/_app_styles.scss */ #newNoteModal .heading { margin-right: 1em; } -/* line 3190, ../../../scss/_app_styles.scss */ +/* line 3189, ../../../scss/_app_styles.scss */ #newNoteModal .note-tags { padding: 1em; border: 1px solid black; } -/* line 3196, ../../../scss/_app_styles.scss */ +/* line 3195, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button { float: left; margin-left: 1em; margin-bottom: 0px; } -/* line 3201, ../../../scss/_app_styles.scss */ +/* line 3200, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button:last-child { float: right; } -/* line 3209, ../../../scss/_app_styles.scss */ +/* line 3208, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header { line-height: 2em; border-top: 1px solid #797979; @@ -26548,33 +26543,33 @@ div.show-image:hover div.fullscreen-icon{ text-align: center; padding: 0.7em 1em; } -/* line 3216, ../../../scss/_app_styles.scss */ +/* line 3215, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input, .gallery-page .gallery-header select, .gallery-page .gallery-header a { border-radius: 4px; margin-bottom: 0em; } -/* line 3220, ../../../scss/_app_styles.scss */ +/* line 3219, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input.prefix, .gallery-page .gallery-header select.prefix, .gallery-page .gallery-header a.prefix { border-radius: 0px; } -/* line 3225, ../../../scss/_app_styles.scss */ +/* line 3224, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header i { font-size: 1em; color: #A29E9E; } -/* line 3231, ../../../scss/_app_styles.scss */ +/* line 3230, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .filters .columns { padding-left: 5px; } -/* line 3237, ../../../scss/_app_styles.scss */ +/* line 3236, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .columns { padding-left: 5px; } -/* line 3241, ../../../scss/_app_styles.scss */ +/* line 3240, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags { text-align: left; } -/* line 3244, ../../../scss/_app_styles.scss */ +/* line 3243, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag { padding: 0px 10px; background: #cccccc; @@ -26584,73 +26579,73 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.8em; color: #757575; } -/* line 3253, ../../../scss/_app_styles.scss */ +/* line 3252, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag span { margin: 0px 2px 0px 6px; cursor: pointer; } -/* line 3258, ../../../scss/_app_styles.scss */ +/* line 3257, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags > div { display: inline-block; } -/* line 3265, ../../../scss/_app_styles.scss */ +/* line 3264, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading { font-size: 19px; } -/* line 3268, ../../../scss/_app_styles.scss */ +/* line 3267, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading a { background: #e7e7e7; border-width: 1px 0px 1px 1px; border-color: #cccccc; border-style: solid; } -/* line 3275, ../../../scss/_app_styles.scss */ +/* line 3274, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading input { border-radius: 0px; box-shadow: none; border-left: 0px; } -/* line 3282, ../../../scss/_app_styles.scss */ +/* line 3281, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel { background: #FFF; } -/* line 3285, ../../../scss/_app_styles.scss */ +/* line 3284, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content { min-height: 250px; } -/* line 3288, ../../../scss/_app_styles.scss */ +/* line 3287, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader { line-height: 3em; padding: 10px 0px; } -/* line 3292, ../../../scss/_app_styles.scss */ +/* line 3291, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader upload-file { margin: 0px; font-size: 1em; } -/* line 3297, ../../../scss/_app_styles.scss */ +/* line 3296, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions { font-size: 1.2em; color: #2a79e4; } -/* line 3301, ../../../scss/_app_styles.scss */ +/* line 3300, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions > div { display: inline-block; margin-right: 10px; } -/* line 3308, ../../../scss/_app_styles.scss */ +/* line 3307, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel { background: #fff; } -/* line 3311, ../../../scss/_app_styles.scss */ +/* line 3310, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row { margin: 10px 0px; } -/* line 3314, ../../../scss/_app_styles.scss */ +/* line 3313, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row > div:first-child { font-weight: 500; } -/* line 3319, ../../../scss/_app_styles.scss */ +/* line 3318, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .file-name { font-size: 20px; font-weight: bold; @@ -26658,11 +26653,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 10px 0px 20px; } -/* line 3330, ../../../scss/_app_styles.scss */ +/* line 3329, ../../../scss/_app_styles.scss */ .gallery-card .select-file { vertical-align: top; } -/* line 3334, ../../../scss/_app_styles.scss */ +/* line 3333, ../../../scss/_app_styles.scss */ .gallery-card .file-item { width: 80%; color: #fff; @@ -26673,17 +26668,17 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid black; overflow: hidden; } -/* line 3344, ../../../scss/_app_styles.scss */ +/* line 3343, ../../../scss/_app_styles.scss */ .gallery-card .file-item .item-thumbnail-image { height: 100%; padding: 1em; } -/* line 3349, ../../../scss/_app_styles.scss */ +/* line 3348, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-details { margin-top: 10%; display: none; } -/* line 3354, ../../../scss/_app_styles.scss */ +/* line 3353, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions { display: none; position: absolute; @@ -26692,11 +26687,11 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; font-size: 25px; } -/* line 3362, ../../../scss/_app_styles.scss */ +/* line 3361, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions i { margin: 0px 10px; } -/* line 3367, ../../../scss/_app_styles.scss */ +/* line 3366, ../../../scss/_app_styles.scss */ .gallery-card .file-item .filename-footer { position: absolute; bottom: 0px; @@ -26707,24 +26702,24 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 600; background: #999999; } -/* line 3378, ../../../scss/_app_styles.scss */ +/* line 3377, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover { background: #999999; } -/* line 3381, ../../../scss/_app_styles.scss */ +/* line 3380, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .item-thumbnail-image { opacity: 0.2; } -/* line 3385, ../../../scss/_app_styles.scss */ +/* line 3384, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .file-details, .gallery-card .file-item:hover .file-actions { display: block; } -/* line 3388, ../../../scss/_app_styles.scss */ +/* line 3387, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .filename-footer { display: none; } -/* line 3396, ../../../scss/_app_styles.scss */ +/* line 3395, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'], dialog[id^='reveal-'] { width: 100vw; height: 100vh; @@ -26788,49 +26783,49 @@ div.show-image:hover div.fullscreen-icon{ } }*/ } -/* line 3460, ../../../scss/_app_styles.scss */ +/* line 3459, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body, dialog[id^='reveal-'] .gmodal-body { position: relative; height: 100%; } -/* line 3463, ../../../scss/_app_styles.scss */ +/* line 3462, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel { background-color: #fff; height: 100%; } -/* line 3465, ../../../scss/_app_styles.scss */ +/* line 3464, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray { display: none; } -/* line 3469, ../../../scss/_app_styles.scss */ +/* line 3468, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe { height: 550px !important; width: 130% !important; } -/* line 3474, ../../../scss/_app_styles.scss */ +/* line 3473, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page { margin-top: -10px !important; } -/* line 3478, ../../../scss/_app_styles.scss */ +/* line 3477, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel span, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel span { display: none !important; } -/* line 3482, ../../../scss/_app_styles.scss */ +/* line 3481, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .button, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .button { display: none !important; } -/* line 3489, ../../../scss/_app_styles.scss */ +/* line 3488, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder { height: 100%; } -/* line 3492, ../../../scss/_app_styles.scss */ +/* line 3491, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item { height: 100%; width: 100%; background: transparent; padding: 0px; } -/* line 3498, ../../../scss/_app_styles.scss */ +/* line 3497, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image { width: auto; margin: 0px auto; @@ -26838,7 +26833,7 @@ div.show-image:hover div.fullscreen-icon{ padding: 1em 0em; height: 100%; } -/* line 3507, ../../../scss/_app_styles.scss */ +/* line 3506, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer { height: 2em; line-height: 2em; @@ -26850,32 +26845,32 @@ div.show-image:hover div.fullscreen-icon{ opacity: 0; background-color: rgba(0, 0, 0, 0.9); } -/* line 3518, ../../../scss/_app_styles.scss */ +/* line 3517, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details), dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details) { cursor: pointer; } -/* line 3522, ../../../scss/_app_styles.scss */ +/* line 3521, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details { text-align: center; width: 100%; } -/* line 3526, ../../../scss/_app_styles.scss */ +/* line 3525, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i { margin-left: 1em; margin-right: 0.5em; cursor: pointer; } -/* line 3534, ../../../scss/_app_styles.scss */ +/* line 3533, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer { opacity: 0.8; transition: opacity 1s; } -/* line 3539, ../../../scss/_app_styles.scss */ +/* line 3538, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel { height: 100%; padding: 0px 25px; } -/* line 3543, ../../../scss/_app_styles.scss */ +/* line 3542, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side { background: #fff; height: 100%; @@ -26896,31 +26891,31 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.9em; }*/ } -/* line 3547, ../../../scss/_app_styles.scss */ +/* line 3546, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div { width: 100%; display: block; margin: 12px 0px; padding: 0px 10px; } -/* line 3554, ../../../scss/_app_styles.scss */ +/* line 3553, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal { font-size: 20px; top: 6px; right: 26px; } -/* line 3561, ../../../scss/_app_styles.scss */ +/* line 3560, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span { vertical-align: top; margin-right: 5px; line-height: 35px; } -/* line 3566, ../../../scss/_app_styles.scss */ +/* line 3565, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating { background: #ccc; padding: 2px 5px; } -/* line 3572, ../../../scss/_app_styles.scss */ +/* line 3571, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a { padding: 3px 7px; background: #fff; @@ -26930,13 +26925,13 @@ div.show-image:hover div.fullscreen-icon{ margin-right: 10px; display: inline-block; } -/* line 3583, ../../../scss/_app_styles.scss */ +/* line 3582, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3588, ../../../scss/_app_styles.scss */ +/* line 3587, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26945,17 +26940,17 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3596, ../../../scss/_app_styles.scss */ +/* line 3595, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a { border-radius: inherit; } -/* line 3600, ../../../scss/_app_styles.scss */ +/* line 3599, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3608, ../../../scss/_app_styles.scss */ +/* line 3607, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span { font-weight: 500; font-size: 16px; @@ -26963,20 +26958,20 @@ div.show-image:hover div.fullscreen-icon{ line-height: 35px; } -/* line 3638, ../../../scss/_app_styles.scss */ +/* line 3637, ../../../scss/_app_styles.scss */ .user-comment { display: inline-flex; width: 100%; } -/* line 3642, ../../../scss/_app_styles.scss */ +/* line 3641, ../../../scss/_app_styles.scss */ .user-comment > div { display: inline-block; } -/* line 3645, ../../../scss/_app_styles.scss */ +/* line 3644, ../../../scss/_app_styles.scss */ .user-comment > div:last-child { width: 100%; } -/* line 3650, ../../../scss/_app_styles.scss */ +/* line 3649, ../../../scss/_app_styles.scss */ .user-comment .comment-heading { color: #9C9C9C; border-bottom: 1px solid grey; @@ -26984,71 +26979,71 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 10px; margin-top: 10px; } -/* line 3658, ../../../scss/_app_styles.scss */ +/* line 3657, ../../../scss/_app_styles.scss */ .user-comment .comment-heading > div { display: inline-block; } -/* line 3662, ../../../scss/_app_styles.scss */ +/* line 3661, ../../../scss/_app_styles.scss */ .user-comment .comment-heading .commentor-name span { font-weight: bold; color: #333333; } -/* line 3667, ../../../scss/_app_styles.scss */ +/* line 3666, ../../../scss/_app_styles.scss */ .user-comment .comment-footer { font-size: 0.9em; font-weight: 400; border: 1px solid #9E9E9E; background: #CCCCCC; } -/* line 3673, ../../../scss/_app_styles.scss */ +/* line 3672, ../../../scss/_app_styles.scss */ .user-comment .comment-footer > div { cursor: pointer; } -/* line 3676, ../../../scss/_app_styles.scss */ +/* line 3675, ../../../scss/_app_styles.scss */ .user-comment .comment-footer i { margin-right: 1em; } -/* line 3682, ../../../scss/_app_styles.scss */ +/* line 3681, ../../../scss/_app_styles.scss */ .user-comment .comment-container .comment-add { margin-top: 0.4em; } -/* line 3686, ../../../scss/_app_styles.scss */ +/* line 3685, ../../../scss/_app_styles.scss */ .user-comment .user-avatar { font-size: 10em; font-size: 5em; line-height: 1em; } -/* line 3693, ../../../scss/_app_styles.scss */ +/* line 3692, ../../../scss/_app_styles.scss */ .course-content { /*border-top: 1px solid #000;*/ } -/* line 3695, ../../../scss/_app_styles.scss */ +/* line 3694, ../../../scss/_app_styles.scss */ .course-content .alert-box { padding: 5px; font-size: 1em; } -/* line 3699, ../../../scss/_app_styles.scss */ +/* line 3698, ../../../scss/_app_styles.scss */ .course-content .alert-box > div { display: inline-block; vertical-align: top; } -/* line 3703, ../../../scss/_app_styles.scss */ +/* line 3702, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note { width: 96%; } -/* line 3706, ../../../scss/_app_styles.scss */ +/* line 3705, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note > div:nth-child(2) { color: #000; margin-top: 5px; padding-top: 5px; border-top: 1px solid #000; } -/* line 3713, ../../../scss/_app_styles.scss */ +/* line 3712, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-icon { margin: 0px 5px; } -/* line 3716, ../../../scss/_app_styles.scss */ +/* line 3715, ../../../scss/_app_styles.scss */ .course-content .alert-box .close { position: relative; top: 0px; @@ -27058,17 +27053,17 @@ div.show-image:hover div.fullscreen-icon{ text-decoration: underline; color: #085394 !important; } -/* line 3727, ../../../scss/_app_styles.scss */ +/* line 3726, ../../../scss/_app_styles.scss */ .course-content .collection { overflow: visible; } -/* line 3730, ../../../scss/_app_styles.scss */ +/* line 3729, ../../../scss/_app_styles.scss */ .course-content .collection .course-module { position: relative; border-bottom: 1px solid #CCC; padding: 1em 0em; } -/* line 3737, ../../../scss/_app_styles.scss */ +/* line 3736, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-header .fa { position: absolute; left: -1.1em; @@ -27077,58 +27072,58 @@ div.show-image:hover div.fullscreen-icon{ background: #EAEAEA; font-size: 1.4em; } -/* line 3755, ../../../scss/_app_styles.scss */ +/* line 3754, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-page:hover span { text-decoration: underline; color: #9900ff !important; } -/* line 3760, ../../../scss/_app_styles.scss */ +/* line 3759, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .jqtree-tree .jqtree-title { cursor: pointer; } -/* line 3764, ../../../scss/_app_styles.scss */ +/* line 3763, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part { margin-left: 1em; } -/* line 3767, ../../../scss/_app_styles.scss */ +/* line 3766, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler { color: #585858; } -/* line 3770, ../../../scss/_app_styles.scss */ +/* line 3769, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler.jqtree-closed { color: #CCC; } -/* line 3774, ../../../scss/_app_styles.scss */ +/* line 3773, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part span { vertical-align: top; } -/* line 3777, ../../../scss/_app_styles.scss */ +/* line 3776, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .fa { display: inline; margin-right: 5px; } -/* line 3787, ../../../scss/_app_styles.scss */ +/* line 3786, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header { font-weight: 400; font-size: 1.3em; border-bottom: 1px solid #707070; color: #797979; } -/* line 3793, ../../../scss/_app_styles.scss */ +/* line 3792, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header > div { padding: 0.3em 0em; } -/* line 3797, ../../../scss/_app_styles.scss */ +/* line 3796, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header a { color: #797979; } -/* line 3801, ../../../scss/_app_styles.scss */ +/* line 3800, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous { cursor: pointer; padding: 0px; } -/* line 3805, ../../../scss/_app_styles.scss */ +/* line 3804, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous a:first-child { border-right: 1px solid grey; padding-right: 5px; @@ -27136,27 +27131,27 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3814, ../../../scss/_app_styles.scss */ +/* line 3813, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header i { margin-right: 0.1em; } -/* line 3818, ../../../scss/_app_styles.scss */ +/* line 3817, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .unit-title { text-align: center; color: #999999; } -/* line 3822, ../../../scss/_app_styles.scss */ +/* line 3821, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-title { text-align: center; color: #000; } -/* line 3826, ../../../scss/_app_styles.scss */ +/* line 3825, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note { color: #2a78e3; cursor: pointer; padding: 0px; } -/* line 3831, ../../../scss/_app_styles.scss */ +/* line 3830, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note a:last-child { border-left: 1px solid grey; padding-left: 5px; @@ -27164,11 +27159,11 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3839, ../../../scss/_app_styles.scss */ +/* line 3838, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note > div { float: right; } -/* line 3844, ../../../scss/_app_styles.scss */ +/* line 3843, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container { border: 1px solid black; height: 100%; @@ -27176,18 +27171,18 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 2em; padding: 0em 1em; } -/* line 3851, ../../../scss/_app_styles.scss */ +/* line 3850, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides { height: 100%; } -/* line 3855, ../../../scss/_app_styles.scss */ +/* line 3854, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 3863, ../../../scss/_app_styles.scss */ +/* line 3862, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -27195,12 +27190,12 @@ div.show-image:hover div.fullscreen-icon{ color: #999999; margin-left: 12%; } -/* line 3871, ../../../scss/_app_styles.scss */ +/* line 3870, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 3877, ../../../scss/_app_styles.scss */ +/* line 3876, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -27209,21 +27204,21 @@ div.show-image:hover div.fullscreen-icon{ display: none; color: #8E8E8E; } -/* line 3886, ../../../scss/_app_styles.scss */ +/* line 3885, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 3891, ../../../scss/_app_styles.scss */ +/* line 3890, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 3893, ../../../scss/_app_styles.scss */ +/* line 3892, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 3896, ../../../scss/_app_styles.scss */ +/* line 3895, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -27234,24 +27229,24 @@ div.show-image:hover div.fullscreen-icon{ color: #757575; margin-right: 20px; } -/* line 3906, ../../../scss/_app_styles.scss */ +/* line 3905, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 3910, ../../../scss/_app_styles.scss */ +/* line 3909, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 3913, ../../../scss/_app_styles.scss */ +/* line 3912, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 3918, ../../../scss/_app_styles.scss */ +/* line 3917, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 3922, ../../../scss/_app_styles.scss */ +/* line 3921, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content { width: 75%; margin: 0px auto; @@ -27262,7 +27257,7 @@ div.show-image:hover div.fullscreen-icon{ min-height: 50px; position: relative; } -/* line 3932, ../../../scss/_app_styles.scss */ +/* line 3931, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -27270,15 +27265,15 @@ div.show-image:hover div.fullscreen-icon{ left: 8px; top: 4px; } -/* line 3940, ../../../scss/_app_styles.scss */ +/* line 3939, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 3942, ../../../scss/_app_styles.scss */ +/* line 3941, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 3945, ../../../scss/_app_styles.scss */ +/* line 3944, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -27288,27 +27283,27 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.8px; color: #999999; } -/* line 3954, ../../../scss/_app_styles.scss */ +/* line 3953, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 3960, ../../../scss/_app_styles.scss */ +/* line 3959, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 3967, ../../../scss/_app_styles.scss */ +/* line 3966, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section { width: 75%; margin: 0px auto; } -/* line 3971, ../../../scss/_app_styles.scss */ +/* line 3970, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section .user-prof-image { font-size: 7em; text-align: center; } -/* line 3976, ../../../scss/_app_styles.scss */ +/* line 3975, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section #postCommentBtn { padding: 2em 3em; } @@ -27329,28 +27324,28 @@ div.show-image:hover div.fullscreen-icon{ position: absolute; } */ -/* line 3997, ../../../scss/_app_styles.scss */ +/* line 3996, ../../../scss/_app_styles.scss */ .rate-scale { cursor: pointer; } -/* line 4000, ../../../scss/_app_styles.scss */ +/* line 3999, ../../../scss/_app_styles.scss */ .rate-scale i { margin-right: 0em !important; padding-right: 0.5em; } -/* line 4004, ../../../scss/_app_styles.scss */ +/* line 4003, ../../../scss/_app_styles.scss */ .rate-scale .hover-rating, .rate-scale .rated { color: yellow; } -/* line 4010, ../../../scss/_app_styles.scss */ +/* line 4009, ../../../scss/_app_styles.scss */ #left-tab { position: absolute; left: 0px; bottom: 0px; } -/* line 4015, ../../../scss/_app_styles.scss */ +/* line 4014, ../../../scss/_app_styles.scss */ #right-tab { position: absolute; right: 0px; @@ -27358,12 +27353,12 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 6px; } -/* line 4021, ../../../scss/_app_styles.scss */ +/* line 4020, ../../../scss/_app_styles.scss */ #enrolled-btn { margin-bottom: 0px; } -/* line 4024, ../../../scss/_app_styles.scss */ +/* line 4023, ../../../scss/_app_styles.scss */ div.absol-descrip { position: absolute; top: 190px; @@ -27374,14 +27369,14 @@ div.absol-descrip { } /*overview-summary styling*/ -/* line 4034, ../../../scss/_app_styles.scss */ +/* line 4033, ../../../scss/_app_styles.scss */ .course-title, .course-date { color: white; padding-top: 0px; padding-bottom: 0px; } -/* line 4039, ../../../scss/_app_styles.scss */ +/* line 4038, ../../../scss/_app_styles.scss */ .course-description { color: #cccccc; padding-top: 0px; @@ -27393,48 +27388,48 @@ div.absol-descrip { overflow: hidden; } -/* line 4049, ../../../scss/_app_styles.scss */ +/* line 4048, ../../../scss/_app_styles.scss */ .course-para { padding: 0; } -/* line 4053, ../../../scss/_app_styles.scss */ +/* line 4052, ../../../scss/_app_styles.scss */ course-title { padding-left: 10px; } -/* line 4056, ../../../scss/_app_styles.scss */ +/* line 4055, ../../../scss/_app_styles.scss */ .enroll-status-margin { margin-bottom: 0; } -/* line 4060, ../../../scss/_app_styles.scss */ +/* line 4059, ../../../scss/_app_styles.scss */ .progress-summery { color: white; margin-top: 20px; } -/* line 4064, ../../../scss/_app_styles.scss */ +/* line 4063, ../../../scss/_app_styles.scss */ .course-description-thumbnails { margin: 0; padding: 0; } -/* line 4069, ../../../scss/_app_styles.scss */ +/* line 4068, ../../../scss/_app_styles.scss */ .left-shift { padding: 0; color: white !important; } /*course overview for Small screens*/ -/* line 4075, ../../../scss/_app_styles.scss */ +/* line 4074, ../../../scss/_app_styles.scss */ .course { /*position:relative;*/ border: 1px solid black; background-color: #999999; } -/* line 4081, ../../../scss/_app_styles.scss */ +/* line 4080, ../../../scss/_app_styles.scss */ .course-contents { /*position:absolute;*/ width: 100%; @@ -27442,7 +27437,7 @@ course-title { /*Medium screens*/ @media only screen and (min-width: 40.063em) { - /* line 4088, ../../../scss/_app_styles.scss */ + /* line 4087, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27450,7 +27445,7 @@ course-title { background-color: #999999; } - /* line 4094, ../../../scss/_app_styles.scss */ + /* line 4093, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27460,7 +27455,7 @@ course-title { /* min-width 641px, medium screens */ /* Large screens*/ @media only screen and (min-width: 64.063em) { - /* line 4104, ../../../scss/_app_styles.scss */ + /* line 4103, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27468,7 +27463,7 @@ course-title { background-color: #999999; } - /* line 4110, ../../../scss/_app_styles.scss */ + /* line 4109, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27477,14 +27472,14 @@ course-title { } /* min-width 1025px, large screens */ /*General config css*/ -/* line 4117, ../../../scss/_app_styles.scss */ +/* line 4116, ../../../scss/_app_styles.scss */ .alert-box.warning { background: #ffe7c0; border-color: #bf9000; color: #966000; } -/* line 4124, ../../../scss/_app_styles.scss */ +/* line 4123, ../../../scss/_app_styles.scss */ .badge { display: inline-block; line-height: 22px; @@ -27501,7 +27496,7 @@ course-title { font-size: 1.8em; } -/* line 4140, ../../../scss/_app_styles.scss */ +/* line 4139, ../../../scss/_app_styles.scss */ .badge { background: #67c1ef; border-color: #30aae9; @@ -27511,7 +27506,7 @@ course-title { background-image: linear-gradient(to bottom, #acddf6, #67c1ef); } -/* line 4149, ../../../scss/_app_styles.scss */ +/* line 4148, ../../../scss/_app_styles.scss */ .badge.green { background: #77cc51; border-color: #59ad33; @@ -27521,7 +27516,7 @@ course-title { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 4158, ../../../scss/_app_styles.scss */ +/* line 4157, ../../../scss/_app_styles.scss */ .badge.yellow { background: #faba3e; border-color: #f4a306; @@ -27531,7 +27526,7 @@ course-title { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 4168, ../../../scss/_app_styles.scss */ +/* line 4167, ../../../scss/_app_styles.scss */ .badge.red { background: #fa623f; border-color: #fa5a35; @@ -27542,12 +27537,12 @@ course-title { } /* Course/ Event Card CSS*/ -/* line 4184, ../../../scss/_app_styles.scss */ +/* line 4183, ../../../scss/_app_styles.scss */ .card-image-wrapper { position: relative; } -/* line 4188, ../../../scss/_app_styles.scss */ +/* line 4187, ../../../scss/_app_styles.scss */ .event-card { padding: 0px; min-height: 22rem; @@ -27556,12 +27551,12 @@ course-title { border-radius: 10px; background-color: #fff; } -/* line 4196, ../../../scss/_app_styles.scss */ +/* line 4195, ../../../scss/_app_styles.scss */ .event-card:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 4201, ../../../scss/_app_styles.scss */ +/* line 4200, ../../../scss/_app_styles.scss */ .event-card .event-card-status { z-index: 99; width: auto; @@ -27576,31 +27571,31 @@ course-title { border-radius: 4px; letter-spacing: 0.3px; } -/* line 4215, ../../../scss/_app_styles.scss */ +/* line 4214, ../../../scss/_app_styles.scss */ .event-card .event-card-status.open { background-color: #00b300; } -/* line 4218, ../../../scss/_app_styles.scss */ +/* line 4217, ../../../scss/_app_styles.scss */ .event-card .event-card-status.closed { background-color: red; } -/* line 4221, ../../../scss/_app_styles.scss */ +/* line 4220, ../../../scss/_app_styles.scss */ .event-card .event-card-status.in-progress { background-color: #00b300; } -/* line 4224, ../../../scss/_app_styles.scss */ +/* line 4223, ../../../scss/_app_styles.scss */ .event-card .event-card-status.forthcoming { background-color: #F2910D; } -/* line 4227, ../../../scss/_app_styles.scss */ +/* line 4226, ../../../scss/_app_styles.scss */ .event-card .event-card-status.upcoming { background-color: #F2910D; } -/* line 4231, ../../../scss/_app_styles.scss */ +/* line 4230, ../../../scss/_app_styles.scss */ .event-card .event-card-status.completed { background-color: #4d4d4d; } -/* line 4236, ../../../scss/_app_styles.scss */ +/* line 4235, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications { position: absolute; top: 2px; @@ -27609,46 +27604,46 @@ course-title { color: #F04124; font-weight: 600; } -/* line 4244, ../../../scss/_app_styles.scss */ +/* line 4243, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications .badge { padding: 0px 5px; font-size: 1.4em; font-weight: 600; } -/* line 4251, ../../../scss/_app_styles.scss */ +/* line 4250, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status { font-weight: 500; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 4256, ../../../scss/_app_styles.scss */ +/* line 4255, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.open { color: #00b300; } -/* line 4260, ../../../scss/_app_styles.scss */ +/* line 4259, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.closed { color: red; } -/* line 4264, ../../../scss/_app_styles.scss */ +/* line 4263, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.in-progress { color: #000; } -/* line 4267, ../../../scss/_app_styles.scss */ +/* line 4266, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.forthcoming { color: #F2910D; } -/* line 4271, ../../../scss/_app_styles.scss */ +/* line 4270, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.completed { color: #4d4d4d; } -/* line 4275, ../../../scss/_app_styles.scss */ +/* line 4274, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status .event-time { font-size: 0.7em; display: block; font-weight: 400; display: inline; } -/* line 4283, ../../../scss/_app_styles.scss */ +/* line 4282, ../../../scss/_app_styles.scss */ .event-card .event-card-title { color: #0d0d0d; display: inline-block; @@ -27659,19 +27654,19 @@ course-title { font-size: 2em; font-weight: 400; } -/* line 4294, ../../../scss/_app_styles.scss */ +/* line 4293, ../../../scss/_app_styles.scss */ .event-card .event-card-desc { word-wrap: break-word; font-size: 0.6em; color: #333333; padding-left: 4px; } -/* line 4300, ../../../scss/_app_styles.scss */ +/* line 4299, ../../../scss/_app_styles.scss */ .event-card p { margin: 0px; padding: 10px; } -/* line 4306, ../../../scss/_app_styles.scss */ +/* line 4305, ../../../scss/_app_styles.scss */ .event-card .event-card-image { padding: 0px; margin: 0px; @@ -27683,7 +27678,7 @@ course-title { background-color: #e5e5e5; border-radius: 10px 10px 0px 0px; } -/* line 4317, ../../../scss/_app_styles.scss */ +/* line 4316, ../../../scss/_app_styles.scss */ .event-card .event-card-image img { border-radius: 2px 2px 0 0; display: block; @@ -27692,7 +27687,7 @@ course-title { opacity: 0.25; height: 100%; } -/* line 4326, ../../../scss/_app_styles.scss */ +/* line 4325, ../../../scss/_app_styles.scss */ .event-card .event-card-image i { font-size: 7rem; opacity: 0.75; @@ -27706,51 +27701,51 @@ course-title { text-transform: none; text-decoration: inherit; } -/* line 4340, ../../../scss/_app_styles.scss */ +/* line 4339, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.file:before { content: "\f18e"; } -/* line 4343, ../../../scss/_app_styles.scss */ +/* line 4342, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.page:before { content: "\f18e"; } -/* line 4346, ../../../scss/_app_styles.scss */ +/* line 4345, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.collection:before { content: "\f18a"; } -/* line 4349, ../../../scss/_app_styles.scss */ +/* line 4348, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.documents:before { content: "\f18b"; } -/* line 4352, ../../../scss/_app_styles.scss */ +/* line 4351, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.pdf:before { content: "\f18b"; } -/* line 4355, ../../../scss/_app_styles.scss */ +/* line 4354, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.text:before { content: "\f18e"; } -/* line 4358, ../../../scss/_app_styles.scss */ +/* line 4357, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.interactives:before { content: "\f1b2"; } -/* line 4361, ../../../scss/_app_styles.scss */ +/* line 4360, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.ebooks:before { content: "\f11e"; } -/* line 4364, ../../../scss/_app_styles.scss */ +/* line 4363, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.images:before { content: "\f125"; } -/* line 4367, ../../../scss/_app_styles.scss */ +/* line 4366, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.audios:before, .event-card .event-card-image i.audio:before { content: "\f17b"; } -/* line 4370, ../../../scss/_app_styles.scss */ +/* line 4369, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.videos:before, .event-card .event-card-image i.video:before { content: "\f20e"; } -/* line 4374, ../../../scss/_app_styles.scss */ +/* line 4373, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer { padding: 0.7em 1em; border-top: 1px solid #DCDCDC; @@ -27761,7 +27756,7 @@ course-title { background-color: #F3F3F3; border-radius: 0px 0px 10px 10px; } -/* line 4384, ../../../scss/_app_styles.scss */ +/* line 4383, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .footer-label { text-transform: uppercase; font-size: 10px; @@ -27769,54 +27764,54 @@ course-title { margin-bottom: 2px; color: #ADADAD; } -/* line 4392, ../../../scss/_app_styles.scss */ +/* line 4391, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date { color: #929292; font-size: 0.85em; letter-spacing: 0.5px; } -/* line 4397, ../../../scss/_app_styles.scss */ +/* line 4396, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date i:not(.edit-course-duration, .edit-course-enrollment) { margin-right: 0.3em; } -/* line 4401, ../../../scss/_app_styles.scss */ +/* line 4400, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .row { margin: 10px 0px 0px; } -/* line 4405, ../../../scss/_app_styles.scss */ +/* line 4404, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration, .event-card .edit-course-enrollment { float: right; font-size: 1.5em; color: #DADADA; } -/* line 4409, ../../../scss/_app_styles.scss */ +/* line 4408, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration:hover, .event-card .edit-course-enrollment:hover { color: #565656; } -/* line 4413, ../../../scss/_app_styles.scss */ +/* line 4412, ../../../scss/_app_styles.scss */ .event-card .published.scard-action { background: #A6D9CB; } -/* line 4417, ../../../scss/_app_styles.scss */ +/* line 4416, ../../../scss/_app_styles.scss */ .event-card .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 4422, ../../../scss/_app_styles.scss */ +/* line 4421, ../../../scss/_app_styles.scss */ .event-card .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4427, ../../../scss/_app_styles.scss */ +/* line 4426, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action { border-color: transparent #03a9f4 transparent transparent; border-color: rgba(255, 255, 255, 0) #03a9f4 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4431, ../../../scss/_app_styles.scss */ +/* line 4430, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 4435, ../../../scss/_app_styles.scss */ +/* line 4434, ../../../scss/_app_styles.scss */ .event-card .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -27827,17 +27822,17 @@ course-title { /* End Course/events Card CSS*/ /* Landing page */ -/* line 4447, ../../../scss/_app_styles.scss */ +/* line 4446, ../../../scss/_app_styles.scss */ .landing_page { position: relative; text-align: center; } -/* line 4451, ../../../scss/_app_styles.scss */ +/* line 4450, ../../../scss/_app_styles.scss */ .landing_page .panel { background-color: inherit; border: none; } -/* line 4456, ../../../scss/_app_styles.scss */ +/* line 4455, ../../../scss/_app_styles.scss */ .landing_page .landing_page_background { height: 100%; width: 100%; @@ -27849,24 +27844,24 @@ course-title { background: -ms-linear-gradient(left, #E9A900, #B0108D); background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 4468, ../../../scss/_app_styles.scss */ +/* line 4467, ../../../scss/_app_styles.scss */ .landing_page .clix_brief { text-align: left; padding: 20px 5%; } -/* line 4472, ../../../scss/_app_styles.scss */ +/* line 4471, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 30px 20px; height: 70px; } @media screen and (max-width: 450px) { - /* line 4472, ../../../scss/_app_styles.scss */ + /* line 4471, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 25px 10px; height: 55px; } } -/* line 4480, ../../../scss/_app_styles.scss */ +/* line 4479, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { color: #fff; font-size: 26px; @@ -27874,12 +27869,12 @@ course-title { font-family: 'ubuntu-light'; } @media screen and (max-width: 450px) { - /* line 4480, ../../../scss/_app_styles.scss */ + /* line 4479, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { font-size: 18px; } } -/* line 4491, ../../../scss/_app_styles.scss */ +/* line 4490, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { background-color: rgba(255, 255, 255, 0.92); border-radius: 10px; @@ -27890,12 +27885,12 @@ course-title { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); } @media screen and (min-width: 1025px) { - /* line 4491, ../../../scss/_app_styles.scss */ + /* line 4490, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { margin: 200px auto; } } -/* line 4503, ../../../scss/_app_styles.scss */ +/* line 4502, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix > span { font-family: 'ubuntu-bold'; color: #6658af; @@ -27906,7 +27901,7 @@ course-title { display: inline-block; vertical-align: middle; } -/* line 4513, ../../../scss/_app_styles.scss */ +/* line 4512, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix p { color: #b0108d; font-size: 21px; @@ -27914,28 +27909,28 @@ course-title { font-weight: 300; font-family: 'ubuntu-light'; } -/* line 4521, ../../../scss/_app_styles.scss */ +/* line 4520, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix img { height: 30px; } -/* line 4524, ../../../scss/_app_styles.scss */ +/* line 4523, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form { margin-top: 30px; } -/* line 4527, ../../../scss/_app_styles.scss */ +/* line 4526, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form input { font-size: 24px; height: 45px; margin: 5px 0px 24px; } -/* line 4534, ../../../scss/_app_styles.scss */ +/* line 4533, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix input.button { font-size: 15px; border-radius: 5px; font-family: 'ubuntu-bold'; text-transform: uppercase; } -/* line 4540, ../../../scss/_app_styles.scss */ +/* line 4539, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix a.grey { color: #999; /*display: inline-block; @@ -27946,7 +27941,7 @@ course-title { font-family: 'ubuntu-bold'; text-transform: uppercase;*/ } -/* line 4551, ../../../scss/_app_styles.scss */ +/* line 4550, ../../../scss/_app_styles.scss */ .landing_page .flowers { left: 50px; height: 500px; @@ -27954,18 +27949,18 @@ course-title { opacity: 0.6; } @media screen and (max-width: 450px) { - /* line 4551, ../../../scss/_app_styles.scss */ + /* line 4550, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 250px; } } @media screen and (min-width: 451px) and (max-width: 1025px) { - /* line 4551, ../../../scss/_app_styles.scss */ + /* line 4550, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 350px; } } -/* line 4563, ../../../scss/_app_styles.scss */ +/* line 4562, ../../../scss/_app_styles.scss */ .landing_page .bees { position: absolute; top: 5px; @@ -27973,40 +27968,40 @@ course-title { height: 150px; } @media screen and (max-width: 450px) { - /* line 4563, ../../../scss/_app_styles.scss */ + /* line 4562, ../../../scss/_app_styles.scss */ .landing_page .bees { right: 15px; height: 100px; } } -/* line 4573, ../../../scss/_app_styles.scss */ +/* line 4572, ../../../scss/_app_styles.scss */ .landing_page h2 { color: #A0148E; font-weight: 600; } -/* line 4577, ../../../scss/_app_styles.scss */ +/* line 4576, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text { color: #6153ae; } -/* line 4580, ../../../scss/_app_styles.scss */ +/* line 4579, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text p { font-size: 18px; } /* END of Landing page */ -/* line 4586, ../../../scss/_app_styles.scss */ +/* line 4585, ../../../scss/_app_styles.scss */ .audio-caption { cursor: pointer; } -/* line 4590, ../../../scss/_app_styles.scss */ +/* line 4589, ../../../scss/_app_styles.scss */ .gallery-image { cursor: pointer; max-height: 100px; border: 1px solid !important; } -/* line 4596, ../../../scss/_app_styles.scss */ +/* line 4595, ../../../scss/_app_styles.scss */ .show-collection { color: black !important; font-size: 1.1em; @@ -28019,25 +28014,25 @@ course-title { border: 1px solid #eee; } -/* line 4608, ../../../scss/_app_styles.scss */ +/* line 4607, ../../../scss/_app_styles.scss */ .processing-screen { background-color: #03a9f4 !important; } -/* line 4612, ../../../scss/_app_styles.scss */ +/* line 4611, ../../../scss/_app_styles.scss */ .processing-screen-label { width: 500px !important; font-style: normal !important; } -/* line 4616, ../../../scss/_app_styles.scss */ +/* line 4615, ../../../scss/_app_styles.scss */ h3 { font-size: 20px; color: #164A7B; font-family: 'OpenSans-Semibold'; } -/* line 4622, ../../../scss/_app_styles.scss */ +/* line 4621, ../../../scss/_app_styles.scss */ h5 { color: #99aaba; font-size: 10px; @@ -28046,7 +28041,7 @@ h5 { margin-left: 5px; } -/* line 4630, ../../../scss/_app_styles.scss */ +/* line 4629, ../../../scss/_app_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28055,12 +28050,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4637, ../../../scss/_app_styles.scss */ +/* line 4636, ../../../scss/_app_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 4641, ../../../scss/_app_styles.scss */ +/* line 4640, ../../../scss/_app_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28069,12 +28064,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4648, ../../../scss/_app_styles.scss */ +/* line 4647, ../../../scss/_app_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 4654, ../../../scss/_app_styles.scss */ +/* line 4653, ../../../scss/_app_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28086,7 +28081,7 @@ h5 { color: #6153AE; } -/* line 4665, ../../../scss/_app_styles.scss */ +/* line 4664, ../../../scss/_app_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28098,7 +28093,7 @@ h5 { color: #6153AE; } -/* line 4676, ../../../scss/_app_styles.scss */ +/* line 4675, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -28110,7 +28105,7 @@ h5 { border: 2px solid #6153ae; background-color: #dbd4e1; } -/* line 4687, ../../../scss/_app_styles.scss */ +/* line 4686, ../../../scss/_app_styles.scss */ .explore-button:hover { cursor: pointer; } @@ -28118,12 +28113,12 @@ h5 { /*Blue color variable*/ /*Orange color variables*/ /* module detail settings drop */ -/* line 4720, ../../../scss/_app_styles.scss */ +/* line 4719, ../../../scss/_app_styles.scss */ .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4723, ../../../scss/_app_styles.scss */ +/* line 4722, ../../../scss/_app_styles.scss */ .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28136,17 +28131,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4734, ../../../scss/_app_styles.scss */ +/* line 4733, ../../../scss/_app_styles.scss */ .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4740, ../../../scss/_app_styles.scss */ +/* line 4739, ../../../scss/_app_styles.scss */ .explore-settings-drop a { font-size: 16px; } -/* line 4743, ../../../scss/_app_styles.scss */ +/* line 4742, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28154,12 +28149,12 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4743, ../../../scss/_app_styles.scss */ +/* line 4742, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4746, ../../../scss/_app_styles.scss */ +/* line 4745, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28172,17 +28167,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4757, ../../../scss/_app_styles.scss */ +/* line 4756, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4763, ../../../scss/_app_styles.scss */ +/* line 4762, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop a { font-size: 16px; } -/* line 4766, ../../../scss/_app_styles.scss */ +/* line 4765, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28190,31 +28185,31 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4774, ../../../scss/_app_styles.scss */ +/* line 4773, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4778, ../../../scss/_app_styles.scss */ +/* line 4777, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4791, ../../../scss/_app_styles.scss */ +/* line 4790, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4795, ../../../scss/_app_styles.scss */ +/* line 4794, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4805, ../../../scss/_app_styles.scss */ +/* line 4804, ../../../scss/_app_styles.scss */ .lms_page .lms_banner { width: 100%; height: 150px; background-size: 100% 100%; position: relative; } -/* line 4813, ../../../scss/_app_styles.scss */ +/* line 4812, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -28227,27 +28222,27 @@ h5 { bottom: 0; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 4826, ../../../scss/_app_styles.scss */ +/* line 4825, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before a { cursor: pointer; } -/* line 4831, ../../../scss/_app_styles.scss */ +/* line 4830, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .div-height { height: 150px !important; background-size: 100% 100%; position: absolute !important; } -/* line 4839, ../../../scss/_app_styles.scss */ +/* line 4838, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .enroll_unit > a { cursor: pointer; } -/* line 4843, ../../../scss/_app_styles.scss */ +/* line 4842, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 4849, ../../../scss/_app_styles.scss */ +/* line 4848, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .unit_name { font-size: 36px; font-family: OpenSans-Semibold; @@ -28258,17 +28253,17 @@ h5 { transition: border-radius .2s; text-shadow: 3px 2px #164a7b; } -/* line 4860, ../../../scss/_app_styles.scss */ +/* line 4859, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .right-margin { margin-right: 46px; } -/* line 4869, ../../../scss/_app_styles.scss */ +/* line 4868, ../../../scss/_app_styles.scss */ .border-bottom-lms-header { border-bottom: 1px solid #00000029; } -/* line 4874, ../../../scss/_app_styles.scss */ +/* line 4873, ../../../scss/_app_styles.scss */ .lms_secondary_header { width: 100%; position: relative; @@ -28276,11 +28271,11 @@ h5 { box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 4880, ../../../scss/_app_styles.scss */ +/* line 4879, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions { margin-top: 8px; } -/* line 4883, ../../../scss/_app_styles.scss */ +/* line 4882, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28292,11 +28287,11 @@ h5 { opacity: 0.8; } @media screen and (min-width: 980px) and (max-width: 1000px) { - /* line 4897, ../../../scss/_app_styles.scss */ + /* line 4896, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions { margin-top: 8px; } - /* line 4900, ../../../scss/_app_styles.scss */ + /* line 4899, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions > span { margin-left: 50px; background: #2e3f51; @@ -28310,16 +28305,16 @@ h5 { } } -/* line 4920, ../../../scss/_app_styles.scss */ +/* line 4919, ../../../scss/_app_styles.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; } -/* line 4923, ../../../scss/_app_styles.scss */ +/* line 4922, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 4926, ../../../scss/_app_styles.scss */ +/* line 4925, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a { list-style-type: none; display: inline-block; @@ -28330,13 +28325,42 @@ ul.nav_menu_1 > li > a { letter-spacing: 0.8px; border-bottom: 3px solid transparent; } -/* line 4937, ../../../scss/_app_styles.scss */ +/* line 4936, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-bottom: 3px solid #a2238d; } +/* line 4947, ../../../scss/_app_styles.scss */ +ul.authoring-tab { + margin-bottom: 0px; + display: inline; + width: 50%; +} +/* line 4951, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li { + display: inline-block; + background-color: #164a7b; +} +/* line 4954, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li > a { + list-style-type: none; + margin-right: -4px; + background-color: #164a7b; + padding: 12px 12px 9px; + cursor: pointer; + font-size: 18px; + display: inline-block; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; + color: #ffffff !important; +} +/* line 4965, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { + border-bottom: 3px solid #a2238d; +} + /* Secondary Top Bar */ -/* line 4948, ../../../scss/_app_styles.scss */ +/* line 4975, ../../../scss/_app_styles.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -28344,34 +28368,34 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-bottom: 30px; } -/* line 4958, ../../../scss/_app_styles.scss */ +/* line 4985, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 4963, ../../../scss/_app_styles.scss */ +/* line 4990, ../../../scss/_app_styles.scss */ .top-bar-second .name { text-align: center; } -/* line 4966, ../../../scss/_app_styles.scss */ +/* line 4993, ../../../scss/_app_styles.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 4976, ../../../scss/_app_styles.scss */ +/* line 5003, ../../../scss/_app_styles.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 4984, ../../../scss/_app_styles.scss */ +/* line 5011, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 4986, ../../../scss/_app_styles.scss */ +/* line 5013, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -28380,31 +28404,31 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { font-weight: bold; letter-spacing: 0.5px; } -/* line 4997, ../../../scss/_app_styles.scss */ +/* line 5024, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 5005, ../../../scss/_app_styles.scss */ +/* line 5032, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 5011, ../../../scss/_app_styles.scss */ +/* line 5038, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 5022, ../../../scss/_app_styles.scss */ + /* line 5049, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 5024, ../../../scss/_app_styles.scss */ + /* line 5051, ../../../scss/_app_styles.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 5031, ../../../scss/_app_styles.scss */ + /* line 5058, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -28412,32 +28436,32 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { line-height: 52px; border-left-width: 0px; } - /* line 5038, ../../../scss/_app_styles.scss */ + /* line 5065, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5044, ../../../scss/_app_styles.scss */ + /* line 5071, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5052, ../../../scss/_app_styles.scss */ + /* line 5079, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 5062, ../../../scss/_app_styles.scss */ + /* line 5089, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 5071, ../../../scss/_app_styles.scss */ + /* line 5098, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 5078, ../../../scss/_app_styles.scss */ + /* line 5105, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; @@ -28452,7 +28476,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /** * Sass styles related to unit cards */ -/* line 5105, ../../../scss/_app_styles.scss */ +/* line 5132, ../../../scss/_app_styles.scss */ .unit_card { width: 300px; color: #000; @@ -28464,7 +28488,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { position: relative; height: 210px; } -/* line 5119, ../../../scss/_app_styles.scss */ +/* line 5146, ../../../scss/_app_styles.scss */ .unit_card .unit_status { position: absolute; right: 0px; @@ -28475,11 +28499,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-radius: 3px; letter-spacing: 0.6px; } -/* line 5130, ../../../scss/_app_styles.scss */ +/* line 5157, ../../../scss/_app_styles.scss */ .unit_card .unit_header { display: table; } -/* line 5132, ../../../scss/_app_styles.scss */ +/* line 5159, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_banner { display: table-cell; border-radius: 5px; @@ -28488,7 +28512,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-right: 10px; color: #333333; } -/* line 5140, ../../../scss/_app_styles.scss */ +/* line 5167, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_title { display: table-cell; font-size: 20px; @@ -28502,7 +28526,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { vertical-align: middle; color: #333333; } -/* line 5154, ../../../scss/_app_styles.scss */ +/* line 5181, ../../../scss/_app_styles.scss */ .unit_card .unit_desc { display: block; /* Fallback for non-webkit */ @@ -28519,16 +28543,16 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin: 10px 0px 20px; color: #333333; } -/* line 5170, ../../../scss/_app_styles.scss */ +/* line 5197, ../../../scss/_app_styles.scss */ .unit_card .unit_breif .unit_breif_row i { margin-right: 10px; color: #99aaba; } -/* line 5176, ../../../scss/_app_styles.scss */ +/* line 5203, ../../../scss/_app_styles.scss */ .unit_card .unit_actions { padding: 5px 0px; } -/* line 5181, ../../../scss/_app_styles.scss */ +/* line 5208, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol { background: #a2238d; height: 37px; @@ -28541,11 +28565,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5193, ../../../scss/_app_styles.scss */ +/* line 5220, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 5198, ../../../scss/_app_styles.scss */ +/* line 5225, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics { color: #a2238d; font-weight: 500; @@ -28553,7 +28577,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.3px; border-bottom: 2px solid #a2238d; } -/* line 5206, ../../../scss/_app_styles.scss */ +/* line 5233, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics-points { background: #ffffff; color: #a2238d; @@ -28564,7 +28588,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { font-weight: bold; cursor: default; } -/* line 5217, ../../../scss/_app_styles.scss */ +/* line 5244, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit { height: 37px; text-align: center; @@ -28573,13 +28597,13 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5225, ../../../scss/_app_styles.scss */ +/* line 5252, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit:hover { border-bottom: 2px solid #ffc14e; } /* unit cards labels */ -/* line 5235, ../../../scss/_app_styles.scss */ +/* line 5262, ../../../scss/_app_styles.scss */ .status-completed { width: auto; top: -1.15em; @@ -28596,7 +28620,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5251, ../../../scss/_app_styles.scss */ +/* line 5278, ../../../scss/_app_styles.scss */ .status-in-progress { width: auto; top: -1.15em; @@ -28613,7 +28637,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5268, ../../../scss/_app_styles.scss */ +/* line 5295, ../../../scss/_app_styles.scss */ .status-upcoming { width: auto; top: -1.15em; @@ -28630,7 +28654,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5285, ../../../scss/_app_styles.scss */ +/* line 5312, ../../../scss/_app_styles.scss */ .status-draft { width: auto; top: -1.15em; @@ -28647,48 +28671,65 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5302, ../../../scss/_app_styles.scss */ +/* line 5330, ../../../scss/_app_styles.scss */ +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #000000b8; + letter-spacing: 0.4px; +} + +/* line 5347, ../../../scss/_app_styles.scss */ .icon-widget { font-size: 24px; } /* module detail css */ -/* line 5311, ../../../scss/_app_styles.scss */ +/* line 5356, ../../../scss/_app_styles.scss */ .thumbnail_style { margin-top: -30px; margin-left: -30px; } -/* line 5316, ../../../scss/_app_styles.scss */ +/* line 5361, ../../../scss/_app_styles.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 5322, ../../../scss/_app_styles.scss */ +/* line 5367, ../../../scss/_app_styles.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); margin-top: -29px; padding-left: 10px; } -/* line 5326, ../../../scss/_app_styles.scss */ +/* line 5371, ../../../scss/_app_styles.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 5336, ../../../scss/_app_styles.scss */ +/* line 5381, ../../../scss/_app_styles.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 5341, ../../../scss/_app_styles.scss */ +/* line 5386, ../../../scss/_app_styles.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 5344, ../../../scss/_app_styles.scss */ +/* line 5389, ../../../scss/_app_styles.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28702,7 +28743,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 5361, ../../../scss/_app_styles.scss */ +/* line 5406, ../../../scss/_app_styles.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -28716,7 +28757,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { } /* Creating and editing course Structure */ -/* line 5378, ../../../scss/_app_styles.scss */ +/* line 5423, ../../../scss/_app_styles.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -28727,34 +28768,34 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 5387, ../../../scss/_app_styles.scss */ +/* line 5432, ../../../scss/_app_styles.scss */ .group_tile:hover { opacity: 0.7; } -/* line 5390, ../../../scss/_app_styles.scss */ +/* line 5435, ../../../scss/_app_styles.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 5397, ../../../scss/_app_styles.scss */ +/* line 5442, ../../../scss/_app_styles.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 5404, ../../../scss/_app_styles.scss */ +/* line 5449, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 5407, ../../../scss/_app_styles.scss */ +/* line 5452, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 5410, ../../../scss/_app_styles.scss */ +/* line 5455, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -28762,15 +28803,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 5418, ../../../scss/_app_styles.scss */ +/* line 5463, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 5422, ../../../scss/_app_styles.scss */ +/* line 5467, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 5424, ../../../scss/_app_styles.scss */ +/* line 5469, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -28781,38 +28822,37 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 5434, ../../../scss/_app_styles.scss */ +/* line 5479, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 5439, ../../../scss/_app_styles.scss */ +/* line 5484, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 5445, ../../../scss/_app_styles.scss */ +/* line 5490, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 5452, ../../../scss/_app_styles.scss */ +/* line 5497, ../../../scss/_app_styles.scss */ .max-width { max-width: 100%; } -/* line 5458, ../../../scss/_app_styles.scss */ +/* line 5503, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; - height: 200px; overflow-y: auto; background: url("/static/ndf/images/course-cover.png") no-repeat; background-size: 100% 100%; margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 5467, ../../../scss/_app_styles.scss */ +/* line 5512, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -28829,7 +28869,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 5480, ../../../scss/_app_styles.scss */ +/* line 5525, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -28839,29 +28879,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 5489, ../../../scss/_app_styles.scss */ +/* line 5534, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 5494, ../../../scss/_app_styles.scss */ +/* line 5539, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background-color: #ffffff; } -/* line 5499, ../../../scss/_app_styles.scss */ +/* line 5544, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { - min-height: 100%; background-color: #fff; - margin-bottom: -180px; + margin-bottom: 100px; margin-top: -1px; } -/* line 5505, ../../../scss/_app_styles.scss */ +/* line 5550, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 5509, ../../../scss/_app_styles.scss */ +/* line 5554, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -28874,7 +28913,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 5522, ../../../scss/_app_styles.scss */ +/* line 5567, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -28889,7 +28928,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Unit_Structure styles */ -/* line 5540, ../../../scss/_app_styles.scss */ +/* line 5585, ../../../scss/_app_styles.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -28897,12 +28936,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 5548, ../../../scss/_app_styles.scss */ +/* line 5593, ../../../scss/_app_styles.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 5552, ../../../scss/_app_styles.scss */ +/* line 5597, ../../../scss/_app_styles.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -28910,17 +28949,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 5558, ../../../scss/_app_styles.scss */ +/* line 5603, ../../../scss/_app_styles.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 5564, ../../../scss/_app_styles.scss */ +/* line 5609, ../../../scss/_app_styles.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 5569, ../../../scss/_app_styles.scss */ +/* line 5614, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28930,25 +28969,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 5578, ../../../scss/_app_styles.scss */ +/* line 5623, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5582, ../../../scss/_app_styles.scss */ +/* line 5627, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 5587, ../../../scss/_app_styles.scss */ +/* line 5632, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 5596, ../../../scss/_app_styles.scss */ +/* line 5641, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -28957,7 +28996,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5603, ../../../scss/_app_styles.scss */ +/* line 5648, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -28966,15 +29005,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 5612, ../../../scss/_app_styles.scss */ +/* line 5657, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 5617, ../../../scss/_app_styles.scss */ +/* line 5662, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 5620, ../../../scss/_app_styles.scss */ +/* line 5665, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -28982,21 +29021,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 5630, ../../../scss/_app_styles.scss */ +/* line 5675, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 5636, ../../../scss/_app_styles.scss */ +/* line 5681, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 5644, ../../../scss/_app_styles.scss */ +/* line 5689, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 5646, ../../../scss/_app_styles.scss */ +/* line 5691, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29005,7 +29044,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5653, ../../../scss/_app_styles.scss */ +/* line 5698, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29013,11 +29052,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5662, ../../../scss/_app_styles.scss */ +/* line 5707, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 5671, ../../../scss/_app_styles.scss */ +/* line 5716, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29029,49 +29068,49 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 5681, ../../../scss/_app_styles.scss */ +/* line 5726, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 5687, ../../../scss/_app_styles.scss */ +/* line 5732, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 5690, ../../../scss/_app_styles.scss */ +/* line 5735, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 5699, ../../../scss/_app_styles.scss */ +/* line 5744, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 5704, ../../../scss/_app_styles.scss */ +/* line 5749, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 5708, ../../../scss/_app_styles.scss */ +/* line 5753, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 5710, ../../../scss/_app_styles.scss */ +/* line 5755, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 5713, ../../../scss/_app_styles.scss */ +/* line 5758, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 5719, ../../../scss/_app_styles.scss */ +/* line 5764, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29079,29 +29118,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 15px 5px; cursor: pointer; } -/* line 5734, ../../../scss/_app_styles.scss */ +/* line 5779, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 5742, ../../../scss/_app_styles.scss */ +/* line 5787, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 5748, ../../../scss/_app_styles.scss */ +/* line 5793, ../../../scss/_app_styles.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 5757, ../../../scss/_app_styles.scss */ +/* line 5802, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 5762, ../../../scss/_app_styles.scss */ +/* line 5807, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29109,28 +29148,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 5769, ../../../scss/_app_styles.scss */ +/* line 5814, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5774, ../../../scss/_app_styles.scss */ +/* line 5819, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5779, ../../../scss/_app_styles.scss */ +/* line 5824, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 5781, ../../../scss/_app_styles.scss */ +/* line 5826, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 5785, ../../../scss/_app_styles.scss */ +/* line 5830, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -29142,21 +29181,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; border-radius: 3px; } -/* line 5796, ../../../scss/_app_styles.scss */ +/* line 5841, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 5801, ../../../scss/_app_styles.scss */ +/* line 5846, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 5807, ../../../scss/_app_styles.scss */ +/* line 5852, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 5813, ../../../scss/_app_styles.scss */ +/* line 5858, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -29164,19 +29203,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 5820, ../../../scss/_app_styles.scss */ +/* line 5865, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 5827, ../../../scss/_app_styles.scss */ +/* line 5872, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5838, ../../../scss/_app_styles.scss */ +/* line 5883, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -29187,7 +29226,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 5855, ../../../scss/_app_styles.scss */ +/* line 5900, ../../../scss/_app_styles.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -29202,66 +29241,66 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* lesspn listing LMS */ -/* line 5871, ../../../scss/_app_styles.scss */ +/* line 5916, ../../../scss/_app_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 5879, ../../../scss/_app_styles.scss */ +/* line 5924, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 5882, ../../../scss/_app_styles.scss */ +/* line 5927, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 5884, ../../../scss/_app_styles.scss */ +/* line 5929, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 5891, ../../../scss/_app_styles.scss */ +/* line 5936, ../../../scss/_app_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 5893, ../../../scss/_app_styles.scss */ +/* line 5938, ../../../scss/_app_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 5898, ../../../scss/_app_styles.scss */ +/* line 5943, ../../../scss/_app_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 5906, ../../../scss/_app_styles.scss */ +/* line 5951, ../../../scss/_app_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5912, ../../../scss/_app_styles.scss */ +/* line 5957, ../../../scss/_app_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5919, ../../../scss/_app_styles.scss */ +/* line 5964, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 5922, ../../../scss/_app_styles.scss */ +/* line 5967, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 5925, ../../../scss/_app_styles.scss */ +/* line 5970, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 5928, ../../../scss/_app_styles.scss */ +/* line 5973, ../../../scss/_app_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; @@ -29271,23 +29310,23 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Styling for the Secondary header 2 */ -/* line 5947, ../../../scss/_app_styles.scss */ +/* line 5992, ../../../scss/_app_styles.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 5950, ../../../scss/_app_styles.scss */ +/* line 5995, ../../../scss/_app_styles.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 5958, ../../../scss/_app_styles.scss */ +/* line 6003, ../../../scss/_app_styles.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 5967, ../../../scss/_app_styles.scss */ +/* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { position: relative; color: #fff; @@ -29298,56 +29337,56 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: -2px; border-right: 1px solid white; } -/* line 5976, ../../../scss/_app_styles.scss */ +/* line 6021, ../../../scss/_app_styles.scss */ .activity_player_header .header_title a { color: #ffc14f; } @media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 5967, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 938px); } } @media only screen and (min-device-width: 2131px) { - /* line 5967, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 970px); } } @media only screen and (max-device-width: 1024px) { - /* line 5967, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 753px); } } -/* line 6053, ../../../scss/_app_styles.scss */ +/* line 6098, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon { font-size: 16px; line-height: 45px; color: #ffc14f; } -/* line 6059, ../../../scss/_app_styles.scss */ +/* line 6104, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 6065, ../../../scss/_app_styles.scss */ +/* line 6110, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 10px; } @media screen and (min-width: 1025px) { - /* line 6065, ../../../scss/_app_styles.scss */ + /* line 6110, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 15px; } } @media screen and (min-width: 1025px) { - /* line 6072, ../../../scss/_app_styles.scss */ + /* line 6117, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { float: right; margin-right: 70px; @@ -29355,73 +29394,73 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media screen and (max-width: 1024px) { - /* line 6072, ../../../scss/_app_styles.scss */ + /* line 6117, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { background-color: rgba(107, 0, 84, 0.97); } } -/* line 6085, ../../../scss/_app_styles.scss */ +/* line 6130, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6091, ../../../scss/_app_styles.scss */ +/* line 6136, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block { padding: 0px 15px; margin-left: -2px; border-right: 1px solid white; } -/* line 6095, ../../../scss/_app_styles.scss */ +/* line 6140, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block a { color: #ffc14f; } -/* line 6101, ../../../scss/_app_styles.scss */ +/* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 9px; } @media screen and (min-width: 1025px) { - /* line 6101, ../../../scss/_app_styles.scss */ + /* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 15px; } } -/* line 6109, ../../../scss/_app_styles.scss */ +/* line 6154, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 7px; } @media screen and (min-width: 1025px) { - /* line 6109, ../../../scss/_app_styles.scss */ + /* line 6154, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 15px; } } -/* line 6118, ../../../scss/_app_styles.scss */ +/* line 6163, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 6121, ../../../scss/_app_styles.scss */ +/* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button i { color: #71318b; } -/* line 6127, ../../../scss/_app_styles.scss */ +/* line 6172, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 6131, ../../../scss/_app_styles.scss */ +/* line 6176, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 6137, ../../../scss/_app_styles.scss */ +/* line 6182, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .pagination:not(i) { color: #a983b9; } -/* line 6145, ../../../scss/_app_styles.scss */ +/* line 6190, ../../../scss/_app_styles.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -29429,29 +29468,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 6152, ../../../scss/_app_styles.scss */ +/* line 6197, ../../../scss/_app_styles.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 6156, ../../../scss/_app_styles.scss */ +/* line 6201, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6162, ../../../scss/_app_styles.scss */ +/* line 6207, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6168, ../../../scss/_app_styles.scss */ +/* line 6213, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 6173, ../../../scss/_app_styles.scss */ +/* line 6218, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29461,25 +29500,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 6182, ../../../scss/_app_styles.scss */ +/* line 6227, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6186, ../../../scss/_app_styles.scss */ +/* line 6231, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6191, ../../../scss/_app_styles.scss */ +/* line 6236, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6200, ../../../scss/_app_styles.scss */ +/* line 6245, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29488,7 +29527,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6207, ../../../scss/_app_styles.scss */ +/* line 6252, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29497,15 +29536,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 6216, ../../../scss/_app_styles.scss */ +/* line 6261, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6221, ../../../scss/_app_styles.scss */ +/* line 6266, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6224, ../../../scss/_app_styles.scss */ +/* line 6269, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29513,21 +29552,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 6234, ../../../scss/_app_styles.scss */ +/* line 6279, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6240, ../../../scss/_app_styles.scss */ +/* line 6285, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6248, ../../../scss/_app_styles.scss */ +/* line 6293, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6250, ../../../scss/_app_styles.scss */ +/* line 6295, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29536,7 +29575,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6257, ../../../scss/_app_styles.scss */ +/* line 6302, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29544,11 +29583,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6266, ../../../scss/_app_styles.scss */ +/* line 6311, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6275, ../../../scss/_app_styles.scss */ +/* line 6320, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29560,48 +29599,48 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 6285, ../../../scss/_app_styles.scss */ +/* line 6330, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6290, ../../../scss/_app_styles.scss */ +/* line 6335, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6293, ../../../scss/_app_styles.scss */ +/* line 6338, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6302, ../../../scss/_app_styles.scss */ +/* line 6347, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6307, ../../../scss/_app_styles.scss */ +/* line 6352, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6311, ../../../scss/_app_styles.scss */ +/* line 6356, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6313, ../../../scss/_app_styles.scss */ +/* line 6358, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6316, ../../../scss/_app_styles.scss */ +/* line 6361, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6322, ../../../scss/_app_styles.scss */ +/* line 6367, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29610,7 +29649,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; } -/* line 6340, ../../../scss/_app_styles.scss */ +/* line 6385, ../../../scss/_app_styles.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -29618,26 +29657,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 10px; padding-right: 4px; } -/* line 6346, ../../../scss/_app_styles.scss */ +/* line 6391, ../../../scss/_app_styles.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 6351, ../../../scss/_app_styles.scss */ +/* line 6396, ../../../scss/_app_styles.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6357, ../../../scss/_app_styles.scss */ +/* line 6402, ../../../scss/_app_styles.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 6363, ../../../scss/_app_styles.scss */ +/* line 6408, ../../../scss/_app_styles.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29647,29 +29686,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 6372, ../../../scss/_app_styles.scss */ +/* line 6417, ../../../scss/_app_styles.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 6376, ../../../scss/_app_styles.scss */ +/* line 6421, ../../../scss/_app_styles.scss */ .activity-title > li > a { color: black; } -/* line 6385, ../../../scss/_app_styles.scss */ +/* line 6430, ../../../scss/_app_styles.scss */ .activity_page_rendered { margin-left: 20px; max-width: 900px; } /* Rating css */ -/* line 6393, ../../../scss/_app_styles.scss */ +/* line 6438, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 6395, ../../../scss/_app_styles.scss */ +/* line 6440, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -29677,19 +29716,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { unicode-bidi: bidi-override; direction: rtl; } -/* line 6403, ../../../scss/_app_styles.scss */ +/* line 6448, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 6405, ../../../scss/_app_styles.scss */ +/* line 6450, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 6411, ../../../scss/_app_styles.scss */ +/* line 6456, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 6413, ../../../scss/_app_styles.scss */ +/* line 6458, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -29702,7 +29741,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0; vertical-align: bottom; } -/* line 6425, ../../../scss/_app_styles.scss */ +/* line 6470, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -29710,32 +29749,32 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* WHITE STAR */ color: #888; } -/* line 6432, ../../../scss/_app_styles.scss */ +/* line 6477, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 6443, ../../../scss/_app_styles.scss */ +/* line 6488, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 6450, ../../../scss/_app_styles.scss */ +/* line 6495, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 6458, ../../../scss/_app_styles.scss */ +/* line 6503, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 6463, ../../../scss/_app_styles.scss */ +/* line 6508, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -29744,29 +29783,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-shadow: 0 0 1px #333; } -/* line 6473, ../../../scss/_app_styles.scss */ +/* line 6518, ../../../scss/_app_styles.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 6477, ../../../scss/_app_styles.scss */ +/* line 6522, ../../../scss/_app_styles.scss */ .input_links { margin-left: 10px; } -/* line 6479, ../../../scss/_app_styles.scss */ +/* line 6524, ../../../scss/_app_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 6485, ../../../scss/_app_styles.scss */ +/* line 6530, ../../../scss/_app_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 6493, ../../../scss/_app_styles.scss */ +/* line 6538, ../../../scss/_app_styles.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -29775,19 +29814,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 6502, ../../../scss/_app_styles.scss */ +/* line 6547, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 6507, ../../../scss/_app_styles.scss */ +/* line 6552, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 6513, ../../../scss/_app_styles.scss */ +/* line 6558, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -29795,12 +29834,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; margin-left: 12%; } -/* line 6521, ../../../scss/_app_styles.scss */ +/* line 6566, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 6527, ../../../scss/_app_styles.scss */ +/* line 6572, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -29809,21 +29848,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: none; color: #8E8E8E; } -/* line 6536, ../../../scss/_app_styles.scss */ +/* line 6581, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 6541, ../../../scss/_app_styles.scss */ +/* line 6586, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 6543, ../../../scss/_app_styles.scss */ +/* line 6588, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 6546, ../../../scss/_app_styles.scss */ +/* line 6591, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -29834,24 +29873,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #757575; margin-right: 20px; } -/* line 6556, ../../../scss/_app_styles.scss */ +/* line 6601, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 6560, ../../../scss/_app_styles.scss */ +/* line 6605, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 6563, ../../../scss/_app_styles.scss */ +/* line 6608, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 6568, ../../../scss/_app_styles.scss */ +/* line 6613, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 6572, ../../../scss/_app_styles.scss */ +/* line 6617, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -29863,7 +29902,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; color: #222222; } -/* line 6583, ../../../scss/_app_styles.scss */ +/* line 6628, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -29871,15 +29910,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 8px; top: 4px; } -/* line 6591, ../../../scss/_app_styles.scss */ +/* line 6636, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 6593, ../../../scss/_app_styles.scss */ +/* line 6638, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 6596, ../../../scss/_app_styles.scss */ +/* line 6641, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -29889,25 +29928,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { letter-spacing: 0.8px; color: #999999; } -/* line 6605, ../../../scss/_app_styles.scss */ +/* line 6650, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 6611, ../../../scss/_app_styles.scss */ +/* line 6656, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 6620, ../../../scss/_app_styles.scss */ +/* line 6665, ../../../scss/_app_styles.scss */ .icon-color { color: #2e3f51 !important; padding: right; } /* The asset tile */ -/* line 6630, ../../../scss/_app_styles.scss */ +/* line 6675, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29917,7 +29956,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 6639, ../../../scss/_app_styles.scss */ +/* line 6684, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -29934,7 +29973,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 6652, ../../../scss/_app_styles.scss */ +/* line 6697, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -29944,28 +29983,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 6661, ../../../scss/_app_styles.scss */ +/* line 6706, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 6666, ../../../scss/_app_styles.scss */ +/* line 6711, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 6671, ../../../scss/_app_styles.scss */ +/* line 6716, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 6677, ../../../scss/_app_styles.scss */ +/* line 6722, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 6681, ../../../scss/_app_styles.scss */ +/* line 6726, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -29978,7 +30017,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 6694, ../../../scss/_app_styles.scss */ +/* line 6739, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -29992,7 +30031,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 6709, ../../../scss/_app_styles.scss */ +/* line 6754, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -30001,22 +30040,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6718, ../../../scss/_app_styles.scss */ +/* line 6763, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6725, ../../../scss/_app_styles.scss */ +/* line 6770, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6731, ../../../scss/_app_styles.scss */ +/* line 6776, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6733, ../../../scss/_app_styles.scss */ +/* line 6778, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -30025,15 +30064,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6740, ../../../scss/_app_styles.scss */ +/* line 6785, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6744, ../../../scss/_app_styles.scss */ +/* line 6789, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6750, ../../../scss/_app_styles.scss */ +/* line 6795, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30042,7 +30081,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6761, ../../../scss/_app_styles.scss */ +/* line 6806, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -30051,24 +30090,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6770, ../../../scss/_app_styles.scss */ +/* line 6815, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6777, ../../../scss/_app_styles.scss */ +/* line 6822, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 6782, ../../../scss/_app_styles.scss */ +/* line 6827, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 6786, ../../../scss/_app_styles.scss */ +/* line 6831, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -30079,14 +30118,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 6796, ../../../scss/_app_styles.scss */ +/* line 6841, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 6803, ../../../scss/_app_styles.scss */ + /* line 6848, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30094,7 +30133,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6812, ../../../scss/_app_styles.scss */ + /* line 6857, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30102,7 +30141,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6819, ../../../scss/_app_styles.scss */ + /* line 6864, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30110,14 +30149,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6826, ../../../scss/_app_styles.scss */ + /* line 6871, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 6834, ../../../scss/_app_styles.scss */ +/* line 6879, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30132,14 +30171,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6850, ../../../scss/_app_styles.scss */ +/* line 6895, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 6857, ../../../scss/_app_styles.scss */ + /* line 6902, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30150,7 +30189,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6868, ../../../scss/_app_styles.scss */ + /* line 6913, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30161,7 +30200,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6879, ../../../scss/_app_styles.scss */ + /* line 6924, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30172,7 +30211,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6890, ../../../scss/_app_styles.scss */ + /* line 6935, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30182,7 +30221,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6901, ../../../scss/_app_styles.scss */ +/* line 6946, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30197,14 +30236,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6917, ../../../scss/_app_styles.scss */ +/* line 6962, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 6924, ../../../scss/_app_styles.scss */ + /* line 6969, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30215,7 +30254,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6935, ../../../scss/_app_styles.scss */ + /* line 6980, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30226,7 +30265,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6946, ../../../scss/_app_styles.scss */ + /* line 6991, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30237,7 +30276,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6957, ../../../scss/_app_styles.scss */ + /* line 7002, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30247,11 +30286,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6968, ../../../scss/_app_styles.scss */ +/* line 7013, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 6970, ../../../scss/_app_styles.scss */ +/* line 7015, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30260,11 +30299,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6978, ../../../scss/_app_styles.scss */ +/* line 7023, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 6984, ../../../scss/_app_styles.scss */ +/* line 7029, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30273,7 +30312,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6995, ../../../scss/_app_styles.scss */ +/* line 7040, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30284,22 +30323,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7005, ../../../scss/_app_styles.scss */ +/* line 7050, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7008, ../../../scss/_app_styles.scss */ +/* line 7053, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7013, ../../../scss/_app_styles.scss */ +/* line 7058, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7024, ../../../scss/_app_styles.scss */ +/* line 7069, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30310,26 +30349,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7034, ../../../scss/_app_styles.scss */ +/* line 7079, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7037, ../../../scss/_app_styles.scss */ +/* line 7082, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7041, ../../../scss/_app_styles.scss */ +/* line 7086, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7047, ../../../scss/_app_styles.scss */ +/* line 7092, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7049, ../../../scss/_app_styles.scss */ +/* line 7094, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30338,7 +30377,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7058, ../../../scss/_app_styles.scss */ +/* line 7103, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30347,7 +30386,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7072, ../../../scss/_app_styles.scss */ +/* line 7117, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -30357,20 +30396,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Asset detail */ -/* line 7083, ../../../scss/_app_styles.scss */ +/* line 7128, ../../../scss/_app_styles.scss */ .overlay-head { background-color: #fff; height: 60px; margin-bottom: 20px; } -/* line 7089, ../../../scss/_app_styles.scss */ +/* line 7134, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7094, ../../../scss/_app_styles.scss */ +/* line 7139, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30384,13 +30423,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7106, ../../../scss/_app_styles.scss */ +/* line 7151, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7113, ../../../scss/_app_styles.scss */ +/* line 7158, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30402,7 +30441,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7124, ../../../scss/_app_styles.scss */ +/* line 7169, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30410,13 +30449,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7133, ../../../scss/_app_styles.scss */ +/* line 7178, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7141, ../../../scss/_app_styles.scss */ +/* line 7186, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30434,12 +30473,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7157, ../../../scss/_app_styles.scss */ +/* line 7202, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7162, ../../../scss/_app_styles.scss */ +/* line 7207, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30451,13 +30490,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7172, ../../../scss/_app_styles.scss */ +/* line 7217, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7180, ../../../scss/_app_styles.scss */ +/* line 7225, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30474,843 +30513,144 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7195, ../../../scss/_app_styles.scss */ +/* line 7240, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* create units */ -/* line 7208, ../../../scss/_app_styles.scss */ -.course_creator_header { +/* line 7251, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner { width: 100%; - height: 50px; - background: #fff; - padding: 5px 15px; - box-shadow: 1px 0px 0px #000; + height: 200px; + background-image: url("/static/ndf/images/mydesk_banner.png"); + background-size: 100% 100%; + position: relative; } -/* line 7215, ../../../scss/_app_styles.scss */ -.course_creator_header .unit_editor { +/* line 7258, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner:before { + content: ' '; + background-color: rgba(0, 0, 0, 0.1); + opacity: .5; width: 100%; - height: 320px; - background: #fff; - padding: 5px 15px; - box-shadow: 1px 0px 0px #000; -} -/* line 7224, ../../../scss/_app_styles.scss */ -.course_creator_header .back_to_group { - padding: 0px 15px 0px 10px; - border-right: 1px solid #ccc; - margin-right: 15px; -} -/* line 7230, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading_unit { - width: 500px; - height: 40px; - border: 1px solid #74b3dc; - box-shadow: none; - float: right; - text-align: center; -} -/* line 7239, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading_unit:focus { - border: 1px solid #74b3dc; -} -/* line 7243, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading_unit::-webkit-input-placeholder - { - color: #d9dfe4; - letter-spacing: 0.8px; -} -/* line 7251, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading_unit select { - font-size: 14px; - font-family: 'OpenSans-Regular', sans-serif; - color: gray; - border: 0px solid #74b3dc; -} -/* line 7260, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading input { - width: 500px; - height: 40px; - border: 0px solid #74b3dc; - box-shadow: none; - float: right; - text-align: center; -} -/* line 7268, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading input:focus { - border: 1px solid #74b3dc; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 10; + box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } /* line 7272, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading input::-webkit-input-placeholder - { - color: #d9dfe4; - letter-spacing: 0.8px; +.mydesk_page .page_banner .banner_profile { + position: absolute; + bottom: 30px; + left: 40px; } -/* line 7282, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading h5 { - margin-top: 15px; +/* line 7277, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo { + display: inline-block; + margin-right: 10px; + height: 100px; + border-radius: 5px; + overflow: hidden; + background-color: #fff; } -/* line 7287, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading span { - letter-spacing: 0.9px; - font-weight: 600; - line-height: 50px; +/* line 7285, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg { + height: 100px; + width: 100px; } -/* line 7295, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions ul { - margin: 0px; +/* line 7290, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg path { + fill: #7a422a; } -/* line 7298, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions ul li { - list-style-type: none; +/* line 7295, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading { + color: #fff; display: inline-block; - padding: 12px; - color: #7ca0d0; - cursor: pointer; - letter-spacing: 0.8px; + vertical-align: top; } -/* line 7307, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { - border-bottom: 3px solid #ffc14e; +/* line 7300, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { + font-size: 23px; + display: block; + margin-bottom: 10px; } -/* line 7312, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions span { - margin-right: 5px; - background: rgba(0, 0, 0, 0.6); - border: 1px solid rgba(255, 255, 255, 0.7); - padding: 1px 8px; - color: #fff; - font-size: 12px; - margin: 0px 10px 0px 0px; - cursor: pointer; - border-radius: 3px; +/* line 7308, ../../../scss/_app_styles.scss */ +.mydesk_page .page_menu { + border-bottom: 1px solid #e5e5e5; } -/* line 7324, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions i { - margin-right: 5px; - background: rgba(0, 0, 0, 0.6); - border: 1px solid rgba(255, 255, 255, 0.7); - padding: 1px 8px; - color: #fff; - font-size: 12px; - margin: 0px 10px 0px 0px; - cursor: pointer; - border-radius: 3px; +/* line 7312, ../../../scss/_app_styles.scss */ +.mydesk_page .page_menu li > a { + padding: 12px 20px 9px; } -/* line 7342, ../../../scss/_app_styles.scss */ -.create_unit { - background: #fff; - box-shadow: 0px 2px 3px #000; - margin: 10px auto; - padding: 10px; +/* line 7322, ../../../scss/_app_styles.scss */ +.lms_explore_back_unit { + background-color: #fff; + margin-top: -19.3px; } -/* line 7350, ../../../scss/_app_styles.scss */ -.button-hollow-black { - background: #fff; - border: 2px solid #164A7B; - border-radius: 5px; - color: #164A7B; - font-weight: 600; - letter-spacing: 0.9px; - padding: 2px 10px; +/* line 7329, ../../../scss/_app_styles.scss */ +.course-students-data { + margin: 2px 2px 2px 2px; + border: 2px solid #164a7b; + padding: 19px 14px 0px 5px; +} +/* line 7336, ../../../scss/_app_styles.scss */ +.course-students-data .students-table-legends > span:nth-child(odd) { + margin: 0px 10px; +} +/* line 7339, ../../../scss/_app_styles.scss */ +.course-students-data .students-table-legends > span:nth-child(even) { + display: inline-block; + vertical-align: top; + margin-right: 10px; } -/* line 7360, ../../../scss/_app_styles.scss */ -.vertically-center { - top: 50%; - transform: translateY(-50%); +/* line 7347, ../../../scss/_app_styles.scss */ +.badge_ex { + display: inline-block; + line-height: 22px; + height: 22px; + font-weight: bolder; + padding: 0px 7px; + /*font-family: Arial, sans-serif;*/ + color: white; + text-shadow: 0 1px rgba(0, 0, 0, 0.25); + border: 1px solid; + border-radius: 18px; + -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7369, ../../../scss/_app_styles.scss */ -.top-bar-second, .top-bar-second .name { - height: 52px; - background: #ddeff9; - color: #719dc9; - margin-bottom: 30px; +/* line 7366, ../../../scss/_app_styles.scss */ +.badge_ex.green { + background: #77cc51; + border-color: #59ad33; + background-image: -webkit-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -moz-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -o-linear-gradient(top, #a5dd8c, #77cc51); + background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7379, ../../../scss/_app_styles.scss */ -.top-bar-second .title-area { - box-shadow: 0px 0.6px 3px #000; - z-index: 20; - width: 100%; +/* line 7375, ../../../scss/_app_styles.scss */ +.badge_ex.yellow { + background: #faba3e; + border-color: #f4a306; + background-image: -webkit-linear-gradient(top, #fcd589, #faba3e); + background-image: -moz-linear-gradient(top, #fcd589, #faba3e); + background-image: -o-linear-gradient(top, #fcd589, #faba3e); + background-image: linear-gradient(to bottom, #fcd589, #faba3e); } + /* line 7384, ../../../scss/_app_styles.scss */ -.top-bar-second .name { - text-align: center; -} -/* line 7387, ../../../scss/_app_styles.scss */ -.top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { - position: absolute; - left: 15px; - color: #fff; - font-weight: 100; -} -/* line 7397, ../../../scss/_app_styles.scss */ -.top-bar-second li.toggle-topbar i { - color: #fff; - display: inline-block; - vertical-align: bottom; -} -/* line 7405, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section ul li { - background: #164A7B; -} -/* line 7407, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section ul li > a { - border-left: 3px solid transparent; - border-bottom: 1px solid #4b5b6b; - color: #74b3dc; - line-height: 40px; - font-weight: bold; - letter-spacing: 0.5px; -} -/* line 7418, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { - border-left-color: #ffc14e; - color: #ce7869; -} -/* line 7426, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section .dropdown li.parent-link a { - display: none; -} -/* line 7432, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { - color: #2e3f51; - background: #acd4fa; -} - -@media screen and (min-width: 40.063em) { - /* line 7443, ../../../scss/_app_styles.scss */ - .top-bar-second .title-area { - box-shadow: none; - } - /* line 7445, ../../../scss/_app_styles.scss */ - .top-bar-second .title-area .name { - text-align: right; - } - /* line 7452, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { - cursor: pointer; - background: transparent; - border-bottom: 0px; - line-height: 52px; - border-left-width: 0px; - } - /* line 7459, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { - color: #ce7869; - border-bottom: 3px solid #ffc14e; - } - /* line 7465, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { - color: #ce7869; - border-bottom: 3px solid #ffc14e; - } - /* line 7473, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { - color: #74b3dc; - border-bottom: 0px; - } - /* line 7483, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { - background: transparent; - } - /* line 7492, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { - border-left-width: 2px; - color: #74b3dc; - background: #164A7B; - } - /* line 7499, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { - background: #164A7B; - color: #74b3dc; - border-bottom: 0px; - border-left-width: 2px; - /*&:hover { - color: $secondry-blue; - border-bottom: 0px; - }*/ - } -} -/* Buttons custom css */ -/* line 7520, ../../../scss/_app_styles.scss */ -.secondary-header-tabs { - color: #719dc7; - font-weight: 400; - padding: 14px 10px 3px 10px; - cursor: pointer; - transition: color 1s ease, border-color 1s ease; - -webkit-transition: color 1s ease, border-color 1s ease; - display: inline-block; -} -/* line 7529, ../../../scss/_app_styles.scss */ -.secondary-header-tabs:hover { - color: #164A7B; -} -/* line 7533, ../../../scss/_app_styles.scss */ -.secondary-header-tabs.active { - color: #164A7B; - border-bottom: 2px solid #164A7B; - padding-bottom: 14px; - font-weight: 600; -} - -/* line 7542, ../../../scss/_app_styles.scss */ -.secondary-header-button { - color: #3c556d; - font-weight: 700; - padding: 17px 0px 0px 10px; - cursor: pointer; - transition: color 1s ease, border-color 1s ease; - -webkit-transition: color 1s ease, border-color 1s ease; - display: inline-block; - text-transform: uppercase; - font-size: 13px; - letter-spacing: 1.2px; -} -/* line 7554, ../../../scss/_app_styles.scss */ -.secondary-header-button:hover { - opacity: 0.5; -} - -/* line 7561, ../../../scss/_app_styles.scss */ -.orange-button { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 5px !important; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 8px; - cursor: pointer; -} -/* line 7573, ../../../scss/_app_styles.scss */ -.orange-button:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7579, ../../../scss/_app_styles.scss */ -.pink-button { - background: #a2238d; - height: 37px; - text-align: center; - color: #ffffff; - font-size: 19px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 120px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; -} -/* line 7590, ../../../scss/_app_styles.scss */ -.pink-button:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); -} - -/* line 7595, ../../../scss/_app_styles.scss */ -.orange-button-template { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 10px; -} -/* line 7606, ../../../scss/_app_styles.scss */ -.orange-button-template:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7614, ../../../scss/_app_styles.scss */ -.orange-button-subtitle { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 10px; -} -/* line 7625, ../../../scss/_app_styles.scss */ -.orange-button-subtitle:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7632, ../../../scss/_app_styles.scss */ -.asset-unit-button { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 30px; - margin-bottom: 8px; - margin-top: 300px; -} -/* line 7643, ../../../scss/_app_styles.scss */ -.asset-unit-button:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7650, ../../../scss/_app_styles.scss */ -.disab-button { - margin-right: 10px; - background-color: #fff; - text-transform: none; - font-size: 14px; -} - -/* line 7658, ../../../scss/_app_styles.scss */ -.save-asset { - margin-top: 9px; - margin-right: -133px; -} - -/* line 7662, ../../../scss/_app_styles.scss */ -.asset-save-button { - color: #ce7869; - display: inline-block; - border: 1px solid #ce7869; - border-radius: 5px; - padding: 8px 10px; - outline: none; - white-space: nowrap; - -webkit-user-select: none; - cursor: pointer; - font-weight: 500; - color: #cc7769; - border-color: #cc7769; - float: right; - background: #fff; - margin-right: 5px; - margin-top: 5px; -} - -/* line 7682, ../../../scss/_app_styles.scss */ -.blue-white-button { - color: #fff; - background: #164A7B; - border-radius: 4px; - padding: 5px; - margin-right: 40px; - margin-top: 8px; - padding: 8px 10px; -} - -/* line 7692, ../../../scss/_app_styles.scss */ -button[disabled], .button.disabled, .button[disabled] { - background-color: #eefaff; - border-color: #eefaff; - color: gray; - cursor: default; - opacity: 0.7; - box-shadow: none; - border-radius: 4px; - margin-right: 40px; - margin-top: 8px; - padding: 8px 10px; -} - -/* line 7706, ../../../scss/_app_styles.scss */ -.button-small { - padding: 1px 5px; -} - -/* Tag styles */ -/* line 7714, ../../../scss/_app_styles.scss */ -.asset-tags-container { - width: 100%; - height: 50px; - background: #fff; - padding: 5px 15px; - margin-bottom: 65px; -} -/* line 7721, ../../../scss/_app_styles.scss */ -.asset-tags-container .tag-input-ele { - margin-left: 17px; - width: 96%; -} -/* line 7726, ../../../scss/_app_styles.scss */ -.asset-tags-container .added-tags-div { - margin-left: -206px; -} -/* line 7731, ../../../scss/_app_styles.scss */ -.asset-tags-container #add-tag-btn { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 5px !important; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 8px; - cursor: pointer; - display: inline-block; -} -/* line 7744, ../../../scss/_app_styles.scss */ -.asset-tags-container #add-tag-btn:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7754, ../../../scss/_app_styles.scss */ -.tags-container { - width: 100%; - height: 50px; - background: #fff; - padding: 5px 15px; - box-shadow: 1px 0px 0px #000; - margin-bottom: 65px; -} -/* line 7762, ../../../scss/_app_styles.scss */ -.tags-container .add-tag-heading span { - width: 40%; - color: #99aaba; - font-size: 10px; - text-transform: uppercase; - letter-spacing: 2px; - margin-top: 15px; - margin-left: 8px; - font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", "sans-serif"; -} -/* line 7773, ../../../scss/_app_styles.scss */ -.tags-container .tag-input-ele { - margin-left: 193px; - width: 54%; -} -/* line 7778, ../../../scss/_app_styles.scss */ -.tags-container .added-tags-div { - margin-left: 293px !important; - width: 54%; -} -/* line 7783, ../../../scss/_app_styles.scss */ -.tags-container #add-tag-btn { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 5px !important; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 8px; - cursor: pointer; - display: inline-block; -} -/* line 7796, ../../../scss/_app_styles.scss */ -.tags-container #add-tag-btn:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7805, ../../../scss/_app_styles.scss */ -.asset-unit-button { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 30px; - margin-bottom: 8px; - margin-top: 300px; -} -/* line 7816, ../../../scss/_app_styles.scss */ -.asset-unit-button:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* exploer back*/ -/* line 7824, ../../../scss/_app_styles.scss */ -.lms_explore_head { - width: 100%; - height: 45px; - background-color: #fff; - color: #164A7B; - margin-top: -30px; -} -/* line 7830, ../../../scss/_app_styles.scss */ -.lms_explore_head > p { - margin-left: 81px; - padding: 12px 0px 0px 1px; - font-family: OpenSans-Semibold; - font-size: 20px; -} -/* line 7836, ../../../scss/_app_styles.scss */ -.lms_explore_head > a { - padding: 12px 85px 3px 0px; -} - -/* line 7840, ../../../scss/_app_styles.scss */ -.lms_explore_head_unit { - width: 100%; - height: 50px; - background-color: #fff; - color: #164A7B; -} -/* line 7845, ../../../scss/_app_styles.scss */ -.lms_explore_head_unit > p { - margin-left: 81px; - padding: 0px 0px 0px 1px; - font-family: OpenSans-Semibold; - font-size: 20px; -} -/* line 7851, ../../../scss/_app_styles.scss */ -.lms_explore_head_unit > a { - padding: 0px 85px 3px 0px; -} - -/* line 7856, ../../../scss/_app_styles.scss */ -.lms_explore_back { - background-color: #fff; -} - -/* line 7860, ../../../scss/_app_styles.scss */ -.lms_explore_back_unit { - background-color: #fff; - margin-top: -23.3px; -} - -/** - * Sass styles related to module cards - */ -/* line 7877, ../../../scss/_app_styles.scss */ -.module_card { - display: table; - height: 290px; - width: 526px; - cursor: pointer; - margin: 10px; - border-radius: 5px; - position: relative; - box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); -} -/* line 7887, ../../../scss/_app_styles.scss */ -.module_card:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); -} -/* line 7891, ../../../scss/_app_styles.scss */ -.module_card > div { - display: table-cell; - height: 290px; -} -/* line 7896, ../../../scss/_app_styles.scss */ -.module_card .card_banner { - width: 250px; - height: 290px; - vertical-align: middle; - overflow: hidden; - background-size: 100% 100%; - border-radius: 8px 0px 0px 8px; - box-shadow: inset 0 0 5px 2px; - position: relative; - z-index: 3; - -webkit-transition: border-radius .2s; - transition: border-radius .2s; -} -/* line 7909, ../../../scss/_app_styles.scss */ -.module_card .card_banner > img { - height: 100%; - width: 100%; - border-radius: 4px; - -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); -} -/* line 7914, ../../../scss/_app_styles.scss */ -.module_card .card_banner > img:hover { - -webkit-transform: scale(1.03); - -moz-transform: scale(1.03); - -ms-transform: scale(1.03); - -o-transform: scale(1.03); - transform: scale(1.03); - opacity: 0.8; -} -/* line 7926, ../../../scss/_app_styles.scss */ -.module_card .card_banner > h4 { - position: absolute; - top: 100px; - left: 0; - width: 100%; - color: #ffffff !important; - text-shadow: 2px 0px 8px black; -} -/* line 7941, ../../../scss/_app_styles.scss */ -.module_card .card_title { - display: block; - width: 230px; - font-size: 32px; - font-weight: 600; - text-align: center; - margin: 0px auto; - letter-spacing: 1px; -} -/* line 7952, ../../../scss/_app_styles.scss */ -.module_card.animated_card .card_banner { - border-radius: 8px; -} -/* line 7955, ../../../scss/_app_styles.scss */ -.module_card.animated_card:hover .card_banner { - border-radius: 8px 0px 0px 8px; -} -/* line 7960, ../../../scss/_app_styles.scss */ -.module_card.animated_card.isOpen .card_banner { - border-radius: 8px 0px 0px 8px; -} -/* line 7964, ../../../scss/_app_styles.scss */ -.module_card.animated_card:hover .card_summary { - left: 30px; -} -/* line 7967, ../../../scss/_app_styles.scss */ -.module_card.animated_card .card_summary { - left: 5px; -} -/* line 7971, ../../../scss/_app_styles.scss */ -.module_card .card_summary { - width: 290px; - padding: 0px 15px; - vertical-align: middle; - border-style: solid; - border-width: 1px 1px 1px 0px; - border-radius: 0px 7px 7px 0px; - border-color: #d5d5d5; - box-shadow: inset 2px 0px 13px -5px; - -webkit-transition: left .4s ease-in-out; - transition: left .4s ease-in-out; - -webkit-transition-property: left; - /* Safari */ - transition-property: left; -} -/* line 7985, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_label { - font-weight: 500; - font-size: 12.5px; - letter-spacing: 1px; - color: black; -} -/* line 7991, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section { - margin: 5px 0px; - padding: 5px 0px; -} -/* line 7995, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section:not(:last-child) { - border-bottom: 1px solid #ccc; -} -/* line 7998, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section p { - margin-bottom: 7px; - font-size: 12.5px; -} -/* line 8002, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section .ellipsis { - width: 245px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -/* line 8010, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section .module-card-enrol { - background: #a2238d; - height: 37px; - text-align: center; - color: #ffffff; - width: 172px; - font-size: 19px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 164px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; -} -/* line 8023, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section .module-card-enrol:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); -} -/* line 8029, ../../../scss/_app_styles.scss */ -.module_card .card_summary .module_brief { - display: block; - /* Fallback for non-webkit */ - display: -webkit-box; - height: 52.5px; - /* Fallback for non-webkit */ - max-width: 400px; - overflow: hidden; - text-overflow: ellipsis; - font-size: 12.5px; - line-height: 1.4; - -webkit-line-clamp: 3; - -webkit-box-orient: vertical; - color: black; -} - -/* line 8047, ../../../scss/_app_styles.scss */ -.img-height { - height: 150px; - width: 1351px; -} - -/* - Common css - */ -/* line 8056, ../../../scss/_app_styles.scss */ -.text-button-blue { - background-color: transparent; - color: #00A9EE; - padding: 3px 10px; - font-size: 16px; - letter-spacing: 0.7px; - line-height: 25px; -} - -/* line 8068, ../../../scss/_app_styles.scss */ -.dropdown-settings { - text-align: left; - text-transform: none; - margin-top: 0px; - margin-right: 0px; - width: 198px; - background: white; - border-radius: 1px; -} -/* line 8076, ../../../scss/_app_styles.scss */ -.dropdown-settings:hover { - color: #ce7869; - border-left: 2px solid #ffc14e; -} - -/* line 8084, ../../../scss/_app_styles.scss */ -.inner { - display: inline-block !important; -} - -/* line 8089, ../../../scss/_app_styles.scss */ -.mid_label { - margin-top: 15px; - font-size: 15px; +.badge_ex.red { + background: #fa623f; + border-color: #fa5a35; + background-image: -webkit-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -o-linear-gradient(top, #fc9f8a, #fa623f); + background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); } diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css index 2bdbb41b38..3053eda596 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css @@ -26317,34 +26317,29 @@ div.show-image:hover div.fullscreen-icon{ } /* line 3078, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page { - margin-left: 15px; background-color: #fff; padding-bottom: 30px; } -/* line 3083, ../../../scss/_app_styles.scss */ -.notebook .notebook-body .note-page .group_sections_content { - margin-top: 5px; -} -/* line 3086, ../../../scss/_app_styles.scss */ +/* line 3085, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .group_content { margin-top: 5px; margin-left: 0px; } -/* line 3091, ../../../scss/_app_styles.scss */ +/* line 3090, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page > div { background-color: #fff; } -/* line 3095, ../../../scss/_app_styles.scss */ +/* line 3094, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar { padding: 1.8em 1.2em 0em; margin: 0em; background-color: #FFF; } -/* line 3100, ../../../scss/_app_styles.scss */ +/* line 3099, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .note-creator { font-weight: bold; } -/* line 3103, ../../../scss/_app_styles.scss */ +/* line 3102, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-title { text-align: left; color: #C3C3C3; @@ -26352,102 +26347,102 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.3px; margin-top: 5px; } -/* line 3110, ../../../scss/_app_styles.scss */ +/* line 3109, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating { text-align: right; } -/* line 3112, ../../../scss/_app_styles.scss */ +/* line 3111, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating > div { display: inline-block; } -/* line 3117, ../../../scss/_app_styles.scss */ +/* line 3116, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-title { font-size: 2.3em; font-weight: 500; margin-right: 1em; } -/* line 3122, ../../../scss/_app_styles.scss */ +/* line 3121, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content { padding: 2em 2em 1em; background: #fff; margin: 0em; } -/* line 3129, ../../../scss/_app_styles.scss */ +/* line 3128, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-header > div { display: inline-block; } -/* line 3134, ../../../scss/_app_styles.scss */ +/* line 3133, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text { font-size: 19px; letter-spacing: 0.7px; } -/* line 3137, ../../../scss/_app_styles.scss */ +/* line 3136, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text p { padding: 0px; } -/* line 3143, ../../../scss/_app_styles.scss */ +/* line 3142, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections { padding: 0em 1em 0em; } -/* line 3147, ../../../scss/_app_styles.scss */ +/* line 3146, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header span { font-weight: bold; } -/* line 3150, ../../../scss/_app_styles.scss */ +/* line 3149, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { margin-left: 15px; } -/* line 3155, ../../../scss/_app_styles.scss */ +/* line 3154, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment { border-top: 1px solid grey; padding: 15px 10px; margin-top: 5px; } -/* line 3160, ../../../scss/_app_styles.scss */ +/* line 3159, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { min-height: 200px; margin-top: 0px; } -/* line 3166, ../../../scss/_app_styles.scss */ +/* line 3165, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { font-size: 90px; line-height: 0em; } -/* line 3176, ../../../scss/_app_styles.scss */ +/* line 3175, ../../../scss/_app_styles.scss */ #newNoteModal { width: 40%; } -/* line 3179, ../../../scss/_app_styles.scss */ +/* line 3178, ../../../scss/_app_styles.scss */ #newNoteModal > div { margin-bottom: 1em; } -/* line 3183, ../../../scss/_app_styles.scss */ +/* line 3182, ../../../scss/_app_styles.scss */ #newNoteModal input { width: 100%; } -/* line 3186, ../../../scss/_app_styles.scss */ +/* line 3185, ../../../scss/_app_styles.scss */ #newNoteModal .heading { margin-right: 1em; } -/* line 3190, ../../../scss/_app_styles.scss */ +/* line 3189, ../../../scss/_app_styles.scss */ #newNoteModal .note-tags { padding: 1em; border: 1px solid black; } -/* line 3196, ../../../scss/_app_styles.scss */ +/* line 3195, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button { float: left; margin-left: 1em; margin-bottom: 0px; } -/* line 3201, ../../../scss/_app_styles.scss */ +/* line 3200, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button:last-child { float: right; } -/* line 3209, ../../../scss/_app_styles.scss */ +/* line 3208, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header { line-height: 2em; border-top: 1px solid #797979; @@ -26455,33 +26450,33 @@ div.show-image:hover div.fullscreen-icon{ text-align: center; padding: 0.7em 1em; } -/* line 3216, ../../../scss/_app_styles.scss */ +/* line 3215, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input, .gallery-page .gallery-header select, .gallery-page .gallery-header a { border-radius: 4px; margin-bottom: 0em; } -/* line 3220, ../../../scss/_app_styles.scss */ +/* line 3219, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input.prefix, .gallery-page .gallery-header select.prefix, .gallery-page .gallery-header a.prefix { border-radius: 0px; } -/* line 3225, ../../../scss/_app_styles.scss */ +/* line 3224, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header i { font-size: 1em; color: #A29E9E; } -/* line 3231, ../../../scss/_app_styles.scss */ +/* line 3230, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .filters .columns { padding-left: 5px; } -/* line 3237, ../../../scss/_app_styles.scss */ +/* line 3236, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .columns { padding-left: 5px; } -/* line 3241, ../../../scss/_app_styles.scss */ +/* line 3240, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags { text-align: left; } -/* line 3244, ../../../scss/_app_styles.scss */ +/* line 3243, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag { padding: 0px 10px; background: #cccccc; @@ -26491,73 +26486,73 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.8em; color: #757575; } -/* line 3253, ../../../scss/_app_styles.scss */ +/* line 3252, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag span { margin: 0px 2px 0px 6px; cursor: pointer; } -/* line 3258, ../../../scss/_app_styles.scss */ +/* line 3257, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags > div { display: inline-block; } -/* line 3265, ../../../scss/_app_styles.scss */ +/* line 3264, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading { font-size: 19px; } -/* line 3268, ../../../scss/_app_styles.scss */ +/* line 3267, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading a { background: #e7e7e7; border-width: 1px 0px 1px 1px; border-color: #cccccc; border-style: solid; } -/* line 3275, ../../../scss/_app_styles.scss */ +/* line 3274, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading input { border-radius: 0px; box-shadow: none; border-left: 0px; } -/* line 3282, ../../../scss/_app_styles.scss */ +/* line 3281, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel { background: #FFF; } -/* line 3285, ../../../scss/_app_styles.scss */ +/* line 3284, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content { min-height: 250px; } -/* line 3288, ../../../scss/_app_styles.scss */ +/* line 3287, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader { line-height: 3em; padding: 10px 0px; } -/* line 3292, ../../../scss/_app_styles.scss */ +/* line 3291, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader upload-file { margin: 0px; font-size: 1em; } -/* line 3297, ../../../scss/_app_styles.scss */ +/* line 3296, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions { font-size: 1.2em; color: #2a79e4; } -/* line 3301, ../../../scss/_app_styles.scss */ +/* line 3300, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions > div { display: inline-block; margin-right: 10px; } -/* line 3308, ../../../scss/_app_styles.scss */ +/* line 3307, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel { background: #fff; } -/* line 3311, ../../../scss/_app_styles.scss */ +/* line 3310, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row { margin: 10px 0px; } -/* line 3314, ../../../scss/_app_styles.scss */ +/* line 3313, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row > div:first-child { font-weight: 500; } -/* line 3319, ../../../scss/_app_styles.scss */ +/* line 3318, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .file-name { font-size: 20px; font-weight: bold; @@ -26565,11 +26560,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 10px 0px 20px; } -/* line 3330, ../../../scss/_app_styles.scss */ +/* line 3329, ../../../scss/_app_styles.scss */ .gallery-card .select-file { vertical-align: top; } -/* line 3334, ../../../scss/_app_styles.scss */ +/* line 3333, ../../../scss/_app_styles.scss */ .gallery-card .file-item { width: 80%; color: #fff; @@ -26580,17 +26575,17 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid black; overflow: hidden; } -/* line 3344, ../../../scss/_app_styles.scss */ +/* line 3343, ../../../scss/_app_styles.scss */ .gallery-card .file-item .item-thumbnail-image { height: 100%; padding: 1em; } -/* line 3349, ../../../scss/_app_styles.scss */ +/* line 3348, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-details { margin-top: 10%; display: none; } -/* line 3354, ../../../scss/_app_styles.scss */ +/* line 3353, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions { display: none; position: absolute; @@ -26599,11 +26594,11 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; font-size: 25px; } -/* line 3362, ../../../scss/_app_styles.scss */ +/* line 3361, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions i { margin: 0px 10px; } -/* line 3367, ../../../scss/_app_styles.scss */ +/* line 3366, ../../../scss/_app_styles.scss */ .gallery-card .file-item .filename-footer { position: absolute; bottom: 0px; @@ -26614,24 +26609,24 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 600; background: #999999; } -/* line 3378, ../../../scss/_app_styles.scss */ +/* line 3377, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover { background: #999999; } -/* line 3381, ../../../scss/_app_styles.scss */ +/* line 3380, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .item-thumbnail-image { opacity: 0.2; } -/* line 3385, ../../../scss/_app_styles.scss */ +/* line 3384, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .file-details, .gallery-card .file-item:hover .file-actions { display: block; } -/* line 3388, ../../../scss/_app_styles.scss */ +/* line 3387, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .filename-footer { display: none; } -/* line 3396, ../../../scss/_app_styles.scss */ +/* line 3395, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'], dialog[id^='reveal-'] { width: 100vw; height: 100vh; @@ -26695,49 +26690,49 @@ div.show-image:hover div.fullscreen-icon{ } }*/ } -/* line 3460, ../../../scss/_app_styles.scss */ +/* line 3459, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body, dialog[id^='reveal-'] .gmodal-body { position: relative; height: 100%; } -/* line 3463, ../../../scss/_app_styles.scss */ +/* line 3462, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel { background-color: #fff; height: 100%; } -/* line 3465, ../../../scss/_app_styles.scss */ +/* line 3464, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray { display: none; } -/* line 3469, ../../../scss/_app_styles.scss */ +/* line 3468, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe { height: 550px !important; width: 130% !important; } -/* line 3474, ../../../scss/_app_styles.scss */ +/* line 3473, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page { margin-top: -10px !important; } -/* line 3478, ../../../scss/_app_styles.scss */ +/* line 3477, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel span, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel span { display: none !important; } -/* line 3482, ../../../scss/_app_styles.scss */ +/* line 3481, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .button, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .button { display: none !important; } -/* line 3489, ../../../scss/_app_styles.scss */ +/* line 3488, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder { height: 100%; } -/* line 3492, ../../../scss/_app_styles.scss */ +/* line 3491, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item { height: 100%; width: 100%; background: transparent; padding: 0px; } -/* line 3498, ../../../scss/_app_styles.scss */ +/* line 3497, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image { width: auto; margin: 0px auto; @@ -26745,7 +26740,7 @@ div.show-image:hover div.fullscreen-icon{ padding: 1em 0em; height: 100%; } -/* line 3507, ../../../scss/_app_styles.scss */ +/* line 3506, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer { height: 2em; line-height: 2em; @@ -26757,32 +26752,32 @@ div.show-image:hover div.fullscreen-icon{ opacity: 0; background-color: rgba(0, 0, 0, 0.9); } -/* line 3518, ../../../scss/_app_styles.scss */ +/* line 3517, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details), dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details) { cursor: pointer; } -/* line 3522, ../../../scss/_app_styles.scss */ +/* line 3521, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details { text-align: center; width: 100%; } -/* line 3526, ../../../scss/_app_styles.scss */ +/* line 3525, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i { margin-left: 1em; margin-right: 0.5em; cursor: pointer; } -/* line 3534, ../../../scss/_app_styles.scss */ +/* line 3533, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer { opacity: 0.8; transition: opacity 1s; } -/* line 3539, ../../../scss/_app_styles.scss */ +/* line 3538, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel { height: 100%; padding: 0px 25px; } -/* line 3543, ../../../scss/_app_styles.scss */ +/* line 3542, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side { background: #fff; height: 100%; @@ -26803,31 +26798,31 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.9em; }*/ } -/* line 3547, ../../../scss/_app_styles.scss */ +/* line 3546, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div { width: 100%; display: block; margin: 12px 0px; padding: 0px 10px; } -/* line 3554, ../../../scss/_app_styles.scss */ +/* line 3553, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal { font-size: 20px; top: 6px; right: 26px; } -/* line 3561, ../../../scss/_app_styles.scss */ +/* line 3560, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span { vertical-align: top; margin-right: 5px; line-height: 35px; } -/* line 3566, ../../../scss/_app_styles.scss */ +/* line 3565, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating { background: #ccc; padding: 2px 5px; } -/* line 3572, ../../../scss/_app_styles.scss */ +/* line 3571, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a { padding: 3px 7px; background: #fff; @@ -26837,13 +26832,13 @@ div.show-image:hover div.fullscreen-icon{ margin-right: 10px; display: inline-block; } -/* line 3583, ../../../scss/_app_styles.scss */ +/* line 3582, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3588, ../../../scss/_app_styles.scss */ +/* line 3587, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26852,17 +26847,17 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3596, ../../../scss/_app_styles.scss */ +/* line 3595, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a { border-radius: inherit; } -/* line 3600, ../../../scss/_app_styles.scss */ +/* line 3599, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3608, ../../../scss/_app_styles.scss */ +/* line 3607, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span { font-weight: 500; font-size: 16px; @@ -26870,20 +26865,20 @@ div.show-image:hover div.fullscreen-icon{ line-height: 35px; } -/* line 3638, ../../../scss/_app_styles.scss */ +/* line 3637, ../../../scss/_app_styles.scss */ .user-comment { display: inline-flex; width: 100%; } -/* line 3642, ../../../scss/_app_styles.scss */ +/* line 3641, ../../../scss/_app_styles.scss */ .user-comment > div { display: inline-block; } -/* line 3645, ../../../scss/_app_styles.scss */ +/* line 3644, ../../../scss/_app_styles.scss */ .user-comment > div:last-child { width: 100%; } -/* line 3650, ../../../scss/_app_styles.scss */ +/* line 3649, ../../../scss/_app_styles.scss */ .user-comment .comment-heading { color: #9C9C9C; border-bottom: 1px solid grey; @@ -26891,71 +26886,71 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 10px; margin-top: 10px; } -/* line 3658, ../../../scss/_app_styles.scss */ +/* line 3657, ../../../scss/_app_styles.scss */ .user-comment .comment-heading > div { display: inline-block; } -/* line 3662, ../../../scss/_app_styles.scss */ +/* line 3661, ../../../scss/_app_styles.scss */ .user-comment .comment-heading .commentor-name span { font-weight: bold; color: #333333; } -/* line 3667, ../../../scss/_app_styles.scss */ +/* line 3666, ../../../scss/_app_styles.scss */ .user-comment .comment-footer { font-size: 0.9em; font-weight: 400; border: 1px solid #9E9E9E; background: #CCCCCC; } -/* line 3673, ../../../scss/_app_styles.scss */ +/* line 3672, ../../../scss/_app_styles.scss */ .user-comment .comment-footer > div { cursor: pointer; } -/* line 3676, ../../../scss/_app_styles.scss */ +/* line 3675, ../../../scss/_app_styles.scss */ .user-comment .comment-footer i { margin-right: 1em; } -/* line 3682, ../../../scss/_app_styles.scss */ +/* line 3681, ../../../scss/_app_styles.scss */ .user-comment .comment-container .comment-add { margin-top: 0.4em; } -/* line 3686, ../../../scss/_app_styles.scss */ +/* line 3685, ../../../scss/_app_styles.scss */ .user-comment .user-avatar { font-size: 10em; font-size: 5em; line-height: 1em; } -/* line 3693, ../../../scss/_app_styles.scss */ +/* line 3692, ../../../scss/_app_styles.scss */ .course-content { /*border-top: 1px solid #000;*/ } -/* line 3695, ../../../scss/_app_styles.scss */ +/* line 3694, ../../../scss/_app_styles.scss */ .course-content .alert-box { padding: 5px; font-size: 1em; } -/* line 3699, ../../../scss/_app_styles.scss */ +/* line 3698, ../../../scss/_app_styles.scss */ .course-content .alert-box > div { display: inline-block; vertical-align: top; } -/* line 3703, ../../../scss/_app_styles.scss */ +/* line 3702, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note { width: 96%; } -/* line 3706, ../../../scss/_app_styles.scss */ +/* line 3705, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note > div:nth-child(2) { color: #000; margin-top: 5px; padding-top: 5px; border-top: 1px solid #000; } -/* line 3713, ../../../scss/_app_styles.scss */ +/* line 3712, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-icon { margin: 0px 5px; } -/* line 3716, ../../../scss/_app_styles.scss */ +/* line 3715, ../../../scss/_app_styles.scss */ .course-content .alert-box .close { position: relative; top: 0px; @@ -26965,17 +26960,17 @@ div.show-image:hover div.fullscreen-icon{ text-decoration: underline; color: #085394 !important; } -/* line 3727, ../../../scss/_app_styles.scss */ +/* line 3726, ../../../scss/_app_styles.scss */ .course-content .collection { overflow: visible; } -/* line 3730, ../../../scss/_app_styles.scss */ +/* line 3729, ../../../scss/_app_styles.scss */ .course-content .collection .course-module { position: relative; border-bottom: 1px solid #CCC; padding: 1em 0em; } -/* line 3737, ../../../scss/_app_styles.scss */ +/* line 3736, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-header .fa { position: absolute; left: -1.1em; @@ -26984,58 +26979,58 @@ div.show-image:hover div.fullscreen-icon{ background: #EAEAEA; font-size: 1.4em; } -/* line 3755, ../../../scss/_app_styles.scss */ +/* line 3754, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-page:hover span { text-decoration: underline; color: #9900ff !important; } -/* line 3760, ../../../scss/_app_styles.scss */ +/* line 3759, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .jqtree-tree .jqtree-title { cursor: pointer; } -/* line 3764, ../../../scss/_app_styles.scss */ +/* line 3763, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part { margin-left: 1em; } -/* line 3767, ../../../scss/_app_styles.scss */ +/* line 3766, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler { color: #585858; } -/* line 3770, ../../../scss/_app_styles.scss */ +/* line 3769, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler.jqtree-closed { color: #CCC; } -/* line 3774, ../../../scss/_app_styles.scss */ +/* line 3773, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part span { vertical-align: top; } -/* line 3777, ../../../scss/_app_styles.scss */ +/* line 3776, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .fa { display: inline; margin-right: 5px; } -/* line 3787, ../../../scss/_app_styles.scss */ +/* line 3786, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header { font-weight: 400; font-size: 1.3em; border-bottom: 1px solid #707070; color: #797979; } -/* line 3793, ../../../scss/_app_styles.scss */ +/* line 3792, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header > div { padding: 0.3em 0em; } -/* line 3797, ../../../scss/_app_styles.scss */ +/* line 3796, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header a { color: #797979; } -/* line 3801, ../../../scss/_app_styles.scss */ +/* line 3800, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous { cursor: pointer; padding: 0px; } -/* line 3805, ../../../scss/_app_styles.scss */ +/* line 3804, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous a:first-child { border-right: 1px solid grey; padding-right: 5px; @@ -27043,27 +27038,27 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3814, ../../../scss/_app_styles.scss */ +/* line 3813, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header i { margin-right: 0.1em; } -/* line 3818, ../../../scss/_app_styles.scss */ +/* line 3817, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .unit-title { text-align: center; color: #999999; } -/* line 3822, ../../../scss/_app_styles.scss */ +/* line 3821, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-title { text-align: center; color: #000; } -/* line 3826, ../../../scss/_app_styles.scss */ +/* line 3825, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note { color: #2a78e3; cursor: pointer; padding: 0px; } -/* line 3831, ../../../scss/_app_styles.scss */ +/* line 3830, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note a:last-child { border-left: 1px solid grey; padding-left: 5px; @@ -27071,11 +27066,11 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3839, ../../../scss/_app_styles.scss */ +/* line 3838, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note > div { float: right; } -/* line 3844, ../../../scss/_app_styles.scss */ +/* line 3843, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container { border: 1px solid black; height: 100%; @@ -27083,18 +27078,18 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 2em; padding: 0em 1em; } -/* line 3851, ../../../scss/_app_styles.scss */ +/* line 3850, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides { height: 100%; } -/* line 3855, ../../../scss/_app_styles.scss */ +/* line 3854, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 3863, ../../../scss/_app_styles.scss */ +/* line 3862, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -27102,12 +27097,12 @@ div.show-image:hover div.fullscreen-icon{ color: #999999; margin-left: 12%; } -/* line 3871, ../../../scss/_app_styles.scss */ +/* line 3870, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 3877, ../../../scss/_app_styles.scss */ +/* line 3876, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -27116,21 +27111,21 @@ div.show-image:hover div.fullscreen-icon{ display: none; color: #8E8E8E; } -/* line 3886, ../../../scss/_app_styles.scss */ +/* line 3885, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 3891, ../../../scss/_app_styles.scss */ +/* line 3890, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 3893, ../../../scss/_app_styles.scss */ +/* line 3892, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 3896, ../../../scss/_app_styles.scss */ +/* line 3895, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -27141,24 +27136,24 @@ div.show-image:hover div.fullscreen-icon{ color: #757575; margin-right: 20px; } -/* line 3906, ../../../scss/_app_styles.scss */ +/* line 3905, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 3910, ../../../scss/_app_styles.scss */ +/* line 3909, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 3913, ../../../scss/_app_styles.scss */ +/* line 3912, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 3918, ../../../scss/_app_styles.scss */ +/* line 3917, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 3922, ../../../scss/_app_styles.scss */ +/* line 3921, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content { width: 75%; margin: 0px auto; @@ -27169,7 +27164,7 @@ div.show-image:hover div.fullscreen-icon{ min-height: 50px; position: relative; } -/* line 3932, ../../../scss/_app_styles.scss */ +/* line 3931, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -27177,15 +27172,15 @@ div.show-image:hover div.fullscreen-icon{ left: 8px; top: 4px; } -/* line 3940, ../../../scss/_app_styles.scss */ +/* line 3939, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 3942, ../../../scss/_app_styles.scss */ +/* line 3941, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 3945, ../../../scss/_app_styles.scss */ +/* line 3944, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -27195,27 +27190,27 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.8px; color: #999999; } -/* line 3954, ../../../scss/_app_styles.scss */ +/* line 3953, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 3960, ../../../scss/_app_styles.scss */ +/* line 3959, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 3967, ../../../scss/_app_styles.scss */ +/* line 3966, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section { width: 75%; margin: 0px auto; } -/* line 3971, ../../../scss/_app_styles.scss */ +/* line 3970, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section .user-prof-image { font-size: 7em; text-align: center; } -/* line 3976, ../../../scss/_app_styles.scss */ +/* line 3975, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section #postCommentBtn { padding: 2em 3em; } @@ -27236,28 +27231,28 @@ div.show-image:hover div.fullscreen-icon{ position: absolute; } */ -/* line 3997, ../../../scss/_app_styles.scss */ +/* line 3996, ../../../scss/_app_styles.scss */ .rate-scale { cursor: pointer; } -/* line 4000, ../../../scss/_app_styles.scss */ +/* line 3999, ../../../scss/_app_styles.scss */ .rate-scale i { margin-right: 0em !important; padding-right: 0.5em; } -/* line 4004, ../../../scss/_app_styles.scss */ +/* line 4003, ../../../scss/_app_styles.scss */ .rate-scale .hover-rating, .rate-scale .rated { color: yellow; } -/* line 4010, ../../../scss/_app_styles.scss */ +/* line 4009, ../../../scss/_app_styles.scss */ #left-tab { position: absolute; left: 0px; bottom: 0px; } -/* line 4015, ../../../scss/_app_styles.scss */ +/* line 4014, ../../../scss/_app_styles.scss */ #right-tab { position: absolute; right: 0px; @@ -27265,12 +27260,12 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 6px; } -/* line 4021, ../../../scss/_app_styles.scss */ +/* line 4020, ../../../scss/_app_styles.scss */ #enrolled-btn { margin-bottom: 0px; } -/* line 4024, ../../../scss/_app_styles.scss */ +/* line 4023, ../../../scss/_app_styles.scss */ div.absol-descrip { position: absolute; top: 190px; @@ -27281,14 +27276,14 @@ div.absol-descrip { } /*overview-summary styling*/ -/* line 4034, ../../../scss/_app_styles.scss */ +/* line 4033, ../../../scss/_app_styles.scss */ .course-title, .course-date { color: white; padding-top: 0px; padding-bottom: 0px; } -/* line 4039, ../../../scss/_app_styles.scss */ +/* line 4038, ../../../scss/_app_styles.scss */ .course-description { color: #cccccc; padding-top: 0px; @@ -27300,48 +27295,48 @@ div.absol-descrip { overflow: hidden; } -/* line 4049, ../../../scss/_app_styles.scss */ +/* line 4048, ../../../scss/_app_styles.scss */ .course-para { padding: 0; } -/* line 4053, ../../../scss/_app_styles.scss */ +/* line 4052, ../../../scss/_app_styles.scss */ course-title { padding-left: 10px; } -/* line 4056, ../../../scss/_app_styles.scss */ +/* line 4055, ../../../scss/_app_styles.scss */ .enroll-status-margin { margin-bottom: 0; } -/* line 4060, ../../../scss/_app_styles.scss */ +/* line 4059, ../../../scss/_app_styles.scss */ .progress-summery { color: white; margin-top: 20px; } -/* line 4064, ../../../scss/_app_styles.scss */ +/* line 4063, ../../../scss/_app_styles.scss */ .course-description-thumbnails { margin: 0; padding: 0; } -/* line 4069, ../../../scss/_app_styles.scss */ +/* line 4068, ../../../scss/_app_styles.scss */ .left-shift { padding: 0; color: white !important; } /*course overview for Small screens*/ -/* line 4075, ../../../scss/_app_styles.scss */ +/* line 4074, ../../../scss/_app_styles.scss */ .course { /*position:relative;*/ border: 1px solid black; background-color: #999999; } -/* line 4081, ../../../scss/_app_styles.scss */ +/* line 4080, ../../../scss/_app_styles.scss */ .course-contents { /*position:absolute;*/ width: 100%; @@ -27349,7 +27344,7 @@ course-title { /*Medium screens*/ @media only screen and (min-width: 40.063em) { - /* line 4088, ../../../scss/_app_styles.scss */ + /* line 4087, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27357,7 +27352,7 @@ course-title { background-color: #999999; } - /* line 4094, ../../../scss/_app_styles.scss */ + /* line 4093, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27367,7 +27362,7 @@ course-title { /* min-width 641px, medium screens */ /* Large screens*/ @media only screen and (min-width: 64.063em) { - /* line 4104, ../../../scss/_app_styles.scss */ + /* line 4103, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27375,7 +27370,7 @@ course-title { background-color: #999999; } - /* line 4110, ../../../scss/_app_styles.scss */ + /* line 4109, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27384,14 +27379,14 @@ course-title { } /* min-width 1025px, large screens */ /*General config css*/ -/* line 4117, ../../../scss/_app_styles.scss */ +/* line 4116, ../../../scss/_app_styles.scss */ .alert-box.warning { background: #ffe7c0; border-color: #bf9000; color: #966000; } -/* line 4124, ../../../scss/_app_styles.scss */ +/* line 4123, ../../../scss/_app_styles.scss */ .badge { display: inline-block; line-height: 22px; @@ -27408,7 +27403,7 @@ course-title { font-size: 1.8em; } -/* line 4140, ../../../scss/_app_styles.scss */ +/* line 4139, ../../../scss/_app_styles.scss */ .badge { background: #67c1ef; border-color: #30aae9; @@ -27418,7 +27413,7 @@ course-title { background-image: linear-gradient(to bottom, #acddf6, #67c1ef); } -/* line 4149, ../../../scss/_app_styles.scss */ +/* line 4148, ../../../scss/_app_styles.scss */ .badge.green { background: #77cc51; border-color: #59ad33; @@ -27428,7 +27423,7 @@ course-title { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 4158, ../../../scss/_app_styles.scss */ +/* line 4157, ../../../scss/_app_styles.scss */ .badge.yellow { background: #faba3e; border-color: #f4a306; @@ -27438,7 +27433,7 @@ course-title { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 4168, ../../../scss/_app_styles.scss */ +/* line 4167, ../../../scss/_app_styles.scss */ .badge.red { background: #fa623f; border-color: #fa5a35; @@ -27449,12 +27444,12 @@ course-title { } /* Course/ Event Card CSS*/ -/* line 4184, ../../../scss/_app_styles.scss */ +/* line 4183, ../../../scss/_app_styles.scss */ .card-image-wrapper { position: relative; } -/* line 4188, ../../../scss/_app_styles.scss */ +/* line 4187, ../../../scss/_app_styles.scss */ .event-card { padding: 0px; min-height: 22rem; @@ -27463,12 +27458,12 @@ course-title { border-radius: 10px; background-color: #fff; } -/* line 4196, ../../../scss/_app_styles.scss */ +/* line 4195, ../../../scss/_app_styles.scss */ .event-card:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 4201, ../../../scss/_app_styles.scss */ +/* line 4200, ../../../scss/_app_styles.scss */ .event-card .event-card-status { z-index: 99; width: auto; @@ -27483,31 +27478,31 @@ course-title { border-radius: 4px; letter-spacing: 0.3px; } -/* line 4215, ../../../scss/_app_styles.scss */ +/* line 4214, ../../../scss/_app_styles.scss */ .event-card .event-card-status.open { background-color: #00b300; } -/* line 4218, ../../../scss/_app_styles.scss */ +/* line 4217, ../../../scss/_app_styles.scss */ .event-card .event-card-status.closed { background-color: red; } -/* line 4221, ../../../scss/_app_styles.scss */ +/* line 4220, ../../../scss/_app_styles.scss */ .event-card .event-card-status.in-progress { background-color: #00b300; } -/* line 4224, ../../../scss/_app_styles.scss */ +/* line 4223, ../../../scss/_app_styles.scss */ .event-card .event-card-status.forthcoming { background-color: #F2910D; } -/* line 4227, ../../../scss/_app_styles.scss */ +/* line 4226, ../../../scss/_app_styles.scss */ .event-card .event-card-status.upcoming { background-color: #F2910D; } -/* line 4231, ../../../scss/_app_styles.scss */ +/* line 4230, ../../../scss/_app_styles.scss */ .event-card .event-card-status.completed { background-color: #4d4d4d; } -/* line 4236, ../../../scss/_app_styles.scss */ +/* line 4235, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications { position: absolute; top: 2px; @@ -27516,46 +27511,46 @@ course-title { color: #F04124; font-weight: 600; } -/* line 4244, ../../../scss/_app_styles.scss */ +/* line 4243, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications .badge { padding: 0px 5px; font-size: 1.4em; font-weight: 600; } -/* line 4251, ../../../scss/_app_styles.scss */ +/* line 4250, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status { font-weight: 500; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 4256, ../../../scss/_app_styles.scss */ +/* line 4255, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.open { color: #00b300; } -/* line 4260, ../../../scss/_app_styles.scss */ +/* line 4259, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.closed { color: red; } -/* line 4264, ../../../scss/_app_styles.scss */ +/* line 4263, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.in-progress { color: #000; } -/* line 4267, ../../../scss/_app_styles.scss */ +/* line 4266, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.forthcoming { color: #F2910D; } -/* line 4271, ../../../scss/_app_styles.scss */ +/* line 4270, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.completed { color: #4d4d4d; } -/* line 4275, ../../../scss/_app_styles.scss */ +/* line 4274, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status .event-time { font-size: 0.7em; display: block; font-weight: 400; display: inline; } -/* line 4283, ../../../scss/_app_styles.scss */ +/* line 4282, ../../../scss/_app_styles.scss */ .event-card .event-card-title { color: #0d0d0d; display: inline-block; @@ -27566,19 +27561,19 @@ course-title { font-size: 2em; font-weight: 400; } -/* line 4294, ../../../scss/_app_styles.scss */ +/* line 4293, ../../../scss/_app_styles.scss */ .event-card .event-card-desc { word-wrap: break-word; font-size: 0.6em; color: #333333; padding-left: 4px; } -/* line 4300, ../../../scss/_app_styles.scss */ +/* line 4299, ../../../scss/_app_styles.scss */ .event-card p { margin: 0px; padding: 10px; } -/* line 4306, ../../../scss/_app_styles.scss */ +/* line 4305, ../../../scss/_app_styles.scss */ .event-card .event-card-image { padding: 0px; margin: 0px; @@ -27590,7 +27585,7 @@ course-title { background-color: #e5e5e5; border-radius: 10px 10px 0px 0px; } -/* line 4317, ../../../scss/_app_styles.scss */ +/* line 4316, ../../../scss/_app_styles.scss */ .event-card .event-card-image img { border-radius: 2px 2px 0 0; display: block; @@ -27599,7 +27594,7 @@ course-title { opacity: 0.25; height: 100%; } -/* line 4326, ../../../scss/_app_styles.scss */ +/* line 4325, ../../../scss/_app_styles.scss */ .event-card .event-card-image i { font-size: 7rem; opacity: 0.75; @@ -27613,51 +27608,51 @@ course-title { text-transform: none; text-decoration: inherit; } -/* line 4340, ../../../scss/_app_styles.scss */ +/* line 4339, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.file:before { content: "\f18e"; } -/* line 4343, ../../../scss/_app_styles.scss */ +/* line 4342, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.page:before { content: "\f18e"; } -/* line 4346, ../../../scss/_app_styles.scss */ +/* line 4345, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.collection:before { content: "\f18a"; } -/* line 4349, ../../../scss/_app_styles.scss */ +/* line 4348, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.documents:before { content: "\f18b"; } -/* line 4352, ../../../scss/_app_styles.scss */ +/* line 4351, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.pdf:before { content: "\f18b"; } -/* line 4355, ../../../scss/_app_styles.scss */ +/* line 4354, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.text:before { content: "\f18e"; } -/* line 4358, ../../../scss/_app_styles.scss */ +/* line 4357, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.interactives:before { content: "\f1b2"; } -/* line 4361, ../../../scss/_app_styles.scss */ +/* line 4360, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.ebooks:before { content: "\f11e"; } -/* line 4364, ../../../scss/_app_styles.scss */ +/* line 4363, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.images:before { content: "\f125"; } -/* line 4367, ../../../scss/_app_styles.scss */ +/* line 4366, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.audios:before, .event-card .event-card-image i.audio:before { content: "\f17b"; } -/* line 4370, ../../../scss/_app_styles.scss */ +/* line 4369, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.videos:before, .event-card .event-card-image i.video:before { content: "\f20e"; } -/* line 4374, ../../../scss/_app_styles.scss */ +/* line 4373, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer { padding: 0.7em 1em; border-top: 1px solid #DCDCDC; @@ -27668,7 +27663,7 @@ course-title { background-color: #F3F3F3; border-radius: 0px 0px 10px 10px; } -/* line 4384, ../../../scss/_app_styles.scss */ +/* line 4383, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .footer-label { text-transform: uppercase; font-size: 10px; @@ -27676,54 +27671,54 @@ course-title { margin-bottom: 2px; color: #ADADAD; } -/* line 4392, ../../../scss/_app_styles.scss */ +/* line 4391, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date { color: #929292; font-size: 0.85em; letter-spacing: 0.5px; } -/* line 4397, ../../../scss/_app_styles.scss */ +/* line 4396, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date i:not(.edit-course-duration, .edit-course-enrollment) { margin-right: 0.3em; } -/* line 4401, ../../../scss/_app_styles.scss */ +/* line 4400, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .row { margin: 10px 0px 0px; } -/* line 4405, ../../../scss/_app_styles.scss */ +/* line 4404, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration, .event-card .edit-course-enrollment { float: right; font-size: 1.5em; color: #DADADA; } -/* line 4409, ../../../scss/_app_styles.scss */ +/* line 4408, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration:hover, .event-card .edit-course-enrollment:hover { color: #565656; } -/* line 4413, ../../../scss/_app_styles.scss */ +/* line 4412, ../../../scss/_app_styles.scss */ .event-card .published.scard-action { background: #A6D9CB; } -/* line 4417, ../../../scss/_app_styles.scss */ +/* line 4416, ../../../scss/_app_styles.scss */ .event-card .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 4422, ../../../scss/_app_styles.scss */ +/* line 4421, ../../../scss/_app_styles.scss */ .event-card .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4427, ../../../scss/_app_styles.scss */ +/* line 4426, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4431, ../../../scss/_app_styles.scss */ +/* line 4430, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 4435, ../../../scss/_app_styles.scss */ +/* line 4434, ../../../scss/_app_styles.scss */ .event-card .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -27734,17 +27729,17 @@ course-title { /* End Course/events Card CSS*/ /* Landing page */ -/* line 4447, ../../../scss/_app_styles.scss */ +/* line 4446, ../../../scss/_app_styles.scss */ .landing_page { position: relative; text-align: center; } -/* line 4451, ../../../scss/_app_styles.scss */ +/* line 4450, ../../../scss/_app_styles.scss */ .landing_page .panel { background-color: inherit; border: none; } -/* line 4456, ../../../scss/_app_styles.scss */ +/* line 4455, ../../../scss/_app_styles.scss */ .landing_page .landing_page_background { height: 100%; width: 100%; @@ -27756,24 +27751,24 @@ course-title { background: -ms-linear-gradient(left, #E9A900, #B0108D); background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 4468, ../../../scss/_app_styles.scss */ +/* line 4467, ../../../scss/_app_styles.scss */ .landing_page .clix_brief { text-align: left; padding: 20px 5%; } -/* line 4472, ../../../scss/_app_styles.scss */ +/* line 4471, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 30px 20px; height: 70px; } @media screen and (max-width: 450px) { - /* line 4472, ../../../scss/_app_styles.scss */ + /* line 4471, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 25px 10px; height: 55px; } } -/* line 4480, ../../../scss/_app_styles.scss */ +/* line 4479, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { color: #fff; font-size: 26px; @@ -27781,12 +27776,12 @@ course-title { font-family: 'ubuntu-light'; } @media screen and (max-width: 450px) { - /* line 4480, ../../../scss/_app_styles.scss */ + /* line 4479, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { font-size: 18px; } } -/* line 4491, ../../../scss/_app_styles.scss */ +/* line 4490, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { background-color: rgba(255, 255, 255, 0.92); border-radius: 10px; @@ -27797,12 +27792,12 @@ course-title { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); } @media screen and (min-width: 1025px) { - /* line 4491, ../../../scss/_app_styles.scss */ + /* line 4490, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { margin: 200px auto; } } -/* line 4503, ../../../scss/_app_styles.scss */ +/* line 4502, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix > span { font-family: 'ubuntu-bold'; color: #6658af; @@ -27813,7 +27808,7 @@ course-title { display: inline-block; vertical-align: middle; } -/* line 4513, ../../../scss/_app_styles.scss */ +/* line 4512, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix p { color: #b0108d; font-size: 21px; @@ -27821,28 +27816,28 @@ course-title { font-weight: 300; font-family: 'ubuntu-light'; } -/* line 4521, ../../../scss/_app_styles.scss */ +/* line 4520, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix img { height: 30px; } -/* line 4524, ../../../scss/_app_styles.scss */ +/* line 4523, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form { margin-top: 30px; } -/* line 4527, ../../../scss/_app_styles.scss */ +/* line 4526, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form input { font-size: 24px; height: 45px; margin: 5px 0px 24px; } -/* line 4534, ../../../scss/_app_styles.scss */ +/* line 4533, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix input.button { font-size: 15px; border-radius: 5px; font-family: 'ubuntu-bold'; text-transform: uppercase; } -/* line 4540, ../../../scss/_app_styles.scss */ +/* line 4539, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix a.grey { color: #999; /*display: inline-block; @@ -27853,7 +27848,7 @@ course-title { font-family: 'ubuntu-bold'; text-transform: uppercase;*/ } -/* line 4551, ../../../scss/_app_styles.scss */ +/* line 4550, ../../../scss/_app_styles.scss */ .landing_page .flowers { left: 50px; height: 500px; @@ -27861,18 +27856,18 @@ course-title { opacity: 0.6; } @media screen and (max-width: 450px) { - /* line 4551, ../../../scss/_app_styles.scss */ + /* line 4550, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 250px; } } @media screen and (min-width: 451px) and (max-width: 1025px) { - /* line 4551, ../../../scss/_app_styles.scss */ + /* line 4550, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 350px; } } -/* line 4563, ../../../scss/_app_styles.scss */ +/* line 4562, ../../../scss/_app_styles.scss */ .landing_page .bees { position: absolute; top: 5px; @@ -27880,40 +27875,40 @@ course-title { height: 150px; } @media screen and (max-width: 450px) { - /* line 4563, ../../../scss/_app_styles.scss */ + /* line 4562, ../../../scss/_app_styles.scss */ .landing_page .bees { right: 15px; height: 100px; } } -/* line 4573, ../../../scss/_app_styles.scss */ +/* line 4572, ../../../scss/_app_styles.scss */ .landing_page h2 { color: #A0148E; font-weight: 600; } -/* line 4577, ../../../scss/_app_styles.scss */ +/* line 4576, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text { color: #6153ae; } -/* line 4580, ../../../scss/_app_styles.scss */ +/* line 4579, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text p { font-size: 18px; } /* END of Landing page */ -/* line 4586, ../../../scss/_app_styles.scss */ +/* line 4585, ../../../scss/_app_styles.scss */ .audio-caption { cursor: pointer; } -/* line 4590, ../../../scss/_app_styles.scss */ +/* line 4589, ../../../scss/_app_styles.scss */ .gallery-image { cursor: pointer; max-height: 100px; border: 1px solid !important; } -/* line 4596, ../../../scss/_app_styles.scss */ +/* line 4595, ../../../scss/_app_styles.scss */ .show-collection { color: black !important; font-size: 1.1em; @@ -27926,25 +27921,25 @@ course-title { border: 1px solid #eee; } -/* line 4608, ../../../scss/_app_styles.scss */ +/* line 4607, ../../../scss/_app_styles.scss */ .processing-screen { background-color: #0eacb5 !important; } -/* line 4612, ../../../scss/_app_styles.scss */ +/* line 4611, ../../../scss/_app_styles.scss */ .processing-screen-label { width: 500px !important; font-style: normal !important; } -/* line 4616, ../../../scss/_app_styles.scss */ +/* line 4615, ../../../scss/_app_styles.scss */ h3 { font-size: 20px; color: #164A7B; font-family: 'OpenSans-Semibold'; } -/* line 4622, ../../../scss/_app_styles.scss */ +/* line 4621, ../../../scss/_app_styles.scss */ h5 { color: #99aaba; font-size: 10px; @@ -27953,7 +27948,7 @@ h5 { margin-left: 5px; } -/* line 4630, ../../../scss/_app_styles.scss */ +/* line 4629, ../../../scss/_app_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -27962,12 +27957,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4637, ../../../scss/_app_styles.scss */ +/* line 4636, ../../../scss/_app_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 4641, ../../../scss/_app_styles.scss */ +/* line 4640, ../../../scss/_app_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -27976,12 +27971,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4648, ../../../scss/_app_styles.scss */ +/* line 4647, ../../../scss/_app_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 4654, ../../../scss/_app_styles.scss */ +/* line 4653, ../../../scss/_app_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -27993,7 +27988,7 @@ h5 { color: #6153AE; } -/* line 4665, ../../../scss/_app_styles.scss */ +/* line 4664, ../../../scss/_app_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28005,7 +28000,7 @@ h5 { color: #6153AE; } -/* line 4676, ../../../scss/_app_styles.scss */ +/* line 4675, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -28017,7 +28012,7 @@ h5 { border: 2px solid #6153ae; background-color: #dbd4e1; } -/* line 4687, ../../../scss/_app_styles.scss */ +/* line 4686, ../../../scss/_app_styles.scss */ .explore-button:hover { cursor: pointer; } @@ -28025,12 +28020,12 @@ h5 { /*Blue color variable*/ /*Orange color variables*/ /* module detail settings drop */ -/* line 4720, ../../../scss/_app_styles.scss */ +/* line 4719, ../../../scss/_app_styles.scss */ .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4723, ../../../scss/_app_styles.scss */ +/* line 4722, ../../../scss/_app_styles.scss */ .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28043,17 +28038,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4734, ../../../scss/_app_styles.scss */ +/* line 4733, ../../../scss/_app_styles.scss */ .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4740, ../../../scss/_app_styles.scss */ +/* line 4739, ../../../scss/_app_styles.scss */ .explore-settings-drop a { font-size: 16px; } -/* line 4743, ../../../scss/_app_styles.scss */ +/* line 4742, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28061,12 +28056,12 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4743, ../../../scss/_app_styles.scss */ +/* line 4742, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4746, ../../../scss/_app_styles.scss */ +/* line 4745, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28079,17 +28074,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4757, ../../../scss/_app_styles.scss */ +/* line 4756, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4763, ../../../scss/_app_styles.scss */ +/* line 4762, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop a { font-size: 16px; } -/* line 4766, ../../../scss/_app_styles.scss */ +/* line 4765, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28097,31 +28092,31 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4774, ../../../scss/_app_styles.scss */ +/* line 4773, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4778, ../../../scss/_app_styles.scss */ +/* line 4777, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4791, ../../../scss/_app_styles.scss */ +/* line 4790, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4795, ../../../scss/_app_styles.scss */ +/* line 4794, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4805, ../../../scss/_app_styles.scss */ +/* line 4804, ../../../scss/_app_styles.scss */ .lms_page .lms_banner { width: 100%; height: 150px; background-size: 100% 100%; position: relative; } -/* line 4813, ../../../scss/_app_styles.scss */ +/* line 4812, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -28134,27 +28129,27 @@ h5 { bottom: 0; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 4826, ../../../scss/_app_styles.scss */ +/* line 4825, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before a { cursor: pointer; } -/* line 4831, ../../../scss/_app_styles.scss */ +/* line 4830, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .div-height { height: 150px !important; background-size: 100% 100%; position: absolute !important; } -/* line 4839, ../../../scss/_app_styles.scss */ +/* line 4838, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .enroll_unit > a { cursor: pointer; } -/* line 4843, ../../../scss/_app_styles.scss */ +/* line 4842, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 4849, ../../../scss/_app_styles.scss */ +/* line 4848, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .unit_name { font-size: 36px; font-family: OpenSans-Semibold; @@ -28165,17 +28160,17 @@ h5 { transition: border-radius .2s; text-shadow: 3px 2px #164a7b; } -/* line 4860, ../../../scss/_app_styles.scss */ +/* line 4859, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .right-margin { margin-right: 46px; } -/* line 4869, ../../../scss/_app_styles.scss */ +/* line 4868, ../../../scss/_app_styles.scss */ .border-bottom-lms-header { border-bottom: 1px solid #00000029; } -/* line 4874, ../../../scss/_app_styles.scss */ +/* line 4873, ../../../scss/_app_styles.scss */ .lms_secondary_header { width: 100%; position: relative; @@ -28183,11 +28178,11 @@ h5 { box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 4880, ../../../scss/_app_styles.scss */ +/* line 4879, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions { margin-top: 8px; } -/* line 4883, ../../../scss/_app_styles.scss */ +/* line 4882, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28199,11 +28194,11 @@ h5 { opacity: 0.8; } @media screen and (min-width: 980px) and (max-width: 1000px) { - /* line 4897, ../../../scss/_app_styles.scss */ + /* line 4896, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions { margin-top: 8px; } - /* line 4900, ../../../scss/_app_styles.scss */ + /* line 4899, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions > span { margin-left: 50px; background: #2e3f51; @@ -28217,16 +28212,16 @@ h5 { } } -/* line 4920, ../../../scss/_app_styles.scss */ +/* line 4919, ../../../scss/_app_styles.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; } -/* line 4923, ../../../scss/_app_styles.scss */ +/* line 4922, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 4926, ../../../scss/_app_styles.scss */ +/* line 4925, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a { list-style-type: none; display: inline-block; @@ -28237,13 +28232,42 @@ ul.nav_menu_1 > li > a { letter-spacing: 0.8px; border-bottom: 3px solid transparent; } -/* line 4937, ../../../scss/_app_styles.scss */ +/* line 4936, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-bottom: 3px solid #a2238d; } +/* line 4947, ../../../scss/_app_styles.scss */ +ul.authoring-tab { + margin-bottom: 0px; + display: inline; + width: 50%; +} +/* line 4951, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li { + display: inline-block; + background-color: #164a7b; +} +/* line 4954, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li > a { + list-style-type: none; + margin-right: -4px; + background-color: #164a7b; + padding: 12px 12px 9px; + cursor: pointer; + font-size: 18px; + display: inline-block; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; + color: #ffffff !important; +} +/* line 4965, ../../../scss/_app_styles.scss */ +ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { + border-bottom: 3px solid #a2238d; +} + /* Secondary Top Bar */ -/* line 4948, ../../../scss/_app_styles.scss */ +/* line 4975, ../../../scss/_app_styles.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -28251,34 +28275,34 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-bottom: 30px; } -/* line 4958, ../../../scss/_app_styles.scss */ +/* line 4985, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 4963, ../../../scss/_app_styles.scss */ +/* line 4990, ../../../scss/_app_styles.scss */ .top-bar-second .name { text-align: center; } -/* line 4966, ../../../scss/_app_styles.scss */ +/* line 4993, ../../../scss/_app_styles.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 4976, ../../../scss/_app_styles.scss */ +/* line 5003, ../../../scss/_app_styles.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 4984, ../../../scss/_app_styles.scss */ +/* line 5011, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 4986, ../../../scss/_app_styles.scss */ +/* line 5013, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -28287,31 +28311,31 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { font-weight: bold; letter-spacing: 0.5px; } -/* line 4997, ../../../scss/_app_styles.scss */ +/* line 5024, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 5005, ../../../scss/_app_styles.scss */ +/* line 5032, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 5011, ../../../scss/_app_styles.scss */ +/* line 5038, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 5022, ../../../scss/_app_styles.scss */ + /* line 5049, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 5024, ../../../scss/_app_styles.scss */ + /* line 5051, ../../../scss/_app_styles.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 5031, ../../../scss/_app_styles.scss */ + /* line 5058, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -28319,32 +28343,32 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { line-height: 52px; border-left-width: 0px; } - /* line 5038, ../../../scss/_app_styles.scss */ + /* line 5065, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5044, ../../../scss/_app_styles.scss */ + /* line 5071, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5052, ../../../scss/_app_styles.scss */ + /* line 5079, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 5062, ../../../scss/_app_styles.scss */ + /* line 5089, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 5071, ../../../scss/_app_styles.scss */ + /* line 5098, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 5078, ../../../scss/_app_styles.scss */ + /* line 5105, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; @@ -28359,7 +28383,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { /** * Sass styles related to unit cards */ -/* line 5105, ../../../scss/_app_styles.scss */ +/* line 5132, ../../../scss/_app_styles.scss */ .unit_card { width: 300px; color: #000; @@ -28371,7 +28395,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { position: relative; height: 210px; } -/* line 5119, ../../../scss/_app_styles.scss */ +/* line 5146, ../../../scss/_app_styles.scss */ .unit_card .unit_status { position: absolute; right: 0px; @@ -28382,11 +28406,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-radius: 3px; letter-spacing: 0.6px; } -/* line 5130, ../../../scss/_app_styles.scss */ +/* line 5157, ../../../scss/_app_styles.scss */ .unit_card .unit_header { display: table; } -/* line 5132, ../../../scss/_app_styles.scss */ +/* line 5159, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_banner { display: table-cell; border-radius: 5px; @@ -28395,7 +28419,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-right: 10px; color: #333333; } -/* line 5140, ../../../scss/_app_styles.scss */ +/* line 5167, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_title { display: table-cell; font-size: 20px; @@ -28409,7 +28433,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { vertical-align: middle; color: #333333; } -/* line 5154, ../../../scss/_app_styles.scss */ +/* line 5181, ../../../scss/_app_styles.scss */ .unit_card .unit_desc { display: block; /* Fallback for non-webkit */ @@ -28426,16 +28450,16 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin: 10px 0px 20px; color: #333333; } -/* line 5170, ../../../scss/_app_styles.scss */ +/* line 5197, ../../../scss/_app_styles.scss */ .unit_card .unit_breif .unit_breif_row i { margin-right: 10px; color: #99aaba; } -/* line 5176, ../../../scss/_app_styles.scss */ +/* line 5203, ../../../scss/_app_styles.scss */ .unit_card .unit_actions { padding: 5px 0px; } -/* line 5181, ../../../scss/_app_styles.scss */ +/* line 5208, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol { background: #a2238d; height: 37px; @@ -28448,11 +28472,11 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5193, ../../../scss/_app_styles.scss */ +/* line 5220, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 5198, ../../../scss/_app_styles.scss */ +/* line 5225, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics { color: #a2238d; font-weight: 500; @@ -28460,7 +28484,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.3px; border-bottom: 2px solid #a2238d; } -/* line 5206, ../../../scss/_app_styles.scss */ +/* line 5233, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics-points { background: #ffffff; color: #a2238d; @@ -28471,7 +28495,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { font-weight: bold; cursor: default; } -/* line 5217, ../../../scss/_app_styles.scss */ +/* line 5244, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit { height: 37px; text-align: center; @@ -28480,13 +28504,13 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5225, ../../../scss/_app_styles.scss */ +/* line 5252, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit:hover { border-bottom: 2px solid #ffc14e; } /* unit cards labels */ -/* line 5235, ../../../scss/_app_styles.scss */ +/* line 5262, ../../../scss/_app_styles.scss */ .status-completed { width: auto; top: -1.15em; @@ -28503,7 +28527,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5251, ../../../scss/_app_styles.scss */ +/* line 5278, ../../../scss/_app_styles.scss */ .status-in-progress { width: auto; top: -1.15em; @@ -28520,7 +28544,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5268, ../../../scss/_app_styles.scss */ +/* line 5295, ../../../scss/_app_styles.scss */ .status-upcoming { width: auto; top: -1.15em; @@ -28537,7 +28561,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5285, ../../../scss/_app_styles.scss */ +/* line 5312, ../../../scss/_app_styles.scss */ .status-draft { width: auto; top: -1.15em; @@ -28554,48 +28578,65 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { letter-spacing: 0.4px; } -/* line 5302, ../../../scss/_app_styles.scss */ +/* line 5330, ../../../scss/_app_styles.scss */ +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family: OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + background-color: #000000b8; + letter-spacing: 0.4px; +} + +/* line 5347, ../../../scss/_app_styles.scss */ .icon-widget { font-size: 24px; } /* module detail css */ -/* line 5311, ../../../scss/_app_styles.scss */ +/* line 5356, ../../../scss/_app_styles.scss */ .thumbnail_style { margin-top: -30px; margin-left: -30px; } -/* line 5316, ../../../scss/_app_styles.scss */ +/* line 5361, ../../../scss/_app_styles.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 5322, ../../../scss/_app_styles.scss */ +/* line 5367, ../../../scss/_app_styles.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); margin-top: -29px; padding-left: 10px; } -/* line 5326, ../../../scss/_app_styles.scss */ +/* line 5371, ../../../scss/_app_styles.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 5336, ../../../scss/_app_styles.scss */ +/* line 5381, ../../../scss/_app_styles.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 5341, ../../../scss/_app_styles.scss */ +/* line 5386, ../../../scss/_app_styles.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 5344, ../../../scss/_app_styles.scss */ +/* line 5389, ../../../scss/_app_styles.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28609,7 +28650,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 5361, ../../../scss/_app_styles.scss */ +/* line 5406, ../../../scss/_app_styles.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -28623,7 +28664,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { } /* Creating and editing course Structure */ -/* line 5378, ../../../scss/_app_styles.scss */ +/* line 5423, ../../../scss/_app_styles.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -28634,34 +28675,34 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 5387, ../../../scss/_app_styles.scss */ +/* line 5432, ../../../scss/_app_styles.scss */ .group_tile:hover { opacity: 0.7; } -/* line 5390, ../../../scss/_app_styles.scss */ +/* line 5435, ../../../scss/_app_styles.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 5397, ../../../scss/_app_styles.scss */ +/* line 5442, ../../../scss/_app_styles.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 5404, ../../../scss/_app_styles.scss */ +/* line 5449, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 5407, ../../../scss/_app_styles.scss */ +/* line 5452, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 5410, ../../../scss/_app_styles.scss */ +/* line 5455, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -28669,15 +28710,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 5418, ../../../scss/_app_styles.scss */ +/* line 5463, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 5422, ../../../scss/_app_styles.scss */ +/* line 5467, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 5424, ../../../scss/_app_styles.scss */ +/* line 5469, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -28688,38 +28729,37 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 5434, ../../../scss/_app_styles.scss */ +/* line 5479, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 5439, ../../../scss/_app_styles.scss */ +/* line 5484, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 5445, ../../../scss/_app_styles.scss */ +/* line 5490, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 5452, ../../../scss/_app_styles.scss */ +/* line 5497, ../../../scss/_app_styles.scss */ .max-width { max-width: 100%; } -/* line 5458, ../../../scss/_app_styles.scss */ +/* line 5503, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; - height: 200px; overflow-y: auto; background: url("/static/ndf/images/course-cover.png") no-repeat; background-size: 100% 100%; margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 5467, ../../../scss/_app_styles.scss */ +/* line 5512, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -28736,7 +28776,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 5480, ../../../scss/_app_styles.scss */ +/* line 5525, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -28746,29 +28786,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 5489, ../../../scss/_app_styles.scss */ +/* line 5534, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 5494, ../../../scss/_app_styles.scss */ +/* line 5539, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background-color: #ffffff; } -/* line 5499, ../../../scss/_app_styles.scss */ +/* line 5544, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { - min-height: 100%; background-color: #fff; - margin-bottom: -180px; + margin-bottom: 100px; margin-top: -1px; } -/* line 5505, ../../../scss/_app_styles.scss */ +/* line 5550, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 5509, ../../../scss/_app_styles.scss */ +/* line 5554, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -28781,7 +28820,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 5522, ../../../scss/_app_styles.scss */ +/* line 5567, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -28796,7 +28835,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Unit_Structure styles */ -/* line 5540, ../../../scss/_app_styles.scss */ +/* line 5585, ../../../scss/_app_styles.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -28804,12 +28843,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 5548, ../../../scss/_app_styles.scss */ +/* line 5593, ../../../scss/_app_styles.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 5552, ../../../scss/_app_styles.scss */ +/* line 5597, ../../../scss/_app_styles.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -28817,17 +28856,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 5558, ../../../scss/_app_styles.scss */ +/* line 5603, ../../../scss/_app_styles.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 5564, ../../../scss/_app_styles.scss */ +/* line 5609, ../../../scss/_app_styles.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 5569, ../../../scss/_app_styles.scss */ +/* line 5614, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28837,25 +28876,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 5578, ../../../scss/_app_styles.scss */ +/* line 5623, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5582, ../../../scss/_app_styles.scss */ +/* line 5627, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 5587, ../../../scss/_app_styles.scss */ +/* line 5632, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 5596, ../../../scss/_app_styles.scss */ +/* line 5641, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -28864,7 +28903,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5603, ../../../scss/_app_styles.scss */ +/* line 5648, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -28873,15 +28912,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 5612, ../../../scss/_app_styles.scss */ +/* line 5657, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 5617, ../../../scss/_app_styles.scss */ +/* line 5662, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 5620, ../../../scss/_app_styles.scss */ +/* line 5665, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -28889,21 +28928,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 5630, ../../../scss/_app_styles.scss */ +/* line 5675, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 5636, ../../../scss/_app_styles.scss */ +/* line 5681, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 5644, ../../../scss/_app_styles.scss */ +/* line 5689, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 5646, ../../../scss/_app_styles.scss */ +/* line 5691, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -28912,7 +28951,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5653, ../../../scss/_app_styles.scss */ +/* line 5698, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -28920,11 +28959,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5662, ../../../scss/_app_styles.scss */ +/* line 5707, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 5671, ../../../scss/_app_styles.scss */ +/* line 5716, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -28936,49 +28975,49 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 5681, ../../../scss/_app_styles.scss */ +/* line 5726, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 5687, ../../../scss/_app_styles.scss */ +/* line 5732, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 5690, ../../../scss/_app_styles.scss */ +/* line 5735, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 5699, ../../../scss/_app_styles.scss */ +/* line 5744, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 5704, ../../../scss/_app_styles.scss */ +/* line 5749, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 5708, ../../../scss/_app_styles.scss */ +/* line 5753, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 5710, ../../../scss/_app_styles.scss */ +/* line 5755, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 5713, ../../../scss/_app_styles.scss */ +/* line 5758, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 5719, ../../../scss/_app_styles.scss */ +/* line 5764, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -28986,29 +29025,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 15px 5px; cursor: pointer; } -/* line 5734, ../../../scss/_app_styles.scss */ +/* line 5779, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 5742, ../../../scss/_app_styles.scss */ +/* line 5787, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 5748, ../../../scss/_app_styles.scss */ +/* line 5793, ../../../scss/_app_styles.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 5757, ../../../scss/_app_styles.scss */ +/* line 5802, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 5762, ../../../scss/_app_styles.scss */ +/* line 5807, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29016,28 +29055,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 5769, ../../../scss/_app_styles.scss */ +/* line 5814, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5774, ../../../scss/_app_styles.scss */ +/* line 5819, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5779, ../../../scss/_app_styles.scss */ +/* line 5824, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 5781, ../../../scss/_app_styles.scss */ +/* line 5826, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 5785, ../../../scss/_app_styles.scss */ +/* line 5830, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -29049,21 +29088,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; border-radius: 3px; } -/* line 5796, ../../../scss/_app_styles.scss */ +/* line 5841, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 5801, ../../../scss/_app_styles.scss */ +/* line 5846, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 5807, ../../../scss/_app_styles.scss */ +/* line 5852, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 5813, ../../../scss/_app_styles.scss */ +/* line 5858, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -29071,19 +29110,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 5820, ../../../scss/_app_styles.scss */ +/* line 5865, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 5827, ../../../scss/_app_styles.scss */ +/* line 5872, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5838, ../../../scss/_app_styles.scss */ +/* line 5883, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -29094,7 +29133,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 5855, ../../../scss/_app_styles.scss */ +/* line 5900, ../../../scss/_app_styles.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -29109,66 +29148,66 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* lesspn listing LMS */ -/* line 5871, ../../../scss/_app_styles.scss */ +/* line 5916, ../../../scss/_app_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 5879, ../../../scss/_app_styles.scss */ +/* line 5924, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 5882, ../../../scss/_app_styles.scss */ +/* line 5927, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 5884, ../../../scss/_app_styles.scss */ +/* line 5929, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 5891, ../../../scss/_app_styles.scss */ +/* line 5936, ../../../scss/_app_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 5893, ../../../scss/_app_styles.scss */ +/* line 5938, ../../../scss/_app_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 5898, ../../../scss/_app_styles.scss */ +/* line 5943, ../../../scss/_app_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 5906, ../../../scss/_app_styles.scss */ +/* line 5951, ../../../scss/_app_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5912, ../../../scss/_app_styles.scss */ +/* line 5957, ../../../scss/_app_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 5919, ../../../scss/_app_styles.scss */ +/* line 5964, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 5922, ../../../scss/_app_styles.scss */ +/* line 5967, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 5925, ../../../scss/_app_styles.scss */ +/* line 5970, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 5928, ../../../scss/_app_styles.scss */ +/* line 5973, ../../../scss/_app_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; @@ -29178,23 +29217,23 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Styling for the Secondary header 2 */ -/* line 5947, ../../../scss/_app_styles.scss */ +/* line 5992, ../../../scss/_app_styles.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 5950, ../../../scss/_app_styles.scss */ +/* line 5995, ../../../scss/_app_styles.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 5958, ../../../scss/_app_styles.scss */ +/* line 6003, ../../../scss/_app_styles.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 5967, ../../../scss/_app_styles.scss */ +/* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { position: relative; color: #fff; @@ -29205,56 +29244,56 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: -2px; border-right: 1px solid white; } -/* line 5976, ../../../scss/_app_styles.scss */ +/* line 6021, ../../../scss/_app_styles.scss */ .activity_player_header .header_title a { color: #ffc14f; } @media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 5967, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 938px); } } @media only screen and (min-device-width: 2131px) { - /* line 5967, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 970px); } } @media only screen and (max-device-width: 1024px) { - /* line 5967, ../../../scss/_app_styles.scss */ + /* line 6012, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 753px); } } -/* line 6053, ../../../scss/_app_styles.scss */ +/* line 6098, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon { font-size: 16px; line-height: 45px; color: #ffc14f; } -/* line 6059, ../../../scss/_app_styles.scss */ +/* line 6104, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 6065, ../../../scss/_app_styles.scss */ +/* line 6110, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 10px; } @media screen and (min-width: 1025px) { - /* line 6065, ../../../scss/_app_styles.scss */ + /* line 6110, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 15px; } } @media screen and (min-width: 1025px) { - /* line 6072, ../../../scss/_app_styles.scss */ + /* line 6117, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { float: right; margin-right: 70px; @@ -29262,73 +29301,73 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media screen and (max-width: 1024px) { - /* line 6072, ../../../scss/_app_styles.scss */ + /* line 6117, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { background-color: rgba(107, 0, 84, 0.97); } } -/* line 6085, ../../../scss/_app_styles.scss */ +/* line 6130, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6091, ../../../scss/_app_styles.scss */ +/* line 6136, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block { padding: 0px 15px; margin-left: -2px; border-right: 1px solid white; } -/* line 6095, ../../../scss/_app_styles.scss */ +/* line 6140, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block a { color: #ffc14f; } -/* line 6101, ../../../scss/_app_styles.scss */ +/* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 9px; } @media screen and (min-width: 1025px) { - /* line 6101, ../../../scss/_app_styles.scss */ + /* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 15px; } } -/* line 6109, ../../../scss/_app_styles.scss */ +/* line 6154, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 7px; } @media screen and (min-width: 1025px) { - /* line 6109, ../../../scss/_app_styles.scss */ + /* line 6154, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 15px; } } -/* line 6118, ../../../scss/_app_styles.scss */ +/* line 6163, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 6121, ../../../scss/_app_styles.scss */ +/* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button i { color: #71318b; } -/* line 6127, ../../../scss/_app_styles.scss */ +/* line 6172, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 6131, ../../../scss/_app_styles.scss */ +/* line 6176, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 6137, ../../../scss/_app_styles.scss */ +/* line 6182, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .pagination:not(i) { color: #a983b9; } -/* line 6145, ../../../scss/_app_styles.scss */ +/* line 6190, ../../../scss/_app_styles.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -29336,29 +29375,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 6152, ../../../scss/_app_styles.scss */ +/* line 6197, ../../../scss/_app_styles.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 6156, ../../../scss/_app_styles.scss */ +/* line 6201, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6162, ../../../scss/_app_styles.scss */ +/* line 6207, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6168, ../../../scss/_app_styles.scss */ +/* line 6213, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 6173, ../../../scss/_app_styles.scss */ +/* line 6218, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29368,25 +29407,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 6182, ../../../scss/_app_styles.scss */ +/* line 6227, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6186, ../../../scss/_app_styles.scss */ +/* line 6231, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6191, ../../../scss/_app_styles.scss */ +/* line 6236, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6200, ../../../scss/_app_styles.scss */ +/* line 6245, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29395,7 +29434,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6207, ../../../scss/_app_styles.scss */ +/* line 6252, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29404,15 +29443,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 6216, ../../../scss/_app_styles.scss */ +/* line 6261, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6221, ../../../scss/_app_styles.scss */ +/* line 6266, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6224, ../../../scss/_app_styles.scss */ +/* line 6269, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29420,21 +29459,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 6234, ../../../scss/_app_styles.scss */ +/* line 6279, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6240, ../../../scss/_app_styles.scss */ +/* line 6285, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6248, ../../../scss/_app_styles.scss */ +/* line 6293, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6250, ../../../scss/_app_styles.scss */ +/* line 6295, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29443,7 +29482,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6257, ../../../scss/_app_styles.scss */ +/* line 6302, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29451,11 +29490,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6266, ../../../scss/_app_styles.scss */ +/* line 6311, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6275, ../../../scss/_app_styles.scss */ +/* line 6320, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29467,48 +29506,48 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 6285, ../../../scss/_app_styles.scss */ +/* line 6330, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6290, ../../../scss/_app_styles.scss */ +/* line 6335, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6293, ../../../scss/_app_styles.scss */ +/* line 6338, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6302, ../../../scss/_app_styles.scss */ +/* line 6347, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6307, ../../../scss/_app_styles.scss */ +/* line 6352, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6311, ../../../scss/_app_styles.scss */ +/* line 6356, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6313, ../../../scss/_app_styles.scss */ +/* line 6358, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6316, ../../../scss/_app_styles.scss */ +/* line 6361, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6322, ../../../scss/_app_styles.scss */ +/* line 6367, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29517,7 +29556,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; } -/* line 6340, ../../../scss/_app_styles.scss */ +/* line 6385, ../../../scss/_app_styles.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -29525,26 +29564,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 10px; padding-right: 4px; } -/* line 6346, ../../../scss/_app_styles.scss */ +/* line 6391, ../../../scss/_app_styles.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 6351, ../../../scss/_app_styles.scss */ +/* line 6396, ../../../scss/_app_styles.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6357, ../../../scss/_app_styles.scss */ +/* line 6402, ../../../scss/_app_styles.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 6363, ../../../scss/_app_styles.scss */ +/* line 6408, ../../../scss/_app_styles.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29554,29 +29593,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 6372, ../../../scss/_app_styles.scss */ +/* line 6417, ../../../scss/_app_styles.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 6376, ../../../scss/_app_styles.scss */ +/* line 6421, ../../../scss/_app_styles.scss */ .activity-title > li > a { color: black; } -/* line 6385, ../../../scss/_app_styles.scss */ +/* line 6430, ../../../scss/_app_styles.scss */ .activity_page_rendered { margin-left: 20px; max-width: 900px; } /* Rating css */ -/* line 6393, ../../../scss/_app_styles.scss */ +/* line 6438, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 6395, ../../../scss/_app_styles.scss */ +/* line 6440, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -29584,19 +29623,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { unicode-bidi: bidi-override; direction: rtl; } -/* line 6403, ../../../scss/_app_styles.scss */ +/* line 6448, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 6405, ../../../scss/_app_styles.scss */ +/* line 6450, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 6411, ../../../scss/_app_styles.scss */ +/* line 6456, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 6413, ../../../scss/_app_styles.scss */ +/* line 6458, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -29609,7 +29648,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0; vertical-align: bottom; } -/* line 6425, ../../../scss/_app_styles.scss */ +/* line 6470, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -29617,32 +29656,32 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* WHITE STAR */ color: #888; } -/* line 6432, ../../../scss/_app_styles.scss */ +/* line 6477, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 6443, ../../../scss/_app_styles.scss */ +/* line 6488, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 6450, ../../../scss/_app_styles.scss */ +/* line 6495, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 6458, ../../../scss/_app_styles.scss */ +/* line 6503, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 6463, ../../../scss/_app_styles.scss */ +/* line 6508, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -29651,29 +29690,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-shadow: 0 0 1px #333; } -/* line 6473, ../../../scss/_app_styles.scss */ +/* line 6518, ../../../scss/_app_styles.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 6477, ../../../scss/_app_styles.scss */ +/* line 6522, ../../../scss/_app_styles.scss */ .input_links { margin-left: 10px; } -/* line 6479, ../../../scss/_app_styles.scss */ +/* line 6524, ../../../scss/_app_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 6485, ../../../scss/_app_styles.scss */ +/* line 6530, ../../../scss/_app_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 6493, ../../../scss/_app_styles.scss */ +/* line 6538, ../../../scss/_app_styles.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -29682,19 +29721,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 6502, ../../../scss/_app_styles.scss */ +/* line 6547, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 6507, ../../../scss/_app_styles.scss */ +/* line 6552, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 6513, ../../../scss/_app_styles.scss */ +/* line 6558, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -29702,12 +29741,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; margin-left: 12%; } -/* line 6521, ../../../scss/_app_styles.scss */ +/* line 6566, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 6527, ../../../scss/_app_styles.scss */ +/* line 6572, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -29716,21 +29755,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: none; color: #8E8E8E; } -/* line 6536, ../../../scss/_app_styles.scss */ +/* line 6581, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 6541, ../../../scss/_app_styles.scss */ +/* line 6586, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 6543, ../../../scss/_app_styles.scss */ +/* line 6588, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 6546, ../../../scss/_app_styles.scss */ +/* line 6591, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -29741,24 +29780,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #757575; margin-right: 20px; } -/* line 6556, ../../../scss/_app_styles.scss */ +/* line 6601, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 6560, ../../../scss/_app_styles.scss */ +/* line 6605, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 6563, ../../../scss/_app_styles.scss */ +/* line 6608, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 6568, ../../../scss/_app_styles.scss */ +/* line 6613, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 6572, ../../../scss/_app_styles.scss */ +/* line 6617, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -29770,7 +29809,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; color: #222222; } -/* line 6583, ../../../scss/_app_styles.scss */ +/* line 6628, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -29778,15 +29817,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 8px; top: 4px; } -/* line 6591, ../../../scss/_app_styles.scss */ +/* line 6636, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 6593, ../../../scss/_app_styles.scss */ +/* line 6638, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 6596, ../../../scss/_app_styles.scss */ +/* line 6641, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -29796,25 +29835,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { letter-spacing: 0.8px; color: #999999; } -/* line 6605, ../../../scss/_app_styles.scss */ +/* line 6650, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 6611, ../../../scss/_app_styles.scss */ +/* line 6656, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 6620, ../../../scss/_app_styles.scss */ +/* line 6665, ../../../scss/_app_styles.scss */ .icon-color { color: #2e3f51 !important; padding: right; } /* The asset tile */ -/* line 6630, ../../../scss/_app_styles.scss */ +/* line 6675, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29824,7 +29863,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 6639, ../../../scss/_app_styles.scss */ +/* line 6684, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -29841,7 +29880,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 6652, ../../../scss/_app_styles.scss */ +/* line 6697, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -29851,28 +29890,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 6661, ../../../scss/_app_styles.scss */ +/* line 6706, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 6666, ../../../scss/_app_styles.scss */ +/* line 6711, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 6671, ../../../scss/_app_styles.scss */ +/* line 6716, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 6677, ../../../scss/_app_styles.scss */ +/* line 6722, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 6681, ../../../scss/_app_styles.scss */ +/* line 6726, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -29885,7 +29924,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 6694, ../../../scss/_app_styles.scss */ +/* line 6739, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -29899,7 +29938,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 6709, ../../../scss/_app_styles.scss */ +/* line 6754, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -29908,22 +29947,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6718, ../../../scss/_app_styles.scss */ +/* line 6763, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6725, ../../../scss/_app_styles.scss */ +/* line 6770, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6731, ../../../scss/_app_styles.scss */ +/* line 6776, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6733, ../../../scss/_app_styles.scss */ +/* line 6778, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -29932,15 +29971,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6740, ../../../scss/_app_styles.scss */ +/* line 6785, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6744, ../../../scss/_app_styles.scss */ +/* line 6789, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6750, ../../../scss/_app_styles.scss */ +/* line 6795, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -29949,7 +29988,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6761, ../../../scss/_app_styles.scss */ +/* line 6806, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -29958,24 +29997,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6770, ../../../scss/_app_styles.scss */ +/* line 6815, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6777, ../../../scss/_app_styles.scss */ +/* line 6822, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 6782, ../../../scss/_app_styles.scss */ +/* line 6827, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 6786, ../../../scss/_app_styles.scss */ +/* line 6831, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -29986,14 +30025,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 6796, ../../../scss/_app_styles.scss */ +/* line 6841, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 6803, ../../../scss/_app_styles.scss */ + /* line 6848, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30001,7 +30040,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6812, ../../../scss/_app_styles.scss */ + /* line 6857, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30009,7 +30048,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6819, ../../../scss/_app_styles.scss */ + /* line 6864, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30017,14 +30056,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6826, ../../../scss/_app_styles.scss */ + /* line 6871, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 6834, ../../../scss/_app_styles.scss */ +/* line 6879, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30039,14 +30078,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6850, ../../../scss/_app_styles.scss */ +/* line 6895, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 6857, ../../../scss/_app_styles.scss */ + /* line 6902, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30057,7 +30096,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6868, ../../../scss/_app_styles.scss */ + /* line 6913, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30068,7 +30107,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6879, ../../../scss/_app_styles.scss */ + /* line 6924, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30079,7 +30118,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6890, ../../../scss/_app_styles.scss */ + /* line 6935, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30089,7 +30128,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6901, ../../../scss/_app_styles.scss */ +/* line 6946, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30104,14 +30143,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6917, ../../../scss/_app_styles.scss */ +/* line 6962, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 6924, ../../../scss/_app_styles.scss */ + /* line 6969, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30122,7 +30161,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6935, ../../../scss/_app_styles.scss */ + /* line 6980, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30133,7 +30172,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6946, ../../../scss/_app_styles.scss */ + /* line 6991, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30144,7 +30183,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6957, ../../../scss/_app_styles.scss */ + /* line 7002, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30154,11 +30193,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6968, ../../../scss/_app_styles.scss */ +/* line 7013, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 6970, ../../../scss/_app_styles.scss */ +/* line 7015, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30167,11 +30206,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6978, ../../../scss/_app_styles.scss */ +/* line 7023, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 6984, ../../../scss/_app_styles.scss */ +/* line 7029, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30180,7 +30219,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6995, ../../../scss/_app_styles.scss */ +/* line 7040, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30191,22 +30230,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7005, ../../../scss/_app_styles.scss */ +/* line 7050, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7008, ../../../scss/_app_styles.scss */ +/* line 7053, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7013, ../../../scss/_app_styles.scss */ +/* line 7058, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7024, ../../../scss/_app_styles.scss */ +/* line 7069, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30217,26 +30256,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7034, ../../../scss/_app_styles.scss */ +/* line 7079, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7037, ../../../scss/_app_styles.scss */ +/* line 7082, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7041, ../../../scss/_app_styles.scss */ +/* line 7086, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7047, ../../../scss/_app_styles.scss */ +/* line 7092, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7049, ../../../scss/_app_styles.scss */ +/* line 7094, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30245,7 +30284,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7058, ../../../scss/_app_styles.scss */ +/* line 7103, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30254,7 +30293,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7072, ../../../scss/_app_styles.scss */ +/* line 7117, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -30264,20 +30303,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Asset detail */ -/* line 7083, ../../../scss/_app_styles.scss */ +/* line 7128, ../../../scss/_app_styles.scss */ .overlay-head { background-color: #fff; height: 60px; margin-bottom: 20px; } -/* line 7089, ../../../scss/_app_styles.scss */ +/* line 7134, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7094, ../../../scss/_app_styles.scss */ +/* line 7139, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30291,13 +30330,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7106, ../../../scss/_app_styles.scss */ +/* line 7151, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7113, ../../../scss/_app_styles.scss */ +/* line 7158, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30309,7 +30348,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7124, ../../../scss/_app_styles.scss */ +/* line 7169, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30317,13 +30356,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7133, ../../../scss/_app_styles.scss */ +/* line 7178, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7141, ../../../scss/_app_styles.scss */ +/* line 7186, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30341,12 +30380,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7157, ../../../scss/_app_styles.scss */ +/* line 7202, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7162, ../../../scss/_app_styles.scss */ +/* line 7207, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30358,13 +30397,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7172, ../../../scss/_app_styles.scss */ +/* line 7217, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7180, ../../../scss/_app_styles.scss */ +/* line 7225, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30381,843 +30420,144 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7195, ../../../scss/_app_styles.scss */ +/* line 7240, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* create units */ -/* line 7208, ../../../scss/_app_styles.scss */ -.course_creator_header { +/* line 7251, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner { width: 100%; - height: 50px; - background: #fff; - padding: 5px 15px; - box-shadow: 1px 0px 0px #000; + height: 200px; + background-image: url("/static/ndf/images/mydesk_banner.png"); + background-size: 100% 100%; + position: relative; } -/* line 7215, ../../../scss/_app_styles.scss */ -.course_creator_header .unit_editor { +/* line 7258, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner:before { + content: ' '; + background-color: rgba(0, 0, 0, 0.1); + opacity: .5; width: 100%; - height: 320px; - background: #fff; - padding: 5px 15px; - box-shadow: 1px 0px 0px #000; -} -/* line 7224, ../../../scss/_app_styles.scss */ -.course_creator_header .back_to_group { - padding: 0px 15px 0px 10px; - border-right: 1px solid #ccc; - margin-right: 15px; -} -/* line 7230, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading_unit { - width: 500px; - height: 40px; - border: 1px solid #74b3dc; - box-shadow: none; - float: right; - text-align: center; -} -/* line 7239, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading_unit:focus { - border: 1px solid #74b3dc; -} -/* line 7243, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading_unit::-webkit-input-placeholder - { - color: #d9dfe4; - letter-spacing: 0.8px; -} -/* line 7251, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading_unit select { - font-size: 14px; - font-family: 'OpenSans-Regular', sans-serif; - color: gray; - border: 0px solid #74b3dc; -} -/* line 7260, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading input { - width: 500px; - height: 40px; - border: 0px solid #74b3dc; - box-shadow: none; - float: right; - text-align: center; -} -/* line 7268, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading input:focus { - border: 1px solid #74b3dc; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 10; + box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } /* line 7272, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading input::-webkit-input-placeholder - { - color: #d9dfe4; - letter-spacing: 0.8px; +.mydesk_page .page_banner .banner_profile { + position: absolute; + bottom: 30px; + left: 40px; } -/* line 7282, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading h5 { - margin-top: 15px; +/* line 7277, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo { + display: inline-block; + margin-right: 10px; + height: 100px; + border-radius: 5px; + overflow: hidden; + background-color: #fff; } -/* line 7287, ../../../scss/_app_styles.scss */ -.course_creator_header .course_heading span { - letter-spacing: 0.9px; - font-weight: 600; - line-height: 50px; +/* line 7285, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg { + height: 100px; + width: 100px; } -/* line 7295, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions ul { - margin: 0px; +/* line 7290, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .buddy_logo svg path { + fill: #7a422a; } -/* line 7298, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions ul li { - list-style-type: none; +/* line 7295, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading { + color: #fff; display: inline-block; - padding: 12px; - color: #7ca0d0; - cursor: pointer; - letter-spacing: 0.8px; + vertical-align: top; } -/* line 7307, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { - border-bottom: 3px solid #ffc14e; +/* line 7300, ../../../scss/_app_styles.scss */ +.mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { + font-size: 23px; + display: block; + margin-bottom: 10px; } -/* line 7312, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions span { - margin-right: 5px; - background: rgba(0, 0, 0, 0.6); - border: 1px solid rgba(255, 255, 255, 0.7); - padding: 1px 8px; - color: #fff; - font-size: 12px; - margin: 0px 10px 0px 0px; - cursor: pointer; - border-radius: 3px; +/* line 7308, ../../../scss/_app_styles.scss */ +.mydesk_page .page_menu { + border-bottom: 1px solid #e5e5e5; } -/* line 7324, ../../../scss/_app_styles.scss */ -.course_creator_header .course_actions i { - margin-right: 5px; - background: rgba(0, 0, 0, 0.6); - border: 1px solid rgba(255, 255, 255, 0.7); - padding: 1px 8px; - color: #fff; - font-size: 12px; - margin: 0px 10px 0px 0px; - cursor: pointer; - border-radius: 3px; +/* line 7312, ../../../scss/_app_styles.scss */ +.mydesk_page .page_menu li > a { + padding: 12px 20px 9px; } -/* line 7342, ../../../scss/_app_styles.scss */ -.create_unit { - background: #fff; - box-shadow: 0px 2px 3px #000; - margin: 10px auto; - padding: 10px; +/* line 7322, ../../../scss/_app_styles.scss */ +.lms_explore_back_unit { + background-color: #fff; + margin-top: -19.3px; } -/* line 7350, ../../../scss/_app_styles.scss */ -.button-hollow-black { - background: #fff; - border: 2px solid #164A7B; - border-radius: 5px; - color: #164A7B; - font-weight: 600; - letter-spacing: 0.9px; - padding: 2px 10px; +/* line 7329, ../../../scss/_app_styles.scss */ +.course-students-data { + margin: 2px 2px 2px 2px; + border: 2px solid #164a7b; + padding: 19px 14px 0px 5px; +} +/* line 7336, ../../../scss/_app_styles.scss */ +.course-students-data .students-table-legends > span:nth-child(odd) { + margin: 0px 10px; +} +/* line 7339, ../../../scss/_app_styles.scss */ +.course-students-data .students-table-legends > span:nth-child(even) { + display: inline-block; + vertical-align: top; + margin-right: 10px; } -/* line 7360, ../../../scss/_app_styles.scss */ -.vertically-center { - top: 50%; - transform: translateY(-50%); +/* line 7347, ../../../scss/_app_styles.scss */ +.badge_ex { + display: inline-block; + line-height: 22px; + height: 22px; + font-weight: bolder; + padding: 0px 7px; + /*font-family: Arial, sans-serif;*/ + color: white; + text-shadow: 0 1px rgba(0, 0, 0, 0.25); + border: 1px solid; + border-radius: 18px; + -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7369, ../../../scss/_app_styles.scss */ -.top-bar-second, .top-bar-second .name { - height: 52px; - background: #ddeff9; - color: #719dc9; - margin-bottom: 30px; +/* line 7366, ../../../scss/_app_styles.scss */ +.badge_ex.green { + background: #77cc51; + border-color: #59ad33; + background-image: -webkit-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -moz-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -o-linear-gradient(top, #a5dd8c, #77cc51); + background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7379, ../../../scss/_app_styles.scss */ -.top-bar-second .title-area { - box-shadow: 0px 0.6px 3px #000; - z-index: 20; - width: 100%; +/* line 7375, ../../../scss/_app_styles.scss */ +.badge_ex.yellow { + background: #faba3e; + border-color: #f4a306; + background-image: -webkit-linear-gradient(top, #fcd589, #faba3e); + background-image: -moz-linear-gradient(top, #fcd589, #faba3e); + background-image: -o-linear-gradient(top, #fcd589, #faba3e); + background-image: linear-gradient(to bottom, #fcd589, #faba3e); } + /* line 7384, ../../../scss/_app_styles.scss */ -.top-bar-second .name { - text-align: center; -} -/* line 7387, ../../../scss/_app_styles.scss */ -.top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { - position: absolute; - left: 15px; - color: #fff; - font-weight: 100; -} -/* line 7397, ../../../scss/_app_styles.scss */ -.top-bar-second li.toggle-topbar i { - color: #fff; - display: inline-block; - vertical-align: bottom; -} -/* line 7405, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section ul li { - background: #164A7B; -} -/* line 7407, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section ul li > a { - border-left: 3px solid transparent; - border-bottom: 1px solid #4b5b6b; - color: #74b3dc; - line-height: 40px; - font-weight: bold; - letter-spacing: 0.5px; -} -/* line 7418, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { - border-left-color: #ffc14e; - color: #ce7869; -} -/* line 7426, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section .dropdown li.parent-link a { - display: none; -} -/* line 7432, ../../../scss/_app_styles.scss */ -.top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { - color: #2e3f51; - background: #acd4fa; -} - -@media screen and (min-width: 40.063em) { - /* line 7443, ../../../scss/_app_styles.scss */ - .top-bar-second .title-area { - box-shadow: none; - } - /* line 7445, ../../../scss/_app_styles.scss */ - .top-bar-second .title-area .name { - text-align: right; - } - /* line 7452, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { - cursor: pointer; - background: transparent; - border-bottom: 0px; - line-height: 52px; - border-left-width: 0px; - } - /* line 7459, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { - color: #ce7869; - border-bottom: 3px solid #ffc14e; - } - /* line 7465, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { - color: #ce7869; - border-bottom: 3px solid #ffc14e; - } - /* line 7473, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { - color: #74b3dc; - border-bottom: 0px; - } - /* line 7483, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { - background: transparent; - } - /* line 7492, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { - border-left-width: 2px; - color: #74b3dc; - background: #164A7B; - } - /* line 7499, ../../../scss/_app_styles.scss */ - .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { - background: #164A7B; - color: #74b3dc; - border-bottom: 0px; - border-left-width: 2px; - /*&:hover { - color: $secondry-blue; - border-bottom: 0px; - }*/ - } -} -/* Buttons custom css */ -/* line 7520, ../../../scss/_app_styles.scss */ -.secondary-header-tabs { - color: #719dc7; - font-weight: 400; - padding: 14px 10px 3px 10px; - cursor: pointer; - transition: color 1s ease, border-color 1s ease; - -webkit-transition: color 1s ease, border-color 1s ease; - display: inline-block; -} -/* line 7529, ../../../scss/_app_styles.scss */ -.secondary-header-tabs:hover { - color: #164A7B; -} -/* line 7533, ../../../scss/_app_styles.scss */ -.secondary-header-tabs.active { - color: #164A7B; - border-bottom: 2px solid #164A7B; - padding-bottom: 14px; - font-weight: 600; -} - -/* line 7542, ../../../scss/_app_styles.scss */ -.secondary-header-button { - color: #3c556d; - font-weight: 700; - padding: 17px 0px 0px 10px; - cursor: pointer; - transition: color 1s ease, border-color 1s ease; - -webkit-transition: color 1s ease, border-color 1s ease; - display: inline-block; - text-transform: uppercase; - font-size: 13px; - letter-spacing: 1.2px; -} -/* line 7554, ../../../scss/_app_styles.scss */ -.secondary-header-button:hover { - opacity: 0.5; -} - -/* line 7561, ../../../scss/_app_styles.scss */ -.orange-button { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 5px !important; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 8px; - cursor: pointer; -} -/* line 7573, ../../../scss/_app_styles.scss */ -.orange-button:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7579, ../../../scss/_app_styles.scss */ -.pink-button { - background: #a2238d; - height: 37px; - text-align: center; - color: #ffffff; - font-size: 19px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 120px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; -} -/* line 7590, ../../../scss/_app_styles.scss */ -.pink-button:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); -} - -/* line 7595, ../../../scss/_app_styles.scss */ -.orange-button-template { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 10px; -} -/* line 7606, ../../../scss/_app_styles.scss */ -.orange-button-template:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7614, ../../../scss/_app_styles.scss */ -.orange-button-subtitle { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 10px; -} -/* line 7625, ../../../scss/_app_styles.scss */ -.orange-button-subtitle:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7632, ../../../scss/_app_styles.scss */ -.asset-unit-button { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 30px; - margin-bottom: 8px; - margin-top: 300px; -} -/* line 7643, ../../../scss/_app_styles.scss */ -.asset-unit-button:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7650, ../../../scss/_app_styles.scss */ -.disab-button { - margin-right: 10px; - background-color: #fff; - text-transform: none; - font-size: 14px; -} - -/* line 7658, ../../../scss/_app_styles.scss */ -.save-asset { - margin-top: 9px; - margin-right: -133px; -} - -/* line 7662, ../../../scss/_app_styles.scss */ -.asset-save-button { - color: #ce7869; - display: inline-block; - border: 1px solid #ce7869; - border-radius: 5px; - padding: 8px 10px; - outline: none; - white-space: nowrap; - -webkit-user-select: none; - cursor: pointer; - font-weight: 500; - color: #cc7769; - border-color: #cc7769; - float: right; - background: #fff; - margin-right: 5px; - margin-top: 5px; -} - -/* line 7682, ../../../scss/_app_styles.scss */ -.blue-white-button { - color: #fff; - background: #164A7B; - border-radius: 4px; - padding: 5px; - margin-right: 40px; - margin-top: 8px; - padding: 8px 10px; -} - -/* line 7692, ../../../scss/_app_styles.scss */ -button[disabled], .button.disabled, .button[disabled] { - background-color: #eefaff; - border-color: #eefaff; - color: gray; - cursor: default; - opacity: 0.7; - box-shadow: none; - border-radius: 4px; - margin-right: 40px; - margin-top: 8px; - padding: 8px 10px; -} - -/* line 7706, ../../../scss/_app_styles.scss */ -.button-small { - padding: 1px 5px; -} - -/* Tag styles */ -/* line 7714, ../../../scss/_app_styles.scss */ -.asset-tags-container { - width: 100%; - height: 50px; - background: #fff; - padding: 5px 15px; - margin-bottom: 65px; -} -/* line 7721, ../../../scss/_app_styles.scss */ -.asset-tags-container .tag-input-ele { - margin-left: 17px; - width: 96%; -} -/* line 7726, ../../../scss/_app_styles.scss */ -.asset-tags-container .added-tags-div { - margin-left: -206px; -} -/* line 7731, ../../../scss/_app_styles.scss */ -.asset-tags-container #add-tag-btn { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 5px !important; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 8px; - cursor: pointer; - display: inline-block; -} -/* line 7744, ../../../scss/_app_styles.scss */ -.asset-tags-container #add-tag-btn:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7754, ../../../scss/_app_styles.scss */ -.tags-container { - width: 100%; - height: 50px; - background: #fff; - padding: 5px 15px; - box-shadow: 1px 0px 0px #000; - margin-bottom: 65px; -} -/* line 7762, ../../../scss/_app_styles.scss */ -.tags-container .add-tag-heading span { - width: 40%; - color: #99aaba; - font-size: 10px; - text-transform: uppercase; - letter-spacing: 2px; - margin-top: 15px; - margin-left: 8px; - font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", "sans-serif"; -} -/* line 7773, ../../../scss/_app_styles.scss */ -.tags-container .tag-input-ele { - margin-left: 193px; - width: 54%; -} -/* line 7778, ../../../scss/_app_styles.scss */ -.tags-container .added-tags-div { - margin-left: 293px !important; - width: 54%; -} -/* line 7783, ../../../scss/_app_styles.scss */ -.tags-container #add-tag-btn { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 5px !important; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 8px; - cursor: pointer; - display: inline-block; -} -/* line 7796, ../../../scss/_app_styles.scss */ -.tags-container #add-tag-btn:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* line 7805, ../../../scss/_app_styles.scss */ -.asset-unit-button { - color: #ce7869; - padding: 7px 14px; - background: #fff; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 30px; - margin-bottom: 8px; - margin-top: 300px; -} -/* line 7816, ../../../scss/_app_styles.scss */ -.asset-unit-button:hover { - background-color: rgba(206, 120, 105, 0.2); - color: #ce7869; -} - -/* exploer back*/ -/* line 7824, ../../../scss/_app_styles.scss */ -.lms_explore_head { - width: 100%; - height: 45px; - background-color: #fff; - color: #164A7B; - margin-top: -30px; -} -/* line 7830, ../../../scss/_app_styles.scss */ -.lms_explore_head > p { - margin-left: 81px; - padding: 12px 0px 0px 1px; - font-family: OpenSans-Semibold; - font-size: 20px; -} -/* line 7836, ../../../scss/_app_styles.scss */ -.lms_explore_head > a { - padding: 12px 85px 3px 0px; -} - -/* line 7840, ../../../scss/_app_styles.scss */ -.lms_explore_head_unit { - width: 100%; - height: 50px; - background-color: #fff; - color: #164A7B; -} -/* line 7845, ../../../scss/_app_styles.scss */ -.lms_explore_head_unit > p { - margin-left: 81px; - padding: 0px 0px 0px 1px; - font-family: OpenSans-Semibold; - font-size: 20px; -} -/* line 7851, ../../../scss/_app_styles.scss */ -.lms_explore_head_unit > a { - padding: 0px 85px 3px 0px; -} - -/* line 7856, ../../../scss/_app_styles.scss */ -.lms_explore_back { - background-color: #fff; -} - -/* line 7860, ../../../scss/_app_styles.scss */ -.lms_explore_back_unit { - background-color: #fff; - margin-top: -23.3px; -} - -/** - * Sass styles related to module cards - */ -/* line 7877, ../../../scss/_app_styles.scss */ -.module_card { - display: table; - height: 290px; - width: 526px; - cursor: pointer; - margin: 10px; - border-radius: 5px; - position: relative; - box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); -} -/* line 7887, ../../../scss/_app_styles.scss */ -.module_card:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); -} -/* line 7891, ../../../scss/_app_styles.scss */ -.module_card > div { - display: table-cell; - height: 290px; -} -/* line 7896, ../../../scss/_app_styles.scss */ -.module_card .card_banner { - width: 250px; - height: 290px; - vertical-align: middle; - overflow: hidden; - background-size: 100% 100%; - border-radius: 8px 0px 0px 8px; - box-shadow: inset 0 0 5px 2px; - position: relative; - z-index: 3; - -webkit-transition: border-radius .2s; - transition: border-radius .2s; -} -/* line 7909, ../../../scss/_app_styles.scss */ -.module_card .card_banner > img { - height: 100%; - width: 100%; - border-radius: 4px; - -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); -} -/* line 7914, ../../../scss/_app_styles.scss */ -.module_card .card_banner > img:hover { - -webkit-transform: scale(1.03); - -moz-transform: scale(1.03); - -ms-transform: scale(1.03); - -o-transform: scale(1.03); - transform: scale(1.03); - opacity: 0.8; -} -/* line 7926, ../../../scss/_app_styles.scss */ -.module_card .card_banner > h4 { - position: absolute; - top: 100px; - left: 0; - width: 100%; - color: #ffffff !important; - text-shadow: 2px 0px 8px black; -} -/* line 7941, ../../../scss/_app_styles.scss */ -.module_card .card_title { - display: block; - width: 230px; - font-size: 32px; - font-weight: 600; - text-align: center; - margin: 0px auto; - letter-spacing: 1px; -} -/* line 7952, ../../../scss/_app_styles.scss */ -.module_card.animated_card .card_banner { - border-radius: 8px; -} -/* line 7955, ../../../scss/_app_styles.scss */ -.module_card.animated_card:hover .card_banner { - border-radius: 8px 0px 0px 8px; -} -/* line 7960, ../../../scss/_app_styles.scss */ -.module_card.animated_card.isOpen .card_banner { - border-radius: 8px 0px 0px 8px; -} -/* line 7964, ../../../scss/_app_styles.scss */ -.module_card.animated_card:hover .card_summary { - left: 30px; -} -/* line 7967, ../../../scss/_app_styles.scss */ -.module_card.animated_card .card_summary { - left: 5px; -} -/* line 7971, ../../../scss/_app_styles.scss */ -.module_card .card_summary { - width: 290px; - padding: 0px 15px; - vertical-align: middle; - border-style: solid; - border-width: 1px 1px 1px 0px; - border-radius: 0px 7px 7px 0px; - border-color: #d5d5d5; - box-shadow: inset 2px 0px 13px -5px; - -webkit-transition: left .4s ease-in-out; - transition: left .4s ease-in-out; - -webkit-transition-property: left; - /* Safari */ - transition-property: left; -} -/* line 7985, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_label { - font-weight: 500; - font-size: 12.5px; - letter-spacing: 1px; - color: black; -} -/* line 7991, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section { - margin: 5px 0px; - padding: 5px 0px; -} -/* line 7995, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section:not(:last-child) { - border-bottom: 1px solid #ccc; -} -/* line 7998, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section p { - margin-bottom: 7px; - font-size: 12.5px; -} -/* line 8002, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section .ellipsis { - width: 245px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} -/* line 8010, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section .module-card-enrol { - background: #a2238d; - height: 37px; - text-align: center; - color: #ffffff; - width: 172px; - font-size: 19px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 164px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; -} -/* line 8023, ../../../scss/_app_styles.scss */ -.module_card .card_summary .card_section .module-card-enrol:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); -} -/* line 8029, ../../../scss/_app_styles.scss */ -.module_card .card_summary .module_brief { - display: block; - /* Fallback for non-webkit */ - display: -webkit-box; - height: 52.5px; - /* Fallback for non-webkit */ - max-width: 400px; - overflow: hidden; - text-overflow: ellipsis; - font-size: 12.5px; - line-height: 1.4; - -webkit-line-clamp: 3; - -webkit-box-orient: vertical; - color: black; -} - -/* line 8047, ../../../scss/_app_styles.scss */ -.img-height { - height: 150px; - width: 1351px; -} - -/* - Common css - */ -/* line 8056, ../../../scss/_app_styles.scss */ -.text-button-blue { - background-color: transparent; - color: #00A9EE; - padding: 3px 10px; - font-size: 16px; - letter-spacing: 0.7px; - line-height: 25px; -} - -/* line 8068, ../../../scss/_app_styles.scss */ -.dropdown-settings { - text-align: left; - text-transform: none; - margin-top: 0px; - margin-right: 0px; - width: 198px; - background: white; - border-radius: 1px; -} -/* line 8076, ../../../scss/_app_styles.scss */ -.dropdown-settings:hover { - color: #ce7869; - border-left: 2px solid #ffc14e; -} - -/* line 8084, ../../../scss/_app_styles.scss */ -.inner { - display: inline-block !important; -} - -/* line 8089, ../../../scss/_app_styles.scss */ -.mid_label { - margin-top: 15px; - font-size: 15px; +.badge_ex.red { + background: #fa623f; + border-color: #fa5a35; + background-image: -webkit-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -o-linear-gradient(top, #fc9f8a, #fa623f); + background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); } diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss index e7796184bd..dc6ec4b80c 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss @@ -3077,12 +3077,11 @@ $course-envelop-color: #fff; .note-page { // display: none; - margin-left: 15px; background-color: #fff; padding-bottom: 30px; - .group_sections_content{ - margin-top:5px; - } + //.group_sections_content{ + // margin-top:5px; + //} .group_content{ margin-top:5px; margin-left:0px; @@ -4942,6 +4941,34 @@ ul.nav_menu_1 { } } + + + +ul.authoring-tab{ + margin-bottom: 0px; + display:inline; + width:50%; + >li { + display: inline-block; + background-color:$nav_menu_1_color; + >a{ + list-style-type: none; + margin-right:-4px; + background-color:$nav_menu_1_color; + padding: 12px 12px 9px; + cursor: pointer; + font-size: 18px; + display: inline-block; + letter-spacing: 0.8px; + border-bottom: 3px solid transparent; + color:#ffffff !important; + &.selected, &:hover{ + border-bottom: 3px solid $nav_menu_1_tab_border; + } + } + } +} + /* Secondary Top Bar */ @@ -5299,6 +5326,24 @@ $unit-card-lines-to-show: 3; letter-spacing: 0.4px; } + +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family:OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + //border: 2px solid #ffc14e; + background-color: #000000b8; + letter-spacing: 0.4px; +} + .icon-widget{ font-size:24px; @@ -5457,7 +5502,7 @@ ul.horizontal_tabs_gstudio { .group_banner { @include transition-prop(all); - height: 200px; + //height: 300px; overflow-y: auto; background: url('/static/ndf/images/course-cover.png') no-repeat; background-size: 100% 100%; @@ -5497,9 +5542,9 @@ ul.horizontal_tabs_gstudio { background-color: #ffffff; } .group_sections_content { - min-height: 100%; + // min-height: 400px; background-color: #fff; - margin-bottom: -180px; + margin-bottom: 100px; margin-top:-1px; } .top-bar-secondions_content{ @@ -7201,894 +7246,146 @@ $ah_2_background_color_hover: rgba(244, 244, 244, 0.3);; +//my desk css +.mydesk_page { + .page_banner { + width: 100%; + height: 200px; + background-image: url('/static/ndf/images/mydesk_banner.png'); + background-size: 100% 100%; + position: relative; -/* create units */ - - -.course_creator_header { - width: 100%; - height: 50px; - background: #fff; - padding: 5px 15px; - box-shadow: 1px 0px 0px #000; - - .unit_editor{ - width: 100%; - height: 320px; - background: #fff; - padding: 5px 15px; - box-shadow: 1px 0px 0px #000; - - } + &:before { + content: ' '; + background-color: rgba(0,0,0,.1); + opacity: .5; + width: 100%; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + z-index: 10; + box-shadow: inset 0 0 40px rgba(0,0,0,.2); + } - .back_to_group { - padding: 0px 15px 0px 10px; - border-right: 1px solid #ccc; - margin-right: 15px; - } + .banner_profile { + position: absolute; + bottom: 30px; + left: 40px; - .course_heading_unit{ - - width: 500px; - height: 40px; - border: 1px solid $secondry-blue; - box-shadow: none; - float: right; - text-align: center; + .buddy_logo { + display: inline-block; + margin-right: 10px; + height: 100px; + border-radius: 5px; + overflow: hidden; + background-color: #fff; - &:focus { - border: 1px solid $secondry-blue; - } + svg { - &::-webkit-input-placeholder - /*&::-moz-placeholder, - &:-ms-input-placeholder, - &:-moz-placeholder*/ { - color: #d9dfe4; - // //font-size: 20px; - letter-spacing: 0.8px; - } - select{ - font-size: 14px; - font-family: 'OpenSans-Regular', sans-serif; - color: gray; - border: 0px solid $secondry-blue; - } - } - - .course_heading { - input { - width: 500px; - height: 40px; - border: 0px solid $secondry-blue; - box-shadow: none; - float: right; - text-align: center; + height: 100px; + width: 100px; - &:focus { - border: 1px solid $secondry-blue; + path { + fill: #7a422a; + } + } } + .banner_heading { + color: #fff; + display: inline-block; + vertical-align: top; - &::-webkit-input-placeholder - /*&::-moz-placeholder, - &:-ms-input-placeholder, - &:-moz-placeholder*/ { - color: #d9dfe4; - // //font-size: 20px; - letter-spacing: 0.8px; + .buddy_name { + font-size: 23px; + display: block; + margin-bottom: 10px; + } } } - - h5{ - margin-top: 15px; - } } + .page_menu { + border-bottom: 1px solid #e5e5e5; - .course_heading span{ - letter-spacing: 0.9px; - font-weight: 600; - line-height: 50px; - // //font-size: 25px; - } - - .course_actions { - ul{ - margin: 0px; - } - ul li { - list-style-type: none; - display: inline-block; - padding: 12px; - color: #7ca0d0; - cursor: pointer; - // //font-size: 18px; - letter-spacing: 0.8px; - - &.active, &:hover { - border-bottom: 3px solid $secondary-orange; - } - } - - span { - margin-right: 5px; - background: rgba(0, 0, 0, 0.6); - border: 1px solid rgba(255, 255, 255, 0.7); - padding: 1px 8px; - color: #fff; - font-size: 12px; - margin: 0px 10px 0px 0px; - cursor: pointer; - border-radius: 3px; + li{ + >a{ + padding: 12px 20px 9px; } - i { - - margin-right: 5px; - background: rgba(0, 0, 0, 0.6); - border: 1px solid rgba(255, 255, 255, 0.7); - padding: 1px 8px; - color: #fff; - font-size: 12px; - margin: 0px 10px 0px 0px; - cursor: pointer; - border-radius: 3px; - } } } -.create_unit { - background: #fff; - box-shadow: 0px 2px 3px #000; - margin: 10px auto; - padding: 10px; - //height: calc(150vh - 100px); -} - -.button-hollow-black{ - background: #fff; - border: 2px solid $primary-blue; - border-radius: 5px; - color: $primary-blue; - font-weight: 600; - letter-spacing: 0.9px; - padding: 2px 10px; -} - -.vertically-center { - top: 50%; - transform: translateY(-50%); +.lms_explore_back_unit{ + background-color: #fff; + margin-top:-19.3px; } +//analytics for admin + .course-students-data { + margin: 2px 2px 2px 2px; + border: 2px solid #164a7b; + padding: 19px 14px 0px 5px; - -.top-bar-second, .top-bar-second .name { - height: 52px; - background:#ddeff9; - color: #719dc9; - margin-bottom:30px; - -} - - -.top-bar-second { - .title-area { - box-shadow: 0px 0.6px 3px #000; - z-index: 20; - width: 100%; + .students-table-legends { + >span:nth-child(odd) { + margin: 0px 10px; + } + >span:nth-child(even) { + display: inline-block; + vertical-align: top; + margin-right: 10px; + } } - .name { - text-align: center; + } - .close-dropdown, .side-bar-button { - position: absolute; - left: 15px; - color: #fff; - // //font-size: 35px; - font-weight: 100; - } + .badge_ex { + display: inline-block; + line-height: 22px; + height: 22px; + font-weight: bolder; + padding: 0px 7px; + /*font-family: Arial, sans-serif;*/ + color: white; + text-shadow: 0 1px rgba(0, 0, 0, 0.25); + border: 1px solid; + border-radius: 18px; + -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); + box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); + // //font-size: 1.8em; +} - } - li.toggle-topbar { - i { - color: #fff; - display: inline-block; - vertical-align: bottom; - } - } - .top-bar-second-section { - ul { - li { - background: $primary-blue; - &>a { - border-left: 3px solid transparent; - border-bottom: 1px solid #4b5b6b; - color: $secondry-blue; - line-height: 40px; - font-weight: bold; - // //font-size: 14px; - letter-spacing: 0.5px; - } - &:hover, &.active { - &>a { - border-left-color: $secondary-orange; - color: $primary-orange; - } - } - } - } - .dropdown li.parent-link a { - display: none; - } - .side-bar-menu { - .add_buddy { - i { - color: #2e3f51; - background: #acd4fa; - } - } - } - } -} - -@media screen and (min-width: 40.063em) { - .top-bar-second { - .title-area { - box-shadow: none; - .name { - text-align: right; - } - } - .top-bar-second-section{ - li { - &:not(.has-form) { - a:not(.button) { - cursor: pointer; - background: transparent; - border-bottom: 0px; - line-height: 52px; - border-left-width: 0px; - - &:hover { - color: $primary-orange; - border-bottom: 3px solid $secondary-orange; - } - } - &.active { - a:not(.button) { - color: $primary-orange; - border-bottom: 3px solid $secondary-orange; - } - } - - &.has-dropdown { - a:not(.button) { - &:hover { - color: $secondry-blue; - border-bottom: 0px; - } - } - } - - } - - &.active:not(.has-form) { - a:not(.button):hover { - background: transparent; - } - } - - } - - .dropdown { - li:not(.has-form) { - &> a:not(.button) { - border-left-width: 2px; - color: $secondry-blue; - background: $primary-blue; - } - - &:hover, &.active{ - a:not(.button){ - background: $primary-blue; - color: $secondry-blue; - border-bottom: 0px; - border-left-width: 2px; - /*&:hover { - color: $secondry-blue; - border-bottom: 0px; - }*/ - } - } - - } - } - } - } -} - - - -/* Buttons custom css */ -.secondary-header-tabs{ - color: #719dc7; - font-weight: 400; - padding: 14px 10px 3px 10px; - cursor: pointer; - transition: color 1s ease, border-color 1s ease; - -webkit-transition: color 1s ease, border-color 1s ease; - display: inline-block; - - &:hover{ - color: $primary-blue; - - } - &.active{ - color: $primary-blue; - border-bottom: 2px solid $primary-blue; - padding-bottom: 14px; - font-weight: 600; - - } -} - -.secondary-header-button{ - color: #3c556d; - font-weight: 700; - padding: 17px 0px 0px 10px; - cursor: pointer; - transition: color 1s ease, border-color 1s ease; - -webkit-transition: color 1s ease, border-color 1s ease; - display: inline-block; - text-transform: uppercase; - font-size: 13px; - letter-spacing: 1.2px; - - &:hover{ - opacity:0.5; - - } -} - - -.orange-button { - color: $primary-orange; - padding: 7px 14px; - background:#fff ; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 5px !important; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 8px; - cursor: pointer; - &:hover{ - background-color:rgba(206,120,105,0.2); - color: $primary-orange; - } -} - -.pink-button{ - background: #a2238d; - height: 37px; - text-align: center; - color: #ffffff; - font-size: 19px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 120px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; - &:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); - } -} - -.orange-button-template{ - color: $primary-orange; - padding: 7px 14px; - background:#fff ; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 10px; - &:hover{ - background-color:rgba(206,120,105,0.2); - color: $primary-orange; - } -} - - - -.orange-button-subtitle { - color: $primary-orange; - padding: 7px 14px; - background:#fff ; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 10px; - &:hover{ - background-color:rgba(206,120,105,0.2); - color: $primary-orange; - } -} - - -.asset-unit-button { - color: $primary-orange; - padding: 7px 14px; - background:#fff ; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 30px; - margin-bottom: 8px; - margin-top: 300px; - &:hover{ - background-color:rgba(206,120,105,0.2); - color: $primary-orange; - } -} - - -.disab-button{ - margin-right: 10px; - background-color: #fff; - text-transform: none; - font-size: 14px; -} - - -.save-asset{ - margin-top: 9px; - margin-right: -133px; -} -.asset-save-button { - color: $primary-orange; - display: inline-block; - border: 1px solid #ce7869;; - border-radius: 5px; - padding: 8px 10px; - outline: none; - white-space: nowrap; - -webkit-user-select: none; - cursor: pointer; - font-weight: 500; - // //font-size: 10pt; - color: #cc7769; - border-color: #cc7769; - float: right; - background: #fff; - margin-right: 5px; - margin-top: 5px; -} - -.blue-white-button { - color: #fff; - background: $primary-blue; - border-radius: 4px; - padding: 5px; - margin-right: 40px; - margin-top: 8px; - padding: 8px 10px; -} - -button[disabled], .button.disabled, .button[disabled] { - background-color: #eefaff ; - border-color:#eefaff; - color: gray ; - cursor: default; - opacity: 0.7; - box-shadow: none; - border-radius: 4px; - - margin-right: 40px; - margin-top: 8px; - padding: 8px 10px; -} - -.button-small { - padding: 1px 5px; -} - - - -/* Tag styles */ - -.asset-tags-container{ - width: 100%; - height: 50px; - background: #fff; - padding: 5px 15px; - margin-bottom: 65px; - - .tag-input-ele { - margin-left: 17px; - width: 96%; - - } - .added-tags-div{ - margin-left: -206px; - - - } - #add-tag-btn{ - color: $primary-orange; - padding: 7px 14px; - background:#fff ; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 5px !important; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 8px; - cursor: pointer; - display: inline-block; - &:hover{ - background-color:rgba(206,120,105,0.2); - color: $primary-orange; - } - - } -} - - - -.tags-container { - width: 100%; - height: 50px; - background: #fff; - padding: 5px 15px; - box-shadow: 1px 0px 0px #000; - margin-bottom: 65px; - - .add-tag-heading span { - width: 40%; - color:#99aaba; - font-size:10px; - text-transform:uppercase; - letter-spacing:2px; - margin-top: 15px; - margin-left: 8px; - font-family: "Helvetica Neue", "Helvetica", "Roboto", "Arial", "sans-serif"; - - } - .tag-input-ele{ - margin-left: 193px; - width: 54%; - - } - .added-tags-div{ - margin-left: 293px !important; - width: 54%; - - } - #add-tag-btn{ - color: $primary-orange; - padding: 7px 14px; - background:#fff ; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 5px !important; - margin-right: 20px; - margin-bottom: 8px; - margin-top: 8px; - cursor: pointer; - display: inline-block; - &:hover{ - background-color:rgba(206,120,105,0.2); - color: $primary-orange; - } - - } -} - - -.asset-unit-button { - color: $primary-orange; - padding: 7px 14px; - background:#fff ; - border: 1px solid #ce7869; - font-size: 12px; - font-family: "OpenSans-Regular", serif; - border-radius: 4px; - margin-right: 30px; - margin-bottom: 8px; - margin-top: 300px; - &:hover{ - background-color:rgba(206,120,105,0.2); - color: $primary-orange; - } -} - -/* exploer back*/ - -.lms_explore_head{ - width: 100%; - height: 45px; - background-color:#fff; - color: $primary-blue; - margin-top:-30px; - >p{ - margin-left: 81px; - padding: 12px 0px 0px 1px; - font-family: OpenSans-Semibold; - font-size: 20px; - } - >a{ - padding: 12px 85px 3px 0px; - } -} -.lms_explore_head_unit{ - width: 100%; - height: 50px; - background-color:#fff; - color: $primary-blue; - >p{ - margin-left: 81px; - padding: 0px 0px 0px 1px; - font-family: OpenSans-Semibold; - font-size: 20px; - } - >a{ - padding: 0px 85px 3px 0px; - } -} - -.lms_explore_back{ - background-color: #fff; -} - -.lms_explore_back_unit{ - background-color: #fff; - margin-top:-23.3px; -} - - - - - -/** - * Sass styles related to module cards - */ - -$module-card-font-size: 12.5px; -$module-card-line-height: 1.4; -$module-card-lines-to-show: 3; - -.module_card { - display: table; - height: 290px; - width: 526px; - cursor: pointer; - margin: 10px; - border-radius: 5px; - position: relative; - box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); - - &:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); - } - - &>div { - display: table-cell; - height: 290px; - } - - .card_banner { - width: 250px; - height:290px; - vertical-align: middle; - overflow: hidden; - background-size: 100% 100%; - border-radius: 8px 0px 0px 8px; - box-shadow: inset 0 0 5px 2px; - position: relative; - z-index: 3; - -webkit-transition: border-radius .2s; - transition: border-radius .2s; - - >img{ - height:100%; - width:100%; - border-radius:4px; - -webkit-filter: drop-shadow(16px 16px 10px rgba(0,0,0,0.9)); - &:hover { - -webkit-transform: scale(1.03); - -moz-transform: scale(1.03); - -ms-transform: scale(1.03); - -o-transform: scale(1.03); - transform: scale(1.03); - opacity: 0.8; - - - } - } - - >h4 { - position: absolute; - top: 100px; - left: 0; - width: 100%; - //color: #ffedda !important; - color: #ffffff !important; - //text-shadow: 2px 2px #a61680; - text-shadow: 2px 0px 8px black; - - } - - } - - - .card_title { - display: block; - width:230px; - font-size: 32px; - font-weight: 600; - text-align: center; - margin: 0px auto; - letter-spacing: 1px; - } - - &.animated_card { - .card_banner { - border-radius: 8px; - } - &:hover .card_banner{ - border-radius: 8px 0px 0px 8px; - } - } - &.animated_card.isOpen { - .card_banner { - border-radius: 8px 0px 0px 8px; - } - } - &.animated_card:hover .card_summary { - left: 30px; - } - &.animated_card .card_summary { - left: 5px; - } - - .card_summary{ - width: 290px; - padding: 0px 15px; - vertical-align: middle; - border-style: solid; - border-width: 1px 1px 1px 0px; - border-radius: 0px 7px 7px 0px; - border-color: #d5d5d5; - box-shadow: inset 2px 0px 13px -5px; - -webkit-transition: left .4s ease-in-out; - transition: left .4s ease-in-out; - -webkit-transition-property: left; /* Safari */ - transition-property: left; - - .card_label { - font-weight: 500; - font-size: $module-card-font-size; - letter-spacing: 1px; - color: black; - } - .card_section { - margin: 5px 0px; - padding: 5px 0px; - - &:not(:last-child) { - border-bottom: 1px solid #ccc; - } - p { - margin-bottom: 7px; - font-size: $module-card-font-size; - } - .ellipsis { - width: 245px; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - } - - //enroll-button - .module-card-enrol{ - background: rgb(162, 35, 141); - height: 37px; - text-align: center; - color: #ffffff; - width: 172px; - font-size: 19px; - border: 2px solid rgba(43, 51, 63, 0.42); - border-radius: 5px; - width: 164px !important; - margin-top: 2px !important; - letter-spacing: 0.4px; - - &:hover { - box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); - } - } - } - - .module_brief { - display: block; /* Fallback for non-webkit */ - display: -webkit-box; - height: $module-card-font-size*$module-card-line-height*$module-card-lines-to-show; /* Fallback for non-webkit */ - max-width: 400px; - overflow: hidden; - text-overflow: ellipsis; - font-size: $module-card-font-size; - line-height: $module-card-line-height; - -webkit-line-clamp: $module-card-lines-to-show; - -webkit-box-orient: vertical; - color: black; - } - } -} - - - -.img-height{ - height:150px; - width:1351px; -} - - -/* - Common css - */ -.text-button-blue { - background-color: transparent; - color: #00A9EE; - padding: 3px 10px; - font-size: 16px; - letter-spacing: 0.7px; - line-height: 25px; -} - - - - -.dropdown-settings{ - text-align: left; - text-transform: none; - margin-top: 0px; - margin-right: 0px; - width: 198px; - background: white; - border-radius: 1px; - &:hover{ - color: $primary-orange; - border-left:2px solid $secondary-orange; - } -} - - - -.inner -{ - display: inline-block !important; -} - -.mid_label{ - margin-top: 15px; - font-size: 15px; +.badge_ex.green { + background: #77cc51; + border-color: #59ad33; + background-image: -webkit-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -moz-linear-gradient(top, #a5dd8c, #77cc51); + background-image: -o-linear-gradient(top, #a5dd8c, #77cc51); + background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } +.badge_ex.yellow { + background: #faba3e; + border-color: #f4a306; + background-image: -webkit-linear-gradient(top, #fcd589, #faba3e); + background-image: -moz-linear-gradient(top, #fcd589, #faba3e); + background-image: -o-linear-gradient(top, #fcd589, #faba3e); + background-image: linear-gradient(to bottom, #fcd589, #faba3e); +} +.badge_ex.red { + background: #fa623f; + border-color: #fa5a35; + background-image: -webkit-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f); + background-image: -o-linear-gradient(top, #fc9f8a, #fa623f); + background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); +} \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss index 118bb940cb..cfb5c38ce0 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix2017.scss @@ -4478,7 +4478,7 @@ $unit-card-lines-to-show: 3; &:hover { box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2); } - + .unit_status { position: absolute; @@ -4851,11 +4851,12 @@ $module-card-lines-to-show: 3; .card_title { display: block; - font-size: 32px; + width:230px; font-weight: 600; text-align: center; margin: 0px auto; letter-spacing: 1px; + font-size: 24px; } &.animated_card { @@ -4991,7 +4992,7 @@ $module-card-lines-to-show: 3; margin-left: 40px; border-radius: 8px 0px 0px 8px; transition: border-radius .2s; - text-shadow: 3px 2px #164a7b; + text-shadow: -1px -1px 8px #000, 1px -1px 8px #000, -1px 1px 8px #000, 1px 1px 0 #000; } .right-margin{ @@ -5063,7 +5064,6 @@ ul.nav_menu_1 { width:50%; >li { display: inline-block; - .course_actions>span{ //margin-right: 5px; background: rgb(46, 63, 81); @@ -5082,16 +5082,13 @@ ul.nav_menu_1 { } -} - ul.authoring-tab{ - background-color:$nav_menu_1_color; margin-bottom: 0px; display:inline; width:50%; >li { display: inline-block; - + background-color:$nav_menu_1_color; >a{ list-style-type: none; margin-right:-4px; @@ -5111,8 +5108,6 @@ ul.authoring-tab{ } - - .course-content { background: #fff; @@ -5436,34 +5431,6 @@ ul.authoring-tab{ } -$nav_menu_1_color: #ce7869; -$nav_menu_1_bg_color: #fff; -$nav_menu_1_tab_border: #ffc14e; -ul.nav_menu_1 { - margin-bottom: 0px; - background-color: $nav_menu_1_bg_color; - >li { - display: inline-block; - - >a{ - list-style-type: none; - display: inline-block; - padding: 12px 12px 9px; - color: $nav_menu_1_color; - cursor: pointer; - font-size: 18px; - letter-spacing: 0.8px; - border-bottom: 3px solid transparent; - - - &.selected, &:hover{ - border-bottom: 3px solid $nav_menu_1_tab_border; - } - } - - } -} - .course-content { background: #fff; margin: 20px auto; @@ -5599,6 +5566,22 @@ ul.nav_menu_1 { letter-spacing: 0.4px; } +.status-workspace { + width: auto; + top: -1.15em; + position: absolute; + display: inline-block; + color: #fff; + font-family:OpenSans-Bold; + right: 1em; + padding: 0.3em 0.5em; + text-transform: uppercase; + font-size: 10px; + border-radius: 4px; + //border: 2px solid #ffc14e; + background-color: #000000b8; + letter-spacing: 0.4px; +} .lesson-dropdown ul { display:none; @@ -5621,7 +5604,7 @@ ul.nav_menu_1 { margin-top:6px; } -.lms_explore_head{ +.lc{ width: 100%; height: 45px; background-color:#fff; @@ -6848,103 +6831,104 @@ ul.nav_menu_1 { } .task_listing{ - max-width: 1176px !important; - margin: 0 auto !important; - display: -moz-box !important; - display: -ms-flexbox !important; - display: -webkit-box !important; - display: -webkit-flex !important; - display: flex !important; - flex-direction: column !important; - padding-bottom: 32px !important; - -webkit-flex-direction: column !important; - -ms-flex-direction: column !important; - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - background: #fff; - box-shadow: 0px 2px 6px #000; - - .task_content{ - display: -moz-box !important; - display: -ms-flexbox !important; - display: -webkit-box !important; - display: -webkit-flex !important; - display: flex !important; - align-items: center !important; - justify-content: space-between !important; - width: 100% !important; - box-sizing: border-box !important; - border-bottom: 1px solid #D6D8DA !important; - padding: 16px 8px !important; - -webkit-align-items: center !important; - -webkit-justify-content: space-between !important; - -moz-box-sizing: border-box !important; - -ms-flex-align: center !important; - -webkit-box-align: center !important; - -ms-flex-pack: justify !important; - -webkit-box-pack: justify !important; - &:hover{ - background: #F0F1F2 !important; - } - .task_content_left{ - display: -moz-box !important; - display: -ms-flexbox !important; - display: -webkit-box !important; - display: -webkit-flex !important; - display: flex !important; - align-items: center !important; - width: 80% !important; - -webkit-align-items: center !important; - -ms-flex-align: center !important; - -webkit-box-align: center !important; - .task_content_details{ + max-width: 1176px !important; + margin: 0 auto !important; + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + flex-direction: column !important; + padding-bottom: 32px !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + background: #fff; + box-shadow: 0px 2px 6px #000; + + .task_content{ display: -moz-box !important; display: -ms-flexbox !important; display: -webkit-box !important; display: -webkit-flex !important; display: flex !important; - align-items: flex-start !important; - flex-direction: column !important; - padding-left: 15px !important; - width: 85% !important; - -webkit-align-items: flex-start !important; - -webkit-flex-direction: column !important; - -ms-flex-direction: column !important; - -ms-flex-align: start !important; - -webkit-box-align: start !important; - -webkit-box-orient: vertical !important; - -webkit-box-direction: normal !important; - .hyperlink-user{ - border: 2px solid #b9b9b9; - height: 50px; - width: 50px; + align-items: center !important; + justify-content: space-between !important; + width: 100% !important; + box-sizing: border-box !important; + border-bottom: 1px solid #D6D8DA !important; + padding: 16px 8px !important; + -webkit-align-items: center !important; + -webkit-justify-content: space-between !important; + -moz-box-sizing: border-box !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + -ms-flex-pack: justify !important; + -webkit-box-pack: justify !important; + &:hover{ + background: #F0F1F2 !important; } - .hyperlink-style{ - text-decoration: none !important; - font-family: inherit !important; - font-size: 17px !important; - font-weight: bold !important; - line-height: 23px !important; - color: $primary-blue !important; - width: 100% !important; - white-space: nowrap !important; - overflow: hidden !important; - text-overflow: ellipsis !important; + .task_content_left{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: center !important; + width: 80% !important; + -webkit-align-items: center !important; + -ms-flex-align: center !important; + -webkit-box-align: center !important; + .task_content_details{ + display: -moz-box !important; + display: -ms-flexbox !important; + display: -webkit-box !important; + display: -webkit-flex !important; + display: flex !important; + align-items: flex-start !important; + flex-direction: column !important; + padding-left: 15px !important; + width: 85% !important; + -webkit-align-items: flex-start !important; + -webkit-flex-direction: column !important; + -ms-flex-direction: column !important; + -ms-flex-align: start !important; + -webkit-box-align: start !important; + -webkit-box-orient: vertical !important; + -webkit-box-direction: normal !important; + .hyperlink-user{ + border: 2px solid #b9b9b9; + height: 50px; + width: 50px; + } + .hyperlink-style{ + text-decoration: none !important; + font-family: inherit !important; + font-size: 17px !important; + font-weight: bold !important; + line-height: 23px !important; + color: $primary-blue !important; + width: 100% !important; + white-space: nowrap !important; + overflow: hidden !important; + text-overflow: ellipsis !important; + } + .hyperlink-info{ + text-decoration: none !important; + font-family: inherit !important; + font-size: 15px !important; + line-height: 22px !important; + color: rgba(0, 0, 0, 0.56) !important; + margin-top: 4px !important; + } } - .hyperlink-info{ - text-decoration: none !important; - font-family: inherit !important; - font-size: 15px !important; - line-height: 22px !important; - color: rgba(0, 0, 0, 0.56) !important; - margin-top: 4px !important; - } - } - } + } + } } } -} + @@ -7111,5 +7095,5 @@ ul.nav_menu_1 { background-color: #fff; color: #912a7d; } - } +} \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix_styles.scss index e5e4be0ef4..6ba9b367c1 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_clix_styles.scss @@ -5345,7 +5345,7 @@ $module-card-lines-to-show: 3; .card_title { display: block; width:230px; - font-size: 32px; + font-size: 24px; font-weight: 600; text-align: center; margin: 0px auto; @@ -5572,7 +5572,6 @@ $nav_menu_1_tab_border: #a2238d; ul.nav_menu_1 { margin-bottom: 0px; background-color: $nav_menu_1_bg_color; - border-bottom: 2px solid #80808063; >li { display: inline-block; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/activity_player.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/activity_player.html index 12c38410f8..c2c8eb8f32 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/activity_player.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/activity_player.html @@ -46,7 +46,7 @@ {% firstof group_object.altnames group_object.name %} {% if "QuizItemEvent" in node.member_of_names_list or "QuizItem" in node.member_of_names_list%} - RESULTS + Results {% endif %}
    @@ -361,6 +361,13 @@

    {% firstof group_object.altnames group_object.name %}

    // start of document.ready() $(document).ready(function(event) { + + var $container = $('.course_tree'), + $scrollTo = $('.activity-title').children('li.active'); + $container.scrollTop( + $scrollTo.offset().top - $container.offset().top- $container.offset().top + $container.scrollTop() + ); + var iframes = document.getElementsByTagName('iframe'); var key = 'assessment.Bank'; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html index a795928456..7b01d7580a 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html @@ -64,15 +64,7 @@

    {% firstof asset_obj.altnames|truncatechars:25 asset_obj. {% endif%} {% if request.user.is_authenticated %} - {% if 'raw@material' in asset_obj.tags and is_gstaff and title == "raw_material_detail" %} - {% endif %} - {% if 'asset@gallery' in asset_obj.tags %} - - {% endif %} - {% if title == 'asset_detail' %} - - {% endif %} {% trans "Add page" %} {% endif %} @@ -225,10 +217,13 @@

      {% trans "Mark as Raw Material" %} +{% comment %}
    +{% endcomment %} +

    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/assets.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/assets.html index 5f040dc940..479bd8e0b0 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/assets.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/assets.html @@ -38,7 +38,7 @@ {% if user.is_authenticated %} {% if title == "raw material" and is_gstaff %} {% endif %} {% if title == "gallery" %} @@ -48,7 +48,7 @@ {% endif %} {% if title == "asset_list" %} {% endif %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_group.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_group.html index bad6a7a84c..a6fb9eb41b 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_group.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_group.html @@ -19,10 +19,14 @@ {% if "base_unit" in node.member_of_names_list %}
    DRAFT
    - {% endif %} + {% elif "Group" in node.member_of_names_list %} +
    Workspaces
    + {% endif %} + {% if get_status %}
    {{get_status}}
    {% endif %} +
    {% if "announced_unit" in node.member_of_names_list %} {% get_relation_value node.pk 'has_banner_pic' as grel_dict %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/course_about.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/course_about.html index 5367de7883..5b37c40928 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/course_about.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/course_about.html @@ -265,48 +265,49 @@
    Created On
    {#
    #} - {% comment %} -
    -
    ONGOING SESSION
    -

    Taking Screenshots of the work and doing something

    - -
    - {% endcomment %} -
    - -
    - -
    - {% if gstaff_access %} -
    -
    -
    - Points table for students -
    -
    -   - Gallery uploads -   - Note Making -   - Quiz Performance -   - Interactions -
    -
    - * Click on the student's name to view detailed analytics. -
    -
    + {% comment %} +
    +
    ONGOING SESSION
    +

    Taking Screenshots of the work and doing something

    + +
    + {% endcomment %} +
    + +
    + + +
    + {% if gstaff_access %} +
    +
    +
    + Points table for students +
    +
    +   + Gallery uploads +   + Note Making +   + Quiz Performance +   + Interactions +
    +
    + * Click on the student's name to view detailed analytics. +
    +
    +
    +
    -
    -
    #}
    -
    \ No newline at end of file + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html index 77faf533d2..5a5b63fd8c 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html @@ -225,6 +225,7 @@ } + body { display: table; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html index 43cbf37907..a5d526c7ec 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html @@ -167,7 +167,7 @@ var m = date.getMonth(); var y = date.getFullYear(); - + $('#calendar').fullCalendar({ default: true, theme: false, @@ -237,130 +237,7 @@ }, - events: [ - { - "title": "All Day Event", - "start": "2017-12-01" - }, - { - "title": "Long Event", - "start": "2017-12-07", - "end": "2017-12-10" - }, - { - "id": "999", - "title": "Repeating Event", - "start": "2017-12-09T16:00:00-05:00" - }, - { - "id": "999", - "title": "Repeating Event", - "start": "2017-12-16T16:00:00-05:00" - }, - { - "title": "Conference", - "start": "2017-12-11", - "end": "2017-12-13" - }, - { - "title": "Meeting", - "start": "2017-12-12T10:30:00-05:00", - "end": "2017-12-18T12:30:00-05:00" - }, - { - "title": "Meeting", - "start": "2018-01-11T10:30:00-05:00", - "end": "2018-01-13T12:30:00-05:00" - }, - { - "title": "Meeting", - "start": "2018-02-11T10:30:00-05:00", - "end": "2018-05-12T12:30:00-05:00" - }, - { - "title": "Meeting", - "start": "2018-01-21T10:30:00-05:00", - "end": "2018-01-18T12:30:00-05:00" - }, - { - "title": "Meeting", - "start": "2018-01-18T10:30:00-05:00", - "end": "2018-01-14T12:30:00-05:00" - }, - { - "title": "Lunch", - "start": "2017-12-12T12:00:00-05:00" - }, - { - "title": "Meeting", - "start": "2017-12-12T14:30:00-05:00" - }, - { - "title": "Happy Hour", - "start": "2017-12-12T17:30:00-05:00" - }, - { - "title": "Dinner", - "start": "2017-12-12T20:00:00" - }, - { - "title": "Birthday Party", - "start": "2017-12-13T07:00:00-05:00" - }, - { - "title": "Click for Google", - "url": "http://google.com/", - "start": "2017-12-28" - }, - { - "title": "Lunch", - "start": "2018-02-12T12:00:00-05:00" - }, - { - "title": "Meeting", - "start": "2018-01-12T14:30:00-05:00" - }, - { - "title": "Happy Hour", - "start": "2018-01-12T17:30:00-05:00" - }, - { - "title": "Dinner", - "start": "2018-01-18T20:00:00" - }, - { - "title": "Lunch", - "start": "2018-01-28T12:00:00-05:00" - }, - { - "title": "Meeting", - "start": "2018-02-16T14:30:00-05:00" - }, - { - "title": "Happy Hour", - "start": "2018-01-19T17:30:00-05:00" - }, - { - "title": "Dinner", - "start": "2018-01-01T20:00:00" - }, - { - "title": "Lunch", - "start": "20178-02-12T12:00:00-05:00" - }, - { - "title": "Meeting", - "start": "2018-12-12T14:30:00-05:00" - }, - { - "title": "Happy Hour", - "start": "2018-01-03T17:30:00-05:00" - }, - { - "title": "Dinner", - "start": "2018-01-22T20:00:00" - }, - ], + events: {{events|safe}} }); // will listener today click diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html index 99a899c478..4420c193b5 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html @@ -1,8 +1,21 @@ {% load i18n %} {% load ndf_tags %} + {% block body_content %} + + + + + + + + + + + + {% if admin_analytics %} + + + + + + + + +
    +
    +
    +
    +
    +

    Points table for students:

    +
    +
    +   + Gallery uploads +   + Note Making +   + Quiz Performance +   + Interactions +
    +
    +
    * Click on the student's name to view detailed analytics.
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + +
    + + {% else %} +
    PROGRESS REPORT
    @@ -260,6 +314,7 @@

    {{level2_progress_stmt}}

    + {% endif %} @@ -269,9 +324,6 @@

    {{level2_progress_stmt}}

    \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py b/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py index e326e0621b..fa1d23c1f6 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py @@ -4232,11 +4232,12 @@ def _user_enrolled(userid,unit_ids_list): @get_execution_time @register.filter def get_unicode_lang(lang_code): - try: - return get_language_tuple(lang_code)[1] - except Exception as e: - return lang_code - pass + + try: + return get_language_tuple(lang_code)[1] + except Exception as e: + return lang_code + pass @get_execution_time @register.filter diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/group.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/group.py index 5d44faf1de..b447b8f281 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/group.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/group.py @@ -16,6 +16,7 @@ url(r'^/upload_using_save_file/', 'upload_using_save_file', name='upload_using_save_file'), #url(r'^/(?P[\w-]+)/nroer_groups/?$', 'nroer_groups', name='nroer_groups'), url(r'^/(?P[\w-]+)/value/(?P[\w-]+)/?$', 'group', name='groups_by_agency_type'), + url(r'^/create_group/', GroupCreateEditHandler.as_view(), {'action': 'create'}, name='create_group'), ) urlpatterns += patterns('gnowsys_ndf.ndf.views.ajax_views', diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/ajax_views.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/ajax_views.py index 9c99c04616..8b512ba2b8 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/ajax_views.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/ajax_views.py @@ -6842,6 +6842,7 @@ def create_edit_asset(request,group_id): if "announced_unit" in group_obj.member_of_names_list and title == "raw material": asset_obj.tags.append(u'raw@material') + if ("announced_unit" in group_obj.member_of_names_list or "Group" in group_obj.member_of_names_list) and "gallery" == title: asset_obj.tags.append(u'asset@gallery') diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/event.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/event.py index 8fb6113da4..ebae869a83 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/event.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/event.py @@ -15,7 +15,7 @@ from django.contrib.sites.models import Site from django.contrib.auth.decorators import login_required from django.template.defaultfilters import slugify - +import json try: from bson import ObjectId except ImportError: # old pymongo @@ -28,7 +28,7 @@ from gnowsys_ndf.ndf.views.methods import get_property_order_with_value,get_execution_time from gnowsys_ndf.ndf.views.methods import create_gattribute, create_grelation, get_group_name_id from gnowsys_ndf.notification import models as notification - +from gnowsys_ndf.ndf.templatetags.ndf_tags import get_attribute_value ''' -- imports for bigbluebutton wrappers -- ''' from bbb_api import * @@ -56,15 +56,46 @@ def event(request, group_id): group_obj = get_group_name_id(group_id, get_obj=True) group_id = group_obj._id grp_gst_name, grp_gst_id = GSystemType.get_gst_name_id("Group") - app_collection_set=node_collection.find({'member_of': grp_gst_id}) - - print app_collection_set[1] + # app_collection_set=node_collection.find({'member_of': grp_gst_id}) + GST_TASK = node_collection.one({'_type': "GSystemType", 'name': 'Task'}) + + + TASK_inst = node_collection.find({'member_of': {'$all': [GST_TASK._id]}, 'group_set': ObjectId(group_id),'status':"PUBLISHED" }).sort('last_update', -1) + event_list = [] + + for each in TASK_inst: + start_date_val = get_attribute_value(each._id, "start_time") + end_date_val = get_attribute_value(each._id, "end_time") + + start_date_splited_val = start_date_val.split("/") + start_reverse_date_val = start_date_splited_val[::-1] + + end_date_splited_val = end_date_val.split("/") + end_reverse_date_val = end_date_splited_val[::-1] + # print start_reverse_date_val + + + + # start_date_reverse_val = start_date_splited_val.reverse() + # print start_date_reverse_val + + start_date_new_val = '-'.join(start_reverse_date_val) + print start_date_new_val + + + end_date_new_val = '-'.join(end_reverse_date_val) + print end_date_new_val + + event_list.append({"title":str(each.name), "start":str(start_date_new_val), "end":str(end_date_new_val)}) + + app_collection_set=None - return render_to_response('ndf/gevent.html',{'events':app_collection_set, + return render_to_response('ndf/gevent.html',{ 'groupid':group_id, 'group_id':group_id, 'group_name':group_id, + 'events':json.dumps(event_list) }, context_instance = RequestContext(request) ) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py index 4d8a85f51d..872a71d2cc 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py @@ -2427,6 +2427,7 @@ def progress_report(request, group_id, user_id, render_template=False, get_resul 'notapplicable_quizitems': 0, 'incorrect_attempted_quizitems': 0, 'attempted_quizitems': 0, + 'admin_analytics': False }) @@ -3539,11 +3540,26 @@ def course_analytics_admin(request, group_id): cache_key = u'course_analytics_admin' + unicode(group_id) cache_result = cache.get(cache_key) - if cache_result: - return HttpResponse(cache_result) + # if cache_result: + # return HttpResponse(cache_result) # from gnowsys_ndf.ndf.views.analytics_methods import AnalyticsMethods # from gnowsys_ndf.settings import GSTUDIO_FILE_UPLOAD_POINTS, GSTUDIO_COMMENT_POINTS, GSTUDIO_NOTE_CREATE_POINTS, GSTUDIO_QUIZ_CORRECT_POINTS + group_obj = get_group_name_id(group_id, get_obj=True) + group_id = group_obj._id + group_name = group_obj.name + + thread_node = None + banner_pic_obj,old_profile_pics = get_current_and_old_display_pics(group_obj) + + + allow_to_join = get_group_join_status(group_obj) + context_variables = { + 'group_id': group_id, 'groupid': group_id, 'group_name':group_name, + 'group_obj': group_obj, 'title': 'progress_report', 'allow_to_join': allow_to_join, + 'old_profile_pics':old_profile_pics, "prof_pic_obj": banner_pic_obj, "admin_analytics": True + } + group_obj = get_group_name_id(group_id, get_obj=True) admin_analytics_data_list = [] @@ -3623,9 +3639,14 @@ def course_analytics_admin(request, group_id): response_dict["success"] = True response_dict["students_data_set"] = admin_analytics_data_list response_dict['max_points_dict'] = max_points_dict - - response_dict = json.dumps(response_dict) + context_variables["response_dict"] = json.dumps(response_dict) cache.set(cache_key, response_dict, 60*10) + print + return render_to_response("ndf/lms.html", + context_variables, + context_instance = RequestContext(request) + ) + # print "\n admin_analytics_data_list === ",admin_analytics_data_list return HttpResponse(response_dict) @@ -3861,7 +3882,6 @@ def assets(request, group_id, asset_id=None,page_no=1): #template = 'ndf/gevent_base.html' template = 'ndf/lms.html' - if asset_id: asset_obj = node_collection.one({'_id': ObjectId(asset_id)}) asset_content_list = get_relation_value(ObjectId(asset_obj._id),'has_assetcontent') @@ -3880,7 +3900,8 @@ def assets(request, group_id, asset_id=None,page_no=1): 'group_obj':group_obj } - if 'announced_unit' in group_obj.member_of_names_list or 'Group' in group_obj.member_of_names_list and 'base_unit' not in group_obj.member_of_names_list : + + if ('announced_unit' in group_obj.member_of_names_list or 'Group' in group_obj.member_of_names_list or 'Author' in group_obj.member_of_names_list) and 'base_unit' not in group_obj.member_of_names_list : if 'raw@material' in asset_obj.tags: context_variables.update({'title':'raw_material_detail'}) @@ -3888,7 +3909,6 @@ def assets(request, group_id, asset_id=None,page_no=1): elif 'asset@gallery' in asset_obj.tags: context_variables.update({'title':'asset_gallery_detail'}) template = 'ndf/lms.html' - else: #template = 'ndf/gevent_base.html' template = 'ndf/lms.html' @@ -3896,9 +3916,9 @@ def assets(request, group_id, asset_id=None,page_no=1): context_variables, context_instance = RequestContext(request) ) - + gstaff_access = check_is_gstaff(group_id, request.user) if gstaff_access: - asset_nodes = node_collection.find({'member_of': {'$in': [asset_gst_id]},'group_set': {'$all': [ObjectId(group_id)]},'access_policy': {'$in': ['PRIVATE','PUBLIC'] } }) + asset_nodes = node_collection.find({'member_of': {'$in': [asset_gst_id]},'group_set': {'$all': [ObjectId(group_id)]},'access_policy': {'$in': ['PRIVATE','PUBLIC'] } }).sort('last_update', -1) else: asset_nodes = node_collection.find({'member_of': {'$in': [asset_gst_id]}, @@ -3910,7 +3930,7 @@ def assets(request, group_id, asset_id=None,page_no=1): {'access_policy': 'PRIVATE'} ] } - ]}) + ]}).sort('last_update', -1) assets_page_info = paginator.Paginator(asset_nodes, page_no, GSTUDIO_NO_OF_OBJS_PP) context_variables = { diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/group.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/group.py index a47273b629..1671d7dc8b 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/group.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/group.py @@ -2938,7 +2938,7 @@ def notification_details(request,group_id): activity = 'created ' + each.name else: - if each.if_file.mime_type: + if each.if_file.mime_type and each.relation_set[0]['assetcontent_of']: node_obj = Node.get_node_by_id(each.relation_set[0]['assetcontent_of'][0]) activity = 'uploaded ' + each.name + ' in ' + node_obj.name elif 'Asset' in each.member_of_names_list and 'asset@gallery' in each.tags: diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/gtask.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/gtask.py index c187482d62..71378e145f 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/gtask.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/gtask.py @@ -59,7 +59,8 @@ def gtask(request, group_name, task_id=None): GST_TASK = node_collection.one({'_type': "GSystemType", 'name': 'Task'}) title = "Task" - TASK_inst = node_collection.find({'member_of': {'$all': [GST_TASK._id]}, 'group_set': ObjectId(group_id) }) + + TASK_inst = node_collection.find({'member_of': {'$all': [GST_TASK._id]}, 'group_set': ObjectId(group_id),'status':"PUBLISHED" }).sort('last_update', -1) template = "ndf/lms.html" variable = RequestContext(request, {'title': title, 'appId':app._id, 'TASK_inst': TASK_inst, 'group_id': group_id, 'groupid': group_id, 'group_name':group_name }) return render_to_response(template, variable) @@ -217,12 +218,42 @@ def gcreate_edit_task(request, group_name, task_id=None): """ group_object = node_collection.one({'name': unicode(group_name)}) update = request.POST.get("update") - if update == "True": + if not update == "True": name = request.POST.get("name") + content = request.POST.get("content") + task_type = request.POST.get("task_type") + Status = request.POST.get("task_status") + start_time = request.POST.get("start_date") + end_time = request.POST.get("due_date") + Priority = request.POST.get("task_priority") + Estimated_time = request.POST.get("estimated_time") task_obj = node_collection.collection.GSystem() - task_obj.fill_gstystem_values(request=request,name=str(name),group_set=group_object._id,member_of=app._id) + task_obj.fill_gstystem_values(request=request,name=str(name),content=content, group_set=group_object._id,member_of=app._id) task_obj.save(group_id=group_object._id) - print "&&&&&&&&&&&&&&&&&&",task_obj + at_list = ["Status", "start_time", "Priority", "end_time", "Assignee", "Estimated_time"] + + + if Status: + attributetype_key = node_collection.find_one({"_type": 'AttributeType', 'name': 'Status' }) + ga_node = create_gattribute(task_obj._id, attributetype_key, Status) + + if start_time: + attributetype_key = node_collection.find_one({"_type": 'AttributeType', 'name': 'start_time' }) + ga_node = create_gattribute(task_obj._id, attributetype_key, start_time) + + if end_time: + attributetype_key = node_collection.find_one({"_type": 'AttributeType', 'name': 'end_time' }) + ga_node = create_gattribute(task_obj._id, attributetype_key, end_time) + + if Priority: + attributetype_key = node_collection.find_one({"_type": 'AttributeType', 'name': 'Priority' }) + ga_node = create_gattribute(task_obj._id, attributetype_key, Priority) + + if Estimated_time: + attributetype_key = node_collection.find_one({"_type": 'AttributeType', 'name': 'Estimated_time' }) + ga_node = create_gattribute(task_obj._id, attributetype_key, Estimated_time) + + if not task_id: return render_to_response("ndf/gtask_create_edit.html", {"group_object" : group_object }, @@ -668,7 +699,7 @@ def gcheck_filter(request,group_name,choice=1,status='New',each_page=1): Completed_Status_List=['Resolved','Closed'] title = "Task" - TASK_inst = node_collection.find({'member_of': {'$all': [GST_TASK._id]},'group_set': {'$all': [ObjectId(group_id)]}}) + TASK_inst = node_collection.find({'member_of': {'$all': [GST_TASK._id]},'group_set': {'$all': [ObjectId(group_id)]}}).sort('last_update', -1) task_list=[] message="" send="This group doesn't have any files" @@ -755,9 +786,9 @@ def gcheck_filter(request,group_name,choice=1,status='New',each_page=1): if attr_value['Status'] == status: task_list.append(dict(attr_value)) - paged_resources = Paginator(task_list,10) + # paged_resources = Paginator(task_list,10) files_list = [] - for each_resource in (paged_resources.page(each_page)).object_list: + for each_resource in task_list: files_list.append(each_resource) count_list=[] @@ -766,6 +797,6 @@ def gcheck_filter(request,group_name,choice=1,status='New',each_page=1): count=len(task_list) template = "ndf/gtask_list_view.html" - variable = RequestContext(request, {'TASK_inst':files_list,'group_name':group_name, 'appId':app._id, 'group_id': group_id, 'groupid': group_id,'send':message,'count':count,'TASK_obj':TASK_inst,"page_info":paged_resources,'page_no':each_page,'choice':choice,'status':status}) + variable = RequestContext(request, {'TASK_inst':files_list,'group_name':group_name, 'appId':app._id, 'group_id': group_id, 'groupid': group_id,'send':message,'count':count,'TASK_obj':TASK_inst,'page_no':each_page,'choice':choice,'status':status}) return render_to_response(template, variable) #return HttpResponse(json.dumps(self_task,cls=NodeJSONEncoder)) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/module.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/module.py index 753723c3e1..6962b2a55a 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/module.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/module.py @@ -123,6 +123,9 @@ def module_detail(request, group_id, node_id,title=""): gstaff_access = check_is_gstaff(group_id,request.user) + module_detail_query = {'_id': {'$in': module_obj.collection_set}, + 'status':'PUBLISHED' + } if module_obj.collection_set: module_detail_query = {'_id': {'$in': module_obj.collection_set}, @@ -132,10 +135,9 @@ def module_detail(request, group_id, node_id,title=""): module_detail_query = {'_id': {'$in': module_obj.post_node}, 'status':'PUBLISHED' } + - ''' ->>>>>>> 5b588788a0abc662af47a7b2ed4e2845a974a19e if not gstaff_access: module_detail_query.update({'$or': [ {'$and': [ @@ -148,7 +150,6 @@ def module_detail(request, group_id, node_id,title=""): ]}, {'member_of': gst_announced_unit_id} ]}) - ''' if title == "courses": module_detail_query.update({'$or': [ @@ -165,7 +166,6 @@ def module_detail(request, group_id, node_id,title=""): if title == "drafts": - print "((((((((((((((((((((((((((" module_detail_query.update({'$or': [ {'$and': [ {'member_of': gst_base_unit_id}, From 9907316491b65feb32b66b007fb06311d3439c8d Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Tue, 23 Jan 2018 20:29:23 +0530 Subject: [PATCH 273/766] line added --- doc/deployer/es_injection.py | 164 +++++++++++++++++++++++++---------- 1 file changed, 116 insertions(+), 48 deletions(-) diff --git a/doc/deployer/es_injection.py b/doc/deployer/es_injection.py index 14bb73feaa..3f15e436dc 100644 --- a/doc/deployer/es_injection.py +++ b/doc/deployer/es_injection.py @@ -9,6 +9,10 @@ #from gnowsys_ndf.local_settings import GSTUDIO_DOCUMENT_MAPPING from gnowsys_ndf.local_settings import GSTUDIO_ELASTIC_SEARCH_INDEX +try: + from bson import ObjectId +except ImportError: # old pymongo + from pymongo.objectid import ObjectId ##### use the below commented lines if you are working with Python 2.x ##### # reload(sys) # sys.setdefaultencoding('UTF8') @@ -24,7 +28,7 @@ page_id = 0 -def index_docs(all_docs,index,doc_type,file_name): +def index_docs(all_docs,index,doc_type): k = 0 all_docs_count = all_docs.count() for docs in all_docs: @@ -121,44 +125,104 @@ def get_document_type(document): def main(): + f = open("/data/nodes.txt", "w") + os.chmod("/data/nodes.txt", 0o777) - - nodes = node_collection.find(no_cursor_timeout=True).batch_size(5) - triples= triple_collection.find(no_cursor_timeout=True).batch_size(5) - benchmarks = benchmark_collection.find(no_cursor_timeout=True).batch_size(5) - filehives = filehive_collection.find(no_cursor_timeout=True).batch_size(5) - buddys = buddy_collection.find(no_cursor_timeout=True).batch_size(5) - counters = counter_collection.find(no_cursor_timeout=True).batch_size(5) + nodes = {} + triples = {} + benchmarks = {} + filehives = {} + buddys = {} + counters = {} #all_docs = [ triples, buddys, benchmarks, nodes, counters] + print("Starting the indexing process...") - res = es.search(index="nodes", body={"query": {"match_all": {}},"_source": ["id"] }, scroll= "1m",size="10000") + for index, doc_type in GSTUDIO_ELASTIC_SEARCH_INDEX.items(): + temp = [] + if (es.indices.exists(index.lower())): - print(res['_scroll_id']) - print(res['hits']['total']) + res = es.search(index=index.lower(), body={"query": {"match_all": {}}, "_source": ["id"]}, scroll="1m", size="10") + scrollid = res['_scroll_id'] + while len(res['hits']['hits']) > 0: - if( res['hits']['total'] < nodes.counts()): - if(nodes.counts() < 10000): - f = open("/data/nodes.txt", "w+") - os.chmod("/data/nodes.txt", 0o777) - for hit in res['hits']['hits']: - #print(hit["_source"]["id"]) - f.write(hit["_source"]["id"] + '\n') + for hit in res['hits']['hits']: + # print(hit["_source"]["id"]) + # f.write(hit["_source"]["id"] + '\n') + # res = es.search(index="nodes", body={"scroll_id": '"' + scrollid + '"'}, search_type="scan", + # scroll="1m", size="10") + temp.append(ObjectId(hit["_source"]["id"])) + res = es.scroll(scrollid, scroll="1m") - f.close() - # DELETING existing/old indexes - for index in GSTUDIO_ELASTIC_SEARCH_INDEX.keys(): - if (es.indices.exists(index.lower())): - print("Deleting the existing index: " + index.lower() + " for reindexing") - res = es.indices.delete(index=index.lower()) - print("The delete response is %s " % res) + if(index.lower() == "nodes"): + nodes = node_collection.find({ '_id': {'$nin': temp} }).batch_size(5) + elif (index.lower() == "triples"): + triples = triple_collection.find({ '_id': {'$nin': temp} }).batch_size(5) + elif (index.lower() == "benchmarks"): + benchmarks = benchmark_collection.find({ '_id': {'$nin': temp} }).batch_size(5) + elif (index.lower() == "filehives"): + filehives = filehive_collection.find({ '_id': {'$nin': temp} }).batch_size(5) + elif (index.lower() == "buddies"): + buddys = buddy_collection.find({ '_id': {'$nin': temp} }).batch_size(5) + elif (index.lower() == "counters"): + counters = counter_collection.find({ '_id': {'$nin': temp} }).batch_size(5) + + + + print(res['_scroll_id']) + print(res['hits']['total']) + + + + if (res['hits']['total'] < nodes.count()): + + #f = open("/data/nodes.txt", "w+") + #os.chmod("/data/nodes.txt", 0o777) + + if (nodes.count() < 10): + + for hit in res['hits']['hits']: + # print(hit["_source"]["id"]) + temp.append(hit["_source"]["id"]) - # --- END of DELETING existing/old indexes + #f.close() + + else: + + scrollid = res['_scroll_id'] + + # f = open("/data/nodes.txt", "w+") + # os.chmod("/data/nodes.txt", 0o777) + + # es.scroll(scrollid, scroll="1m") + + while len(res['hits']['hits']) > 0: + + for hit in res['hits']['hits']: + # print(hit["_source"]["id"]) + # f.write(hit["_source"]["id"] + '\n') + # res = es.search(index="nodes", body={"scroll_id": '"' + scrollid + '"'}, search_type="scan", + # scroll="1m", size="10") + temp.append(hit["_source"]["id"]) + + res = es.scroll(scrollid, scroll="1m") + #print(temp) + + # DELETING existing/old indexes + + # for index in GSTUDIO_ELASTIC_SEARCH_INDEX.keys(): + # if (es.indices.exists(index.lower())): + # print("Deleting the existing index: " + index.lower() + " for reindexing") + # res = es.indices.delete(index=index.lower()) + # print("The delete response is %s " % res) + + + # --- END of DELETING existing/old indexes i=0 @@ -167,39 +231,43 @@ def main(): request_body = json.load(req_body) for index, doc_type in GSTUDIO_ELASTIC_SEARCH_INDEX.items(): - res = es.indices.create(index=index.lower(), body=request_body) + if (not es.indices.exists(index.lower())): + res = es.indices.create(index=index.lower(), body=request_body) + print("Response for index creation") - #print "%s/%s" %(i,len(all_docs)) + # print "%s/%s" %(i,len(all_docs)) - if(index.strip('[]').lower()=="triples"): - #f = open("/data/triples.txt", "w") - #os.chmod("/data/triples.txt", 0o777) - index_docs(triples ,index.lower(),doc_type,f) + if (index.strip('[]').lower() == "triples"): + # f = open("/data/triples.txt", "w") + # os.chmod("/data/triples.txt", 0o777) + index_docs(triples, index.lower(), doc_type) - elif(index.strip('[]').lower()=="buddies"): - #f = open("/data/buddies.txt", "w") - #os.chmod("/data/buddies.txt", 0o777) - index_docs(buddys, index.lower(), doc_type,f) + elif (index.strip('[]').lower() == "buddies"): + # f = open("/data/buddies.txt", "w") + # os.chmod("/data/buddies.txt", 0o777) + index_docs(buddys, index.lower(), doc_type) - elif(index.strip('[]').lower()=="benchmarks"): - #f = open("/data/benchmarks.txt", "w+") - #os.chmod("/data/benchmarks.txt", 0o777) - index_docs(benchmarks, index.lower(), doc_type,f) + elif (index.strip('[]').lower() == "benchmarks"): + # f = open("/data/benchmarks.txt", "w+") + # os.chmod("/data/benchmarks.txt", 0o777) + index_docs(benchmarks, index.lower(), doc_type) elif (index.strip('[]').lower() == "nodes"): - #f = open("/data/nodes.txt", "w+") - #os.chmod("/data/nodes.txt", 0o777) - index_docs(nodes, index.lower(), doc_type,f) + # f = open("/data/nodes.txt", "w+") + # os.chmod("/data/nodes.txt", 0o777) + + index_docs(nodes, index.lower(), doc_type) + elif (index.strip('[]').lower() == "counters"): - #f = open("/data/counters.txt", "w") - #os.chmod("/data/counters.txt", 0o777) - index_docs(counters, index.lower(), doc_type,f) + # f = open("/data/counters.txt", "w") + # os.chmod("/data/counters.txt", 0o777) + index_docs(counters, index.lower(), doc_type) elif (index.strip('[]').lower() == "filehives"): - #f = open("/data/filehives.txt", "w") + # f = open("/data/filehives.txt", "w") ##os.chmod("/data/filehives.txt", 0o777) - index_docs(filehives, index.lower(), doc_type,f) + index_docs(filehives, index.lower(), doc_type) i=i+1 From 930588e2bd75a1f2fb3937033341a862d99f719c Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Wed, 24 Jan 2018 14:50:12 +0530 Subject: [PATCH 274/766] if and else if block s added --- doc/deployer/es_injection.py | 123 ++++++++++++++--------------------- 1 file changed, 48 insertions(+), 75 deletions(-) diff --git a/doc/deployer/es_injection.py b/doc/deployer/es_injection.py index 3f15e436dc..af2eec5a8e 100644 --- a/doc/deployer/es_injection.py +++ b/doc/deployer/es_injection.py @@ -74,7 +74,7 @@ def index_docs(all_docs,index,doc_type): #file_name.write(document["id"] + '\n') get_doc_type=get_document_type(document) print(get_doc_type) - es.index(index=index, doc_type=get_doc_type, id=document["id"], body=document) + es.index(index="gsystem", doc_type=get_doc_type, id=document["id"], body=document) elif document["type"] == "Group": es.index(index=index, doc_type="group", id=document["id"], body=document) @@ -141,6 +141,13 @@ def main(): for index, doc_type in GSTUDIO_ELASTIC_SEARCH_INDEX.items(): temp = [] + + with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/req_body.json") as req_body: + request_body = json.load(req_body) + + if (not es.indices.exists(index.lower())): + res = es.indices.create(index=index.lower(), body=request_body) + if (es.indices.exists(index.lower())): res = es.search(index=index.lower(), body={"query": {"match_all": {}}, "_source": ["id"]}, scroll="1m", size="10") @@ -161,56 +168,67 @@ def main(): if(index.lower() == "nodes"): nodes = node_collection.find({ '_id': {'$nin': temp} }).batch_size(5) + + if(nodes.count() == 0): + print("All "+ index.lower() +" documents have injected to elasticsearch") + continue + else: + index_docs(nodes, index.lower(), doc_type) + elif (index.lower() == "triples"): triples = triple_collection.find({ '_id': {'$nin': temp} }).batch_size(5) + if (triples.count() == 0): + print("All " + index.lower() + " documents have injected to elasticsearch") + continue + else: + # f = open("/data/triples.txt", "w") + # os.chmod("/data/triples.txt", 0o777) + index_docs(triples, index.lower(), doc_type) + elif (index.lower() == "benchmarks"): benchmarks = benchmark_collection.find({ '_id': {'$nin': temp} }).batch_size(5) + if (benchmarks.count() == 0): + print("All " + index.lower() + " documents have injected to elasticsearch") + continue + else: + index_docs(benchmarks, index.lower(), doc_type) + elif (index.lower() == "filehives"): filehives = filehive_collection.find({ '_id': {'$nin': temp} }).batch_size(5) + if (filehives.count() == 0): + print("All " + index.lower() + " documents have injected to elasticsearch") + continue + else: + index_docs(filehives, index.lower(), doc_type) + elif (index.lower() == "buddies"): buddys = buddy_collection.find({ '_id': {'$nin': temp} }).batch_size(5) + if (buddys.count() == 0): + print("All " + index.lower() + " documents have injected to elasticsearch") + continue + else: + index_docs(buddys, index.lower(), doc_type) + elif (index.lower() == "counters"): counters = counter_collection.find({ '_id': {'$nin': temp} }).batch_size(5) - + if (counters.count() == 0): + print("All " + index.lower() + " documents have injected to elasticsearch") + continue + else: + index_docs(counters, index.lower(), doc_type) print(res['_scroll_id']) print(res['hits']['total']) - - - if (res['hits']['total'] < nodes.count()): - #f = open("/data/nodes.txt", "w+") #os.chmod("/data/nodes.txt", 0o777) - if (nodes.count() < 10): - - for hit in res['hits']['hits']: - # print(hit["_source"]["id"]) - temp.append(hit["_source"]["id"]) - - #f.close() - - else: - - scrollid = res['_scroll_id'] - - # f = open("/data/nodes.txt", "w+") + # f = open("/data/nodes.txt", "w+") # os.chmod("/data/nodes.txt", 0o777) # es.scroll(scrollid, scroll="1m") - while len(res['hits']['hits']) > 0: - - for hit in res['hits']['hits']: - # print(hit["_source"]["id"]) - # f.write(hit["_source"]["id"] + '\n') - # res = es.search(index="nodes", body={"scroll_id": '"' + scrollid + '"'}, search_type="scan", - # scroll="1m", size="10") - temp.append(hit["_source"]["id"]) - - res = es.scroll(scrollid, scroll="1m") #print(temp) # DELETING existing/old indexes @@ -225,50 +243,5 @@ def main(): # --- END of DELETING existing/old indexes - i=0 - - with open("/home/docker/code/gstudio/gnowsys-ndf/gnowsys_ndf/req_body.json") as req_body: - request_body = json.load(req_body) - - for index, doc_type in GSTUDIO_ELASTIC_SEARCH_INDEX.items(): - if (not es.indices.exists(index.lower())): - res = es.indices.create(index=index.lower(), body=request_body) - - print("Response for index creation") - # print "%s/%s" %(i,len(all_docs)) - - if (index.strip('[]').lower() == "triples"): - # f = open("/data/triples.txt", "w") - # os.chmod("/data/triples.txt", 0o777) - index_docs(triples, index.lower(), doc_type) - - elif (index.strip('[]').lower() == "buddies"): - # f = open("/data/buddies.txt", "w") - # os.chmod("/data/buddies.txt", 0o777) - index_docs(buddys, index.lower(), doc_type) - - elif (index.strip('[]').lower() == "benchmarks"): - # f = open("/data/benchmarks.txt", "w+") - # os.chmod("/data/benchmarks.txt", 0o777) - index_docs(benchmarks, index.lower(), doc_type) - - elif (index.strip('[]').lower() == "nodes"): - # f = open("/data/nodes.txt", "w+") - # os.chmod("/data/nodes.txt", 0o777) - - index_docs(nodes, index.lower(), doc_type) - - - elif (index.strip('[]').lower() == "counters"): - # f = open("/data/counters.txt", "w") - # os.chmod("/data/counters.txt", 0o777) - index_docs(counters, index.lower(), doc_type) - - elif (index.strip('[]').lower() == "filehives"): - # f = open("/data/filehives.txt", "w") - ##os.chmod("/data/filehives.txt", 0o777) - index_docs(filehives, index.lower(), doc_type) - - i=i+1 - + main() \ No newline at end of file From 33dca7073bb02c1f5f4b84bf7c0a48c40b84b996 Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Wed, 24 Jan 2018 17:09:44 +0530 Subject: [PATCH 275/766] collection_set out of index error fixed --- gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py index 872a71d2cc..aa44c5e38c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py @@ -2079,7 +2079,8 @@ def activity_player_detail(request, group_id, lesson_id, activity_id): for each in group_obj.collection_set: node = node_collection.one({"_id":ObjectId(each)}) - lesson_list.append({'name':node.name,'id':node._id,'first_act':node.collection_set[0]}) + if node and node.collection_set: + lesson_list.append({'name':node.name,'id':node._id,'first_act':node.collection_set[0]}) parent_node_id = activity_id node_obj = node_collection.one({'_id': ObjectId(activity_id)}) From 0b7d856f4d1d646096d6265639d5f0ce7acadd4f Mon Sep 17 00:00:00 2001 From: Prachirb Date: Wed, 24 Jan 2018 17:22:31 +0530 Subject: [PATCH 276/766] Asset detail/tags and add asset UI improved --- .../ndf/static/ndf/css/themes/clix/styles.css | 251 ++++++++++++------ .../ndf/css/themes/metastudio/styles.css | 249 +++++++++++------ .../static/ndf/css/themes/nroer/styles.css | 249 +++++++++++------ .../ndf/static/ndf/css/themes/tiss/styles.css | 249 +++++++++++------ .../ndf/static/ndf/scss/_app_styles.scss | 86 +++++- 5 files changed, 764 insertions(+), 320 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css index 1f8a7184ad..8bd1712f1b 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css @@ -29916,6 +29916,46 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* line 6754, ../../../scss/_app_styles.scss */ +.orange-button-subtitle { + color: #ce7869; + padding: 4px 5px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 6765, ../../../scss/_app_styles.scss */ +.orange-button-subtitle:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 6771, ../../../scss/_app_styles.scss */ +.transcript-toggler { + display: block; + width: 155px !important; + height: 30px; + margin-top: -14px !important; + padding: 9px 16px 2px; + background: radial-gradient(#573d8f, #412e6b); + border-radius: 0 0 5px 5px; + color: #fff; + cursor: pointer; + font-size: .75rem; + padding-top: 7px !important; + text-transform: uppercase; +} + +/* line 6786, ../../../scss/_app_styles.scss */ +.asset_list { + margin-left: 12px; +} + +/* line 6790, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -29924,22 +29964,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6763, ../../../scss/_app_styles.scss */ +/* line 6799, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6770, ../../../scss/_app_styles.scss */ +/* line 6806, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6776, ../../../scss/_app_styles.scss */ +/* line 6812, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6778, ../../../scss/_app_styles.scss */ +/* line 6814, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -29948,15 +29988,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6785, ../../../scss/_app_styles.scss */ +/* line 6821, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6789, ../../../scss/_app_styles.scss */ +/* line 6825, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6795, ../../../scss/_app_styles.scss */ +/* line 6831, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -29965,7 +30005,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6806, ../../../scss/_app_styles.scss */ +/* line 6842, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -29974,24 +30014,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6815, ../../../scss/_app_styles.scss */ +/* line 6851, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6822, ../../../scss/_app_styles.scss */ +/* line 6858, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 6827, ../../../scss/_app_styles.scss */ +/* line 6863, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 6831, ../../../scss/_app_styles.scss */ +/* line 6867, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -30002,14 +30042,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 6841, ../../../scss/_app_styles.scss */ +/* line 6877, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 6848, ../../../scss/_app_styles.scss */ + /* line 6884, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30017,7 +30057,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6857, ../../../scss/_app_styles.scss */ + /* line 6893, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30025,7 +30065,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6864, ../../../scss/_app_styles.scss */ + /* line 6900, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30033,14 +30073,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6871, ../../../scss/_app_styles.scss */ + /* line 6907, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 6879, ../../../scss/_app_styles.scss */ +/* line 6915, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30055,14 +30095,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6895, ../../../scss/_app_styles.scss */ +/* line 6931, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 6902, ../../../scss/_app_styles.scss */ + /* line 6938, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30073,7 +30113,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6913, ../../../scss/_app_styles.scss */ + /* line 6949, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30084,7 +30124,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6924, ../../../scss/_app_styles.scss */ + /* line 6960, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30095,7 +30135,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6935, ../../../scss/_app_styles.scss */ + /* line 6971, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30105,7 +30145,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6946, ../../../scss/_app_styles.scss */ +/* line 6982, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30120,14 +30160,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6962, ../../../scss/_app_styles.scss */ +/* line 6998, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 6969, ../../../scss/_app_styles.scss */ + /* line 7005, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30138,7 +30178,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6980, ../../../scss/_app_styles.scss */ + /* line 7016, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30149,7 +30189,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6991, ../../../scss/_app_styles.scss */ + /* line 7027, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30160,7 +30200,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7002, ../../../scss/_app_styles.scss */ + /* line 7038, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30170,11 +30210,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7013, ../../../scss/_app_styles.scss */ +/* line 7049, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 7015, ../../../scss/_app_styles.scss */ +/* line 7051, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30183,11 +30223,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 7023, ../../../scss/_app_styles.scss */ +/* line 7059, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 7029, ../../../scss/_app_styles.scss */ +/* line 7065, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30196,7 +30236,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7040, ../../../scss/_app_styles.scss */ +/* line 7076, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30207,22 +30247,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7050, ../../../scss/_app_styles.scss */ +/* line 7086, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7053, ../../../scss/_app_styles.scss */ +/* line 7089, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7058, ../../../scss/_app_styles.scss */ +/* line 7094, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7069, ../../../scss/_app_styles.scss */ +/* line 7105, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30233,26 +30273,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7079, ../../../scss/_app_styles.scss */ +/* line 7115, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7082, ../../../scss/_app_styles.scss */ +/* line 7118, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7086, ../../../scss/_app_styles.scss */ +/* line 7122, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7092, ../../../scss/_app_styles.scss */ +/* line 7128, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7094, ../../../scss/_app_styles.scss */ +/* line 7130, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30261,7 +30301,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7103, ../../../scss/_app_styles.scss */ +/* line 7139, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30270,30 +30310,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7117, ../../../scss/_app_styles.scss */ +/* line 7153, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; - width: 485px; - min-height: 350px; + width: 750px; + min-height: 445px; margin-left: 14px; } /* Asset detail */ -/* line 7128, ../../../scss/_app_styles.scss */ +/* line 7164, ../../../scss/_app_styles.scss */ .overlay-head { - background-color: #fff; height: 60px; margin-bottom: 20px; } -/* line 7134, ../../../scss/_app_styles.scss */ +/* line 7170, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7139, ../../../scss/_app_styles.scss */ +/* line 7175, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30307,13 +30346,41 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7151, ../../../scss/_app_styles.scss */ +/* line 7187, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7158, ../../../scss/_app_styles.scss */ +/* line 7193, ../../../scss/_app_styles.scss */ +.orange-button-template { + color: #ce7869; + background: #fff; +} +/* line 7196, ../../../scss/_app_styles.scss */ +.orange-button-template:hover { + background-color: #fff; +} +/* line 7199, ../../../scss/_app_styles.scss */ +.orange-button-template > a { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 7210, ../../../scss/_app_styles.scss */ +.orange-button-template > a:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7217, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30325,7 +30392,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7169, ../../../scss/_app_styles.scss */ +/* line 7228, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30333,13 +30400,37 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7178, ../../../scss/_app_styles.scss */ +/* line 7237, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7186, ../../../scss/_app_styles.scss */ +/* line 7244, ../../../scss/_app_styles.scss */ +.page-name { + margin-top: 8px; +} + +/* line 7248, ../../../scss/_app_styles.scss */ +.tag-ele { + font-weight: normal; + text-align: center; + text-decoration: none; + line-height: 1; + white-space: nowrap; + display: inline-block; + position: relative; + margin-bottom: inherit; + padding: 0.25rem 0.5rem 0.25rem; + font-size: 0.6875rem; + background-color: #ffffff; + color: #ce7869; + border: 1px solid; + border-radius: 6px; + text-transform: none; +} + +/* line 7266, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30357,12 +30448,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7202, ../../../scss/_app_styles.scss */ +/* line 7282, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7207, ../../../scss/_app_styles.scss */ +/* line 7287, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30374,13 +30465,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7217, ../../../scss/_app_styles.scss */ +/* line 7297, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7225, ../../../scss/_app_styles.scss */ +/* line 7305, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30397,13 +30488,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7240, ../../../scss/_app_styles.scss */ +/* line 7320, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* line 7251, ../../../scss/_app_styles.scss */ +/* line 7331, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -30411,7 +30502,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-size: 100% 100%; position: relative; } -/* line 7258, ../../../scss/_app_styles.scss */ +/* line 7338, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -30425,13 +30516,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7272, ../../../scss/_app_styles.scss */ +/* line 7352, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 7277, ../../../scss/_app_styles.scss */ +/* line 7357, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -30440,60 +30531,60 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow: hidden; background-color: #fff; } -/* line 7285, ../../../scss/_app_styles.scss */ +/* line 7365, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 7290, ../../../scss/_app_styles.scss */ +/* line 7370, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 7295, ../../../scss/_app_styles.scss */ +/* line 7375, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 7300, ../../../scss/_app_styles.scss */ +/* line 7380, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 7308, ../../../scss/_app_styles.scss */ +/* line 7388, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 7312, ../../../scss/_app_styles.scss */ +/* line 7392, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 7322, ../../../scss/_app_styles.scss */ +/* line 7402, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -19.3px; } -/* line 7329, ../../../scss/_app_styles.scss */ +/* line 7409, ../../../scss/_app_styles.scss */ .course-students-data { margin: 2px 2px 2px 2px; border: 2px solid #164a7b; padding: 19px 14px 0px 5px; } -/* line 7336, ../../../scss/_app_styles.scss */ +/* line 7416, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 7339, ../../../scss/_app_styles.scss */ +/* line 7419, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 7347, ../../../scss/_app_styles.scss */ +/* line 7427, ../../../scss/_app_styles.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -30509,7 +30600,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7366, ../../../scss/_app_styles.scss */ +/* line 7446, ../../../scss/_app_styles.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -30519,7 +30610,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7375, ../../../scss/_app_styles.scss */ +/* line 7455, ../../../scss/_app_styles.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -30529,7 +30620,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 7384, ../../../scss/_app_styles.scss */ +/* line 7464, ../../../scss/_app_styles.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; @@ -35537,7 +35628,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { .module_card .card_title { display: block; width: 230px; - font-size: 1.4vw; + font-size: 24px; font-weight: 600; text-align: center; margin: 0px auto; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css index 3053eda596..cc8dc2b8dd 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css @@ -29939,6 +29939,46 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* line 6754, ../../../scss/_app_styles.scss */ +.orange-button-subtitle { + color: #ce7869; + padding: 4px 5px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 6765, ../../../scss/_app_styles.scss */ +.orange-button-subtitle:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 6771, ../../../scss/_app_styles.scss */ +.transcript-toggler { + display: block; + width: 155px !important; + height: 30px; + margin-top: -14px !important; + padding: 9px 16px 2px; + background: radial-gradient(#573d8f, #412e6b); + border-radius: 0 0 5px 5px; + color: #fff; + cursor: pointer; + font-size: .75rem; + padding-top: 7px !important; + text-transform: uppercase; +} + +/* line 6786, ../../../scss/_app_styles.scss */ +.asset_list { + margin-left: 12px; +} + +/* line 6790, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -29947,22 +29987,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6763, ../../../scss/_app_styles.scss */ +/* line 6799, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6770, ../../../scss/_app_styles.scss */ +/* line 6806, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6776, ../../../scss/_app_styles.scss */ +/* line 6812, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6778, ../../../scss/_app_styles.scss */ +/* line 6814, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -29971,15 +30011,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6785, ../../../scss/_app_styles.scss */ +/* line 6821, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6789, ../../../scss/_app_styles.scss */ +/* line 6825, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6795, ../../../scss/_app_styles.scss */ +/* line 6831, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -29988,7 +30028,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6806, ../../../scss/_app_styles.scss */ +/* line 6842, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -29997,24 +30037,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6815, ../../../scss/_app_styles.scss */ +/* line 6851, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6822, ../../../scss/_app_styles.scss */ +/* line 6858, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 6827, ../../../scss/_app_styles.scss */ +/* line 6863, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 6831, ../../../scss/_app_styles.scss */ +/* line 6867, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -30025,14 +30065,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 6841, ../../../scss/_app_styles.scss */ +/* line 6877, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 6848, ../../../scss/_app_styles.scss */ + /* line 6884, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30040,7 +30080,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6857, ../../../scss/_app_styles.scss */ + /* line 6893, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30048,7 +30088,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6864, ../../../scss/_app_styles.scss */ + /* line 6900, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30056,14 +30096,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6871, ../../../scss/_app_styles.scss */ + /* line 6907, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 6879, ../../../scss/_app_styles.scss */ +/* line 6915, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30078,14 +30118,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6895, ../../../scss/_app_styles.scss */ +/* line 6931, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 6902, ../../../scss/_app_styles.scss */ + /* line 6938, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30096,7 +30136,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6913, ../../../scss/_app_styles.scss */ + /* line 6949, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30107,7 +30147,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6924, ../../../scss/_app_styles.scss */ + /* line 6960, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30118,7 +30158,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6935, ../../../scss/_app_styles.scss */ + /* line 6971, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30128,7 +30168,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6946, ../../../scss/_app_styles.scss */ +/* line 6982, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30143,14 +30183,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6962, ../../../scss/_app_styles.scss */ +/* line 6998, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 6969, ../../../scss/_app_styles.scss */ + /* line 7005, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30161,7 +30201,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6980, ../../../scss/_app_styles.scss */ + /* line 7016, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30172,7 +30212,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6991, ../../../scss/_app_styles.scss */ + /* line 7027, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30183,7 +30223,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7002, ../../../scss/_app_styles.scss */ + /* line 7038, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30193,11 +30233,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7013, ../../../scss/_app_styles.scss */ +/* line 7049, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 7015, ../../../scss/_app_styles.scss */ +/* line 7051, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30206,11 +30246,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 7023, ../../../scss/_app_styles.scss */ +/* line 7059, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 7029, ../../../scss/_app_styles.scss */ +/* line 7065, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30219,7 +30259,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7040, ../../../scss/_app_styles.scss */ +/* line 7076, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30230,22 +30270,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7050, ../../../scss/_app_styles.scss */ +/* line 7086, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7053, ../../../scss/_app_styles.scss */ +/* line 7089, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7058, ../../../scss/_app_styles.scss */ +/* line 7094, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7069, ../../../scss/_app_styles.scss */ +/* line 7105, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30256,26 +30296,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7079, ../../../scss/_app_styles.scss */ +/* line 7115, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7082, ../../../scss/_app_styles.scss */ +/* line 7118, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7086, ../../../scss/_app_styles.scss */ +/* line 7122, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7092, ../../../scss/_app_styles.scss */ +/* line 7128, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7094, ../../../scss/_app_styles.scss */ +/* line 7130, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30284,7 +30324,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7103, ../../../scss/_app_styles.scss */ +/* line 7139, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30293,30 +30333,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7117, ../../../scss/_app_styles.scss */ +/* line 7153, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; - width: 485px; - min-height: 350px; + width: 750px; + min-height: 445px; margin-left: 14px; } /* Asset detail */ -/* line 7128, ../../../scss/_app_styles.scss */ +/* line 7164, ../../../scss/_app_styles.scss */ .overlay-head { - background-color: #fff; height: 60px; margin-bottom: 20px; } -/* line 7134, ../../../scss/_app_styles.scss */ +/* line 7170, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7139, ../../../scss/_app_styles.scss */ +/* line 7175, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30330,13 +30369,41 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7151, ../../../scss/_app_styles.scss */ +/* line 7187, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7158, ../../../scss/_app_styles.scss */ +/* line 7193, ../../../scss/_app_styles.scss */ +.orange-button-template { + color: #ce7869; + background: #fff; +} +/* line 7196, ../../../scss/_app_styles.scss */ +.orange-button-template:hover { + background-color: #fff; +} +/* line 7199, ../../../scss/_app_styles.scss */ +.orange-button-template > a { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 7210, ../../../scss/_app_styles.scss */ +.orange-button-template > a:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7217, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30348,7 +30415,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7169, ../../../scss/_app_styles.scss */ +/* line 7228, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30356,13 +30423,37 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7178, ../../../scss/_app_styles.scss */ +/* line 7237, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7186, ../../../scss/_app_styles.scss */ +/* line 7244, ../../../scss/_app_styles.scss */ +.page-name { + margin-top: 8px; +} + +/* line 7248, ../../../scss/_app_styles.scss */ +.tag-ele { + font-weight: normal; + text-align: center; + text-decoration: none; + line-height: 1; + white-space: nowrap; + display: inline-block; + position: relative; + margin-bottom: inherit; + padding: 0.25rem 0.5rem 0.25rem; + font-size: 0.6875rem; + background-color: #ffffff; + color: #ce7869; + border: 1px solid; + border-radius: 6px; + text-transform: none; +} + +/* line 7266, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30380,12 +30471,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7202, ../../../scss/_app_styles.scss */ +/* line 7282, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7207, ../../../scss/_app_styles.scss */ +/* line 7287, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30397,13 +30488,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7217, ../../../scss/_app_styles.scss */ +/* line 7297, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7225, ../../../scss/_app_styles.scss */ +/* line 7305, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30420,13 +30511,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7240, ../../../scss/_app_styles.scss */ +/* line 7320, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* line 7251, ../../../scss/_app_styles.scss */ +/* line 7331, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -30434,7 +30525,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-size: 100% 100%; position: relative; } -/* line 7258, ../../../scss/_app_styles.scss */ +/* line 7338, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -30448,13 +30539,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7272, ../../../scss/_app_styles.scss */ +/* line 7352, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 7277, ../../../scss/_app_styles.scss */ +/* line 7357, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -30463,60 +30554,60 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow: hidden; background-color: #fff; } -/* line 7285, ../../../scss/_app_styles.scss */ +/* line 7365, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 7290, ../../../scss/_app_styles.scss */ +/* line 7370, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 7295, ../../../scss/_app_styles.scss */ +/* line 7375, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 7300, ../../../scss/_app_styles.scss */ +/* line 7380, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 7308, ../../../scss/_app_styles.scss */ +/* line 7388, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 7312, ../../../scss/_app_styles.scss */ +/* line 7392, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 7322, ../../../scss/_app_styles.scss */ +/* line 7402, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -19.3px; } -/* line 7329, ../../../scss/_app_styles.scss */ +/* line 7409, ../../../scss/_app_styles.scss */ .course-students-data { margin: 2px 2px 2px 2px; border: 2px solid #164a7b; padding: 19px 14px 0px 5px; } -/* line 7336, ../../../scss/_app_styles.scss */ +/* line 7416, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 7339, ../../../scss/_app_styles.scss */ +/* line 7419, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 7347, ../../../scss/_app_styles.scss */ +/* line 7427, ../../../scss/_app_styles.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -30532,7 +30623,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7366, ../../../scss/_app_styles.scss */ +/* line 7446, ../../../scss/_app_styles.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -30542,7 +30633,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7375, ../../../scss/_app_styles.scss */ +/* line 7455, ../../../scss/_app_styles.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -30552,7 +30643,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 7384, ../../../scss/_app_styles.scss */ +/* line 7464, ../../../scss/_app_styles.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css index e91de5f9c2..42de5c008e 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css @@ -30032,6 +30032,46 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* line 6754, ../../../scss/_app_styles.scss */ +.orange-button-subtitle { + color: #ce7869; + padding: 4px 5px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 6765, ../../../scss/_app_styles.scss */ +.orange-button-subtitle:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 6771, ../../../scss/_app_styles.scss */ +.transcript-toggler { + display: block; + width: 155px !important; + height: 30px; + margin-top: -14px !important; + padding: 9px 16px 2px; + background: radial-gradient(#573d8f, #412e6b); + border-radius: 0 0 5px 5px; + color: #fff; + cursor: pointer; + font-size: .75rem; + padding-top: 7px !important; + text-transform: uppercase; +} + +/* line 6786, ../../../scss/_app_styles.scss */ +.asset_list { + margin-left: 12px; +} + +/* line 6790, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -30040,22 +30080,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6763, ../../../scss/_app_styles.scss */ +/* line 6799, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6770, ../../../scss/_app_styles.scss */ +/* line 6806, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6776, ../../../scss/_app_styles.scss */ +/* line 6812, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6778, ../../../scss/_app_styles.scss */ +/* line 6814, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -30064,15 +30104,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6785, ../../../scss/_app_styles.scss */ +/* line 6821, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6789, ../../../scss/_app_styles.scss */ +/* line 6825, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6795, ../../../scss/_app_styles.scss */ +/* line 6831, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30081,7 +30121,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6806, ../../../scss/_app_styles.scss */ +/* line 6842, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -30090,24 +30130,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6815, ../../../scss/_app_styles.scss */ +/* line 6851, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6822, ../../../scss/_app_styles.scss */ +/* line 6858, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 6827, ../../../scss/_app_styles.scss */ +/* line 6863, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 6831, ../../../scss/_app_styles.scss */ +/* line 6867, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -30118,14 +30158,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 6841, ../../../scss/_app_styles.scss */ +/* line 6877, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 6848, ../../../scss/_app_styles.scss */ + /* line 6884, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30133,7 +30173,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6857, ../../../scss/_app_styles.scss */ + /* line 6893, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30141,7 +30181,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6864, ../../../scss/_app_styles.scss */ + /* line 6900, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30149,14 +30189,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6871, ../../../scss/_app_styles.scss */ + /* line 6907, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 6879, ../../../scss/_app_styles.scss */ +/* line 6915, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30171,14 +30211,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6895, ../../../scss/_app_styles.scss */ +/* line 6931, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 6902, ../../../scss/_app_styles.scss */ + /* line 6938, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30189,7 +30229,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6913, ../../../scss/_app_styles.scss */ + /* line 6949, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30200,7 +30240,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6924, ../../../scss/_app_styles.scss */ + /* line 6960, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30211,7 +30251,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6935, ../../../scss/_app_styles.scss */ + /* line 6971, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30221,7 +30261,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6946, ../../../scss/_app_styles.scss */ +/* line 6982, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30236,14 +30276,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6962, ../../../scss/_app_styles.scss */ +/* line 6998, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 6969, ../../../scss/_app_styles.scss */ + /* line 7005, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30254,7 +30294,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6980, ../../../scss/_app_styles.scss */ + /* line 7016, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30265,7 +30305,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6991, ../../../scss/_app_styles.scss */ + /* line 7027, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30276,7 +30316,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7002, ../../../scss/_app_styles.scss */ + /* line 7038, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30286,11 +30326,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7013, ../../../scss/_app_styles.scss */ +/* line 7049, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 7015, ../../../scss/_app_styles.scss */ +/* line 7051, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30299,11 +30339,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 7023, ../../../scss/_app_styles.scss */ +/* line 7059, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 7029, ../../../scss/_app_styles.scss */ +/* line 7065, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30312,7 +30352,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7040, ../../../scss/_app_styles.scss */ +/* line 7076, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30323,22 +30363,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7050, ../../../scss/_app_styles.scss */ +/* line 7086, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7053, ../../../scss/_app_styles.scss */ +/* line 7089, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7058, ../../../scss/_app_styles.scss */ +/* line 7094, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7069, ../../../scss/_app_styles.scss */ +/* line 7105, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30349,26 +30389,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7079, ../../../scss/_app_styles.scss */ +/* line 7115, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7082, ../../../scss/_app_styles.scss */ +/* line 7118, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7086, ../../../scss/_app_styles.scss */ +/* line 7122, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7092, ../../../scss/_app_styles.scss */ +/* line 7128, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7094, ../../../scss/_app_styles.scss */ +/* line 7130, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30377,7 +30417,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7103, ../../../scss/_app_styles.scss */ +/* line 7139, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30386,30 +30426,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7117, ../../../scss/_app_styles.scss */ +/* line 7153, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; - width: 485px; - min-height: 350px; + width: 750px; + min-height: 445px; margin-left: 14px; } /* Asset detail */ -/* line 7128, ../../../scss/_app_styles.scss */ +/* line 7164, ../../../scss/_app_styles.scss */ .overlay-head { - background-color: #fff; height: 60px; margin-bottom: 20px; } -/* line 7134, ../../../scss/_app_styles.scss */ +/* line 7170, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7139, ../../../scss/_app_styles.scss */ +/* line 7175, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30423,13 +30462,41 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7151, ../../../scss/_app_styles.scss */ +/* line 7187, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7158, ../../../scss/_app_styles.scss */ +/* line 7193, ../../../scss/_app_styles.scss */ +.orange-button-template { + color: #ce7869; + background: #fff; +} +/* line 7196, ../../../scss/_app_styles.scss */ +.orange-button-template:hover { + background-color: #fff; +} +/* line 7199, ../../../scss/_app_styles.scss */ +.orange-button-template > a { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 7210, ../../../scss/_app_styles.scss */ +.orange-button-template > a:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7217, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30441,7 +30508,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7169, ../../../scss/_app_styles.scss */ +/* line 7228, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30449,13 +30516,37 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7178, ../../../scss/_app_styles.scss */ +/* line 7237, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7186, ../../../scss/_app_styles.scss */ +/* line 7244, ../../../scss/_app_styles.scss */ +.page-name { + margin-top: 8px; +} + +/* line 7248, ../../../scss/_app_styles.scss */ +.tag-ele { + font-weight: normal; + text-align: center; + text-decoration: none; + line-height: 1; + white-space: nowrap; + display: inline-block; + position: relative; + margin-bottom: inherit; + padding: 0.25rem 0.5rem 0.25rem; + font-size: 0.6875rem; + background-color: #ffffff; + color: #ce7869; + border: 1px solid; + border-radius: 6px; + text-transform: none; +} + +/* line 7266, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30473,12 +30564,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7202, ../../../scss/_app_styles.scss */ +/* line 7282, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7207, ../../../scss/_app_styles.scss */ +/* line 7287, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30490,13 +30581,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7217, ../../../scss/_app_styles.scss */ +/* line 7297, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7225, ../../../scss/_app_styles.scss */ +/* line 7305, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30513,13 +30604,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7240, ../../../scss/_app_styles.scss */ +/* line 7320, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* line 7251, ../../../scss/_app_styles.scss */ +/* line 7331, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -30527,7 +30618,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-size: 100% 100%; position: relative; } -/* line 7258, ../../../scss/_app_styles.scss */ +/* line 7338, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -30541,13 +30632,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7272, ../../../scss/_app_styles.scss */ +/* line 7352, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 7277, ../../../scss/_app_styles.scss */ +/* line 7357, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -30556,60 +30647,60 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow: hidden; background-color: #fff; } -/* line 7285, ../../../scss/_app_styles.scss */ +/* line 7365, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 7290, ../../../scss/_app_styles.scss */ +/* line 7370, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 7295, ../../../scss/_app_styles.scss */ +/* line 7375, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 7300, ../../../scss/_app_styles.scss */ +/* line 7380, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 7308, ../../../scss/_app_styles.scss */ +/* line 7388, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 7312, ../../../scss/_app_styles.scss */ +/* line 7392, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 7322, ../../../scss/_app_styles.scss */ +/* line 7402, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -19.3px; } -/* line 7329, ../../../scss/_app_styles.scss */ +/* line 7409, ../../../scss/_app_styles.scss */ .course-students-data { margin: 2px 2px 2px 2px; border: 2px solid #164a7b; padding: 19px 14px 0px 5px; } -/* line 7336, ../../../scss/_app_styles.scss */ +/* line 7416, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 7339, ../../../scss/_app_styles.scss */ +/* line 7419, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 7347, ../../../scss/_app_styles.scss */ +/* line 7427, ../../../scss/_app_styles.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -30625,7 +30716,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7366, ../../../scss/_app_styles.scss */ +/* line 7446, ../../../scss/_app_styles.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -30635,7 +30726,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7375, ../../../scss/_app_styles.scss */ +/* line 7455, ../../../scss/_app_styles.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -30645,7 +30736,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 7384, ../../../scss/_app_styles.scss */ +/* line 7464, ../../../scss/_app_styles.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css index 3053eda596..cc8dc2b8dd 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css @@ -29939,6 +29939,46 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* line 6754, ../../../scss/_app_styles.scss */ +.orange-button-subtitle { + color: #ce7869; + padding: 4px 5px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 6765, ../../../scss/_app_styles.scss */ +.orange-button-subtitle:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 6771, ../../../scss/_app_styles.scss */ +.transcript-toggler { + display: block; + width: 155px !important; + height: 30px; + margin-top: -14px !important; + padding: 9px 16px 2px; + background: radial-gradient(#573d8f, #412e6b); + border-radius: 0 0 5px 5px; + color: #fff; + cursor: pointer; + font-size: .75rem; + padding-top: 7px !important; + text-transform: uppercase; +} + +/* line 6786, ../../../scss/_app_styles.scss */ +.asset_list { + margin-left: 12px; +} + +/* line 6790, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -29947,22 +29987,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6763, ../../../scss/_app_styles.scss */ +/* line 6799, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6770, ../../../scss/_app_styles.scss */ +/* line 6806, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6776, ../../../scss/_app_styles.scss */ +/* line 6812, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6778, ../../../scss/_app_styles.scss */ +/* line 6814, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -29971,15 +30011,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6785, ../../../scss/_app_styles.scss */ +/* line 6821, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6789, ../../../scss/_app_styles.scss */ +/* line 6825, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6795, ../../../scss/_app_styles.scss */ +/* line 6831, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -29988,7 +30028,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6806, ../../../scss/_app_styles.scss */ +/* line 6842, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -29997,24 +30037,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6815, ../../../scss/_app_styles.scss */ +/* line 6851, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6822, ../../../scss/_app_styles.scss */ +/* line 6858, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 6827, ../../../scss/_app_styles.scss */ +/* line 6863, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 6831, ../../../scss/_app_styles.scss */ +/* line 6867, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -30025,14 +30065,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 6841, ../../../scss/_app_styles.scss */ +/* line 6877, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 6848, ../../../scss/_app_styles.scss */ + /* line 6884, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30040,7 +30080,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6857, ../../../scss/_app_styles.scss */ + /* line 6893, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30048,7 +30088,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6864, ../../../scss/_app_styles.scss */ + /* line 6900, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30056,14 +30096,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6871, ../../../scss/_app_styles.scss */ + /* line 6907, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 6879, ../../../scss/_app_styles.scss */ +/* line 6915, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30078,14 +30118,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6895, ../../../scss/_app_styles.scss */ +/* line 6931, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 6902, ../../../scss/_app_styles.scss */ + /* line 6938, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30096,7 +30136,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6913, ../../../scss/_app_styles.scss */ + /* line 6949, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30107,7 +30147,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6924, ../../../scss/_app_styles.scss */ + /* line 6960, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30118,7 +30158,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6935, ../../../scss/_app_styles.scss */ + /* line 6971, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30128,7 +30168,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 6946, ../../../scss/_app_styles.scss */ +/* line 6982, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30143,14 +30183,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 6962, ../../../scss/_app_styles.scss */ +/* line 6998, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 6969, ../../../scss/_app_styles.scss */ + /* line 7005, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30161,7 +30201,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6980, ../../../scss/_app_styles.scss */ + /* line 7016, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30172,7 +30212,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6991, ../../../scss/_app_styles.scss */ + /* line 7027, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30183,7 +30223,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7002, ../../../scss/_app_styles.scss */ + /* line 7038, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30193,11 +30233,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7013, ../../../scss/_app_styles.scss */ +/* line 7049, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 7015, ../../../scss/_app_styles.scss */ +/* line 7051, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30206,11 +30246,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 7023, ../../../scss/_app_styles.scss */ +/* line 7059, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 7029, ../../../scss/_app_styles.scss */ +/* line 7065, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30219,7 +30259,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7040, ../../../scss/_app_styles.scss */ +/* line 7076, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30230,22 +30270,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7050, ../../../scss/_app_styles.scss */ +/* line 7086, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7053, ../../../scss/_app_styles.scss */ +/* line 7089, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7058, ../../../scss/_app_styles.scss */ +/* line 7094, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7069, ../../../scss/_app_styles.scss */ +/* line 7105, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30256,26 +30296,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7079, ../../../scss/_app_styles.scss */ +/* line 7115, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7082, ../../../scss/_app_styles.scss */ +/* line 7118, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7086, ../../../scss/_app_styles.scss */ +/* line 7122, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7092, ../../../scss/_app_styles.scss */ +/* line 7128, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7094, ../../../scss/_app_styles.scss */ +/* line 7130, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30284,7 +30324,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7103, ../../../scss/_app_styles.scss */ +/* line 7139, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30293,30 +30333,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7117, ../../../scss/_app_styles.scss */ +/* line 7153, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; - width: 485px; - min-height: 350px; + width: 750px; + min-height: 445px; margin-left: 14px; } /* Asset detail */ -/* line 7128, ../../../scss/_app_styles.scss */ +/* line 7164, ../../../scss/_app_styles.scss */ .overlay-head { - background-color: #fff; height: 60px; margin-bottom: 20px; } -/* line 7134, ../../../scss/_app_styles.scss */ +/* line 7170, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7139, ../../../scss/_app_styles.scss */ +/* line 7175, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30330,13 +30369,41 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7151, ../../../scss/_app_styles.scss */ +/* line 7187, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7158, ../../../scss/_app_styles.scss */ +/* line 7193, ../../../scss/_app_styles.scss */ +.orange-button-template { + color: #ce7869; + background: #fff; +} +/* line 7196, ../../../scss/_app_styles.scss */ +.orange-button-template:hover { + background-color: #fff; +} +/* line 7199, ../../../scss/_app_styles.scss */ +.orange-button-template > a { + color: #ce7869; + padding: 7px 14px; + background: #fff; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; +} +/* line 7210, ../../../scss/_app_styles.scss */ +.orange-button-template > a:hover { + background-color: rgba(206, 120, 105, 0.2); + color: #ce7869; +} + +/* line 7217, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30348,7 +30415,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7169, ../../../scss/_app_styles.scss */ +/* line 7228, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30356,13 +30423,37 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7178, ../../../scss/_app_styles.scss */ +/* line 7237, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7186, ../../../scss/_app_styles.scss */ +/* line 7244, ../../../scss/_app_styles.scss */ +.page-name { + margin-top: 8px; +} + +/* line 7248, ../../../scss/_app_styles.scss */ +.tag-ele { + font-weight: normal; + text-align: center; + text-decoration: none; + line-height: 1; + white-space: nowrap; + display: inline-block; + position: relative; + margin-bottom: inherit; + padding: 0.25rem 0.5rem 0.25rem; + font-size: 0.6875rem; + background-color: #ffffff; + color: #ce7869; + border: 1px solid; + border-radius: 6px; + text-transform: none; +} + +/* line 7266, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30380,12 +30471,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7202, ../../../scss/_app_styles.scss */ +/* line 7282, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7207, ../../../scss/_app_styles.scss */ +/* line 7287, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30397,13 +30488,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7217, ../../../scss/_app_styles.scss */ +/* line 7297, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7225, ../../../scss/_app_styles.scss */ +/* line 7305, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30420,13 +30511,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7240, ../../../scss/_app_styles.scss */ +/* line 7320, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* line 7251, ../../../scss/_app_styles.scss */ +/* line 7331, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -30434,7 +30525,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-size: 100% 100%; position: relative; } -/* line 7258, ../../../scss/_app_styles.scss */ +/* line 7338, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -30448,13 +30539,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7272, ../../../scss/_app_styles.scss */ +/* line 7352, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 7277, ../../../scss/_app_styles.scss */ +/* line 7357, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -30463,60 +30554,60 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow: hidden; background-color: #fff; } -/* line 7285, ../../../scss/_app_styles.scss */ +/* line 7365, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 7290, ../../../scss/_app_styles.scss */ +/* line 7370, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 7295, ../../../scss/_app_styles.scss */ +/* line 7375, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 7300, ../../../scss/_app_styles.scss */ +/* line 7380, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 7308, ../../../scss/_app_styles.scss */ +/* line 7388, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 7312, ../../../scss/_app_styles.scss */ +/* line 7392, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 7322, ../../../scss/_app_styles.scss */ +/* line 7402, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -19.3px; } -/* line 7329, ../../../scss/_app_styles.scss */ +/* line 7409, ../../../scss/_app_styles.scss */ .course-students-data { margin: 2px 2px 2px 2px; border: 2px solid #164a7b; padding: 19px 14px 0px 5px; } -/* line 7336, ../../../scss/_app_styles.scss */ +/* line 7416, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 7339, ../../../scss/_app_styles.scss */ +/* line 7419, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 7347, ../../../scss/_app_styles.scss */ +/* line 7427, ../../../scss/_app_styles.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -30532,7 +30623,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7366, ../../../scss/_app_styles.scss */ +/* line 7446, ../../../scss/_app_styles.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -30542,7 +30633,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7375, ../../../scss/_app_styles.scss */ +/* line 7455, ../../../scss/_app_styles.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -30552,7 +30643,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 7384, ../../../scss/_app_styles.scss */ +/* line 7464, ../../../scss/_app_styles.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss index dc6ec4b80c..3d8e173513 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss @@ -6751,6 +6751,42 @@ $ah_2_background_color_hover: rgba(244, 244, 244, 0.3);; } +.orange-button-subtitle { + color: $primary-orange; + padding: 4px 5px; + background:#fff ; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; + &:hover{ + background-color:rgba(206,120,105,0.2); + color: $primary-orange; + } +} + +.transcript-toggler{ + display: block; + width: 155px !important; + height: 30px; + margin-top: -14px !important; + padding: 9px 16px 2px; + background: radial-gradient(hsla(259, 40%, 40%, 1), hsla(259, 40%,30%, 1)); + border-radius: 0 0 5px 5px; + color: #fff; + cursor: pointer; + font-size: .75rem; + padding-top:7px !important; + text-transform: uppercase; +} + +.asset_list{ + margin-left:12px; +} + .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -7117,8 +7153,8 @@ $ah_2_background_color_hover: rgba(244, 244, 244, 0.3);; .preview_asset { background: #ccc; border: 2px solid #999; - width: 485px; - min-height: 350px; + width: 750px; + min-height: 445px; margin-left: 14px; } @@ -7126,7 +7162,7 @@ $ah_2_background_color_hover: rgba(244, 244, 244, 0.3);; /* Asset detail */ .overlay-head{ - background-color: #fff; +// background-color: #fff; height: 60px; margin-bottom:20px; } @@ -7154,6 +7190,29 @@ $ah_2_background_color_hover: rgba(244, 244, 244, 0.3);; } } +.orange-button-template{ + color: $primary-orange; + background:#fff ; + &:hover{ + background-color:#fff;; + } + >a{ + color: $primary-orange; + padding: 7px 14px; + background:#fff ; + border: 1px solid #ce7869; + font-size: 12px; + font-family: "OpenSans-Regular", serif; + border-radius: 4px; + margin-right: 20px; + margin-bottom: 8px; + margin-top: 10px; + &:hover{ + background-color:rgba(206,120,105,0.2); + color: $primary-orange; + } + } +} .explore-button { // //font-size: 25px; @@ -7182,6 +7241,27 @@ $ah_2_background_color_hover: rgba(244, 244, 244, 0.3);; +.page-name{ + margin-top:8px; +} + +.tag-ele{ + font-weight: normal; + text-align: center; + text-decoration: none; + line-height: 1; + white-space: nowrap; + display: inline-block; + position: relative; + margin-bottom: inherit; + padding: 0.25rem 0.5rem 0.25rem; + font-size: 0.6875rem; + background-color: #ffffff; + color: #ce7869; + border: 1px solid; + border-radius: 6px; + text-transform: none; +} .button-cancel-new{ height: 2rem; From 273a456bc4c465a7323910f3f6c147d8a28f2d19 Mon Sep 17 00:00:00 2001 From: Prachirb Date: Wed, 24 Jan 2018 17:23:01 +0530 Subject: [PATCH 277/766] Asset management UI --- .../ndf/templates/ndf/add_asset.html | 74 ++++---- .../ndf/templates/ndf/asset_card.html | 2 +- .../templates/ndf/asset_content_detail.html | 162 ++++++++---------- .../gnowsys_ndf/ndf/templates/ndf/lms.html | 4 +- 4 files changed, 108 insertions(+), 134 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html index 7b01d7580a..1f35bb828d 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html @@ -25,21 +25,23 @@ {% if edit or not asset_obj.name %} × {% endif %} -
    - - + -
    +
    {% if not edit and asset_obj %}

    {% firstof asset_obj.altnames|truncatechars:25 asset_obj.name|truncatechars:25 %}

    - + +
    + {{asset_obj.content|safe|striptags}} +
    - -
    + +
    {% if not edit and asset_obj %} {% if asset_obj.created_by == request.user.id or is_gstaff %} -
    -
    -
    -
    - {% if asset_obj.tags %} - {% for tag in asset_obj.tags %} - {% if tag != "asset@asset" and tag != "raw@material" and tag != "asset@gallery" %} - - {% endif %} - {% endfor %} - {% endif %} -
    -
    +
    {% include 'ndf/rating.html' with node=asset_obj %} -
    -
    -
    - -
    - {{asset_obj.content|safe|striptags}} -
    - - + +
    + {% if asset_obj.tags %} + {% for tag in asset_obj.tags %} + {% if tag != "asset@asset" and tag != "raw@material" and tag != "asset@gallery" %} + + {% endif %} + {% endfor %} + {% endif %} +
    +
    +
    {% else %}

      @@ -114,9 +105,7 @@

      {% endif %} -
    -
    -
    +
    {% endif %} -
    +
    {% for each in asset_content_list.grel_node %} {% if 'DELETED' != each.status %} {% include "ndf/asset_card.html" with url_name="assetcontent_detail" each_asset=each first_arg=group_id second_arg=asset_obj.pk third_arg=each.pk no_asset=True %} @@ -283,16 +272,11 @@

      {% include 'ndf/pagination.html' with urlname="asset_details_paged" first_arg=group_id second_arg=asset_obj.pk page_info=assetcontent_page_info %} -
    +
    {% if node %} -
      {% include "ndf/asset_content_detail.html" with node=node %} {% endif %}
    - -
    -
    -
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/asset_card.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/asset_card.html index e5cae7bd4b..2ca6159635 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/asset_card.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/asset_card.html @@ -11,7 +11,7 @@ {% if not no_asset %} {% get_relation_value each_asset.pk 'has_assetcontent' as grel_asstcontent %} {% endif %} -
    +
    {% if not no_asset %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html index 4e3ff22ee2..cc49908a4c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html @@ -5,49 +5,82 @@ {% get_group_object groupid as group_object %}
    -
    - - -
    - {% if title == "asset_content_detail" or title == "asset_gallery_detail" or title == "raw_material_detail"%} - - {% include "ndf/resource_view.html" with node=node %} - {% endif %} -
    -
    - - +
    +

    {% trans "File name:" %} {{node.name}}

    +
    {% trans "Created By:" %}{{ node.user_details_dict.contributors|join:', ' }}
    + +
    + {% get_relation_node node.pk 'has_alt_content' as alt_lang_rel_node %} + {% if alt_lang_rel_node %} +
    + {% for each in alt_lang_rel_node %} + +
    {% trans "Alternate File:" %}{{each.file_name}}
    +
    + {% endfor %} +
    + {% endif %} +
    +
    + {% get_relation_value node.pk 'has_subtitle' as grel_sub %} + {% for each in grel_sub.grel_node %} +
    + +
    {% trans "Subtitle:" %}{{each.name}}
    +
    +
    + {% if node.created_by == request.user.id or is_gstaff %} +
    + {% endif %} +
    + {% endfor %} +
    + +
    + {% get_relation_value node.pk 'has_transcript' as grel_trans %} + {% if grel_trans.grel_node.pk %} + {% if node.created_by == request.user.id or is_gstaff %} +
    +
    {% trans "Transcript:" %}{{grel_trans.grel_node.name}}
    +
    +
    + +
    + {% endif %} +
    + {% endif %} +
    {% if 'Page' not in node.member_of_names_list %} -
    - - {% trans 'Download' %} - - {% if node.created_by == request.user.id or is_gstaff %} - -
    - -
    +
    +
    +
    +
    + {% if title == "asset_content_detail" or title == "asset_gallery_detail" or title == "raw_material_detail"%} + + {% include "ndf/resource_view.html" with node=node %} + {% endif %} +
    +
    +
    +
    {% get_gstudio_alt_opts as alt_opts %} @@ -63,52 +96,12 @@ {% get_gstudio_alt_size 'audio' as size_types %} {% get_gstudio_alt_file_formats 'audio' as format_types %} {% endif %} - - -
    -
    - {% get_relation_value node.pk 'has_subtitle' as grel_sub %} - {% for each in grel_sub.grel_node %} -
    - {{each.name}} -
    -
    - {% if node.created_by == request.user.id or is_gstaff %} -
    - {% endif %} -
    - {% endfor %} -
    - -
    - {% get_relation_value node.pk 'has_transcript' as grel_trans %} - {% if grel_trans.grel_node.pk %} - {% if node.created_by == request.user.id or is_gstaff %} -
    - {{grel_trans.grel_node.name}} -
    -
    - -
    - {% endif %} -
    - {% endif %} -
    + + + + -
    - {% get_relation_node node.pk 'has_alt_content' as alt_lang_rel_node %} - {% if alt_lang_rel_node %} -
    - {% trans "Alternate Files :" %} - {% for each in alt_lang_rel_node %} - - {{each.file_name}}     - - {% endfor %} -
    - {% endif %} -

    @@ -165,14 +158,12 @@ {% endfor %}
    -


    -
    @@ -181,7 +172,6 @@
    -
    - - - - - - - - - + + + + + + + + + + + +
    -
    -

    New Task

    + +
    + +
    +
    +
    +
    +
    +
    Event Name
    +
    +
    + +
    +
    +
    +
    +
    Task Type:
    +
    +
    + +
    +
    +
    +
    +
    Start Date
    +
    +
    + +
    +
    +
    Due Date
    +
    +
    + +
    +
    + {% comment %} +
    +
    +
    Created By:
    +
    +
    + +
    +
    + {% endcomment %} +
    +
    +
    Status:
    +
    +
    + +
    +
    +
    +
    +
    Priority
    +
    +
    + +
    +
    -
    -
    +
    +
    +
    +
    Assigned To:
    +
    + +
    +
    +
    +
    Supporting Files:
    +
    +
    + + Upload Files + +
    +
    +
    +
    +
    Estimated Hours:
    +
    +
    + +
    +
    +
    +
    +
    To be Done By:
    +
    +
    + +
    +
    +
    +
    +
    Notes:
    +
    +
    + +
    +
    +
    +
    + +
    + +
    +
    + +
    +
    + +
    +
    @@ -190,32 +324,38 @@
    Notes:
    +

    +
    +
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/event.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/event.py index 6b8472374b..bda53657af 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/event.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/event.py @@ -109,14 +109,9 @@ def event(request, group_id): event_list.append({"title":str(each.name), "start": created_at_date_val.strftime('%Y-%m-%d')}) - print event_list + # print event_list #event_list.append({"created_at": created_at_date_val.strftime('%Y-%m-%d')}) - - - - - return render_to_response('ndf/gevent.html',{ 'groupid':group_id, 'group_id':group_id, From f6e8a55e7013afec00348b1cdcd2619f6f158049 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Thu, 25 Jan 2018 15:29:10 +0530 Subject: [PATCH 283/766] conflicts resolved --- .../gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css index 6325d17d6e..be814bb3f4 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css @@ -4615,11 +4615,8 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { text-align: center; margin: 0px auto; letter-spacing: 1px; -<<<<<<< HEAD - font-size: 24px; -======= + font-size: 1.4vw; ->>>>>>> 45cf0cc63255279b4151df9f3cf9238ad6ddd512 } /* line 4863, ../../../scss/_clix2017.scss */ .module_card.animated_card .card_banner { From 3edc1083d36ed07d999d0607a7a87ab134c9ed27 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Thu, 25 Jan 2018 17:47:03 +0530 Subject: [PATCH 284/766] Event draggable and toggle switch for new task and new event --- .../static/ndf/css/themes/clix/clix2017.css | 3 +- .../ndf/static/ndf/css/themes/clix/styles.css | 32 ++++++++++++++++ .../ndf/css/themes/metastudio/styles.css | 32 ++++++++++++++++ .../static/ndf/css/themes/nroer/styles.css | 32 ++++++++++++++++ .../ndf/static/ndf/css/themes/tiss/styles.css | 32 ++++++++++++++++ .../ndf/static/ndf/scss/_app_styles.scss | 38 ++++++++++++++++++- .../gnowsys_ndf/ndf/templates/ndf/gevent.html | 4 +- .../ndf/templates/ndf/gtask_create_edit.html | 7 ++-- 8 files changed, 171 insertions(+), 9 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css index be814bb3f4..60d8e5e382 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/clix2017.css @@ -4615,8 +4615,7 @@ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { text-align: center; margin: 0px auto; letter-spacing: 1px; - - font-size: 1.4vw; + font-size: 24px; } /* line 4863, ../../../scss/_clix2017.scss */ .module_card.animated_card .card_banner { diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css index e39b1f2317..ea9ecf571a 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css @@ -30539,6 +30539,38 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); } +/***** Create Event Form**********/ +/* + .tabs{ + display: inline-block; + li.active a{ + color:$active-color; + border: 1px solid; + background-color: #A6D7F5; + } + }*/ +/* line 7408, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; +} +/* line 7413, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs .tab-title { + width: 40%; + /* background-color: blue;*/ + margin-left: 1em; + position: relative; + top: 1px; + text-transform: uppercase; +} +/* line 7421, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs .tab-title.active { + background-color: #fff; + border: 1px solid #CCC; + border-bottom: 0px; +} + /* * CLIx Platform Stylesheet */ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css index c2496b2b1d..e285649820 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css @@ -30561,3 +30561,35 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: -o-linear-gradient(top, #fc9f8a, #fa623f); background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); } + +/***** Create Event Form**********/ +/* + .tabs{ + display: inline-block; + li.active a{ + color:$active-color; + border: 1px solid; + background-color: #A6D7F5; + } + }*/ +/* line 7408, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; +} +/* line 7413, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs .tab-title { + width: 40%; + /* background-color: blue;*/ + margin-left: 1em; + position: relative; + top: 1px; + text-transform: uppercase; +} +/* line 7421, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs .tab-title.active { + background-color: #fff; + border: 1px solid #CCC; + border-bottom: 0px; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css index 3fa614f382..2e44f93d14 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css @@ -30654,3 +30654,35 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: -o-linear-gradient(top, #fc9f8a, #fa623f); background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); } + +/***** Create Event Form**********/ +/* + .tabs{ + display: inline-block; + li.active a{ + color:$active-color; + border: 1px solid; + background-color: #A6D7F5; + } + }*/ +/* line 7408, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; +} +/* line 7413, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs .tab-title { + width: 40%; + /* background-color: blue;*/ + margin-left: 1em; + position: relative; + top: 1px; + text-transform: uppercase; +} +/* line 7421, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs .tab-title.active { + background-color: #fff; + border: 1px solid #CCC; + border-bottom: 0px; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css index c2496b2b1d..e285649820 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css @@ -30561,3 +30561,35 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: -o-linear-gradient(top, #fc9f8a, #fa623f); background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); } + +/***** Create Event Form**********/ +/* + .tabs{ + display: inline-block; + li.active a{ + color:$active-color; + border: 1px solid; + background-color: #A6D7F5; + } + }*/ +/* line 7408, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; +} +/* line 7413, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs .tab-title { + width: 40%; + /* background-color: blue;*/ + margin-left: 1em; + position: relative; + top: 1px; + text-transform: uppercase; +} +/* line 7421, ../../../scss/_app_styles.scss */ +.create-task-event-tabs .tabs .tab-title.active { + background-color: #fff; + border: 1px solid #CCC; + border-bottom: 0px; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss index 1cb958a5f4..994035834c 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss @@ -7389,4 +7389,40 @@ $ah_2_background_color_hover: rgba(244, 244, 244, 0.3);; background-image: -moz-linear-gradient(top, #fc9f8a, #fa623f); background-image: -o-linear-gradient(top, #fc9f8a, #fa623f); background-image: linear-gradient(to bottom, #fc9f8a, #fa623f); -} \ No newline at end of file +} + +/***** Create Event Form**********/ + +/* + .tabs{ + display: inline-block; + li.active a{ + color:$active-color; + border: 1px solid; + background-color: #A6D7F5; + } + }*/ + + + .create-task-event-tabs{ + .tabs { + width: 100%; + margin: 0em 0em 0.5em; + border-bottom: 1px solid #CCC; + + .tab-title { + width: 40%; +/* background-color: blue;*/ + margin-left: 1em; + position: relative; + top: 1px; + text-transform: uppercase; + + &.active { + background-color: #fff; + border: 1px solid #CCC; + border-bottom: 0px; + } + } + } + } \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html index ee306231f3..82b3e9194e 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html @@ -168,7 +168,7 @@ // emphasizes business hours businessHours: true, // event dragging & resizing - editable: true, + // editable: true, // header header: { left: 'prev,next today', @@ -185,7 +185,7 @@ // slotDuration:'00:15:00', // scrollTime:'07:00:00', yearCellMinH: 60, - dragOpacity: 0.7, + resourceAreaWidth: 230, aspectRatio: 1.5, diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html index b6fc297018..b021f1252f 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html @@ -7,8 +7,6 @@ - - @@ -60,12 +58,13 @@ height: 300px; } + -
    +
    From df337162acfe36065f2693340afd411daefc33c3 Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Thu, 25 Jan 2018 17:52:10 +0530 Subject: [PATCH 285/766] file_detail url error fixed --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/file_list_tab.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/file_list_tab.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/file_list_tab.html index 19d4dfa33f..40745472e8 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/file_list_tab.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/file_list_tab.html @@ -27,7 +27,7 @@ {% if notebook_filter %} {% include 'ndf/simple_card.html' with has_contributor=True resource=each_res url_name='course_notebook_tab_note' first_arg=group_name second_arg="all-notes" third_arg=each_res.pk %} {% else %} - {% include 'ndf/simple_card.html' with has_contributor=True resource=each_res url_name=detail_urlname first_arg=group_name second_arg=each_res.pk %} + {% include 'ndf/simple_card.html' with has_contributor=True resource=each_res url_name=detail_urlname first_arg=group_id second_arg=each_res.pk %} {% endif %} From b10d2b9d9af0f568a460598992ed7007a96547f0 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 28 Jan 2018 08:30:45 +0530 Subject: [PATCH 286/766] api url removed --- .../management/commands/schema_files/ATs.csv | 94 ++ .../management/commands/schema_files/ATs.json | 1397 +++++++++++++++++ .../management/commands/schema_files/RTs.csv | 52 + .../management/commands/schema_files/RTs.json | 767 +++++++++ .../commands/schema_files/STs_run1.csv | 62 + .../commands/schema_files/STs_run1.json | 490 ++++++ .../commands/schema_files/STs_run2.csv | 62 + .../commands/schema_files/STs_run2.json | 490 ++++++ gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py | 2 +- 9 files changed, 3415 insertions(+), 1 deletion(-) create mode 100755 gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/ATs.csv create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/ATs.json create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/RTs.csv create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/RTs.json create mode 100755 gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/STs_run1.csv create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/STs_run1.json create mode 100755 gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/STs_run2.csv create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/STs_run2.json diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/ATs.csv b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/ATs.csv new file mode 100755 index 0000000000..f6f6fb9c79 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/ATs.csv @@ -0,0 +1,94 @@ +name,altnames,data_type,complex_data_type,subject_type,required,editable,validators,help_text,max_digits,attribute_type_scope,subject_scope,object_scope +first_name,First Name,basestring,[],"[""Person"", ""Author""]",TRUE,TRUE,"[""text"", ""input_only_text""]",Enter only letters,,[],[],[] +middle_name,Middle Name,basestring,[],"[""Person"", ""Author""]",FALSE,TRUE,"[""text"", ""input_only_text""]",Enter only letters,,[],[],[] +last_name,Last Name,basestring,[],"[""Person"", ""Author""]",TRUE,TRUE,"[""text"", ""input_only_text""]",Enter only letters,,[],[],[] +gender,Gender,IS(),"[""Male"", ""Female""]","[""Person"", ""Author""]",TRUE,TRUE,[],,,[],[],[] +dob,Date of Birth,datetime.datetime,[],"[""Person""]",TRUE,FALSE,"[""d/m/Y"", ""date_month_day_year""]",DD/MM/YYYY,,[],[],[] +religion,Religion,basestring,[],"[""Person""]",TRUE,TRUE,"[""text"", ""text_allow_space""]",,,[],[],[] +mobile_number,Contact Number (Mobile),long,[],"[""Person"", ""Organization"",""PartnerGroup""]",FALSE,TRUE,"[""tel"", ""input_only_num"", ""[1-9][0-9]{9}""]",Enter 10-digit mobile number,10,[],[],[] +alternate_number,Alternate Number / Landline,basestring,[],"[""Person"", ""Organization"",""PartnerGroup""]",FALSE,TRUE,"[""tel"", ""input_only_num"", ""[0-9]{8,12}""]",Enter mobile/landline number (max. 12-digits),12,[],[],[] +email_id,Email ID,basestring,[],"[""Person"", ""Organization"",""PartnerGroup""]",TRUE,TRUE,"[""email"", ""^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$""]",,,[],[],[] +languages_known,Languages Known,list,"[""basestring""]","[""Person""]",TRUE,TRUE,[],,,[],[],[] +house_street,House / Street,basestring,[],"[""Person"", ""Organization"",""PartnerGroup""]",FALSE,TRUE,[],,,[],[],[] +village,Village,basestring,[],"[""Person"", ""Organization""]",FALSE,TRUE,"[""text"", ""text_allow_space""]",,,[],[],[] +taluka,Taluka,basestring,[],"[""Person"", ""Organization""]",FALSE,TRUE,"[""text"", ""text_allow_space""]",,,[],[],[] +town_city,Town / City,basestring,[],"[""Person"", ""Organization"",""PartnerGroup""]",TRUE,TRUE,"[""text"", ""text_allow_space""]",,,[],[],[] +pin_code,Pin Code,long,[],"[""Person"", ""Organization"",""PartnerGroup""]",TRUE,TRUE,"[""tel"", ""input_only_num"", ""[0-9]{6}""]",Enter 6-digit pin-code number,6,[],[],[] +enrollment_code,Enrollment Code,basestring,[],"[""Person"", ""Organization"", ""Author""]",TRUE,FALSE,[],,,[],[],[] +enrolled_students,No. of students enrolled,dict,[],"[""Organization""]",FALSE,FALSE,[],,,[],[],[] +college_enroll_num,College Enrolment Number / Roll No,basestring,[],"[""Student""]",TRUE,TRUE,[],,,[],[],[] +is_nss_registered,Are you registered for NSS?,bool,[],"[""Student""]",TRUE,TRUE,[],,,[],[],[] +is_dropout_student,Are you dropout student?,bool,[],"[""Student""]",FALSE,TRUE,[],,,[],[],[] +12_passing_year,Year of Passing 12th Standard,datetime.datetime,[],"[""Student""]",TRUE,FALSE,"[""Y"", ""date_year""]",YYYY,,[],[],[] +12_passing_certificate,12th Passing Certificate,ObjectId,[],"[""Student""]",FALSE,FALSE,"[""File""]",,,[],[],[] +registration_date,Date of Registration,datetime.datetime,[],"[""Student""]",TRUE,FALSE,"[""d/m/Y"", ""date_month_day_year""]",DD/MM/YYYY,,[],[],[] +degree_year,Year of Study,IS(),"[""I"", ""II"", ""III""]","[""Student""]",TRUE,TRUE,[],,,[],[],[] +degree_name,Degree Name / Highest Degree,IS(),"[""B.A."", ""B.Com"", ""B.Sc."", ""M.A."", ""M.Sc."", ""M.S.W."", ""M.Com"", ""B.C.A."", ""B.B.M."", ""B.J.M.C."", ""B.B.A."", ""D.C.A."", ""B.B.I."", ""B.A.F."", ""B.M.M."", ""B.M.S."", ""B.C.S."", ""M.B.A."", ""Ph.D"", ""M.C.A."", ""B.Tech."", ""B.E."", ""M.Tech."", ""M.Phil."", ""PGDBM""]","[""Student"", ""Voluntary Teacher"", ""Master Trainer""]",TRUE,TRUE,[],,,[],[],[] +degree_specialization,Stream / Degree Specialization,basestring,[],"[""Student"", ""Voluntary Teacher"", ""Master Trainer""]",FALSE,TRUE,[],,,[],[],[] +signature,Signature,ObjectId,[],"[""Person""]",FALSE,FALSE,"[""File""]",,,[],[],[] +user_photo,Photo,ObjectId,[],"[""Person""]",FALSE,FALSE,"[""File""]",,,[],[],[] +degree_passing_year,Year of Passing Degree,datetime.datetime,[],"[""Voluntary Teacher"", ""Master Trainer""]",TRUE,FALSE,"[""Y"", ""date_year""]",YYYY,,[],[],[] +other_qualifications,Any other Qualification,basestring,[],"[""Voluntary Teacher"", ""Master Trainer""]",FALSE,TRUE,[],,,[],[],[] +key_skills,Key Skills,basestring,[],"[""Voluntary Teacher"", ""Master Trainer""]",TRUE,TRUE,[],,,[],[],[] +profession,Profession,basestring,[],"[""Voluntary Teacher"", ""Master Trainer""]",TRUE,TRUE,[],,,[],[],[] +designation,Designation,basestring,[],"[""Voluntary Teacher"", ""Master Trainer""]",TRUE,TRUE,[],,,[],[],[] +work_exp,Year of Experience if Any,basestring,[],"[""Voluntary Teacher"", ""Master Trainer""]",FALSE,TRUE,[],,,[],[],[] +is_tot_attended,Did you attend TOT?,bool,[],"[""Voluntary Teacher""]",TRUE,TRUE,[],,,[],[],[] +tot_when,When did you attend TOT?,list,"[""datetime.datetime""]","[""Voluntary Teacher""]",TRUE,TRUE,[],,,[],[],[] +nxt_mon_sch,Schedule for Next Few Month,basestring,[],"[""Voluntary Teacher""]",FALSE,TRUE,[],,,[],[],[] +start_time,Start Time,datetime.datetime,[],"[""Event"", ""Announced Course"",""Group"",""Twist"",""CourseEventGroup"",""CourseSubSection"",""CourseSubSectionEvent"", ""announced_unit""]",TRUE,FALSE,"[""d/m/Y H:i"", ""date_month_day_year""]",DD/MM/YYYY HH:MM,,[],[],[] +end_time,End Time,datetime.datetime,[],"[""Event"", ""Announced Course"",""Group"",""Twist"",""CourseEventGroup"", ""announced_unit""]",TRUE,FALSE,"[""d/m/Y H:i"", ""date_month_day_year""]",DD/MM/YYYY HH:MM,,[],[],[] +attendees,Attendence,list,"[""ObjectId""]","[""Event""]",FALSE,TRUE,[],,,[],[],[] +nussd_course_type,Course Type,IS(),"[""General"",""Foundation Course"", ""Level-1 Domain"", ""Level-2 Domain""]","[""NUSSD Course"", ""Course"", ""Voluntary Teacher"", ""Master Trainer"", ""Classroom Session"", ""Exam"", ""StudentCourseEnrollment""]",TRUE,TRUE,[],,,[],[],[] +course_code,Course Code,basestring,[],"[""NUSSD Course"", ""Announced Course""]",TRUE,TRUE,"[""text"", ""course_code_check""]","Combination of alphabets, numbers and hyphen",10,[],[],[] +theory_credit,Theory Credit (in Hours),int,[],"[""NUSSD Course"", ""Announced Course""]",TRUE,TRUE,"[""text"", ""input_only_num"", ""[1-9]{1,3}""]",Enter Hours ,3,[],[],[] +field_work_credit,Field Work Credit (in Hours),int,[],"[""NUSSD Course"", ""Announced Course""]",TRUE,TRUE,"[""text"", ""input_only_num"", ""[1-9]{1,3}""]",Enter Hours ,3,[],[],[] +qualifying_attendence,Qualifying Attendence %,int,[],"[""NUSSD Course"", ""Announced Course""]",TRUE,TRUE,"[""text"", ""input_only_num max_100"", ""[1-9]{1,3}""]",Enter Qualifying Attendance,,[],[],[] +evaluation_type,Evaluation Type,IS(),"[""Continuous"", ""Final""]","[""NUSSD Course"", ""Announced Course""]",TRUE,TRUE,[],,,[],[],[] +min_marks,Qualifying Score,float,[],"[""NUSSD Course"", ""Announced Course"", ""CourseSubSection"",""CourseSubSectionEvent""]",TRUE,TRUE,"[""text"", ""num_float"", ""[0-9]{2,3}""]",Enter Qualifying score,,[],[],[] +max_marks,Maximum Score,float,[],"[""NUSSD Course"", ""Announced Course"", ""CourseSubSection"",""CourseSubSectionEvent""]",TRUE,TRUE,"[""text"", ""num_float"", ""[0-9]{2,3}""]",Enter Maximum Score,,[],[],[] +mast_tr_qualifications,Master Trainer: Minimum qualifications requirement,list,"[""dict""]","[""NUSSD Course"", ""Master Trainer""]",TRUE,TRUE,[],,,[],[],[] +voln_tr_qualifications,Voluntary Teacher: Minimum qualifications requirement,list,"[""dict""]","[""NUSSD Course"", ""Voluntary Teacher""]",TRUE,TRUE,[],,,[],[],[] +start_enroll,Start Enroll,datetime.datetime,[],"[""StudentCourseEnrollment"",""Group"",""CourseEventGroup"", ""announced_unit""]",TRUE,FALSE,"[""d/m/Y H:i"", ""date_month_day_year""]",DD/MM/YYYY HH:MM,,[],[],[] +end_enroll,End Enroll,datetime.datetime,[],"[""StudentCourseEnrollment"",""Group"",""CourseEventGroup"", ""announced_unit""]",TRUE,FALSE,"[""d/m/Y H:i"", ""date_month_day_year""]",DD/MM/YYYY HH:MM,,[],[],[] +has_enrolled,Enrolled,list,"[""ObjectId""]","[""StudentCourseEnrollment""]",TRUE,TRUE,[],,,[],[],[] +has_approved,Approved,list,"[""ObjectId""]","[""StudentCourseEnrollment""]",TRUE,FALSE,[],,,[],[],[] +has_rejected,Rejected,list,"[""ObjectId""]","[""StudentCourseEnrollment""]",TRUE,FALSE,[],,,[],[],[] +completed_on,Date of Completion,datetime.datetime,[],"[""StudentCourseEnrollment"", ""lesson""]",TRUE,FALSE,"[""d/m/Y H:i"", ""date_month_day_year""]",DD/MM/YYYY HH:MM,,[],[],[] +course_structure_minutes,Minutes,int,[],"[""CourseSubSection"",""CourseSubSectionEvent""]",TRUE,TRUE,"[""tel"", ""input_only_num"", ""[0-9]{2,3}""]",MMM (Minutes),3,[],[],[] +course_structure_assignment,Assignment,bool,[],"[""CourseSubSection"",""CourseSubSectionEvent""]",FALSE,TRUE,[],,,[],[],[] +course_structure_assessment,Assessment,bool,[],"[""CourseSubSection"",""CourseSubSectionEvent""]",FALSE,TRUE,[],,,[],[],[] +attendance_record,Attendance Details,list,"[""dict""]","[""Student"", ""Author""]",FALSE,FALSE,[],,,[],[],[] +performance_record,Performace Details,list,"[""dict""]","[""Student""]",FALSE,FALSE,[],,,[],[],[] +cumulative_performance_report,Final Report,list,"[""dict""]","[""Student""]",FALSE,FALSE,[],,,[],[],[] +Assignment_marks_record,Assignment Marks,list,"[""dict""]","[""Student""]",FALSE,FALSE,[],,,[],[],[] +Assessment_marks_record,Assessment Marks,list,"[""dict""]","[""Student""]",FALSE,FALSE,[],,,[],[],[] +reschedule_attendance,Attendance rechedule,list,"[""dict""]","[""Classroom Session"", ""Exam""]",FALSE,FALSE,[],,,[],[],[] +marks_entry_completed,Marks Entry Completed,bool,[],"[""Classroom Session"", ""Exam""]",FALSE,FALSE,[],,,[],[],[] +event_edit_reschedule,Event Reschedule,list,"[""dict""]","[""Classroom Session"", ""Exam""]",FALSE,FALSE,[],,,[],[],[] +ann_course_closure,Course Status,IS(),"[""Open"", ""Closed""]","[""Announced Course""]",TRUE,FALSE,[],,,[],[],[] +enrollment_status,Enrollment Status,IS(),"[""OPEN"", ""PENDING"", ""APPROVAL"", ""CLOSED""]","[""StudentCourseEnrollment""]",TRUE,FALSE,[],,,[],[],[] +has_enrollment_task,Enrollment Task's Details,dict,[],"[""StudentCourseEnrollment""]",TRUE,FALSE,[],,,[],[],[] +has_approval_task,Enrollment-Approval Task's Details,dict,[],"[""StudentCourseEnrollment""]",TRUE,FALSE,[],,,[],[],[] +course_enrollment_status,Course(s) Status,dict,[],"[""Student""]",FALSE,FALSE,[],,,[],[],[] +state_code,State Code,basestring,[],"[""State""]",TRUE,FALSE,[],,,[],[],[] +event_attendance_task,Event Attendance Reschedule Task,dict,[],"[""Classroom Session"", ""Exam""]",TRUE,FALSE,[],,,[],[],[] +event_date_task,Event Date Reschedule Task,dict,[],"[""Classroom Session"", ""Exam""]",TRUE,FALSE,[],,,[],[],[] +event_status,Event Status,basestring,[],"[""Event""]",TRUE,TRUE,[],,,[],[],[] +aadhar_id,Aadhar Card No.,long,[],"[""Person""]",FALSE,TRUE,"[""tel"", ""input_only_num"", ""[0-9]{12}""]",Enter 12-digit mobile number,12,[],[],[] +quiz_type,QuizItem Type,IS(),"[""Short-Response"", ""Single-Choice"",""Multiple-Choice""]","[""QuizItem"",""QuizItemEvent""]",TRUE,TRUE,[],[],,[],[],[] +options,QuizItem Options,list,[],"[""QuizItem"",""QuizItemEvent"", ""trans_node""]",TRUE,TRUE,[],[],,"[""alt_language""]",[],[] +correct_answer,QuizItem Correct Answer,list,[],"[""QuizItem"",""QuizItemEvent""]",TRUE,TRUE,[],[],,[],[],[] +quizitem_show_correct_ans,QuizItem Show Correct Answer,bool,[],"[""QuizItem"",""QuizItemEvent""]",FALSE,TRUE,[],[],,[],[],[] +quizitem_problem_weight,QuizItem Problem Weight,float,[],"[""QuizItem"",""QuizItemEvent""]",FALSE,TRUE,[],[],,[],[],[] +quizitem_max_attempts,QuizItem Maximum Attempts,int,[],"[""QuizItem"",""QuizItemEvent""]",FALSE,TRUE,[],[],,[],[],[] +quizitem_check_answer,QuizItem Check Answer,bool,[],"[""QuizItem"",""QuizItemEvent""]",FALSE,TRUE,[],[],,[],[],[] +quizitempost_user_submitted_ans,QuizItemPost User Submitted Answer,list,[],"[""QuizItemPost""]",TRUE,TRUE,[],[],,[],[],[] +quizitempost_user_checked_ans,QuizItemPost User Checked Answer,list,[],"[""QuizItemPost""]",TRUE,TRUE,[],[],,[],[],[] +discussion_enable,Discussion Enable,bool,[],"[""Page"", ""File"",""E-Book"",""QuizItemEvent"", ""Jsmol"", ""TurtleBlocks"", ""PoliceSquad"", ""OpenStoryTool"", ""BioMechanics""]",TRUE,TRUE,[],[],,[],[],[] +is_bigbluebutton,Online Meeting,bool,[],"[""Event""]",TRUE,TRUE,[],[],,[],[],[] +open_event,Open Event (All group members can join the event),bool,[],"[""Event""]",TRUE,TRUE,[],[],,[],[],[] +player_discussion_enable,Player Discussion Enable,bool,[],"[""Page"", ""File"",""E-Book"",""QuizItemEvent"", ""Jsmol"", ""TurtleBlocks"", ""PoliceSquad"", ""OpenStoryTool"", ""BioMechanics"",""Asset""]",TRUE,TRUE,[],[],,[],[],[] +assessment_list,AssessmentList,list,[],"[""CourseEventGroup"", ""base_unit"",""announced_unit""]",TRUE,TRUE,[],[],,[],[],[] +total_assessment_items,TotalAssessmentItems,int,[],"[""CourseEventGroup"", ""base_unit"",""announced_unit""]",TRUE,TRUE,[],[],,[],[],[] +items_sort_list,Items Sort List,list,[],"[""Group""]",TRUE,TRUE,[],[],,[],[],[] diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/ATs.json b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/ATs.json new file mode 100644 index 0000000000..bdcacdc2a1 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/ATs.json @@ -0,0 +1,1397 @@ +[ + { + "altnames": "First Name", + "name": "first_name", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Person\", \"Author\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"text\", \"input_only_text\"]", + "help_text": "Enter only letters", + "attribute_type_scope": "[]" + }, + { + "altnames": "Middle Name", + "name": "middle_name", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Person\", \"Author\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"text\", \"input_only_text\"]", + "help_text": "Enter only letters", + "attribute_type_scope": "[]" + }, + { + "altnames": "Last Name", + "name": "last_name", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Person\", \"Author\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"text\", \"input_only_text\"]", + "help_text": "Enter only letters", + "attribute_type_scope": "[]" + }, + { + "altnames": "Gender", + "name": "gender", + "data_type": "IS()", + "complex_data_type": "[\"Male\", \"Female\"]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Person\", \"Author\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Date of Birth", + "name": "dob", + "data_type": "datetime.datetime", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Person\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"d/m/Y\", \"date_month_day_year\"]", + "help_text": "DD/MM/YYYY", + "attribute_type_scope": "[]" + }, + { + "altnames": "Religion", + "name": "religion", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Person\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"text\", \"text_allow_space\"]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Contact Number (Mobile)", + "name": "mobile_number", + "data_type": "long", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Person\", \"Organization\",\"PartnerGroup\"]", + "subject_scope": "[]", + "max_digits": "10", + "validators": "[\"tel\", \"input_only_num\", \"[1-9][0-9]{9}\"]", + "help_text": "Enter 10-digit mobile number", + "attribute_type_scope": "[]" + }, + { + "altnames": "Alternate Number / Landline", + "name": "alternate_number", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Person\", \"Organization\",\"PartnerGroup\"]", + "subject_scope": "[]", + "max_digits": "12", + "validators": "[\"tel\", \"input_only_num\", \"[0-9]{8,12}\"]", + "help_text": "Enter mobile/landline number (max. 12-digits)", + "attribute_type_scope": "[]" + }, + { + "altnames": "Email ID", + "name": "email_id", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Person\", \"Organization\",\"PartnerGroup\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"email\", \"^\\w+([\\.-]?\\w+)*@\\w+([\\.-]?\\w+)*(\\.\\w{2,3})+$\"]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Languages Known", + "name": "languages_known", + "data_type": "list", + "complex_data_type": "[\"basestring\"]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Person\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "House / Street", + "name": "house_street", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Person\", \"Organization\",\"PartnerGroup\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Village", + "name": "village", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Person\", \"Organization\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"text\", \"text_allow_space\"]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Taluka", + "name": "taluka", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Person\", \"Organization\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"text\", \"text_allow_space\"]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Town / City", + "name": "town_city", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Person\", \"Organization\",\"PartnerGroup\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"text\", \"text_allow_space\"]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Pin Code", + "name": "pin_code", + "data_type": "long", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Person\", \"Organization\",\"PartnerGroup\"]", + "subject_scope": "[]", + "max_digits": "6", + "validators": "[\"tel\", \"input_only_num\", \"[0-9]{6}\"]", + "help_text": "Enter 6-digit pin-code number", + "attribute_type_scope": "[]" + }, + { + "altnames": "Enrollment Code", + "name": "enrollment_code", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Person\", \"Organization\", \"Author\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "No. of students enrolled", + "name": "enrolled_students", + "data_type": "dict", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Organization\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "College Enrolment Number / Roll No", + "name": "college_enroll_num", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Student\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Are you registered for NSS?", + "name": "is_nss_registered", + "data_type": "bool", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Student\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Are you dropout student?", + "name": "is_dropout_student", + "data_type": "bool", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Student\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Year of Passing 12th Standard", + "name": "12_passing_year", + "data_type": "datetime.datetime", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Student\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"Y\", \"date_year\"]", + "help_text": "YYYY", + "attribute_type_scope": "[]" + }, + { + "altnames": "12th Passing Certificate", + "name": "12_passing_certificate", + "data_type": "ObjectId", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Student\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"File\"]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Date of Registration", + "name": "registration_date", + "data_type": "datetime.datetime", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Student\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"d/m/Y\", \"date_month_day_year\"]", + "help_text": "DD/MM/YYYY", + "attribute_type_scope": "[]" + }, + { + "altnames": "Year of Study", + "name": "degree_year", + "data_type": "IS()", + "complex_data_type": "[\"I\", \"II\", \"III\"]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Student\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Degree Name / Highest Degree", + "name": "degree_name", + "data_type": "IS()", + "complex_data_type": "[\"B.A.\", \"B.Com\", \"B.Sc.\", \"M.A.\", \"M.Sc.\", \"M.S.W.\", \"M.Com\", \"B.C.A.\", \"B.B.M.\", \"B.J.M.C.\", \"B.B.A.\", \"D.C.A.\", \"B.B.I.\", \"B.A.F.\", \"B.M.M.\", \"B.M.S.\", \"B.C.S.\", \"M.B.A.\", \"Ph.D\", \"M.C.A.\", \"B.Tech.\", \"B.E.\", \"M.Tech.\", \"M.Phil.\", \"PGDBM\"]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Student\", \"Voluntary Teacher\", \"Master Trainer\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Stream / Degree Specialization", + "name": "degree_specialization", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Student\", \"Voluntary Teacher\", \"Master Trainer\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Signature", + "name": "signature", + "data_type": "ObjectId", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Person\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"File\"]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Photo", + "name": "user_photo", + "data_type": "ObjectId", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Person\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"File\"]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Year of Passing Degree", + "name": "degree_passing_year", + "data_type": "datetime.datetime", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Voluntary Teacher\", \"Master Trainer\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"Y\", \"date_year\"]", + "help_text": "YYYY", + "attribute_type_scope": "[]" + }, + { + "altnames": "Any other Qualification", + "name": "other_qualifications", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Voluntary Teacher\", \"Master Trainer\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Key Skills", + "name": "key_skills", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Voluntary Teacher\", \"Master Trainer\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Profession", + "name": "profession", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Voluntary Teacher\", \"Master Trainer\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Designation", + "name": "designation", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Voluntary Teacher\", \"Master Trainer\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Year of Experience if Any", + "name": "work_exp", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Voluntary Teacher\", \"Master Trainer\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Did you attend TOT?", + "name": "is_tot_attended", + "data_type": "bool", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Voluntary Teacher\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "When did you attend TOT?", + "name": "tot_when", + "data_type": "list", + "complex_data_type": "[\"datetime.datetime\"]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Voluntary Teacher\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Schedule for Next Few Month", + "name": "nxt_mon_sch", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Voluntary Teacher\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Start Time", + "name": "start_time", + "data_type": "datetime.datetime", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Event\", \"Announced Course\",\"Group\",\"Twist\",\"CourseEventGroup\",\"CourseSubSection\",\"CourseSubSectionEvent\", \"announced_unit\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"d/m/Y H:i\", \"date_month_day_year\"]", + "help_text": "DD/MM/YYYY HH:MM", + "attribute_type_scope": "[]" + }, + { + "altnames": "End Time", + "name": "end_time", + "data_type": "datetime.datetime", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Event\", \"Announced Course\",\"Group\",\"Twist\",\"CourseEventGroup\", \"announced_unit\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"d/m/Y H:i\", \"date_month_day_year\"]", + "help_text": "DD/MM/YYYY HH:MM", + "attribute_type_scope": "[]" + }, + { + "altnames": "Attendence", + "name": "attendees", + "data_type": "list", + "complex_data_type": "[\"ObjectId\"]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Event\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Course Type", + "name": "nussd_course_type", + "data_type": "IS()", + "complex_data_type": "[\"General\",\"Foundation Course\", \"Level-1 Domain\", \"Level-2 Domain\"]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"NUSSD Course\", \"Course\", \"Voluntary Teacher\", \"Master Trainer\", \"Classroom Session\", \"Exam\", \"StudentCourseEnrollment\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Course Code", + "name": "course_code", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"NUSSD Course\", \"Announced Course\"]", + "subject_scope": "[]", + "max_digits": "10", + "validators": "[\"text\", \"course_code_check\"]", + "help_text": "Combination of alphabets, numbers and hyphen", + "attribute_type_scope": "[]" + }, + { + "altnames": "Theory Credit (in Hours)", + "name": "theory_credit", + "data_type": "int", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"NUSSD Course\", \"Announced Course\"]", + "subject_scope": "[]", + "max_digits": "3", + "validators": "[\"text\", \"input_only_num\", \"[1-9]{1,3}\"]", + "help_text": "Enter Hours ", + "attribute_type_scope": "[]" + }, + { + "altnames": "Field Work Credit (in Hours)", + "name": "field_work_credit", + "data_type": "int", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"NUSSD Course\", \"Announced Course\"]", + "subject_scope": "[]", + "max_digits": "3", + "validators": "[\"text\", \"input_only_num\", \"[1-9]{1,3}\"]", + "help_text": "Enter Hours ", + "attribute_type_scope": "[]" + }, + { + "altnames": "Qualifying Attendence %", + "name": "qualifying_attendence", + "data_type": "int", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"NUSSD Course\", \"Announced Course\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"text\", \"input_only_num max_100\", \"[1-9]{1,3}\"]", + "help_text": "Enter Qualifying Attendance", + "attribute_type_scope": "[]" + }, + { + "altnames": "Evaluation Type", + "name": "evaluation_type", + "data_type": "IS()", + "complex_data_type": "[\"Continuous\", \"Final\"]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"NUSSD Course\", \"Announced Course\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Qualifying Score", + "name": "min_marks", + "data_type": "float", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"NUSSD Course\", \"Announced Course\", \"CourseSubSection\",\"CourseSubSectionEvent\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"text\", \"num_float\", \"[0-9]{2,3}\"]", + "help_text": "Enter Qualifying score", + "attribute_type_scope": "[]" + }, + { + "altnames": "Maximum Score", + "name": "max_marks", + "data_type": "float", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"NUSSD Course\", \"Announced Course\", \"CourseSubSection\",\"CourseSubSectionEvent\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"text\", \"num_float\", \"[0-9]{2,3}\"]", + "help_text": "Enter Maximum Score", + "attribute_type_scope": "[]" + }, + { + "altnames": "Master Trainer: Minimum qualifications requirement", + "name": "mast_tr_qualifications", + "data_type": "list", + "complex_data_type": "[\"dict\"]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"NUSSD Course\", \"Master Trainer\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Voluntary Teacher: Minimum qualifications requirement", + "name": "voln_tr_qualifications", + "data_type": "list", + "complex_data_type": "[\"dict\"]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"NUSSD Course\", \"Voluntary Teacher\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Start Enroll", + "name": "start_enroll", + "data_type": "datetime.datetime", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"StudentCourseEnrollment\",\"Group\",\"CourseEventGroup\", \"announced_unit\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"d/m/Y H:i\", \"date_month_day_year\"]", + "help_text": "DD/MM/YYYY HH:MM", + "attribute_type_scope": "[]" + }, + { + "altnames": "End Enroll", + "name": "end_enroll", + "data_type": "datetime.datetime", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"StudentCourseEnrollment\",\"Group\",\"CourseEventGroup\", \"announced_unit\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"d/m/Y H:i\", \"date_month_day_year\"]", + "help_text": "DD/MM/YYYY HH:MM", + "attribute_type_scope": "[]" + }, + { + "altnames": "Enrolled", + "name": "has_enrolled", + "data_type": "list", + "complex_data_type": "[\"ObjectId\"]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"StudentCourseEnrollment\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Approved", + "name": "has_approved", + "data_type": "list", + "complex_data_type": "[\"ObjectId\"]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"StudentCourseEnrollment\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Rejected", + "name": "has_rejected", + "data_type": "list", + "complex_data_type": "[\"ObjectId\"]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"StudentCourseEnrollment\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Date of Completion", + "name": "completed_on", + "data_type": "datetime.datetime", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"StudentCourseEnrollment\", \"lesson\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[\"d/m/Y H:i\", \"date_month_day_year\"]", + "help_text": "DD/MM/YYYY HH:MM", + "attribute_type_scope": "[]" + }, + { + "altnames": "Minutes", + "name": "course_structure_minutes", + "data_type": "int", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"CourseSubSection\",\"CourseSubSectionEvent\"]", + "subject_scope": "[]", + "max_digits": "3", + "validators": "[\"tel\", \"input_only_num\", \"[0-9]{2,3}\"]", + "help_text": "MMM (Minutes)", + "attribute_type_scope": "[]" + }, + { + "altnames": "Assignment", + "name": "course_structure_assignment", + "data_type": "bool", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"CourseSubSection\",\"CourseSubSectionEvent\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Assessment", + "name": "course_structure_assessment", + "data_type": "bool", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"CourseSubSection\",\"CourseSubSectionEvent\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Attendance Details", + "name": "attendance_record", + "data_type": "list", + "complex_data_type": "[\"dict\"]", + "required": "FALSE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Student\", \"Author\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Performace Details", + "name": "performance_record", + "data_type": "list", + "complex_data_type": "[\"dict\"]", + "required": "FALSE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Student\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Final Report", + "name": "cumulative_performance_report", + "data_type": "list", + "complex_data_type": "[\"dict\"]", + "required": "FALSE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Student\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Assignment Marks", + "name": "Assignment_marks_record", + "data_type": "list", + "complex_data_type": "[\"dict\"]", + "required": "FALSE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Student\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Assessment Marks", + "name": "Assessment_marks_record", + "data_type": "list", + "complex_data_type": "[\"dict\"]", + "required": "FALSE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Student\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Attendance rechedule", + "name": "reschedule_attendance", + "data_type": "list", + "complex_data_type": "[\"dict\"]", + "required": "FALSE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Classroom Session\", \"Exam\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Marks Entry Completed", + "name": "marks_entry_completed", + "data_type": "bool", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Classroom Session\", \"Exam\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Event Reschedule", + "name": "event_edit_reschedule", + "data_type": "list", + "complex_data_type": "[\"dict\"]", + "required": "FALSE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Classroom Session\", \"Exam\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Course Status", + "name": "ann_course_closure", + "data_type": "IS()", + "complex_data_type": "[\"Open\", \"Closed\"]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Announced Course\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Enrollment Status", + "name": "enrollment_status", + "data_type": "IS()", + "complex_data_type": "[\"OPEN\", \"PENDING\", \"APPROVAL\", \"CLOSED\"]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"StudentCourseEnrollment\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Enrollment Task's Details", + "name": "has_enrollment_task", + "data_type": "dict", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"StudentCourseEnrollment\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Enrollment-Approval Task's Details", + "name": "has_approval_task", + "data_type": "dict", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"StudentCourseEnrollment\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Course(s) Status", + "name": "course_enrollment_status", + "data_type": "dict", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Student\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "State Code", + "name": "state_code", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"State\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Event Attendance Reschedule Task", + "name": "event_attendance_task", + "data_type": "dict", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Classroom Session\", \"Exam\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Event Date Reschedule Task", + "name": "event_date_task", + "data_type": "dict", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "FALSE", + "object_scope": "[]", + "subject_type": "[\"Classroom Session\", \"Exam\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Event Status", + "name": "event_status", + "data_type": "basestring", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Event\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "", + "attribute_type_scope": "[]" + }, + { + "altnames": "Aadhar Card No.", + "name": "aadhar_id", + "data_type": "long", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Person\"]", + "subject_scope": "[]", + "max_digits": "12", + "validators": "[\"tel\", \"input_only_num\", \"[0-9]{12}\"]", + "help_text": "Enter 12-digit mobile number", + "attribute_type_scope": "[]" + }, + { + "altnames": "QuizItem Type", + "name": "quiz_type", + "data_type": "IS()", + "complex_data_type": "[\"Short-Response\", \"Single-Choice\",\"Multiple-Choice\"]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"QuizItem\",\"QuizItemEvent\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "[]", + "attribute_type_scope": "[]" + }, + { + "altnames": "QuizItem Options", + "name": "options", + "data_type": "list", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"QuizItem\",\"QuizItemEvent\", \"trans_node\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "[]", + "attribute_type_scope": "[\"alt_language\"]" + }, + { + "altnames": "QuizItem Correct Answer", + "name": "correct_answer", + "data_type": "list", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"QuizItem\",\"QuizItemEvent\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "[]", + "attribute_type_scope": "[]" + }, + { + "altnames": "QuizItem Show Correct Answer", + "name": "quizitem_show_correct_ans", + "data_type": "bool", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"QuizItem\",\"QuizItemEvent\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "[]", + "attribute_type_scope": "[]" + }, + { + "altnames": "QuizItem Problem Weight", + "name": "quizitem_problem_weight", + "data_type": "float", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"QuizItem\",\"QuizItemEvent\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "[]", + "attribute_type_scope": "[]" + }, + { + "altnames": "QuizItem Maximum Attempts", + "name": "quizitem_max_attempts", + "data_type": "int", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"QuizItem\",\"QuizItemEvent\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "[]", + "attribute_type_scope": "[]" + }, + { + "altnames": "QuizItem Check Answer", + "name": "quizitem_check_answer", + "data_type": "bool", + "complex_data_type": "[]", + "required": "FALSE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"QuizItem\",\"QuizItemEvent\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "[]", + "attribute_type_scope": "[]" + }, + { + "altnames": "QuizItemPost User Submitted Answer", + "name": "quizitempost_user_submitted_ans", + "data_type": "list", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"QuizItemPost\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "[]", + "attribute_type_scope": "[]" + }, + { + "altnames": "QuizItemPost User Checked Answer", + "name": "quizitempost_user_checked_ans", + "data_type": "list", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"QuizItemPost\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "[]", + "attribute_type_scope": "[]" + }, + { + "altnames": "Discussion Enable", + "name": "discussion_enable", + "data_type": "bool", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Page\", \"File\",\"E-Book\",\"QuizItemEvent\", \"Jsmol\", \"TurtleBlocks\", \"PoliceSquad\", \"OpenStoryTool\", \"BioMechanics\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "[]", + "attribute_type_scope": "[]" + }, + { + "altnames": "Online Meeting", + "name": "is_bigbluebutton", + "data_type": "bool", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Event\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "[]", + "attribute_type_scope": "[]" + }, + { + "altnames": "Open Event (All group members can join the event)", + "name": "open_event", + "data_type": "bool", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Event\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "[]", + "attribute_type_scope": "[]" + }, + { + "altnames": "Player Discussion Enable", + "name": "player_discussion_enable", + "data_type": "bool", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Page\", \"File\",\"E-Book\",\"QuizItemEvent\", \"Jsmol\", \"TurtleBlocks\", \"PoliceSquad\", \"OpenStoryTool\", \"BioMechanics\",\"Asset\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "[]", + "attribute_type_scope": "[]" + }, + { + "altnames": "AssessmentList", + "name": "assessment_list", + "data_type": "list", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"CourseEventGroup\", \"base_unit\",\"announced_unit\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "[]", + "attribute_type_scope": "[]" + }, + { + "altnames": "TotalAssessmentItems", + "name": "total_assessment_items", + "data_type": "int", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"CourseEventGroup\", \"base_unit\",\"announced_unit\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "[]", + "attribute_type_scope": "[]" + }, + { + "altnames": "Items Sort List", + "name": "items_sort_list", + "data_type": "list", + "complex_data_type": "[]", + "required": "TRUE", + "editable": "TRUE", + "object_scope": "[]", + "subject_type": "[\"Group\"]", + "subject_scope": "[]", + "max_digits": "", + "validators": "[]", + "help_text": "[]", + "attribute_type_scope": "[]" + } +] \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/RTs.csv b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/RTs.csv new file mode 100644 index 0000000000..6b3d8e149f --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/RTs.csv @@ -0,0 +1,52 @@ +subject_type,member_of,name,altnames,inverse_name,object_type,object_cardinality,relation_type_scope,subject_scope,object_scope,is_reflexive,is_symmetric,is_transitive +"[""Person""]","[""Binary""]",person_belongs_to_country,Country;Person,country_of_person,"[""Country""]",1,[],[],[],False,False,False +"[""College"", ""University""]","[""Binary""]",organization_belongs_to_country,Country;Organisation/Institute,country_of_organization,"[""Country""]",1,[],[],[],False,False,False +"[""Person""]","[""Binary""]",person_belongs_to_state,State;Person,state_of_person,"[""State""]",1,[],[],[],False,False,False +"[""College"", ""University""]","[""Binary""]",organization_belongs_to_state,State;Organisation/Institute,state_of_organization,"[""State""]",1,[],[],[],False,False,False +"[""Person""]","[""Binary""]",person_belongs_to_district,District;Person,district_of_person,"[""District""]",1,[],[],[],False,False,False +"[""College"", ""University""]","[""Binary""]",organization_belongs_to_district,District;Organisation/Institute,district_of_organization,"[""District""]",1,[],[],[],False,False,False +"[""Student""]","[""Binary""]",student_belongs_to_college,College ( Graduation );Student,college_of_student,"[""College""]",1,[],[],[],False,False,False +"[""Student""]","[""Binary""]",student_belongs_to_university,University;Student,university_of_student,"[""University""]",1,[],[],[],False,False,False +"[""Person""]","[""Binary""]",contact_person,College(s);Contact Person(s),has_contact_person,"[""College""]",100,[],[],[],False,False,False +"[""Faculty Coordinator""]","[""Binary""]",faculty_incharge_of_university,University;Faculty Coordinator(s),has_faculty_incharge,"[""University""]",100,[],[],[],False,False,False +"[""Faculty Coordinator""]","[""Binary""]",faculty_incharge_of_college,College(s);Faculty Coordinator(s),has_faculty_incharge,"[""College""]",100,[],[],[],False,False,False +"[""Program Officer""]","[""Binary""]",officer_incharge_of,College(s);Program Officer(s),has_officer_incharge,"[""College""]",100,[],[],[],False,False,False +"[""NSS Coordinator""]","[""Binary""]",nss_coordinator_of,College;NSS Coordinator,has_nss_coordinator,"[""College""]",1,[],[],[],False,False,False +"[""University""]","[""Binary""]",affiliated_college,Affiliated Colleges;Affiliated to,college_affiliated_to,"[""College""]",100,[],[],[],False,False,False +"[""Event""]","[""Binary""]",event_organised_by,Organised by;Event(s),organiser_of_event,"[""College"", ""University""]",100,[],[],[],False,False,False +"[""Event""]","[""Binary""]",event_coordinator,Coordinator(s);Event(s),coordinator_of_event,"[""Person"", ""Author""]",100,[],[],[],False,False,False +"[""Event""]","[""Binary""]",event_has_participants,Participant(s)/Attende(es);Event(s),participated_in_event,"[""Person"", ""Author""]",100,[],[],[],False,False,False +"[""Event""]","[""Binary""]",has_attended,Attended;Event,attended_event,"[""Person"", ""Author""]",100,[],[],[],False,False,False +"[""Event""]","[""Binary""]",has_attendees,Attendees;Event,attende_event,"[""Person"", ""Author""]",100,[],[],[],False,False,False +"[""Event""]","[""Binary""]",session_of,Session of;Classroom Session Event,has_classroom_session,"[""CourseSubSection""]",1,[],[],[],False,False,False +"[""NUSSD Course""]","[""Binary""]",course_has_event,Event(s);Course(s),event_of_course,"[""Event""]",100,[],[],[],False,False,False +"[""Announced Course""]","[""Binary""]",announced_for,Course;Announced Course,announced_as,"[""NUSSD Course"",""Course""]",1,[],[],[],False,False,False +"[""Announced Course""]","[""Binary""]",acourse_for_college,College;Announced Course,college_has_acourse,"[""College"",""Group"",""Author""]",1,[],[],[],False,False,False +"[""Student""]","[""Binary""]",student_of_caste_category,Caste;Student,caste_category_of_student,"[""Caste""]",1,[],[],[],False,False,False +"[""Student""]","[""Binary""]",student_has_domicile,State/Union Territory of Domicile;Student,domicile_of_student,"[""State""]",1,[],[],[],False,False,False +"[""Student""]","[""Binary""]",selected_course,Enrolled in Course(s);Student(s),course_selected,"[""Announced Course""]",100,[],[],[],False,False,False +"[""Voluntary Teacher""]","[""Binary""]",trainer_of_course,Volunteer to teach Course;Volunteered by,course_has_trainer,"[""NUSSD Course""]",100,[],[],[],False,False,False +"[""Voluntary Teacher""]","[""Binary""]",trainer_of_college,Volunteer to teach College;Volunteered by,college_has_trainer,"[""College""]",100,[],[],[],False,False,False +"[""Voluntary Teacher""]","[""Triadic""]",trainer_teaches_course_in_college,Volunteer to teach Course in College;Volunteered by,course_in_college_taught_by,"[[""NUSSD Course""], [""College""]]",100,[],[],[],False,False,False +"[""Master Trainer""]","[""Binary""]",master_trainer_of_course,Volunteer to teach Course(s) [At max. 2];Master Trainer,course_has_master_trainer,"[""NUSSD Course""]",100,[],[],[],False,False,False +"[""Master Trainer""]","[""Binary""]",master_trainer_of_university,University;Master Trainer,university_has_master_trainer,"[""University""]",100,[],[],[],False,False,False +"[""Course Developer""]","[""Binary""]",developer_of_course,Volunteer to develop Course;Developed by,course_has_developer,"[""NUSSD Course""]",100,[],[],[],False,False,False +"[""District""]","[""Binary""]",district_of,State;District(s),has_district,"[""State""]",1,[],[],[],False,False,False +"[""College""]","[""Binary""]",has_group,Group;Group for,group_of,"[""Group""]",1,[],[],[],False,False,False +"[""Person""]","[""Binary""]",has_login,Login link;Login for,login_of,"[""Author""]",1,[],[],[],False,False,False +"[""Group""]","[""Binary""]",group_has_batch,Group;Batch,batch_in_group,"[""Batch""]",100,[],[],[],False,False,False +"[""Batch""]","[""Binary""]",has_batch_member,Batch;Member(s),batch_member_of,"[""Student""]",100,[],[],[],False,False,False +"[""Batch""]","[""Binary""]",has_course,Batch Course,course_of,"[""Announced Course""]",1,[],[],[],False,False,False +"[""StudentCourseEnrollment""]","[""Binary""]",for_acourse,Course;Enrollment,course_has_enrollment,"[""Announced Course""]",100,[],[],[],False,False,False +"[""StudentCourseEnrollment""]","[""Binary""]",for_college,College;Enrollment,college_has_enrollment,"[""College""]",1,[],[],[],False,False,False +"[""StudentCourseEnrollment""]","[""Binary""]",for_university,University;Enrollment,university_has_enrollment,"[""University""]",1,[],[],[],False,False,False +"[""StudentCourseEnrollment"",""Page"",""File""]","[""Binary""]",has_current_approval_task,Approval Task;Enrollment,task_for_enrollment_approval,"[""Task""]",1,[],[],[],False,False,False +"[""Event""]","[""Binary""]",event_has_batch,Batch;Event,batch_for_event,"[""Batch""]",1,[],[],[],False,False,False +"[""CourseEventGroup""]","[""Binary""]",group_has_course_event,CourseEventGroup;Course,course_event_for_group,"[""Course""]",1,[],[],[],False,False,False +"[""Course"",""BaseCourseGroup"",""Group"",""ProgramEventGroup"",""PartnerGroup""]","[""Binary""]",has_logo,Course;File,logo_of,"[""File""]",1,[],[],[],False,False,False +"[""QuizItemEvent"",""Page"",""File""]","[""Binary""]",clone_of,QuizItemEvent;QuizItem,has_clone,"[""QuizItem"",""Page"",""File""]",1,[],[],[],False,False,False +"[""QuizItem"",""QuizItemEvent"",""Page"",""File"",""Forum"",""Jsmol"", ""TurtleBlocks"", ""PoliceSquad"", ""OpenStoryTool"", ""BioMechanics"", ""Asset""]","[""Binary""]",has_thread,QuizItemEvent;Twist,thread_of,"[""Twist""]",100,[],[],[],False,False,False +"[""Asset""]","[""Binary""]",has_assetcontent,AssetContent,assetcontent_of,"[""QuizItem"",""Page"",""File""]",100,"[""alt_size"",""alt_format"",""alt_language""]","[""any"",""most"",""some"",""none"",""atmost""]",[],False,False,False +"[""File""]","[""Binary""]",has_subtitle,File;File,subtitle_of,"[""File""]",100,"[""alt_language""]",[],[],False,False,False +"[""File""]","[""Binary""]",has_transcript,File;File,transcript_of,"[""File""]",1,[],[],[],False,False,False +"[""Page"",""File""]","[""Binary""]",has_alt_content,File;File,alt_content_of,"[""Page"",""File""]",100,"[""alt_size"",""alt_format"",""alt_language""]","[""any"",""most"",""some"",""none"",""atmost""]",[],False,False,False diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/RTs.json b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/RTs.json new file mode 100644 index 0000000000..7d10be30b4 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/RTs.json @@ -0,0 +1,767 @@ +[ + { + "altnames": "Country;Person", + "name": "person_belongs_to_country", + "member_of": "[\"Binary\"]", + "inverse_name": "country_of_person", + "object_type": "[\"Country\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Person\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "Country;Organisation/Institute", + "name": "organization_belongs_to_country", + "member_of": "[\"Binary\"]", + "inverse_name": "country_of_organization", + "object_type": "[\"Country\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"College\", \"University\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "State;Person", + "name": "person_belongs_to_state", + "member_of": "[\"Binary\"]", + "inverse_name": "state_of_person", + "object_type": "[\"State\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Person\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "State;Organisation/Institute", + "name": "organization_belongs_to_state", + "member_of": "[\"Binary\"]", + "inverse_name": "state_of_organization", + "object_type": "[\"State\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"College\", \"University\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "District;Person", + "name": "person_belongs_to_district", + "member_of": "[\"Binary\"]", + "inverse_name": "district_of_person", + "object_type": "[\"District\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Person\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "District;Organisation/Institute", + "name": "organization_belongs_to_district", + "member_of": "[\"Binary\"]", + "inverse_name": "district_of_organization", + "object_type": "[\"District\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"College\", \"University\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "College ( Graduation );Student", + "name": "student_belongs_to_college", + "member_of": "[\"Binary\"]", + "inverse_name": "college_of_student", + "object_type": "[\"College\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Student\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "University;Student", + "name": "student_belongs_to_university", + "member_of": "[\"Binary\"]", + "inverse_name": "university_of_student", + "object_type": "[\"University\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Student\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "College(s);Contact Person(s)", + "name": "contact_person", + "member_of": "[\"Binary\"]", + "inverse_name": "has_contact_person", + "object_type": "[\"College\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Person\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "University;Faculty Coordinator(s)", + "name": "faculty_incharge_of_university", + "member_of": "[\"Binary\"]", + "inverse_name": "has_faculty_incharge", + "object_type": "[\"University\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Faculty Coordinator\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "College(s);Faculty Coordinator(s)", + "name": "faculty_incharge_of_college", + "member_of": "[\"Binary\"]", + "inverse_name": "has_faculty_incharge", + "object_type": "[\"College\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Faculty Coordinator\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "College(s);Program Officer(s)", + "name": "officer_incharge_of", + "member_of": "[\"Binary\"]", + "inverse_name": "has_officer_incharge", + "object_type": "[\"College\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Program Officer\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "College;NSS Coordinator", + "name": "nss_coordinator_of", + "member_of": "[\"Binary\"]", + "inverse_name": "has_nss_coordinator", + "object_type": "[\"College\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"NSS Coordinator\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "Affiliated Colleges;Affiliated to", + "name": "affiliated_college", + "member_of": "[\"Binary\"]", + "inverse_name": "college_affiliated_to", + "object_type": "[\"College\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"University\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "Organised by;Event(s)", + "name": "event_organised_by", + "member_of": "[\"Binary\"]", + "inverse_name": "organiser_of_event", + "object_type": "[\"College\", \"University\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Event\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "Coordinator(s);Event(s)", + "name": "event_coordinator", + "member_of": "[\"Binary\"]", + "inverse_name": "coordinator_of_event", + "object_type": "[\"Person\", \"Author\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Event\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "Participant(s)/Attende(es);Event(s)", + "name": "event_has_participants", + "member_of": "[\"Binary\"]", + "inverse_name": "participated_in_event", + "object_type": "[\"Person\", \"Author\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Event\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "Attended;Event", + "name": "has_attended", + "member_of": "[\"Binary\"]", + "inverse_name": "attended_event", + "object_type": "[\"Person\", \"Author\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Event\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "Attendees;Event", + "name": "has_attendees", + "member_of": "[\"Binary\"]", + "inverse_name": "attende_event", + "object_type": "[\"Person\", \"Author\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Event\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "Session of;Classroom Session Event", + "name": "session_of", + "member_of": "[\"Binary\"]", + "inverse_name": "has_classroom_session", + "object_type": "[\"CourseSubSection\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Event\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "Event(s);Course(s)", + "name": "course_has_event", + "member_of": "[\"Binary\"]", + "inverse_name": "event_of_course", + "object_type": "[\"Event\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"NUSSD Course\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "Course;Announced Course", + "name": "announced_for", + "member_of": "[\"Binary\"]", + "inverse_name": "announced_as", + "object_type": "[\"NUSSD Course\",\"Course\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Announced Course\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "College;Announced Course", + "name": "acourse_for_college", + "member_of": "[\"Binary\"]", + "inverse_name": "college_has_acourse", + "object_type": "[\"College\",\"Group\",\"Author\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Announced Course\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "Caste;Student", + "name": "student_of_caste_category", + "member_of": "[\"Binary\"]", + "inverse_name": "caste_category_of_student", + "object_type": "[\"Caste\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Student\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "State/Union Territory of Domicile;Student", + "name": "student_has_domicile", + "member_of": "[\"Binary\"]", + "inverse_name": "domicile_of_student", + "object_type": "[\"State\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Student\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "Enrolled in Course(s);Student(s)", + "name": "selected_course", + "member_of": "[\"Binary\"]", + "inverse_name": "course_selected", + "object_type": "[\"Announced Course\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Student\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "Volunteer to teach Course;Volunteered by", + "name": "trainer_of_course", + "member_of": "[\"Binary\"]", + "inverse_name": "course_has_trainer", + "object_type": "[\"NUSSD Course\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Voluntary Teacher\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "Volunteer to teach College;Volunteered by", + "name": "trainer_of_college", + "member_of": "[\"Binary\"]", + "inverse_name": "college_has_trainer", + "object_type": "[\"College\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Voluntary Teacher\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "Volunteer to teach Course in College;Volunteered by", + "name": "trainer_teaches_course_in_college", + "member_of": "[\"Triadic\"]", + "inverse_name": "course_in_college_taught_by", + "object_type": "[[\"NUSSD Course\"], [\"College\"]]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Voluntary Teacher\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "Volunteer to teach Course(s) [At max. 2];Master Trainer", + "name": "master_trainer_of_course", + "member_of": "[\"Binary\"]", + "inverse_name": "course_has_master_trainer", + "object_type": "[\"NUSSD Course\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Master Trainer\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "University;Master Trainer", + "name": "master_trainer_of_university", + "member_of": "[\"Binary\"]", + "inverse_name": "university_has_master_trainer", + "object_type": "[\"University\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Master Trainer\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "Volunteer to develop Course;Developed by", + "name": "developer_of_course", + "member_of": "[\"Binary\"]", + "inverse_name": "course_has_developer", + "object_type": "[\"NUSSD Course\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Course Developer\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "State;District(s)", + "name": "district_of", + "member_of": "[\"Binary\"]", + "inverse_name": "has_district", + "object_type": "[\"State\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"District\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "Group;Group for", + "name": "has_group", + "member_of": "[\"Binary\"]", + "inverse_name": "group_of", + "object_type": "[\"Group\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"College\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "Login link;Login for", + "name": "has_login", + "member_of": "[\"Binary\"]", + "inverse_name": "login_of", + "object_type": "[\"Author\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Person\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "Group;Batch", + "name": "group_has_batch", + "member_of": "[\"Binary\"]", + "inverse_name": "batch_in_group", + "object_type": "[\"Batch\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Group\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "Batch;Member(s)", + "name": "has_batch_member", + "member_of": "[\"Binary\"]", + "inverse_name": "batch_member_of", + "object_type": "[\"Student\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Batch\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "Batch Course", + "name": "has_course", + "member_of": "[\"Binary\"]", + "inverse_name": "course_of", + "object_type": "[\"Announced Course\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Batch\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "Course;Enrollment", + "name": "for_acourse", + "member_of": "[\"Binary\"]", + "inverse_name": "course_has_enrollment", + "object_type": "[\"Announced Course\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"StudentCourseEnrollment\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "College;Enrollment", + "name": "for_college", + "member_of": "[\"Binary\"]", + "inverse_name": "college_has_enrollment", + "object_type": "[\"College\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"StudentCourseEnrollment\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "University;Enrollment", + "name": "for_university", + "member_of": "[\"Binary\"]", + "inverse_name": "university_has_enrollment", + "object_type": "[\"University\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"StudentCourseEnrollment\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "Approval Task;Enrollment", + "name": "has_current_approval_task", + "member_of": "[\"Binary\"]", + "inverse_name": "task_for_enrollment_approval", + "object_type": "[\"Task\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"StudentCourseEnrollment\",\"Page\",\"File\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "Batch;Event", + "name": "event_has_batch", + "member_of": "[\"Binary\"]", + "inverse_name": "batch_for_event", + "object_type": "[\"Batch\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Event\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "CourseEventGroup;Course", + "name": "group_has_course_event", + "member_of": "[\"Binary\"]", + "inverse_name": "course_event_for_group", + "object_type": "[\"Course\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"CourseEventGroup\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "Course;File", + "name": "has_logo", + "member_of": "[\"Binary\"]", + "inverse_name": "logo_of", + "object_type": "[\"File\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"Course\",\"BaseCourseGroup\",\"Group\",\"ProgramEventGroup\",\"PartnerGroup\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "QuizItemEvent;QuizItem", + "name": "clone_of", + "member_of": "[\"Binary\"]", + "inverse_name": "has_clone", + "object_type": "[\"QuizItem\",\"Page\",\"File\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"QuizItemEvent\",\"Page\",\"File\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "QuizItemEvent;Twist", + "name": "has_thread", + "member_of": "[\"Binary\"]", + "inverse_name": "thread_of", + "object_type": "[\"Twist\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"QuizItem\",\"QuizItemEvent\",\"Page\",\"File\",\"Forum\",\"Jsmol\", \"TurtleBlocks\", \"PoliceSquad\", \"OpenStoryTool\", \"BioMechanics\", \"Asset\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "AssetContent", + "name": "has_assetcontent", + "member_of": "[\"Binary\"]", + "inverse_name": "assetcontent_of", + "object_type": "[\"QuizItem\",\"Page\",\"File\"]", + "is_symmetric": "False", + "relation_type_scope": "[\"alt_size\",\"alt_format\",\"alt_language\"]", + "subject_type": "[\"Asset\"]", + "subject_scope": "[\"any\",\"most\",\"some\",\"none\",\"atmost\"]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "File;File", + "name": "has_subtitle", + "member_of": "[\"Binary\"]", + "inverse_name": "subtitle_of", + "object_type": "[\"File\"]", + "is_symmetric": "False", + "relation_type_scope": "[\"alt_language\"]", + "subject_type": "[\"File\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + }, + { + "altnames": "File;File", + "name": "has_transcript", + "member_of": "[\"Binary\"]", + "inverse_name": "transcript_of", + "object_type": "[\"File\"]", + "is_symmetric": "False", + "relation_type_scope": "[]", + "subject_type": "[\"File\"]", + "subject_scope": "[]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "1" + }, + { + "altnames": "File;File", + "name": "has_alt_content", + "member_of": "[\"Binary\"]", + "inverse_name": "alt_content_of", + "object_type": "[\"Page\",\"File\"]", + "is_symmetric": "False", + "relation_type_scope": "[\"alt_size\",\"alt_format\",\"alt_language\"]", + "subject_type": "[\"Page\",\"File\"]", + "subject_scope": "[\"any\",\"most\",\"some\",\"none\",\"atmost\"]", + "is_reflexive": "False", + "is_transitive": "False", + "object_scope": "[]", + "object_cardinality": "100" + } +] \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/STs_run1.csv b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/STs_run1.csv new file mode 100755 index 0000000000..6b798787e4 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/STs_run1.csv @@ -0,0 +1,62 @@ +name,type_of,member_of,attribute_type_set,relation_type_set,collection_set +Place,[],"[""factory_types""]",[],[],[] +Country,"[""Place""]","[""factory_types""]",[],[],[] +State,"[""Place""]","[""factory_types""]",[],[],[] +District,"[""Place""]","[""factory_types""]",[],[],[] +Organization,[],"[""factory_types""]",[],[],[] +University,"[""Organization""]","[""factory_types""]",[],[],[] +College,"[""Organization""]","[""factory_types""]",[],[],[] +NUSSD Course,"[""Course""]","[""factory_types""]",[],[],[] +Announced Course,"[""Course""]","[""factory_types""]",[],[],[] +Caste,[],"[""factory_types""]",[],[],[] +Person,[],"[""factory_types""]",[],[],[] +Student,"[""Person""]","[""factory_types""]",[],[],[] +Voluntary Teacher,"[""Person""]","[""factory_types""]",[],[],[] +Master Trainer,"[""Person""]","[""factory_types""]",[],[],[] +Faculty Coordinator,"[""Person""]","[""factory_types""]",[],[],[] +NSS Coordinator,"[""Person""]","[""factory_types""]",[],[],[] +Course Developer,"[""Person""]","[""factory_types""]",[],[],[] +Steering Committee Member,"[""Person""]","[""factory_types""]",[],[],[] +Program Officer,"[""Person""]","[""factory_types""]",[],[],[] +Program Manager,"[""Person""]","[""factory_types""]",[],[],[] +Partners,"[""Person""]","[""factory_types""]",[],[],[] +Event,[],"[""GAPP""]",[],[],[] +Inauguration,"[""Event""]","[""factory_types""]",[],[],[] +Field Visit,"[""Event""]","[""factory_types""]",[],[],[] +Meeting,"[""Event""]","[""factory_types""]",[],[],[] +Orientation,"[""Event""]","[""factory_types""]",[],[],[] +Master Trainer Program,"[""Event""]","[""factory_types""]",[],[],[] +Training of Teachers,"[""Event""]","[""factory_types""]",[],[],[] +Course Developers Meeting,"[""Event""]","[""factory_types""]",[],[],[] +Session,"[""Event""]","[""factory_types""]",[],[],[] +Classroom Session,"[""Event""]","[""factory_types""]",[],[],[] +Lab Session,"[""Event""]","[""factory_types""]",[],[],[] +Exam,"[""Event""]","[""factory_types""]",[],[],[] +Enrollment,[],"[""factory_types""]",[],[],[] +StudentCourseEnrollment,"[""Enrollment""]","[""factory_types""]",[],[],[] +MIS,[],"[""GAPP""]",[],[],[] +MIS-PO,[],"[""GAPP""]",[],[],[] +CourseSection,[],"[""factory_types""]",[],[],[] +CourseSubSection,[],"[""factory_types""]",[],[],[] +CourseUnit,[],"[""factory_types""]",[],[],[] +GListItem,[],"[""factory_types""]",[],[],[] +CourseSectionEvent,[],"[""factory_types""]",[],[],[] +CourseSubSectionEvent,[],"[""factory_types""]",[],[],[] +CourseUnitEvent,[],"[""factory_types""]",[],[],[] +QuizItemEvent,"[""QuizItem""]","[""factory_types""]",[],[],[] +Jhapp,[],"[""factory_types""]",[],[],[] +QuizItemPost,"[""Reply""]","[""factory_types""]",[],[],[] +Jsmol,"[""Jhapp""]","[""factory_types""]",[],[],[] +TurtleBlocks,"[""Jhapp""]","[""factory_types""]",[],[],[] +Asset,[],"[""factory_types""]",[],[],[] +PoliceSquad,"[""Jhapp""]","[""factory_types""]",[],[],[] +OpenStoryTool,"[""Jhapp""]","[""factory_types""]",[],[],[] +BioMechanics,"[""Jhapp""]","[""factory_types""]",[],[],[] +Template,"[""Page""]","[""factory_types""]",[],[],[] +base_unit,[],"[""factory_types""]",[],[],[] +lesson,[],"[""factory_types""]",[],[],[] +activity,[],"[""factory_types""]",[],[],[] +announced_unit,[],"[""factory_types""]",[],[],[] +trans_node,[],"[""factory_types""]",[],[],[] +base_survey,[],"[""factory_types""]",[],[],[] +announced_survey,[],"[""factory_types""]",[],[],[] diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/STs_run1.json b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/STs_run1.json new file mode 100644 index 0000000000..1d0312f48e --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/STs_run1.json @@ -0,0 +1,490 @@ +[ + { + "attribute_type_set": "[]", + "name": "Place", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "Country", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Place\"]" + }, + { + "attribute_type_set": "[]", + "name": "State", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Place\"]" + }, + { + "attribute_type_set": "[]", + "name": "District", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Place\"]" + }, + { + "attribute_type_set": "[]", + "name": "Organization", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "University", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Organization\"]" + }, + { + "attribute_type_set": "[]", + "name": "College", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Organization\"]" + }, + { + "attribute_type_set": "[]", + "name": "NUSSD Course", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Course\"]" + }, + { + "attribute_type_set": "[]", + "name": "Announced Course", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Course\"]" + }, + { + "attribute_type_set": "[]", + "name": "Caste", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "Person", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "Student", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[]", + "name": "Voluntary Teacher", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[]", + "name": "Master Trainer", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[]", + "name": "Faculty Coordinator", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[]", + "name": "NSS Coordinator", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[]", + "name": "Course Developer", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[]", + "name": "Steering Committee Member", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[]", + "name": "Program Officer", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[]", + "name": "Program Manager", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[]", + "name": "Partners", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[]", + "name": "Event", + "member_of": "[\"GAPP\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "Inauguration", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[]", + "name": "Field Visit", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[]", + "name": "Meeting", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[]", + "name": "Orientation", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[]", + "name": "Master Trainer Program", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[]", + "name": "Training of Teachers", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[]", + "name": "Course Developers Meeting", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[]", + "name": "Session", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[]", + "name": "Classroom Session", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[]", + "name": "Lab Session", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[]", + "name": "Exam", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[]", + "name": "Enrollment", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "StudentCourseEnrollment", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Enrollment\"]" + }, + { + "attribute_type_set": "[]", + "name": "MIS", + "member_of": "[\"GAPP\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "MIS-PO", + "member_of": "[\"GAPP\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "CourseSection", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "CourseSubSection", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "CourseUnit", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "GListItem", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "CourseSectionEvent", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "CourseSubSectionEvent", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "CourseUnitEvent", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "QuizItemEvent", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"QuizItem\"]" + }, + { + "attribute_type_set": "[]", + "name": "Jhapp", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "QuizItemPost", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Reply\"]" + }, + { + "attribute_type_set": "[]", + "name": "Jsmol", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Jhapp\"]" + }, + { + "attribute_type_set": "[]", + "name": "TurtleBlocks", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Jhapp\"]" + }, + { + "attribute_type_set": "[]", + "name": "Asset", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "PoliceSquad", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Jhapp\"]" + }, + { + "attribute_type_set": "[]", + "name": "OpenStoryTool", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Jhapp\"]" + }, + { + "attribute_type_set": "[]", + "name": "BioMechanics", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Jhapp\"]" + }, + { + "attribute_type_set": "[]", + "name": "Template", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Page\"]" + }, + { + "attribute_type_set": "[]", + "name": "base_unit", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "lesson", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "activity", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "announced_unit", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "trans_node", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "base_survey", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "announced_survey", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + } +] \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/STs_run2.csv b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/STs_run2.csv new file mode 100755 index 0000000000..4daadf9827 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/STs_run2.csv @@ -0,0 +1,62 @@ +name,type_of,member_of,attribute_type_set,relation_type_set,collection_set +Place,[],"[""factory_types""]",[],[],[] +Country,"[""Place""]","[""factory_types""]",[],[],[] +State,"[""Place""]","[""factory_types""]","[""state_code""]",[],[] +District,"[""Place""]","[""factory_types""]",[],"[""district_of""]",[] +Organization,[],"[""factory_types""]",[],[],[] +University,"[""Organization""]","[""factory_types""]","[""house_street"", ""village"", ""taluka"", ""town_city"", ""pin_code""]","[""organization_belongs_to_district"", ""organization_belongs_to_state"", ""organization_belongs_to_country"", ""affiliated_college""]",[] +College,"[""Organization""]","[""factory_types""]","[""enrollment_code"", ""house_street"", ""village"", ""taluka"", ""town_city"", ""pin_code""]","[""organization_belongs_to_district"", ""organization_belongs_to_state"", ""organization_belongs_to_country""]",[] +NUSSD Course,"[""Course""]","[""factory_types""]","[""nussd_course_type""]",[],[] +Announced Course,"[""Course""]","[""factory_types""]","[""nussd_course_type"", ""start_time"", ""end_time"", ""ann_course_closure""]","[""announced_for"", ""acourse_for_college""]",[] +Caste,[],"[""factory_types""]",[],[],[] +Person,[],"[""factory_types""]",[],[],[] +Student,"[""Person""]","[""factory_types""]","[""first_name"", ""middle_name"", ""last_name"", ""dob"", ""gender"", ""religion"", ""email_id"", ""languages_known"", ""signature"", ""user_photo"", ""mobile_number"", ""alternate_number"", ""house_street"", ""village"", ""taluka"", ""town_city"", ""pin_code"", ""12_passing_year"", ""12_passing_certificate"", ""degree_name"", ""degree_specialization"", ""degree_year"", ""college_enroll_num"", ""registration_date"", ""is_nss_registered"", ""attendance_record"", ""performance_record"", ""cumulative_performance_report"", ""course_enrollment_status"", ""enrollment_code"",""aadhar_id""]","[""student_of_caste_category"", ""person_belongs_to_state"", ""person_belongs_to_district"", ""student_belongs_to_university"", ""student_belongs_to_college"", ""selected_course""]",[] +Voluntary Teacher,"[""Person""]","[""factory_types""]","[""first_name"", ""middle_name"", ""last_name"", ""gender"", ""dob"", ""religion"", ""email_id"", ""languages_known"", ""signature"", ""user_photo"", ""mobile_number"", ""alternate_number"", ""house_street"", ""village"", ""taluka"", ""town_city"", ""pin_code"", ""degree_name"", ""degree_specialization"", ""degree_passing_year"", ""other_qualifications"", ""voln_tr_qualifications"", ""key_skills"", ""profession"", ""designation"", ""work_exp""]","[""person_belongs_to_state"", ""person_belongs_to_district"", ""trainer_teaches_course_in_college""]",[] +Master Trainer,"[""Person""]","[""factory_types""]","[""first_name"", ""middle_name"", ""last_name"", ""gender"", ""dob"", ""religion"", ""email_id"", ""languages_known"", ""signature"", ""user_photo"", ""mobile_number"", ""alternate_number"", ""house_street"", ""village"", ""taluka"", ""town_city"", ""pin_code"", ""degree_name"", ""degree_specialization"", ""degree_passing_year"", ""other_qualifications"", ""mast_tr_qualifications""]","[""person_belongs_to_state"", ""person_belongs_to_district"", ""master_trainer_of_course"", ""master_trainer_of_university""]",[] +Faculty Coordinator,"[""Person""]","[""factory_types""]","[""first_name"", ""middle_name"", ""last_name"", ""gender"", ""dob"", ""religion"", ""languages_known"", ""mobile_number"", ""alternate_number"", ""email_id"", ""house_street"", ""village"", ""taluka"", ""town_city"", ""pin_code"", ""degree_name"", ""degree_specialization"", ""degree_passing_year"", ""other_qualifications""]","[""person_belongs_to_district"", ""person_belongs_to_state"", ""person_belongs_to_country"", ""faculty_incharge_of_university"", ""faculty_incharge_of_college""]",[] +NSS Coordinator,"[""Person""]","[""factory_types""]","[""first_name"", ""middle_name"", ""last_name"", ""gender"", ""dob"", ""religion"", ""languages_known"", ""mobile_number"", ""alternate_number"", ""email_id"", ""house_street"", ""village"", ""taluka"", ""town_city"", ""pin_code"", ""degree_name"", ""degree_specialization"", ""degree_passing_year"", ""other_qualifications""]","[""person_belongs_to_district"", ""person_belongs_to_state"", ""person_belongs_to_country""]",[] +Course Developer,"[""Person""]","[""factory_types""]","[""first_name"", ""middle_name"", ""last_name"", ""gender"", ""dob"", ""religion"", ""languages_known"", ""mobile_number"", ""alternate_number"", ""email_id"", ""house_street"", ""village"", ""taluka"", ""town_city"", ""pin_code"", ""degree_name"", ""degree_specialization"", ""degree_passing_year"", ""other_qualifications""]","[""person_belongs_to_district"", ""person_belongs_to_state"", ""person_belongs_to_country"", ""developer_of_course""]",[] +Steering Committee Member,"[""Person""]","[""factory_types""]","[""first_name"", ""middle_name"", ""last_name"", ""gender"", ""dob"", ""religion"", ""languages_known"", ""mobile_number"", ""alternate_number"", ""email_id"", ""house_street"", ""village"", ""taluka"", ""town_city"", ""pin_code"", ""degree_name"", ""degree_specialization"", ""degree_passing_year"", ""other_qualifications""]","[""person_belongs_to_district"", ""person_belongs_to_state"", ""person_belongs_to_country""]","[""Organization"", ""University"", ""College"", ""Course"", ""NUSSD Course"", ""Announced Course"", ""Person"", ""Partners"", ""Program Manager"", ""Steering Committee Member"", ""Faculty Coordinator"", ""Program Officer"", ""NSS Coordinator"", ""Course Developer"", ""Master Trainer"", ""Voluntary Teacher"", ""Student"", ""Enrollment"", ""StudentCourseEnrollment""]" +Program Officer,"[""Person""]","[""factory_types""]","[""first_name"", ""middle_name"", ""last_name"", ""gender"", ""dob"", ""religion"", ""languages_known"", ""mobile_number"", ""alternate_number"", ""email_id"", ""house_street"", ""village"", ""taluka"", ""town_city"", ""pin_code"", ""degree_name"", ""degree_specialization"", ""degree_passing_year"", ""other_qualifications""]","[""person_belongs_to_district"", ""person_belongs_to_state"", ""person_belongs_to_country"", ""officer_incharge_of""]","[""Person"", ""Student"", ""Enrollment"", ""StudentCourseEnrollment""]" +Program Manager,"[""Person""]","[""factory_types""]","[""first_name"", ""middle_name"", ""last_name"", ""gender"", ""dob"", ""religion"", ""languages_known"", ""mobile_number"", ""alternate_number"", ""email_id"", ""house_street"", ""village"", ""taluka"", ""town_city"", ""pin_code"", ""degree_name"", ""degree_specialization"", ""degree_passing_year"", ""other_qualifications""]","[""person_belongs_to_district"", ""person_belongs_to_state"", ""person_belongs_to_country""]",[] +Partners,"[""Person""]","[""factory_types""]","[""first_name"", ""middle_name"", ""last_name"", ""gender"", ""dob"", ""religion"", ""languages_known"", ""mobile_number"", ""alternate_number"", ""email_id"", ""house_street"", ""village"", ""taluka"", ""town_city"", ""pin_code"", ""degree_name"", ""degree_specialization"", ""degree_passing_year"", ""other_qualifications""]","[""person_belongs_to_district"", ""person_belongs_to_state"", ""person_belongs_to_country""]",[] +Event,[],"[""GAPP""]","[""start_time"", ""end_time"", ""event_status"",""is_bigbluebutton"", ""open_event""]","[""event_organised_by"", ""event_coordinator"", ""has_attendees"", ""has_attended""]",[] +Inauguration,"[""Event""]","[""factory_types""]","[""start_time"", ""end_time""]","[""event_organised_by"", ""event_coordinator"", ""has_attendees"", ""has_attended""]",[] +Field Visit,"[""Event""]","[""factory_types""]","[""start_time"", ""end_time""]","[""event_organised_by"", ""event_coordinator"", ""has_attendees"", ""has_attended""]",[] +Meeting,"[""Event""]","[""factory_types""]","[""start_time"", ""end_time""]","[""event_organised_by"", ""event_coordinator"", ""has_attendees"", ""has_attended""]",[] +Orientation,"[""Event""]","[""factory_types""]","[""start_time"", ""end_time""]","[""event_organised_by"", ""event_coordinator"", ""has_attendees"", ""has_attended""]",[] +Master Trainer Program,"[""Event""]","[""factory_types""]","[""start_time"", ""end_time""]","[""event_organised_by"", ""event_coordinator"", ""has_attendees"", ""has_attended""]",[] +Training of Teachers,"[""Event""]","[""factory_types""]","[""start_time"", ""end_time""]","[""event_organised_by"", ""event_coordinator"", ""has_attendees"", ""has_attended""]",[] +Course Developers Meeting,"[""Event""]","[""factory_types""]","[""start_time"", ""end_time""]","[""event_organised_by"", ""event_coordinator"", ""has_attendees"", ""has_attended""]",[] +Session,"[""Event""]","[""factory_types""]","[""start_time"", ""end_time""]","[""event_organised_by"", ""event_coordinator"", ""has_attendees"", ""has_attended""]",[] +Classroom Session,"[""Event""]","[""factory_types""]","[""nussd_course_type"", ""start_time"", ""end_time"", ""reschedule_attendance"", ""marks_entry_completed"", ""event_edit_reschedule"", ""event_attendance_task"", ""event_date_task""]","[""event_organised_by"", ""event_coordinator"", ""has_attendees"", ""has_attended"", ""event_has_batch"", ""session_of""]",[] +Lab Session,"[""Event""]","[""factory_types""]","[""start_time"", ""end_time""]","[""event_organised_by"", ""event_coordinator"", ""has_attendees"", ""has_attended""]",[] +Exam,"[""Event""]","[""factory_types""]","[""nussd_course_type"", ""start_time"", ""end_time"", ""reschedule_attendance"", ""marks_entry_completed"", ""event_edit_reschedule"", ""event_attendance_task"", ""event_date_task""]","[""event_organised_by"", ""event_coordinator"", ""has_attendees"", ""has_attended"", ""event_has_batch"", ""session_of""]",[] +Enrollment,[],"[""factory_types""]",[],[],[] +StudentCourseEnrollment,"[""Enrollment""]","[""factory_types""]","[""nussd_course_type"", ""start_enroll"", ""end_enroll"", ""enrollment_status"", ""has_enrollment_task"", ""has_approval_task""]","[""for_acourse"", ""for_college"", ""for_university"", ""has_current_approval_task""]",[] +MIS,[],"[""GAPP""]",[],[],"[""Organization"", ""University"", ""College"", ""Course"", ""NUSSD Course"", ""Announced Course"", ""Person"", ""Partners"", ""Program Manager"", ""Steering Committee Member"", ""Faculty Coordinator"", ""Program Officer"", ""NSS Coordinator"", ""Course Developer"", ""Master Trainer"", ""Voluntary Teacher"", ""Student"", ""Enrollment"", ""StudentCourseEnrollment""]" +MIS-PO,[],"[""GAPP""]",[],[],"[""Person"", ""Voluntary Teacher"", ""Student""]" +CourseSection,[],"[""factory_types""]",[],[],[] +CourseSubSection,[],"[""factory_types""]","[""course_structure_minutes"", ""course_structure_assignment"", ""course_structure_assessment"", ""min_marks"", ""max_marks""]",[],[] +CourseUnit,[],"[""factory_types""]",[],[],[] +GListItem,[],"[""factory_types""]",[],[],[] +CourseSectionEvent,[],"[""factory_types""]",[],[],[] +CourseSubSectionEvent,[],"[""factory_types""]","[""course_structure_minutes"", ""course_structure_assignment"", ""course_structure_assessment"", ""min_marks"", ""max_marks""]",[],[] +CourseUnitEvent,[],"[""factory_types""]",[],[],[] +QuizItemEvent,"[""QuizItem""]","[""factory_types""]","[""quizitem_show_correct_ans"",""quizitem_problem_weight"" ,""quizitem_max_attempts"" ]","[""clone_of"", ""translation_of""]",[] +QuizItemPost,"[""Reply""]","[""factory_types""]","[""quizitempost_user_submitted_ans"", ""quizitempost_user_checked_ans""]",[],[] +Jhapp,[],"[""factory_types""]",[],[],[] +Jsmol,"[""Jhapp""]","[""factory_types""]",[],[],[] +TurtleBlocks,"[""Jhapp""]","[""factory_types""]",[],[],[] +Asset,[],"[""factory_types""]",[],"[""has_assetcontent""]",[] +PoliceSquad,"[""Jhapp""]","[""factory_types""]",[],[],[] +OpenStoryTool,"[""Jhapp""]","[""factory_types""]",[],[],[] +BioMechanics,"[""Jhapp""]","[""factory_types""]",[],[],[] +Template,"[""Page""]","[""factory_types""]",[],[],[] +base_unit,[],"[""factory_types""]","[""educationalsubject"", ""educationallevel"", ""assessment_list""]",[],[] +lesson,[],"[""factory_types""]",[],[],[] +activity,[],"[""factory_types""]",[],[],[] +announced_unit,[],"[""factory_types""]","[""educationalsubject"", ""educationallevel"", ""start_time"", ""end_time"", ""start_enroll"", ""end_enroll"", ""assessment_list"", ""total_assessment_items""]",[],[] +trans_node,[],"[""factory_types""]","[""options""]",[],[] +base_survey,[],"[""factory_types""]",[],[],[] +announced_survey,[],"[""factory_types""]","[""start_time"", ""end_time"", ""start_enroll"", ""end_enroll""]",[],[] diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/STs_run2.json b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/STs_run2.json new file mode 100644 index 0000000000..b47a8f253b --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/management/commands/schema_files/STs_run2.json @@ -0,0 +1,490 @@ +[ + { + "attribute_type_set": "[]", + "name": "Place", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "Country", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Place\"]" + }, + { + "attribute_type_set": "[\"state_code\"]", + "name": "State", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Place\"]" + }, + { + "attribute_type_set": "[]", + "name": "District", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"district_of\"]", + "type_of": "[\"Place\"]" + }, + { + "attribute_type_set": "[]", + "name": "Organization", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[\"house_street\", \"village\", \"taluka\", \"town_city\", \"pin_code\"]", + "name": "University", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"organization_belongs_to_district\", \"organization_belongs_to_state\", \"organization_belongs_to_country\", \"affiliated_college\"]", + "type_of": "[\"Organization\"]" + }, + { + "attribute_type_set": "[\"enrollment_code\", \"house_street\", \"village\", \"taluka\", \"town_city\", \"pin_code\"]", + "name": "College", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"organization_belongs_to_district\", \"organization_belongs_to_state\", \"organization_belongs_to_country\"]", + "type_of": "[\"Organization\"]" + }, + { + "attribute_type_set": "[\"nussd_course_type\"]", + "name": "NUSSD Course", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Course\"]" + }, + { + "attribute_type_set": "[\"nussd_course_type\", \"start_time\", \"end_time\", \"ann_course_closure\"]", + "name": "Announced Course", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"announced_for\", \"acourse_for_college\"]", + "type_of": "[\"Course\"]" + }, + { + "attribute_type_set": "[]", + "name": "Caste", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "Person", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[\"first_name\", \"middle_name\", \"last_name\", \"dob\", \"gender\", \"religion\", \"email_id\", \"languages_known\", \"signature\", \"user_photo\", \"mobile_number\", \"alternate_number\", \"house_street\", \"village\", \"taluka\", \"town_city\", \"pin_code\", \"12_passing_year\", \"12_passing_certificate\", \"degree_name\", \"degree_specialization\", \"degree_year\", \"college_enroll_num\", \"registration_date\", \"is_nss_registered\", \"attendance_record\", \"performance_record\", \"cumulative_performance_report\", \"course_enrollment_status\", \"enrollment_code\",\"aadhar_id\"]", + "name": "Student", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"student_of_caste_category\", \"person_belongs_to_state\", \"person_belongs_to_district\", \"student_belongs_to_university\", \"student_belongs_to_college\", \"selected_course\"]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[\"first_name\", \"middle_name\", \"last_name\", \"gender\", \"dob\", \"religion\", \"email_id\", \"languages_known\", \"signature\", \"user_photo\", \"mobile_number\", \"alternate_number\", \"house_street\", \"village\", \"taluka\", \"town_city\", \"pin_code\", \"degree_name\", \"degree_specialization\", \"degree_passing_year\", \"other_qualifications\", \"voln_tr_qualifications\", \"key_skills\", \"profession\", \"designation\", \"work_exp\"]", + "name": "Voluntary Teacher", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"person_belongs_to_state\", \"person_belongs_to_district\", \"trainer_teaches_course_in_college\"]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[\"first_name\", \"middle_name\", \"last_name\", \"gender\", \"dob\", \"religion\", \"email_id\", \"languages_known\", \"signature\", \"user_photo\", \"mobile_number\", \"alternate_number\", \"house_street\", \"village\", \"taluka\", \"town_city\", \"pin_code\", \"degree_name\", \"degree_specialization\", \"degree_passing_year\", \"other_qualifications\", \"mast_tr_qualifications\"]", + "name": "Master Trainer", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"person_belongs_to_state\", \"person_belongs_to_district\", \"master_trainer_of_course\", \"master_trainer_of_university\"]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[\"first_name\", \"middle_name\", \"last_name\", \"gender\", \"dob\", \"religion\", \"languages_known\", \"mobile_number\", \"alternate_number\", \"email_id\", \"house_street\", \"village\", \"taluka\", \"town_city\", \"pin_code\", \"degree_name\", \"degree_specialization\", \"degree_passing_year\", \"other_qualifications\"]", + "name": "Faculty Coordinator", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"person_belongs_to_district\", \"person_belongs_to_state\", \"person_belongs_to_country\", \"faculty_incharge_of_university\", \"faculty_incharge_of_college\"]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[\"first_name\", \"middle_name\", \"last_name\", \"gender\", \"dob\", \"religion\", \"languages_known\", \"mobile_number\", \"alternate_number\", \"email_id\", \"house_street\", \"village\", \"taluka\", \"town_city\", \"pin_code\", \"degree_name\", \"degree_specialization\", \"degree_passing_year\", \"other_qualifications\"]", + "name": "NSS Coordinator", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"person_belongs_to_district\", \"person_belongs_to_state\", \"person_belongs_to_country\"]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[\"first_name\", \"middle_name\", \"last_name\", \"gender\", \"dob\", \"religion\", \"languages_known\", \"mobile_number\", \"alternate_number\", \"email_id\", \"house_street\", \"village\", \"taluka\", \"town_city\", \"pin_code\", \"degree_name\", \"degree_specialization\", \"degree_passing_year\", \"other_qualifications\"]", + "name": "Course Developer", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"person_belongs_to_district\", \"person_belongs_to_state\", \"person_belongs_to_country\", \"developer_of_course\"]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[\"first_name\", \"middle_name\", \"last_name\", \"gender\", \"dob\", \"religion\", \"languages_known\", \"mobile_number\", \"alternate_number\", \"email_id\", \"house_street\", \"village\", \"taluka\", \"town_city\", \"pin_code\", \"degree_name\", \"degree_specialization\", \"degree_passing_year\", \"other_qualifications\"]", + "name": "Steering Committee Member", + "member_of": "[\"factory_types\"]", + "collection_set": "[\"Organization\", \"University\", \"College\", \"Course\", \"NUSSD Course\", \"Announced Course\", \"Person\", \"Partners\", \"Program Manager\", \"Steering Committee Member\", \"Faculty Coordinator\", \"Program Officer\", \"NSS Coordinator\", \"Course Developer\", \"Master Trainer\", \"Voluntary Teacher\", \"Student\", \"Enrollment\", \"StudentCourseEnrollment\"]", + "relation_type_set": "[\"person_belongs_to_district\", \"person_belongs_to_state\", \"person_belongs_to_country\"]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[\"first_name\", \"middle_name\", \"last_name\", \"gender\", \"dob\", \"religion\", \"languages_known\", \"mobile_number\", \"alternate_number\", \"email_id\", \"house_street\", \"village\", \"taluka\", \"town_city\", \"pin_code\", \"degree_name\", \"degree_specialization\", \"degree_passing_year\", \"other_qualifications\"]", + "name": "Program Officer", + "member_of": "[\"factory_types\"]", + "collection_set": "[\"Person\", \"Student\", \"Enrollment\", \"StudentCourseEnrollment\"]", + "relation_type_set": "[\"person_belongs_to_district\", \"person_belongs_to_state\", \"person_belongs_to_country\", \"officer_incharge_of\"]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[\"first_name\", \"middle_name\", \"last_name\", \"gender\", \"dob\", \"religion\", \"languages_known\", \"mobile_number\", \"alternate_number\", \"email_id\", \"house_street\", \"village\", \"taluka\", \"town_city\", \"pin_code\", \"degree_name\", \"degree_specialization\", \"degree_passing_year\", \"other_qualifications\"]", + "name": "Program Manager", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"person_belongs_to_district\", \"person_belongs_to_state\", \"person_belongs_to_country\"]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[\"first_name\", \"middle_name\", \"last_name\", \"gender\", \"dob\", \"religion\", \"languages_known\", \"mobile_number\", \"alternate_number\", \"email_id\", \"house_street\", \"village\", \"taluka\", \"town_city\", \"pin_code\", \"degree_name\", \"degree_specialization\", \"degree_passing_year\", \"other_qualifications\"]", + "name": "Partners", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"person_belongs_to_district\", \"person_belongs_to_state\", \"person_belongs_to_country\"]", + "type_of": "[\"Person\"]" + }, + { + "attribute_type_set": "[\"start_time\", \"end_time\", \"event_status\",\"is_bigbluebutton\", \"open_event\"]", + "name": "Event", + "member_of": "[\"GAPP\"]", + "collection_set": "[]", + "relation_type_set": "[\"event_organised_by\", \"event_coordinator\", \"has_attendees\", \"has_attended\"]", + "type_of": "[]" + }, + { + "attribute_type_set": "[\"start_time\", \"end_time\"]", + "name": "Inauguration", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"event_organised_by\", \"event_coordinator\", \"has_attendees\", \"has_attended\"]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[\"start_time\", \"end_time\"]", + "name": "Field Visit", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"event_organised_by\", \"event_coordinator\", \"has_attendees\", \"has_attended\"]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[\"start_time\", \"end_time\"]", + "name": "Meeting", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"event_organised_by\", \"event_coordinator\", \"has_attendees\", \"has_attended\"]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[\"start_time\", \"end_time\"]", + "name": "Orientation", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"event_organised_by\", \"event_coordinator\", \"has_attendees\", \"has_attended\"]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[\"start_time\", \"end_time\"]", + "name": "Master Trainer Program", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"event_organised_by\", \"event_coordinator\", \"has_attendees\", \"has_attended\"]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[\"start_time\", \"end_time\"]", + "name": "Training of Teachers", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"event_organised_by\", \"event_coordinator\", \"has_attendees\", \"has_attended\"]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[\"start_time\", \"end_time\"]", + "name": "Course Developers Meeting", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"event_organised_by\", \"event_coordinator\", \"has_attendees\", \"has_attended\"]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[\"start_time\", \"end_time\"]", + "name": "Session", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"event_organised_by\", \"event_coordinator\", \"has_attendees\", \"has_attended\"]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[\"nussd_course_type\", \"start_time\", \"end_time\", \"reschedule_attendance\", \"marks_entry_completed\", \"event_edit_reschedule\", \"event_attendance_task\", \"event_date_task\"]", + "name": "Classroom Session", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"event_organised_by\", \"event_coordinator\", \"has_attendees\", \"has_attended\", \"event_has_batch\", \"session_of\"]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[\"start_time\", \"end_time\"]", + "name": "Lab Session", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"event_organised_by\", \"event_coordinator\", \"has_attendees\", \"has_attended\"]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[\"nussd_course_type\", \"start_time\", \"end_time\", \"reschedule_attendance\", \"marks_entry_completed\", \"event_edit_reschedule\", \"event_attendance_task\", \"event_date_task\"]", + "name": "Exam", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"event_organised_by\", \"event_coordinator\", \"has_attendees\", \"has_attended\", \"event_has_batch\", \"session_of\"]", + "type_of": "[\"Event\"]" + }, + { + "attribute_type_set": "[]", + "name": "Enrollment", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[\"nussd_course_type\", \"start_enroll\", \"end_enroll\", \"enrollment_status\", \"has_enrollment_task\", \"has_approval_task\"]", + "name": "StudentCourseEnrollment", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"for_acourse\", \"for_college\", \"for_university\", \"has_current_approval_task\"]", + "type_of": "[\"Enrollment\"]" + }, + { + "attribute_type_set": "[]", + "name": "MIS", + "member_of": "[\"GAPP\"]", + "collection_set": "[\"Organization\", \"University\", \"College\", \"Course\", \"NUSSD Course\", \"Announced Course\", \"Person\", \"Partners\", \"Program Manager\", \"Steering Committee Member\", \"Faculty Coordinator\", \"Program Officer\", \"NSS Coordinator\", \"Course Developer\", \"Master Trainer\", \"Voluntary Teacher\", \"Student\", \"Enrollment\", \"StudentCourseEnrollment\"]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "MIS-PO", + "member_of": "[\"GAPP\"]", + "collection_set": "[\"Person\", \"Voluntary Teacher\", \"Student\"]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "CourseSection", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[\"course_structure_minutes\", \"course_structure_assignment\", \"course_structure_assessment\", \"min_marks\", \"max_marks\"]", + "name": "CourseSubSection", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "CourseUnit", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "GListItem", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "CourseSectionEvent", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[\"course_structure_minutes\", \"course_structure_assignment\", \"course_structure_assessment\", \"min_marks\", \"max_marks\"]", + "name": "CourseSubSectionEvent", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "CourseUnitEvent", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[\"quizitem_show_correct_ans\",\"quizitem_problem_weight\" ,\"quizitem_max_attempts\" ]", + "name": "QuizItemEvent", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"clone_of\", \"translation_of\"]", + "type_of": "[\"QuizItem\"]" + }, + { + "attribute_type_set": "[\"quizitempost_user_submitted_ans\", \"quizitempost_user_checked_ans\"]", + "name": "QuizItemPost", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Reply\"]" + }, + { + "attribute_type_set": "[]", + "name": "Jhapp", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "Jsmol", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Jhapp\"]" + }, + { + "attribute_type_set": "[]", + "name": "TurtleBlocks", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Jhapp\"]" + }, + { + "attribute_type_set": "[]", + "name": "Asset", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[\"has_assetcontent\"]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "PoliceSquad", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Jhapp\"]" + }, + { + "attribute_type_set": "[]", + "name": "OpenStoryTool", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Jhapp\"]" + }, + { + "attribute_type_set": "[]", + "name": "BioMechanics", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Jhapp\"]" + }, + { + "attribute_type_set": "[]", + "name": "Template", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[\"Page\"]" + }, + { + "attribute_type_set": "[\"educationalsubject\", \"educationallevel\", \"assessment_list\"]", + "name": "base_unit", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "lesson", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "activity", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[\"educationalsubject\", \"educationallevel\", \"start_time\", \"end_time\", \"start_enroll\", \"end_enroll\", \"assessment_list\", \"total_assessment_items\"]", + "name": "announced_unit", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[\"options\"]", + "name": "trans_node", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[]", + "name": "base_survey", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + }, + { + "attribute_type_set": "[\"start_time\", \"end_time\", \"start_enroll\", \"end_enroll\"]", + "name": "announced_survey", + "member_of": "[\"factory_types\"]", + "collection_set": "[]", + "relation_type_set": "[]", + "type_of": "[]" + } +] \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py index da2184ce2c..85b4a6864a 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py @@ -31,7 +31,7 @@ # gstudio admin url's (r'^admin/', include('gnowsys_ndf.ndf.urls.gstudio_admin')), - (r'^api/v1', include('gnowsys_ndf.ndf.urls.api')), + #(r'^api/v1', include('gnowsys_ndf.ndf.urls.api')), # --mobwrite-- commented for time being # (r'^raw/(?P.+)/', 'gnowsys_ndf.mobwrite.views.raw'), From dbc3a55183ffef48da8a3062837a5c24f4f40a53 Mon Sep 17 00:00:00 2001 From: root Date: Sun, 28 Jan 2018 09:28:19 +0530 Subject: [PATCH 287/766] some chanes in es_injection file --- doc/deployer/es_injection.py | 2 +- .../gnowsys_ndf/ndf/templates/ndf/widget_selector.html | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/deployer/es_injection.py b/doc/deployer/es_injection.py index c236a4d635..0a4ce439b7 100644 --- a/doc/deployer/es_injection.py +++ b/doc/deployer/es_injection.py @@ -151,7 +151,7 @@ def main(): if (index.lower() == "triples"): res = es.indices.create(index=index.lower(), body=triples_body) else: - res = es.indices.create(index=index.lower(), body=req_body) + res = es.indices.create(index=index.lower(), body=request_body) if (es.indices.exists(index.lower())): diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_selector.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_selector.html index 92805c2218..8b4793373c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_selector.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_selector.html @@ -4,7 +4,7 @@ HOW TO USE - EXAMPLE: - {% include 'ndf/widget_selector.html' with for='apps_to_set' all_options=all_gapps selected_options=group_gapps oneline_element=true %} + {% include 'ndf/widget_selector1.html' with for='apps_to_set' all_options=all_gapps selected_options=group_gapps oneline_element=true %} where, @@ -28,7 +28,7 @@ where, - first arg: should be matching with field specified in the - while including widget_selector.html + while including widget_selector1.html - second arg: optional, id to be assign to this newly created hidden element. - If there are 3 inclusions of widget_selector then "getSelValuesHiddenElement()" should be called (before save) 3 times with appropriate first args (). @@ -238,7 +238,7 @@ var oneline_element = "{{oneline_element}}"; // making list of all selected items data - + var selected_options = [ {% for each_opt in selected_options %}"{{each_opt|safe}}"{% if not forloop.last %},{% endif %}{% endfor %} ]; // console.log(selected_options) From d911c2e1c69b547c9bb788e264e78b9fbaff40fa Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Mon, 29 Jan 2018 12:55:49 +0530 Subject: [PATCH 288/766] mydesk and courseabout footer updated --- .../gnowsys_ndf/ndf/templates/ndf/course_about.html | 2 +- .../gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/course_about.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/course_about.html index 5b37c40928..70efaee0c1 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/course_about.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/course_about.html @@ -320,7 +320,7 @@

    Taking Screenshots of the work and doing something

    {#
    #}
    - +
    - - - - - - - - - - - -
    -
    -
    -
    -
    - -
    -
    - - - - - - - - - + {% get_filters_data "E-Book" as filter_dict %} + {% include "ndf/filters.html" with filter_dict=filter_dict %} {% endblock body_content %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py index 9ca8fcd895..e91274e6fd 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py @@ -17,6 +17,68 @@ ''' -- imports from application folders/files -- ''' from gnowsys_ndf.ndf.models import node_collection, triple_collection, gridfs_collection, NodeJSONEncoder + +import re +import urllib + +''' -- imports from installed packages -- ''' +from django.shortcuts import render_to_response +from django.template import RequestContext +from mongokit import paginator + + +try: + from bson import ObjectId +except ImportError: # old pymongo + from pymongo.objectid import ObjectId + +''' -- imports from application folders/files -- ''' +from gnowsys_ndf.settings import GAPPS +# from gnowsys_ndf.ndf.models import Node, GRelation,GSystemType,File,Triple +from gnowsys_ndf.ndf.models import Node, GRelation,GSystemType, Triple +from gnowsys_ndf.ndf.models import node_collection +from gnowsys_ndf.ndf.views.file import * +from gnowsys_ndf.ndf.views.methods import get_group_name_id, cast_to_data_type, get_execution_time +from gnowsys_ndf.ndf.views.methods import get_filter_querydict +from elasticsearch import Elasticsearch + +es = Elasticsearch("http://elastic:changeme@gsearch:9200", timeout=100, retry_on_timeout=True) + +#GST_PAGE = node_collection.one({'_type':'GSystemType', 'name': 'page'}) +#GST_IMAGE = node_collection.one({'_type':'GSystemType', 'name': 'image'}) +##GST_VIDEO = node_collection.one({'_type':'GSystemType', 'name': GAPPS[4]}) +#e_library_GST = node_collection.one({'_type':'GSystemType', 'name': 'E-Library'}) +#pandora_video_st = node_collection.one({'_type':'GSystemType', 'name': 'Pandora_video'}) +#app = node_collection.one({'_type':'GSystemType', 'name': 'E-Library'}) +#wiki_page = node_collection.one({'_type': 'GSystemType', 'name': 'Wiki page'}) +#GST_JSMOL = node_collection.one({"_type":"GSystemType","name":"Jsmol"}) +GST_FILE = res = es.search(index="nodes", doc_type="gsystemtype", body={ + "query": {"bool":{"must": [ {"term": {"name":"file"} }] }}}) + + +GST_PAGE = res = es.search(index="nodes", doc_type="gsystemtype", body={ + "query": {"bool":{"must": [ {"term": {"name":"page"} }] }}}) + +GST_IMAGE = res = es.search(index="nodes", doc_type="gsystemtype", body={ + "query": {"bool":{"must": [ {"term": {"name":"image"} }] }}}) +#print ebook_gst +GST_VIDEO = es.search(index="nodes", doc_type="gsystemtype", body={ + "query": {"bool": {"must": [{"term": {"name":"video"}}]}}}) +e_library_GST = es.search(index="nodes", doc_type="gsystemtype", body={ + "query": {"bool": {"must": [{"term": {"name":"library"}}]}}}) +#print e_library_GST +pandora_video_st = res = es.search(index="nodes", doc_type="gsystemtype", body={ + "query": {"bool":{"must": [ {"term": {"name":"pandora"} }] }}}) + +app = res = es.search(index="nodes", doc_type="gsystemtype", body={ + "query": {"bool":{"must": [ {"term": {"name":"library"} }] }}}) + +#print ebook_gst +wiki_page = es.search(index="nodes", doc_type="gsystemtype", body={ + "query": {"bool": {"must": [{"term": {"name":"wiki"}}]}}}) +GST_JSMOL = es.search(index="nodes", doc_type="gsystemtype", body={ + "query": {"bool": {"must": [{"term": {"name":"Jsmol"}}]}}}) + def query_doc(request, doc_id_or_name=None, option=None): if ObjectId.is_valid(doc_id_or_name): @@ -41,11 +103,199 @@ def query_doc(request, doc_id_or_name=None, option=None): ) -def render_test_template(request): +def render_test_template(request,group_id='home', app_id=None, page_no=1): + + is_video = request.GET.get('is_video', "") + + + try: + group_id = ObjectId(group_id) + #print group_id + except: + group_name, group_id = get_group_name_id(group_id) + #print group_id, group_name + temp=[] + + + for a in app['hits']['hits']: + temp1=ObjectId(a['_source']['id']) + temp.append(temp1) + + + if app_id is None: + app_id = str(temp) + + e_library_GST_temp=[] + + for a in e_library_GST['hits']['hits']: + temp1=a['_source']['name'] + e_library_GST_temp.append(temp1) + + + #print e_library_GST_temp + #title = e_library_GST.name + title = e_library_GST_temp + #print title + + GST_FILE_temp=[] + for a in GST_FILE['hits']['hits']: + temp1=ObjectId(a['_source']['id']) + GST_FILE_temp.append(temp1) + + #file_id = GST_FILE._id + GST_JSMOL_temp=[] + for a in GST_JSMOL['hits']['hits']: + temp1=ObjectId(a['_source']['id']) + GST_JSMOL_temp.append(temp1) + + GST_PAGE_temp=[] + for a in GST_PAGE['hits']['hits']: + temp1=ObjectId(a['_source']['id']) + GST_PAGE_temp.append(temp1) + + + + file_id = GST_FILE_temp + print file_id + datavisual = [] + no_of_objs_pp = 24 + + query_dict = [] + # query_dict = filters + + selfilters = urllib.unquote(request.GET.get('selfilters', '')) + if selfilters: + selfilters = json.loads(selfilters) + query_dict = get_filter_querydict(selfilters) + + query_dict.append({'attribute_set.educationaluse': {'$ne': 'eBooks'}}) + + + + files = node_collection.find({ + # 'member_of': {'$in': [GST_FILE._id, GST_PAGE._id]}, + #'member_of': {'$in': [GST_FILE._id,GST_JSMOL._id]}, + 'member_of': {'$in': [GST_FILE_temp,GST_JSMOL_temp]}, + + # '_type': 'File', + # 'fs_file_ids': {'$ne': []}, + 'group_set': {'$all': [ObjectId(group_id)]}, + '$and': query_dict, + '$or': [ + { 'access_policy': u"PUBLIC" }, + { '$and': [ + {'access_policy': u"PRIVATE"}, + {'created_by': request.user.id} + ] + } + ] + }).sort("last_update", -1) + + + files1 = res = es.search(index="nodes", doc_type="gsystemtype,gsystem", body={ + "query": {"bool": { "must": [ {"term": {"group_set": str(ObjectId(group_id))} },{"term": {"access_policy": "public"}}], + "must_not": [ {"term": {"attribute_set.educationaluse": "ebooks" } } ] + } }} ) + print files1 + # print "files.count : ", files.count() + + # pageCollection=node_collection.find({'member_of':GST_PAGE._id, 'group_set': ObjectId(group_id), + # '$or': [ + # { 'access_policy': u"PUBLIC" }, + # { '$and': [ + # {'access_policy': u"PRIVATE"}, + # {'created_by': request.user.id} + # ] + # } + # ], + # 'type_of': {'$in': [wiki_page._id]} + # }).sort("last_update", -1) + + images_count = res = es.search(index="gsystem", doc_type="images", body={ + "query": {"bool":{"must": [ {"term": {"status":"published"} }] }}}) + + + + educationaluse_stats = {} + + + if files: + eu_list = [] # count + for each in files: + eu_list += [i.get("educationaluse") for i in each.attribute_set if i.has_key("educationaluse")] + + files.rewind() + + if set(eu_list): + if len(set(eu_list)) > 1: + educationaluse_stats = dict((x, eu_list.count(x)) for x in set(eu_list)) + elif len(set(eu_list)) == 1: + educationaluse_stats = { eu_list[0]: eu_list.count(eu_list[0])} + educationaluse_stats["all"] = files.count() + + + # print educationaluse_stats + result_paginated_cur = files + result_pages = paginator.Paginator(result_paginated_cur, page_no, no_of_objs_pp) + + + + + collection_pages_cur = node_collection.find({ + 'member_of': {'$in': [GST_FILE_temp, GST_PAGE_temp ]}, + 'group_set': {'$all': [ObjectId(group_id)]}, + '$and': query_dict, + '$or': [ + {'access_policy': u"PUBLIC"}, + {'$and': [ + {'access_policy': u"PRIVATE"}, + {'created_by': request.user.id} + ] + } + ], + 'collection_set': {'$exists': "true", '$not': {'$size': 0} } + }).sort("last_update", -1) + + coll_page_count = collection_pages_cur.count() if collection_pages_cur else 0 + collection_pages = paginator.Paginator(collection_pages_cur, page_no, no_of_objs_pp) + datavisual.append({"name":"Doc", "count": educationaluse_stats.get("Documents", 0)}) + datavisual.append({"name":"Page", "count": educationaluse_stats.get("Pages", 0)}) + datavisual.append({"name":"Image","count": educationaluse_stats.get("Images", 0)}) + datavisual.append({"name":"Video","count": educationaluse_stats.get("Videos", 0)}) + datavisual.append({"name":"Interactives","count": educationaluse_stats.get("Interactives", 0)}) + datavisual.append({"name":"Audios","count": educationaluse_stats.get("Audios", 0)}) + datavisual.append({"name":"eBooks","count": educationaluse_stats.get("eBooks", 0)}) + if collection_pages_cur: + datavisual.append({"name":"Collections","count": coll_page_count}) + datavisual = json.dumps(datavisual) + + + + test_node = node_collection.one({"name":"home", '_type':"Group"}) + + return render_to_response( 'ndf/test_template.html', - {"node":test_node}, + {"node":test_node,'title': title, 'app':e_library_GST, + 'appId':app_id, "app_gst": app, + # 'already_uploaded': already_uploaded,'shelf_list': shelf_list,'shelves': shelves, + 'files': files, + "detail_urlname": "file_detail", + 'ebook_pages': educationaluse_stats.get("eBooks", 0), + # 'page_count': pageCollection.count(), + # 'page_nodes':pageCollection + 'file_pages': result_pages, + 'image_pages': images_count['hits']['total'], + 'interactive_pages': educationaluse_stats.get("Interactives", 0), + 'educationaluse_stats': json.dumps(educationaluse_stats), + 'doc_pages': educationaluse_stats.get("Documents", 0), + 'video_pages': educationaluse_stats.get("Videos", 0), + 'audio_pages': educationaluse_stats.get("Audios", 0), + 'collection_pages': collection_pages, + 'collection': collection_pages_cur, + 'groupid': group_id, 'group_id':group_id, + "datavisual":datavisual}, context_instance=RequestContext(request) ) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py index 40250ed42e..1ecc84505f 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py @@ -5,6 +5,7 @@ from django.template import RequestContext # from django.core.urlresolvers import reverse from mongokit import paginator +from django.core.paginator import Paginator try: @@ -18,13 +19,26 @@ # from gnowsys_ndf.ndf.views.file import * from gnowsys_ndf.ndf.views.methods import get_group_name_id, cast_to_data_type, get_execution_time from gnowsys_ndf.ndf.views.methods import get_filter_querydict - +from elasticsearch import Elasticsearch # GST_IMAGE = node_collection.one({'_type':'GSystemType', 'name': u"Image"}) -ebook_gst = node_collection.one({'_type':'GSystemType', 'name': u"E-Book"}) -GST_FILE = node_collection.one({'_type':'GSystemType', 'name': u"File"}) -GST_PAGE = node_collection.one({'_type':'GSystemType', 'name': u'Page'}) +es = Elasticsearch("http://elastic:changeme@gsearch:9200", timeout=100, retry_on_timeout=True) + +#ebook_gst = node_collection.one({'_type':'GSystemType', 'name': u"E-Book"}) +#GST_FILE = node_collection.one({'_type':'GSystemType', 'name': u"File"}) +#GST_PAGE = node_collection.one({'_type':'GSystemType', 'name': u'Page'}) + +ebook_gst = res = es.search(index="nodes", doc_type="gsystemtype", body={ + "query": {"bool":{"must": [ {"term": {"name":"e-book"} }] }}}) +#print ebook_gst +GST_FILE = es.search(index="nodes", doc_type="gsystemtype", body={ + "query": {"bool": {"must": [{"term": {"name":"file"}}]}}}) +GST_PAGE = es.search(index="nodes", doc_type="gsystemtype", body={ + "query": {"bool": {"must": [{"term": {"name":"page"}}]}}}) + + +#print GST_FILE @get_execution_time def ebook_listing(request, group_id, page_no=1): from gnowsys_ndf.settings import GSTUDIO_NO_OF_OBJS_PP @@ -52,8 +66,34 @@ def ebook_listing(request, group_id, page_no=1): # 'collection_set': {'$exists': "true", '$not': {'$size': 0} } # }) - all_ebooks = node_collection.find({ - 'member_of': {'$in': [GST_FILE._id, GST_PAGE._id]}, + #print GST_FILE._id + temp=[] + + + for a in GST_FILE['hits']['hits']: + temp1=ObjectId(a['_source']['id']) + temp.append(temp1) + + #print temp + + for a in GST_PAGE['hits']['hits']: + temp1=ObjectId(a['_source']['id']) + temp.append(temp1) + + print "-----------------------------------------------------" + #print temp + + + all_ebooks1=es.search(index="nodes", doc_type="metatype,gsystemtype,gsystem", body={ + "query": {"bool": {"filter":{ "terms":{ "member_of": ["444"] }} }}}) + + print all_ebooks1 + + all_ebooks = node_collection.find({ + 'member_of': {'$in': temp }, + # 'member_of': {'$in': [GST_FILE._id, GST_PAGE._id]}, + + # '_type': 'File', # 'fs_file_ids': {'$ne': []}, 'group_set': {'$in': [ObjectId(group_id)]}, @@ -70,6 +110,7 @@ def ebook_listing(request, group_id, page_no=1): 'collection_set': {'$exists': "true", '$not': {'$size': 0} } }).sort("last_update", -1) + ebooks_page_info = paginator.Paginator(all_ebooks, page_no, GSTUDIO_NO_OF_OBJS_PP) return render_to_response("ndf/ebook.html", { diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-library.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-library.py index ee9c332c39..95bfbcc962 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-library.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-library.py @@ -43,10 +43,13 @@ def resource_list(request, group_id, app_id=None, page_no=1): is_video = request.GET.get('is_video', "") + try: group_id = ObjectId(group_id) + #print group_id except: group_name, group_id = get_group_name_id(group_id) + print group_name if app_id is None: app_id = str(app._id) @@ -100,6 +103,7 @@ def resource_list(request, group_id, app_id=None, page_no=1): query_dict = get_filter_querydict(selfilters) query_dict.append({'attribute_set.educationaluse': {'$ne': 'eBooks'}}) + # files = node_collection.find({ # 'member_of': ObjectId(GST_FILE._id), @@ -134,7 +138,6 @@ def resource_list(request, group_id, app_id=None, page_no=1): } ] }).sort("last_update", -1) - # print "files.count : ", files.count() # pageCollection=node_collection.find({'member_of':GST_PAGE._id, 'group_set': ObjectId(group_id), From 0409143ab946e6ba288b58893dd51cd0178636a4 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Mon, 29 Jan 2018 17:59:11 +0530 Subject: [PATCH 298/766] Calendar event binded with event details --- .../gnowsys_ndf/ndf/templates/ndf/gevent.html | 14 ++++++++++++-- .../gnowsys_ndf/ndf/templates/ndf/gtask.html | 2 +- gnowsys-ndf/gnowsys_ndf/ndf/views/event.py | 9 ++++++++- 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html index 82b3e9194e..765fe93687 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gevent.html @@ -210,7 +210,7 @@ listMonth: { buttonText: 'list month' } }, - select: function(start, end) { + select: function(start, end, jsEvent, view) { var title = prompt('Event Title:'); var eventData; if (title) { @@ -219,6 +219,7 @@ start: start, end: end, priority: priority, + //url: eventurl, }; $('#calendar').fullCalendar('renderEvent', eventData, true); // stick? = true } @@ -228,6 +229,7 @@ events: {{events|safe}}, + eventRender: function(event, element) { if (event.priority == 'Immediate') { element.css({ @@ -258,6 +260,12 @@ // $(view.el[0]).find('.fc-day[data-date=' + dateString + ']').css('background-color', '#FAA732'); }, + eventClick: function(event,jsEvent,view) { + if (event.url) { + window.open(event.url, "_blank"); + return false; + } + } }); @@ -266,8 +274,10 @@ $('#calendar').on('click', '.fc-button',function (){ console.log('click'); }); + + - }); +}); diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask.html index 5d9308b7e3..6b9336bcc8 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gtask.html @@ -19,7 +19,7 @@
  • - Task List + List
  • diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/event.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/event.py index bda53657af..67c40c7bbf 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/event.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/event.py @@ -99,8 +99,15 @@ def event(request, group_id): start_date_new_val = '-'.join(start_reverse_date_val) end_date_new_val = '-'.join(end_reverse_date_val) + + parts = [ '/', str(group_id), 'gtask', str(each._id)] + # print parts + conparts = '/'.join([x.strip('/') for x in parts]) + + # print conparts + # eventurl = url_path_join(*parts) - event_list.append({"title":str(each.name), "start":str(start_date_new_val), "end":str(end_date_new_val), "priority": str(priority_val)}) + event_list.append({"title":str(each.name), "start":str(start_date_new_val), "end":str(end_date_new_val), "priority": str(priority_val), "url":str(conparts)}) for each in asset_nodes: From 977fb227706f91f4f50fe42e249f2aacb5fe5eec Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Mon, 29 Jan 2018 18:15:32 +0530 Subject: [PATCH 299/766] lms template for asset content detail --- gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py index aa44c5e38c..335032d3b4 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/gcourse.py @@ -3954,7 +3954,7 @@ def assetcontent_detail(request, group_id, asset_id,asst_content_id,page_no=1): group_obj = get_group_name_id(group_id, get_obj=True) # print group_id,asset_id,asst_content_id asset_content_list = get_relation_value(ObjectId(asset_obj._id),'has_assetcontent') - template = 'ndf/gevent_base.html' + template = 'ndf/lms.html' assetcontent_page_info = paginator.Paginator(asset_content_list['grel_node'], page_no, GSTUDIO_NO_OF_OBJS_PP) context_variables = { 'asset_content_list':asset_content_list,'group_id':group_id, From a47fa9bd8565e001bbae300cf8dbb2306b380f5c Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Mon, 29 Jan 2018 18:22:47 +0530 Subject: [PATCH 300/766] footer space bet tabs added --- .../gnowsys_ndf/ndf/templates/ndf/footer_clix.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer_clix.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer_clix.html index 4348be05f1..37e7f2db0c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer_clix.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer_clix.html @@ -159,8 +159,8 @@
    @@ -184,8 +184,8 @@
    From bb84a5783bf80f409f8431ea24bb706d31142d7d Mon Sep 17 00:00:00 2001 From: Prachirb Date: Mon, 29 Jan 2018 18:35:35 +0530 Subject: [PATCH 302/766] Explore Url added to the top header --- .../ndf/static/ndf/css/themes/clix/styles.css | 38 +++++++++---------- .../ndf/css/themes/metastudio/styles.css | 38 +++++++++---------- .../static/ndf/css/themes/nroer/styles.css | 38 +++++++++---------- .../ndf/static/ndf/css/themes/tiss/styles.css | 38 +++++++++---------- .../ndf/static/ndf/scss/_app_styles.scss | 2 +- .../gnowsys_ndf/ndf/templates/ndf/header.html | 4 ++ 6 files changed, 81 insertions(+), 77 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css index 23f1209aac..e207b98969 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css @@ -28238,7 +28238,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* Secondary Top Bar */ -/* line 4973, ../../../scss/_app_styles.scss */ +/* line 4972, ../../../scss/_app_styles.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -28246,34 +28246,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-bottom: 30px; } -/* line 4983, ../../../scss/_app_styles.scss */ +/* line 4982, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 4988, ../../../scss/_app_styles.scss */ +/* line 4987, ../../../scss/_app_styles.scss */ .top-bar-second .name { text-align: center; } -/* line 4991, ../../../scss/_app_styles.scss */ +/* line 4990, ../../../scss/_app_styles.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 5001, ../../../scss/_app_styles.scss */ +/* line 5000, ../../../scss/_app_styles.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 5009, ../../../scss/_app_styles.scss */ +/* line 5008, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 5011, ../../../scss/_app_styles.scss */ +/* line 5010, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -28282,31 +28282,31 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; letter-spacing: 0.5px; } -/* line 5022, ../../../scss/_app_styles.scss */ +/* line 5021, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 5030, ../../../scss/_app_styles.scss */ +/* line 5029, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 5036, ../../../scss/_app_styles.scss */ +/* line 5035, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 5047, ../../../scss/_app_styles.scss */ + /* line 5046, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 5049, ../../../scss/_app_styles.scss */ + /* line 5048, ../../../scss/_app_styles.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 5056, ../../../scss/_app_styles.scss */ + /* line 5055, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -28314,32 +28314,32 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { line-height: 52px; border-left-width: 0px; } - /* line 5063, ../../../scss/_app_styles.scss */ + /* line 5062, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5069, ../../../scss/_app_styles.scss */ + /* line 5068, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5077, ../../../scss/_app_styles.scss */ + /* line 5076, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 5087, ../../../scss/_app_styles.scss */ + /* line 5086, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 5096, ../../../scss/_app_styles.scss */ + /* line 5095, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 5103, ../../../scss/_app_styles.scss */ + /* line 5102, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css index 92e5f84769..0fd75daeea 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css @@ -28261,7 +28261,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* Secondary Top Bar */ -/* line 4973, ../../../scss/_app_styles.scss */ +/* line 4972, ../../../scss/_app_styles.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -28269,34 +28269,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-bottom: 30px; } -/* line 4983, ../../../scss/_app_styles.scss */ +/* line 4982, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 4988, ../../../scss/_app_styles.scss */ +/* line 4987, ../../../scss/_app_styles.scss */ .top-bar-second .name { text-align: center; } -/* line 4991, ../../../scss/_app_styles.scss */ +/* line 4990, ../../../scss/_app_styles.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 5001, ../../../scss/_app_styles.scss */ +/* line 5000, ../../../scss/_app_styles.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 5009, ../../../scss/_app_styles.scss */ +/* line 5008, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 5011, ../../../scss/_app_styles.scss */ +/* line 5010, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -28305,31 +28305,31 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; letter-spacing: 0.5px; } -/* line 5022, ../../../scss/_app_styles.scss */ +/* line 5021, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 5030, ../../../scss/_app_styles.scss */ +/* line 5029, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 5036, ../../../scss/_app_styles.scss */ +/* line 5035, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 5047, ../../../scss/_app_styles.scss */ + /* line 5046, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 5049, ../../../scss/_app_styles.scss */ + /* line 5048, ../../../scss/_app_styles.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 5056, ../../../scss/_app_styles.scss */ + /* line 5055, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -28337,32 +28337,32 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { line-height: 52px; border-left-width: 0px; } - /* line 5063, ../../../scss/_app_styles.scss */ + /* line 5062, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5069, ../../../scss/_app_styles.scss */ + /* line 5068, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5077, ../../../scss/_app_styles.scss */ + /* line 5076, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 5087, ../../../scss/_app_styles.scss */ + /* line 5086, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 5096, ../../../scss/_app_styles.scss */ + /* line 5095, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 5103, ../../../scss/_app_styles.scss */ + /* line 5102, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css index 70c3325570..1002886ae2 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css @@ -28354,7 +28354,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* Secondary Top Bar */ -/* line 4973, ../../../scss/_app_styles.scss */ +/* line 4972, ../../../scss/_app_styles.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -28362,34 +28362,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-bottom: 30px; } -/* line 4983, ../../../scss/_app_styles.scss */ +/* line 4982, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 4988, ../../../scss/_app_styles.scss */ +/* line 4987, ../../../scss/_app_styles.scss */ .top-bar-second .name { text-align: center; } -/* line 4991, ../../../scss/_app_styles.scss */ +/* line 4990, ../../../scss/_app_styles.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 5001, ../../../scss/_app_styles.scss */ +/* line 5000, ../../../scss/_app_styles.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 5009, ../../../scss/_app_styles.scss */ +/* line 5008, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 5011, ../../../scss/_app_styles.scss */ +/* line 5010, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -28398,31 +28398,31 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; letter-spacing: 0.5px; } -/* line 5022, ../../../scss/_app_styles.scss */ +/* line 5021, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 5030, ../../../scss/_app_styles.scss */ +/* line 5029, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 5036, ../../../scss/_app_styles.scss */ +/* line 5035, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 5047, ../../../scss/_app_styles.scss */ + /* line 5046, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 5049, ../../../scss/_app_styles.scss */ + /* line 5048, ../../../scss/_app_styles.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 5056, ../../../scss/_app_styles.scss */ + /* line 5055, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -28430,32 +28430,32 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { line-height: 52px; border-left-width: 0px; } - /* line 5063, ../../../scss/_app_styles.scss */ + /* line 5062, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5069, ../../../scss/_app_styles.scss */ + /* line 5068, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5077, ../../../scss/_app_styles.scss */ + /* line 5076, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 5087, ../../../scss/_app_styles.scss */ + /* line 5086, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 5096, ../../../scss/_app_styles.scss */ + /* line 5095, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 5103, ../../../scss/_app_styles.scss */ + /* line 5102, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css index 92e5f84769..0fd75daeea 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css @@ -28261,7 +28261,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* Secondary Top Bar */ -/* line 4973, ../../../scss/_app_styles.scss */ +/* line 4972, ../../../scss/_app_styles.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -28269,34 +28269,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-bottom: 30px; } -/* line 4983, ../../../scss/_app_styles.scss */ +/* line 4982, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 4988, ../../../scss/_app_styles.scss */ +/* line 4987, ../../../scss/_app_styles.scss */ .top-bar-second .name { text-align: center; } -/* line 4991, ../../../scss/_app_styles.scss */ +/* line 4990, ../../../scss/_app_styles.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 5001, ../../../scss/_app_styles.scss */ +/* line 5000, ../../../scss/_app_styles.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 5009, ../../../scss/_app_styles.scss */ +/* line 5008, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 5011, ../../../scss/_app_styles.scss */ +/* line 5010, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -28305,31 +28305,31 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; letter-spacing: 0.5px; } -/* line 5022, ../../../scss/_app_styles.scss */ +/* line 5021, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 5030, ../../../scss/_app_styles.scss */ +/* line 5029, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 5036, ../../../scss/_app_styles.scss */ +/* line 5035, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 5047, ../../../scss/_app_styles.scss */ + /* line 5046, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 5049, ../../../scss/_app_styles.scss */ + /* line 5048, ../../../scss/_app_styles.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 5056, ../../../scss/_app_styles.scss */ + /* line 5055, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -28337,32 +28337,32 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { line-height: 52px; border-left-width: 0px; } - /* line 5063, ../../../scss/_app_styles.scss */ + /* line 5062, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5069, ../../../scss/_app_styles.scss */ + /* line 5068, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5077, ../../../scss/_app_styles.scss */ + /* line 5076, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 5087, ../../../scss/_app_styles.scss */ + /* line 5086, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 5096, ../../../scss/_app_styles.scss */ + /* line 5095, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 5103, ../../../scss/_app_styles.scss */ + /* line 5102, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss index f7384d1670..393eeabcf2 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss @@ -4969,7 +4969,6 @@ ul.authoring-tab{ /* Secondary Top Bar */ - .top-bar-second, .top-bar-second .name { height: 55px; background:#ddeff9; @@ -5120,6 +5119,7 @@ ul.authoring-tab{ + /** * Sass styles related to unit cards */ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html index 22a81a5bcb..2008688033 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html @@ -118,6 +118,10 @@

  • +
  • + Explore +
  • + {% if request.user.is_authenticated %}
  • My Desk From 371288be95cfb6d0bde8c262afb6bde05b02e55b Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Mon, 29 Jan 2018 18:45:00 +0530 Subject: [PATCH 303/766] error in metadata fixed --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_metadata.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_metadata.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_metadata.html index 0bde6aa4f1..893d5a242a 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_metadata.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_metadata.html @@ -1,6 +1,5 @@ {% load i18n %} {% load ndf_tags %} -
    @@ -95,7 +94,6 @@
    {% trans "Source: " %}
    -
    + + + \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/simple_card_new.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/simple_card_new.html new file mode 100644 index 0000000000..05c79f839f --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/simple_card_new.html @@ -0,0 +1,154 @@ +{% load i18n %} +{% load ndf_tags %} +{% load simple_filters %} + + + + +
    +
    + + {% if is_event %} + {% get_event_status resource as event_status_msg %} + {% if event_status_msg %} +
    + +
    + {% endif%} +{% endif%} + +{% check_is_gstaff groupid request.user as gstaff_access %} +{% if not no_url %} +{% if first_arg and second_arg and third_arg %} + +{% elif first_arg and second_arg %} + +{% elif first_arg %} + +{% else %} + +{% endif %} +{% endif %} + +
    + + {% get_dict_from_list_of_dicts resource|get:'_source'|get:'attribute_set' as attr_set_dict %} + + {% get_relation_value resource|get:'_source'|get:'has_thumbnail' as grel_dict %} + {% if not grel_dict.cursor and grel_dict.grel_node and grel_dict.grel_node.fs_file_ids.1 %} + + + + {% elif grel_dict.grel_node.if_file.thumbnail.relurl and 'video' or "File" in resource.if_file.mime_type %} + + {% elif resource|get:'_source'|get:'if_file'|get:'thumbnail'|get:'relurl' and 'video' in resource|get:'_source'|get:'if_file'|get:'mime_type' %} + + {% elif resource.if_file.mid.relurl %} + + {% elif resource.if_file.original.relurl and 'image' in resource.if_file.mime_type %} + + {% elif resource.fs_file_ids.2 and not 'video' in resource.mime_type %} + + {% elif resource.fs_file_ids.1 %} + + {% elif "File" in resource.member_of_names_list or "Page" in resource.member_of_names_list%} + {% if resource.collection_set %} + + {% elif attr_set_dict.educationaluse and attr_set_dict.educationaluse != "Documents" %} + + {% elif resource.fs_file_ids.0 and 'image' in resource.mime_type %} + + + {% elif ".ggb" in resource.name %} + Geogebra + {% elif resource.if_file.mime_type %} + + {% else %} + + {% endif %} + {% elif "Group" in resource.member_of_names_list or has_logo == True or has_prof_pic == True %} + {% if "Course" in resource.member_of_names_list or has_logo == True %} + + {% get_relation_value resource.pk 'has_logo' as grel_dict %} + {% if not grel_dict.cursor and grel_dict.grel_node and grel_dict.grel_node.if_file.mid.relurl %} + + {% else %} + Profile picture for this group. + {% endif %} + + + {% else %} + {% get_relation_value resource.pk 'has_profile_pic' as grel_dict %} + {% if not grel_dict.cursor and grel_dict.grel_node and grel_dict.grel_node.if_file.mid.relurl %} + + {% else %} + Profile picture for this group. + {% endif %} + {% endif %} + + {% else%} + + {% endif %} +
    +
    + + + + + {% if not no_footer %} +
    + {% if has_contributor == True %} + + {{resource.created_by|get_username|truncatechars:"10"}} + {% endif %} + {{resource.created_at|date:"d-m-Y"}} + + {% if user.is_authenticated and not group_object.edit_policy == "NON_EDITABLE" or gstaff_access %} + {% if not no_checkbox %} + + {% endif %} + {% endif %} +
    +{% endif %} + + +
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html index a6e4a1173f..626a83ccb2 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html @@ -1,16 +1,761 @@ - -{% extends "ndf/file.html" %} +{% extends "ndf/base.html" %} {% load i18n %} {% load ndf_tags %} -{% load simple_filters %} +{% get_group_name groupid as group_name_tag %} +{% check_is_gstaff groupid request.user as is_gstaff %} +{% get_node groupid as group_obj %} +{% block title %} {{title}} {% endblock %} +{% block style %} +.top-gap +{ +margin-top:15px !important; +} +.filter-body +{ +margin-top:5px !important; +} + .first-load { display: none; } + .tabs dd.active a, .tabs .tab-title.active a { background-color: #f7f7f7; color: black; } + .tabs dd > a, .tabs .tab-title > a {color: #4c4c4c;} -{% block body_content %} + .tabs dd { width: 100%; } + + .tabs dd a { padding-right: 0; width: 100%; } + + .count { position: absolute; right: 5px; opacity: 0.75; } + + .panel > .side-nav > .tabs i {margin-right: 0.5rem;} + + .tabs-content > .content.active{ + margin-left:-1px !important; + } + + +{% endblock %} + + + + + + + + + + + +{% block meta_content %} + +{% endblock %} + + +{% block related_content %} + {% check_user_join request groupid as user_is_joined %} + +
    + + +
    +{% endblock %} + - {% get_filters_data "E-Book" as filter_dict %} + +{% block body_content %} +
    + + {% if app_gst.altnames and app_gst.altnames != "None" %} + {% trans app_gst.altnames %} + {% else %} + {% trans app_gst %} + {% endif%} +
    +
    {{app_gst.content_org|default_if_none:""|safe}}
    + {% if title == "E-Library" %} + {% get_filters_data "File" groupid as filter_dict %} {% include "ndf/filters.html" with filter_dict=filter_dict %} + {% endif %} + + + {% endblock %} + + + {% block script %} + // -{% endblock body_content %} +{% endblock %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py b/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py index 1835f46366..ee697ea09d 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py @@ -68,6 +68,11 @@ translation_set=[] check=[] + +@register.filter(name='get') +def get(d, k): + return d.get(k, None) + @get_execution_time @register.assignment_tag def get_site_registration_variable_visibility(registration_variable=None): diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py index 47dba653d0..ea4fd12dee 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py @@ -39,6 +39,8 @@ from gnowsys_ndf.ndf.models import Node, GRelation,GSystemType, Triple from gnowsys_ndf.ndf.models import node_collection from gnowsys_ndf.ndf.views.file import * + + from gnowsys_ndf.ndf.views.methods import get_group_name_id, cast_to_data_type, get_execution_time from gnowsys_ndf.ndf.views.methods import get_filter_querydict from elasticsearch import Elasticsearch @@ -55,7 +57,7 @@ #GST_JSMOL = node_collection.one({"_type":"GSystemType","name":"Jsmol"}) GST_FILE = res = es.search(index="nodes", doc_type="gsystemtype", body={ "query": {"bool":{"must": [ {"term": {"name":"file"} }] }}}) - +print "----------------------" print GST_FILE GST_PAGE = res = es.search(index="nodes", doc_type="gsystemtype", body={ @@ -69,10 +71,10 @@ e_library_GST = es.search(index="nodes", doc_type="gsystemtype", body={ "query": {"bool": {"must": [{"term": {"name":"library"}}]}}}) #print e_library_GST -pandora_video_st = res = es.search(index="nodes", doc_type="gsystemtype", body={ +pandora_video_st = es.search(index="nodes", doc_type="gsystemtype", body={ "query": {"bool":{"must": [ {"term": {"name":"pandora"} }] }}}) -app = res = es.search(index="nodes", doc_type="gsystemtype", body={ +app = es.search(index="nodes", doc_type="gsystemtype", body={ "query": {"bool":{"must": [ {"term": {"name":"library"} }] }}}) #print ebook_gst @@ -123,6 +125,10 @@ def render_test_template(request,group_id='home', app_id=None, page_no=1): temp1=ObjectId(a['_source']['id']) temp.append(temp1) + app_gst_name=[] + for a in app['hits']['hits']: + temp1=a['_source']['name'] + app_gst_name.append(temp1) if app_id is None: app_id = str(temp) @@ -204,7 +210,13 @@ def render_test_template(request,group_id='home', app_id=None, page_no=1): #"must": [ {"term": {'created_by': request.user.id}}], } }} ) - #print "----------------------------------------------------------" + files1_temp = [] + for each in files1['hits']['hits']: + files1_temp=each['_source'] + + + + print "----------------------------------------------------------" #print files1 # print "files.count : ", files.count() @@ -236,12 +248,12 @@ def render_test_template(request,group_id='home', app_id=None, page_no=1): educationaluse_stats = {} - if files1: + if files1_temp: eu_list = [] # count - for each in files1['hits']['hits']['_source']: - eu_list += [i.get("educationaluse") for i in each.attribute_set if i.has_key("educationaluse")] + #for each in files1_temp: + # eu_list += [i.get("educationaluse") for i in each.attribute_type_set if i.has_key("educationaluse")] - files1.rewind() + #files1_temp.rewind() if set(eu_list): if len(set(eu_list)) > 1: @@ -258,7 +270,7 @@ def render_test_template(request,group_id='home', app_id=None, page_no=1): #print request.user.id #print "--------------" - + collection_pages_cur = node_collection.find({ 'member_of': {'$in': [GST_FILE_temp, GST_PAGE_temp ]}, @@ -275,15 +287,25 @@ def render_test_template(request,group_id='home', app_id=None, page_no=1): 'collection_set': {'$exists': "true", '$not': {'$size': 0} } }).sort("last_update", -1) + GST_PAGE_collection=[] + for a in GST_PAGE['hits']['hits']: + temp1=a['_source']['id'] + GST_PAGE_collection.append(temp1) + + + collection_pages_cur1 = res = es.search(index="nodes", doc_type="gsystemtype,gsystem", body={ "query": {"bool": { "must": [ {"term": {"group_set": str(ObjectId(group_id))} },{"term": {"access_policy": "public"}}], "must_not": [ {"term": {"attribute_set.educationaluse": "ebooks" } } ], #"must": [ {"term": {'created_by': request.user.id}}], - + "must": [ {"terms": {'member_of': GST_FILE_temp }}], + "must": [ {"terms": {'member_of': GST_PAGE_collection}}], + "must": {"exists": {"field":"collection_set"}}, } }} ) + print collection_pages_cur - - coll_page_count = collection_pages_cur.count() if collection_pages_cur else 0 + #coll_page_count = collection_pages_cur.count() if collection_pages_cur else 0 + coll_page_count = collection_pages_cur1['hits']['total'] if collection_pages_cur1 else 0 collection_pages = paginator.Paginator(collection_pages_cur, page_no, no_of_objs_pp) datavisual.append({"name":"Doc", "count": educationaluse_stats.get("Documents", 0)}) datavisual.append({"name":"Page", "count": educationaluse_stats.get("Pages", 0)}) @@ -296,18 +318,17 @@ def render_test_template(request,group_id='home', app_id=None, page_no=1): datavisual.append({"name":"Collections","count": coll_page_count}) datavisual = json.dumps(datavisual) - - - - test_node = node_collection.one({"name":"home", '_type':"Group"}) - + title=''.join(title) + #test_node = node_collection.one({"name":"home", '_type':"Group"}) + app_gst=''.join(app_gst_name) + return render_to_response( 'ndf/test_template.html', - {"node":test_node,'title': title, 'app':e_library_GST, - 'appId':app_id, "app_gst": app, + {'title': title, 'app':e_library_GST, + 'appId':app_id, "app_gst": app_gst, # 'already_uploaded': already_uploaded,'shelf_list': shelf_list,'shelves': shelves, - 'files': files1, + 'files': files1_temp, "detail_urlname": "file_detail", 'ebook_pages': educationaluse_stats.get("eBooks", 0), # 'page_count': pageCollection.count(), @@ -323,7 +344,9 @@ def render_test_template(request,group_id='home', app_id=None, page_no=1): 'video_pages': videos_count['hits']['total'], 'audio_pages': audios_count['hits']['total'], 'collection_pages': collection_pages, - 'collection': collection_pages_cur, + 'collection': collection_pages_cur1['hits']['hits'], + + 'collection_count': collection_pages_cur1['hits']['total'], 'groupid': group_id, 'group_id':group_id, "datavisual":datavisual}, context_instance=RequestContext(request) From 7ae0c8d6b18c96ab35c270019a752186974e3672 Mon Sep 17 00:00:00 2001 From: root Date: Tue, 6 Feb 2018 11:08:58 +0530 Subject: [PATCH 315/766] added pagination code --- gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py index ea4fd12dee..aaf0a8d123 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py @@ -25,7 +25,7 @@ from django.shortcuts import render_to_response from django.template import RequestContext from mongokit import paginator -from django.core.paginator import Paginator +from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger try: @@ -264,9 +264,17 @@ def render_test_template(request,group_id='home', app_id=None, page_no=1): # print educationaluse_stats - result_paginated_cur = files - result_pages = paginator.Paginator(result_paginated_cur, page_no, no_of_objs_pp) - + #result_paginated_cur = files + #result_pages = paginator.Paginator(result_paginated_cur, page_no, no_of_objs_pp) + result_paginated_cur = tuple(files1_temp) + + result_pages = Paginator(result_paginated_cur,no_of_objs_pp) + try: + results = result_pages.page(page_no) + except PageNotAnInteger: + results = result_pages.page(1) + except EmptyPage: + results = result_pages.page(results.num_page) #print request.user.id #print "--------------" @@ -333,7 +341,7 @@ def render_test_template(request,group_id='home', app_id=None, page_no=1): 'ebook_pages': educationaluse_stats.get("eBooks", 0), # 'page_count': pageCollection.count(), # 'page_nodes':pageCollection - 'file_pages': result_pages, + 'file_pages': results, 'image_pages': images_count['hits']['total'], 'interactive_pages': educationaluse_stats.get("Interactives", 0), 'educationaluse_stats': json.dumps(educationaluse_stats), From ed1bc34f7c3e949b078b10f1696e6a472814af31 Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Tue, 6 Feb 2018 14:41:58 +0530 Subject: [PATCH 316/766] home group wide topic map --- gnowsys-ndf/gnowsys_ndf/ndf/views/curriculum.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/curriculum.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/curriculum.py index 44d0ba832a..8db3b779ff 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/curriculum.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/curriculum.py @@ -33,6 +33,7 @@ topic_GST = node_collection.one({'_type': 'GSystemType', 'name': 'Topic'}) theme_item_GST = node_collection.one({'_type': 'GSystemType', 'name': 'theme_item'}) app = node_collection.one({'name': u'Topics', '_type': 'GSystemType'}) +home_obj = node_collection.one({'_type':'Group','name': unicode('home')}) ####################################################################################################################################### @get_execution_time @@ -44,7 +45,6 @@ def curriculum(request, group_id, app_id=None, app_set_id=None): group_name, group_id = get_group_name_id(group_id) theme_GST = node_collection.one({'_type': 'GSystemType', 'name': 'Theme'}) - if app_id is None: # app_ins = node_collection.find_one({'_type': 'GSystemType', 'name': 'Topics'}) app_ins = app @@ -167,7 +167,6 @@ def list_themes(request, group_id): @get_execution_time def curriculum_list(request, group_id): - try: group_id = ObjectId(group_id) except: @@ -175,9 +174,10 @@ def curriculum_list(request, group_id): title = theme_GST.name group_obj = get_group_name_id(group_id, get_obj=True) + nodes = node_collection.find({ 'member_of': {'$all': [theme_GST._id]}, - 'group_set':{'$all': [ObjectId(group_id)]} + 'group_set':{'$all': [ObjectId(home_obj._id)]} }) gstaff_access = check_is_gstaff(group_id,request.user) @@ -236,7 +236,7 @@ def _update_curr_hierarchy(hierarchy_obj): curriculum_obj = node_collection.one({"_id" : ObjectId(curr_id)}) curriculum_obj.fill_gstystem_values(request=request, name=str(curr_name), - group_set=group_id,content_org=unicode(curr_desc)) + group_set=home_obj._id,content_org=unicode(curr_desc)) curriculum_obj.save() return HttpResponse(curriculum_obj._id) else: @@ -246,7 +246,7 @@ def _update_curr_hierarchy(hierarchy_obj): theme_gs_obj = node_collection.collection.GSystem() theme_gs_obj.fill_gstystem_values(request=request, name=str(curr_name), - group_set=group_id,content_org=unicode(curr_desc),member_of=theme_GST._id) + group_set=home_obj._id,content_org=unicode(curr_desc),member_of=theme_GST._id) theme_gs_obj.save(group_id=group_id) return HttpResponse(theme_gs_obj._id) else: From 1c1db6112b6d59d5cd614a731b56f78a373f9e02 Mon Sep 17 00:00:00 2001 From: Prachirb Date: Tue, 6 Feb 2018 14:54:52 +0530 Subject: [PATCH 317/766] Left-button css --- .../ndf/css/themes/metastudio/styles.css | 831 +++++++++--------- 1 file changed, 413 insertions(+), 418 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css index 03eefd9dfa..ca4ac33d58 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css @@ -28114,14 +28114,13 @@ h5 { /* line 4808, ../../../scss/_app_styles.scss */ .edit_button { color: #717171; - font-size: 12px; } -/* line 4811, ../../../scss/_app_styles.scss */ +/* line 4810, ../../../scss/_app_styles.scss */ .edit_button:hover { border-left: 2px solid #ce7869; } -/* line 4817, ../../../scss/_app_styles.scss */ +/* line 4816, ../../../scss/_app_styles.scss */ .left-btn { margin-top: 0px; margin-right: 0px; @@ -28133,7 +28132,7 @@ h5 { color: #555555; font-size: 11px; } -/* line 4827, ../../../scss/_app_styles.scss */ +/* line 4826, ../../../scss/_app_styles.scss */ .left-btn:hover { display: block; padding: 0.5rem; @@ -28142,10 +28141,6 @@ h5 { } /* line 4835, ../../../scss/_app_styles.scss */ -.chnge-img { - font-size: 13px; -} -/* line 4837, ../../../scss/_app_styles.scss */ .chnge-img:hover { display: block; padding: 0.5rem; @@ -28153,14 +28148,14 @@ h5 { border-left: 2px solid #ce7869; } -/* line 4848, ../../../scss/_app_styles.scss */ +/* line 4846, ../../../scss/_app_styles.scss */ .lms_page .lms_banner { width: 100%; height: 150px; background-size: 100% 100%; position: relative; } -/* line 4856, ../../../scss/_app_styles.scss */ +/* line 4854, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -28173,27 +28168,27 @@ h5 { bottom: 0; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 4869, ../../../scss/_app_styles.scss */ +/* line 4867, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before a { cursor: pointer; } -/* line 4874, ../../../scss/_app_styles.scss */ +/* line 4872, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .div-height { height: 150px !important; background-size: 100% 100%; position: absolute !important; } -/* line 4882, ../../../scss/_app_styles.scss */ +/* line 4880, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .enroll_unit > a { cursor: pointer; } -/* line 4886, ../../../scss/_app_styles.scss */ +/* line 4884, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 4892, ../../../scss/_app_styles.scss */ +/* line 4890, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .unit_name { font-size: 36px; font-family: OpenSans-Semibold; @@ -28204,17 +28199,17 @@ h5 { transition: border-radius .2s; text-shadow: 3px 2px #164a7b; } -/* line 4903, ../../../scss/_app_styles.scss */ +/* line 4901, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .right-margin { margin-right: 46px; } -/* line 4912, ../../../scss/_app_styles.scss */ +/* line 4910, ../../../scss/_app_styles.scss */ .border-bottom-lms-header { border-bottom: 1px solid #00000029; } -/* line 4917, ../../../scss/_app_styles.scss */ +/* line 4915, ../../../scss/_app_styles.scss */ .lms_secondary_header { width: 100%; position: relative; @@ -28222,11 +28217,11 @@ h5 { box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 4923, ../../../scss/_app_styles.scss */ +/* line 4921, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions { margin-top: 8px; } -/* line 4926, ../../../scss/_app_styles.scss */ +/* line 4924, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28238,11 +28233,11 @@ h5 { opacity: 0.8; } @media screen and (min-width: 980px) and (max-width: 1000px) { - /* line 4940, ../../../scss/_app_styles.scss */ + /* line 4938, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions { margin-top: 8px; } - /* line 4943, ../../../scss/_app_styles.scss */ + /* line 4941, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions > span { margin-left: 50px; background: #2e3f51; @@ -28256,16 +28251,16 @@ h5 { } } -/* line 4963, ../../../scss/_app_styles.scss */ +/* line 4961, ../../../scss/_app_styles.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; } -/* line 4966, ../../../scss/_app_styles.scss */ +/* line 4964, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 4969, ../../../scss/_app_styles.scss */ +/* line 4967, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a { list-style-type: none; display: inline-block; @@ -28276,23 +28271,23 @@ ul.nav_menu_1 > li > a { letter-spacing: 0.8px; border-bottom: 3px solid transparent; } -/* line 4980, ../../../scss/_app_styles.scss */ +/* line 4978, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-bottom: 3px solid #a2238d; } -/* line 4991, ../../../scss/_app_styles.scss */ +/* line 4989, ../../../scss/_app_styles.scss */ ul.authoring-tab { margin-bottom: 0px; display: inline; width: 50%; } -/* line 4995, ../../../scss/_app_styles.scss */ +/* line 4993, ../../../scss/_app_styles.scss */ ul.authoring-tab > li { display: inline-block; background-color: #164a7b; } -/* line 4998, ../../../scss/_app_styles.scss */ +/* line 4996, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a { list-style-type: none; margin-right: -4px; @@ -28305,13 +28300,13 @@ ul.authoring-tab > li > a { border-bottom: 3px solid transparent; color: #ffffff !important; } -/* line 5009, ../../../scss/_app_styles.scss */ +/* line 5007, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-bottom: 3px solid #a2238d; } /* Secondary Top Bar */ -/* line 5018, ../../../scss/_app_styles.scss */ +/* line 5016, ../../../scss/_app_styles.scss */ .secondary-header-tabs { color: #719dc7; font-weight: 400; @@ -28321,11 +28316,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -webkit-transition: color 1s ease, border-color 1s ease; display: inline-block; } -/* line 5027, ../../../scss/_app_styles.scss */ +/* line 5025, ../../../scss/_app_styles.scss */ .secondary-header-tabs:hover { color: #164A7B; } -/* line 5031, ../../../scss/_app_styles.scss */ +/* line 5029, ../../../scss/_app_styles.scss */ .secondary-header-tabs.active { color: #164A7B; border-bottom: 2px solid #164A7B; @@ -28333,7 +28328,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: 600; } -/* line 5041, ../../../scss/_app_styles.scss */ +/* line 5039, ../../../scss/_app_styles.scss */ .secondary-header-button { color: #3c556d; font-weight: 700; @@ -28346,12 +28341,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-size: 13px; letter-spacing: 1.2px; } -/* line 5053, ../../../scss/_app_styles.scss */ +/* line 5051, ../../../scss/_app_styles.scss */ .secondary-header-button:hover { opacity: 0.5; } -/* line 5060, ../../../scss/_app_styles.scss */ +/* line 5058, ../../../scss/_app_styles.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -28360,34 +28355,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: -8px; } -/* line 5071, ../../../scss/_app_styles.scss */ +/* line 5069, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 5076, ../../../scss/_app_styles.scss */ +/* line 5074, ../../../scss/_app_styles.scss */ .top-bar-second .name { text-align: center; } -/* line 5079, ../../../scss/_app_styles.scss */ +/* line 5077, ../../../scss/_app_styles.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 5089, ../../../scss/_app_styles.scss */ +/* line 5087, ../../../scss/_app_styles.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 5097, ../../../scss/_app_styles.scss */ +/* line 5095, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 5099, ../../../scss/_app_styles.scss */ +/* line 5097, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -28396,31 +28391,31 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; letter-spacing: 0.5px; } -/* line 5110, ../../../scss/_app_styles.scss */ +/* line 5108, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 5118, ../../../scss/_app_styles.scss */ +/* line 5116, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 5124, ../../../scss/_app_styles.scss */ +/* line 5122, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 5135, ../../../scss/_app_styles.scss */ + /* line 5133, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 5137, ../../../scss/_app_styles.scss */ + /* line 5135, ../../../scss/_app_styles.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 5144, ../../../scss/_app_styles.scss */ + /* line 5142, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -28428,32 +28423,32 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { line-height: 52px; border-left-width: 0px; } - /* line 5151, ../../../scss/_app_styles.scss */ + /* line 5149, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5157, ../../../scss/_app_styles.scss */ + /* line 5155, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5165, ../../../scss/_app_styles.scss */ + /* line 5163, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 5175, ../../../scss/_app_styles.scss */ + /* line 5173, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 5184, ../../../scss/_app_styles.scss */ + /* line 5182, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 5191, ../../../scss/_app_styles.scss */ + /* line 5189, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; @@ -28468,7 +28463,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { /** * Sass styles related to unit cards */ -/* line 5219, ../../../scss/_app_styles.scss */ +/* line 5217, ../../../scss/_app_styles.scss */ .unit_card { width: 300px; color: #000; @@ -28480,7 +28475,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { position: relative; height: 210px; } -/* line 5233, ../../../scss/_app_styles.scss */ +/* line 5231, ../../../scss/_app_styles.scss */ .unit_card .unit_status { position: absolute; right: 0px; @@ -28491,11 +28486,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-radius: 3px; letter-spacing: 0.6px; } -/* line 5244, ../../../scss/_app_styles.scss */ +/* line 5242, ../../../scss/_app_styles.scss */ .unit_card .unit_header { display: table; } -/* line 5246, ../../../scss/_app_styles.scss */ +/* line 5244, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_banner { display: table-cell; border-radius: 5px; @@ -28504,7 +28499,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-right: 10px; color: #333333; } -/* line 5254, ../../../scss/_app_styles.scss */ +/* line 5252, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_title { display: table-cell; font-size: 20px; @@ -28518,7 +28513,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { vertical-align: middle; color: #333333; } -/* line 5268, ../../../scss/_app_styles.scss */ +/* line 5266, ../../../scss/_app_styles.scss */ .unit_card .unit_desc { display: block; /* Fallback for non-webkit */ @@ -28535,16 +28530,16 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin: 10px 0px 20px; color: #333333; } -/* line 5284, ../../../scss/_app_styles.scss */ +/* line 5282, ../../../scss/_app_styles.scss */ .unit_card .unit_breif .unit_breif_row i { margin-right: 10px; color: #99aaba; } -/* line 5290, ../../../scss/_app_styles.scss */ +/* line 5288, ../../../scss/_app_styles.scss */ .unit_card .unit_actions { padding: 5px 0px; } -/* line 5295, ../../../scss/_app_styles.scss */ +/* line 5293, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol { background: #a2238d; height: 37px; @@ -28557,11 +28552,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5307, ../../../scss/_app_styles.scss */ +/* line 5305, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 5312, ../../../scss/_app_styles.scss */ +/* line 5310, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics { color: #a2238d; font-weight: 500; @@ -28569,7 +28564,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.3px; border-bottom: 2px solid #a2238d; } -/* line 5320, ../../../scss/_app_styles.scss */ +/* line 5318, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics-points { background: #ffffff; color: #a2238d; @@ -28580,7 +28575,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; cursor: default; } -/* line 5331, ../../../scss/_app_styles.scss */ +/* line 5329, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit { height: 37px; text-align: center; @@ -28589,13 +28584,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5339, ../../../scss/_app_styles.scss */ +/* line 5337, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit:hover { border-bottom: 2px solid #ffc14e; } /* unit cards labels */ -/* line 5349, ../../../scss/_app_styles.scss */ +/* line 5347, ../../../scss/_app_styles.scss */ .status-completed { width: auto; top: -1.15em; @@ -28612,7 +28607,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5365, ../../../scss/_app_styles.scss */ +/* line 5363, ../../../scss/_app_styles.scss */ .status-in-progress { width: auto; top: -1.15em; @@ -28629,7 +28624,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5382, ../../../scss/_app_styles.scss */ +/* line 5380, ../../../scss/_app_styles.scss */ .status-upcoming { width: auto; top: -1.15em; @@ -28646,7 +28641,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5399, ../../../scss/_app_styles.scss */ +/* line 5397, ../../../scss/_app_styles.scss */ .status-draft { width: auto; top: -1.15em; @@ -28663,7 +28658,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5417, ../../../scss/_app_styles.scss */ +/* line 5415, ../../../scss/_app_styles.scss */ .status-workspace { width: auto; top: -1.15em; @@ -28680,48 +28675,48 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5434, ../../../scss/_app_styles.scss */ +/* line 5432, ../../../scss/_app_styles.scss */ .icon-widget { font-size: 24px; } /* module detail css */ -/* line 5443, ../../../scss/_app_styles.scss */ +/* line 5441, ../../../scss/_app_styles.scss */ .thumbnail_style { margin-left: -30px; } -/* line 5447, ../../../scss/_app_styles.scss */ +/* line 5445, ../../../scss/_app_styles.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 5453, ../../../scss/_app_styles.scss */ +/* line 5451, ../../../scss/_app_styles.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); padding-left: 10px; height: auto; min-height: 143px; } -/* line 5458, ../../../scss/_app_styles.scss */ +/* line 5456, ../../../scss/_app_styles.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 5468, ../../../scss/_app_styles.scss */ +/* line 5466, ../../../scss/_app_styles.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 5473, ../../../scss/_app_styles.scss */ +/* line 5471, ../../../scss/_app_styles.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 5476, ../../../scss/_app_styles.scss */ +/* line 5474, ../../../scss/_app_styles.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28735,7 +28730,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 5493, ../../../scss/_app_styles.scss */ +/* line 5491, ../../../scss/_app_styles.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -28749,7 +28744,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* Creating and editing course Structure */ -/* line 5510, ../../../scss/_app_styles.scss */ +/* line 5508, ../../../scss/_app_styles.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -28760,34 +28755,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 5519, ../../../scss/_app_styles.scss */ +/* line 5517, ../../../scss/_app_styles.scss */ .group_tile:hover { opacity: 0.7; } -/* line 5522, ../../../scss/_app_styles.scss */ +/* line 5520, ../../../scss/_app_styles.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 5529, ../../../scss/_app_styles.scss */ +/* line 5527, ../../../scss/_app_styles.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 5536, ../../../scss/_app_styles.scss */ +/* line 5534, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 5539, ../../../scss/_app_styles.scss */ +/* line 5537, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 5542, ../../../scss/_app_styles.scss */ +/* line 5540, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -28795,15 +28790,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 5550, ../../../scss/_app_styles.scss */ +/* line 5548, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 5554, ../../../scss/_app_styles.scss */ +/* line 5552, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 5556, ../../../scss/_app_styles.scss */ +/* line 5554, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -28814,27 +28809,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 5566, ../../../scss/_app_styles.scss */ +/* line 5564, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 5571, ../../../scss/_app_styles.scss */ +/* line 5569, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 5577, ../../../scss/_app_styles.scss */ +/* line 5575, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 5584, ../../../scss/_app_styles.scss */ +/* line 5582, ../../../scss/_app_styles.scss */ .max-width { max-width: 100%; } -/* line 5590, ../../../scss/_app_styles.scss */ +/* line 5588, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28844,7 +28839,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 5599, ../../../scss/_app_styles.scss */ +/* line 5597, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -28861,7 +28856,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 5612, ../../../scss/_app_styles.scss */ +/* line 5610, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -28871,28 +28866,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 5621, ../../../scss/_app_styles.scss */ +/* line 5619, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 5626, ../../../scss/_app_styles.scss */ +/* line 5624, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background-color: #ffffff; } -/* line 5631, ../../../scss/_app_styles.scss */ +/* line 5629, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 5637, ../../../scss/_app_styles.scss */ +/* line 5635, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 5641, ../../../scss/_app_styles.scss */ +/* line 5639, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -28905,7 +28900,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 5654, ../../../scss/_app_styles.scss */ +/* line 5652, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -28920,7 +28915,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Unit_Structure styles */ -/* line 5672, ../../../scss/_app_styles.scss */ +/* line 5670, ../../../scss/_app_styles.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -28928,12 +28923,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 5680, ../../../scss/_app_styles.scss */ +/* line 5678, ../../../scss/_app_styles.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 5684, ../../../scss/_app_styles.scss */ +/* line 5682, ../../../scss/_app_styles.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -28941,17 +28936,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 5690, ../../../scss/_app_styles.scss */ +/* line 5688, ../../../scss/_app_styles.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 5696, ../../../scss/_app_styles.scss */ +/* line 5694, ../../../scss/_app_styles.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 5701, ../../../scss/_app_styles.scss */ +/* line 5699, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28961,25 +28956,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 5710, ../../../scss/_app_styles.scss */ +/* line 5708, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5714, ../../../scss/_app_styles.scss */ +/* line 5712, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 5719, ../../../scss/_app_styles.scss */ +/* line 5717, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 5728, ../../../scss/_app_styles.scss */ +/* line 5726, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -28988,7 +28983,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5735, ../../../scss/_app_styles.scss */ +/* line 5733, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -28997,15 +28992,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 5744, ../../../scss/_app_styles.scss */ +/* line 5742, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 5749, ../../../scss/_app_styles.scss */ +/* line 5747, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 5752, ../../../scss/_app_styles.scss */ +/* line 5750, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29013,21 +29008,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 5762, ../../../scss/_app_styles.scss */ +/* line 5760, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 5768, ../../../scss/_app_styles.scss */ +/* line 5766, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 5776, ../../../scss/_app_styles.scss */ +/* line 5774, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 5778, ../../../scss/_app_styles.scss */ +/* line 5776, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29036,7 +29031,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5785, ../../../scss/_app_styles.scss */ +/* line 5783, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29044,11 +29039,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5794, ../../../scss/_app_styles.scss */ +/* line 5792, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 5803, ../../../scss/_app_styles.scss */ +/* line 5801, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29060,49 +29055,49 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 5813, ../../../scss/_app_styles.scss */ +/* line 5811, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 5819, ../../../scss/_app_styles.scss */ +/* line 5817, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 5822, ../../../scss/_app_styles.scss */ +/* line 5820, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 5831, ../../../scss/_app_styles.scss */ +/* line 5829, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 5836, ../../../scss/_app_styles.scss */ +/* line 5834, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 5840, ../../../scss/_app_styles.scss */ +/* line 5838, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 5842, ../../../scss/_app_styles.scss */ +/* line 5840, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 5845, ../../../scss/_app_styles.scss */ +/* line 5843, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 5851, ../../../scss/_app_styles.scss */ +/* line 5849, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29110,29 +29105,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 15px 5px; cursor: pointer; } -/* line 5866, ../../../scss/_app_styles.scss */ +/* line 5864, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 5874, ../../../scss/_app_styles.scss */ +/* line 5872, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 5880, ../../../scss/_app_styles.scss */ +/* line 5878, ../../../scss/_app_styles.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 5889, ../../../scss/_app_styles.scss */ +/* line 5887, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 5894, ../../../scss/_app_styles.scss */ +/* line 5892, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29140,28 +29135,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 5901, ../../../scss/_app_styles.scss */ +/* line 5899, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5906, ../../../scss/_app_styles.scss */ +/* line 5904, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5911, ../../../scss/_app_styles.scss */ +/* line 5909, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 5913, ../../../scss/_app_styles.scss */ +/* line 5911, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 5917, ../../../scss/_app_styles.scss */ +/* line 5915, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -29173,21 +29168,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; border-radius: 3px; } -/* line 5928, ../../../scss/_app_styles.scss */ +/* line 5926, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 5933, ../../../scss/_app_styles.scss */ +/* line 5931, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 5939, ../../../scss/_app_styles.scss */ +/* line 5937, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 5945, ../../../scss/_app_styles.scss */ +/* line 5943, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -29195,19 +29190,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 5952, ../../../scss/_app_styles.scss */ +/* line 5950, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 5959, ../../../scss/_app_styles.scss */ +/* line 5957, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5970, ../../../scss/_app_styles.scss */ +/* line 5968, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -29218,7 +29213,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 5987, ../../../scss/_app_styles.scss */ +/* line 5985, ../../../scss/_app_styles.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -29233,66 +29228,66 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* lesspn listing LMS */ -/* line 6003, ../../../scss/_app_styles.scss */ +/* line 6001, ../../../scss/_app_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 6011, ../../../scss/_app_styles.scss */ +/* line 6009, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 6014, ../../../scss/_app_styles.scss */ +/* line 6012, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 6016, ../../../scss/_app_styles.scss */ +/* line 6014, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 6023, ../../../scss/_app_styles.scss */ +/* line 6021, ../../../scss/_app_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 6025, ../../../scss/_app_styles.scss */ +/* line 6023, ../../../scss/_app_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 6030, ../../../scss/_app_styles.scss */ +/* line 6028, ../../../scss/_app_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 6038, ../../../scss/_app_styles.scss */ +/* line 6036, ../../../scss/_app_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6044, ../../../scss/_app_styles.scss */ +/* line 6042, ../../../scss/_app_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6051, ../../../scss/_app_styles.scss */ +/* line 6049, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 6054, ../../../scss/_app_styles.scss */ +/* line 6052, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 6057, ../../../scss/_app_styles.scss */ +/* line 6055, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 6060, ../../../scss/_app_styles.scss */ +/* line 6058, ../../../scss/_app_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; @@ -29302,23 +29297,23 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Styling for the Secondary header 2 */ -/* line 6079, ../../../scss/_app_styles.scss */ +/* line 6077, ../../../scss/_app_styles.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 6082, ../../../scss/_app_styles.scss */ +/* line 6080, ../../../scss/_app_styles.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6090, ../../../scss/_app_styles.scss */ +/* line 6088, ../../../scss/_app_styles.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 6099, ../../../scss/_app_styles.scss */ +/* line 6097, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { position: relative; color: #fff; @@ -29329,56 +29324,56 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: -2px; border-right: 1px solid white; } -/* line 6108, ../../../scss/_app_styles.scss */ +/* line 6106, ../../../scss/_app_styles.scss */ .activity_player_header .header_title a { color: #ffc14f; } @media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 6099, ../../../scss/_app_styles.scss */ + /* line 6097, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 938px); } } @media only screen and (min-device-width: 2131px) { - /* line 6099, ../../../scss/_app_styles.scss */ + /* line 6097, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 970px); } } @media only screen and (max-device-width: 1024px) { - /* line 6099, ../../../scss/_app_styles.scss */ + /* line 6097, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 753px); } } -/* line 6185, ../../../scss/_app_styles.scss */ +/* line 6183, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon { font-size: 16px; line-height: 45px; color: #ffc14f; } -/* line 6191, ../../../scss/_app_styles.scss */ +/* line 6189, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 6197, ../../../scss/_app_styles.scss */ +/* line 6195, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 10px; } @media screen and (min-width: 1025px) { - /* line 6197, ../../../scss/_app_styles.scss */ + /* line 6195, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 15px; } } @media screen and (min-width: 1025px) { - /* line 6204, ../../../scss/_app_styles.scss */ + /* line 6202, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { float: right; margin-right: 70px; @@ -29386,73 +29381,73 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media screen and (max-width: 1024px) { - /* line 6204, ../../../scss/_app_styles.scss */ + /* line 6202, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { background-color: rgba(107, 0, 84, 0.97); } } -/* line 6217, ../../../scss/_app_styles.scss */ +/* line 6215, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6223, ../../../scss/_app_styles.scss */ +/* line 6221, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block { padding: 0px 15px; margin-left: -2px; border-right: 1px solid white; } -/* line 6227, ../../../scss/_app_styles.scss */ +/* line 6225, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block a { color: #ffc14f; } -/* line 6233, ../../../scss/_app_styles.scss */ +/* line 6231, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 9px; } @media screen and (min-width: 1025px) { - /* line 6233, ../../../scss/_app_styles.scss */ + /* line 6231, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 15px; } } -/* line 6241, ../../../scss/_app_styles.scss */ +/* line 6239, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 7px; } @media screen and (min-width: 1025px) { - /* line 6241, ../../../scss/_app_styles.scss */ + /* line 6239, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 15px; } } -/* line 6250, ../../../scss/_app_styles.scss */ +/* line 6248, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 6253, ../../../scss/_app_styles.scss */ +/* line 6251, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button i { color: #71318b; } -/* line 6259, ../../../scss/_app_styles.scss */ +/* line 6257, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 6263, ../../../scss/_app_styles.scss */ +/* line 6261, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 6269, ../../../scss/_app_styles.scss */ +/* line 6267, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .pagination:not(i) { color: #a983b9; } -/* line 6277, ../../../scss/_app_styles.scss */ +/* line 6275, ../../../scss/_app_styles.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -29460,29 +29455,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 6284, ../../../scss/_app_styles.scss */ +/* line 6282, ../../../scss/_app_styles.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 6288, ../../../scss/_app_styles.scss */ +/* line 6286, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6294, ../../../scss/_app_styles.scss */ +/* line 6292, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6300, ../../../scss/_app_styles.scss */ +/* line 6298, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 6305, ../../../scss/_app_styles.scss */ +/* line 6303, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29492,25 +29487,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 6314, ../../../scss/_app_styles.scss */ +/* line 6312, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6318, ../../../scss/_app_styles.scss */ +/* line 6316, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6323, ../../../scss/_app_styles.scss */ +/* line 6321, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6332, ../../../scss/_app_styles.scss */ +/* line 6330, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29519,7 +29514,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6339, ../../../scss/_app_styles.scss */ +/* line 6337, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29528,15 +29523,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 6348, ../../../scss/_app_styles.scss */ +/* line 6346, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6353, ../../../scss/_app_styles.scss */ +/* line 6351, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6356, ../../../scss/_app_styles.scss */ +/* line 6354, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29544,21 +29539,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 6366, ../../../scss/_app_styles.scss */ +/* line 6364, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6372, ../../../scss/_app_styles.scss */ +/* line 6370, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6380, ../../../scss/_app_styles.scss */ +/* line 6378, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6382, ../../../scss/_app_styles.scss */ +/* line 6380, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29567,7 +29562,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6389, ../../../scss/_app_styles.scss */ +/* line 6387, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29575,11 +29570,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6398, ../../../scss/_app_styles.scss */ +/* line 6396, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6407, ../../../scss/_app_styles.scss */ +/* line 6405, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29591,48 +29586,48 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 6417, ../../../scss/_app_styles.scss */ +/* line 6415, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6422, ../../../scss/_app_styles.scss */ +/* line 6420, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6425, ../../../scss/_app_styles.scss */ +/* line 6423, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6434, ../../../scss/_app_styles.scss */ +/* line 6432, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6439, ../../../scss/_app_styles.scss */ +/* line 6437, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6443, ../../../scss/_app_styles.scss */ +/* line 6441, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6445, ../../../scss/_app_styles.scss */ +/* line 6443, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6448, ../../../scss/_app_styles.scss */ +/* line 6446, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6454, ../../../scss/_app_styles.scss */ +/* line 6452, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29641,7 +29636,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; } -/* line 6472, ../../../scss/_app_styles.scss */ +/* line 6470, ../../../scss/_app_styles.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -29649,26 +29644,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 10px; padding-right: 4px; } -/* line 6478, ../../../scss/_app_styles.scss */ +/* line 6476, ../../../scss/_app_styles.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 6483, ../../../scss/_app_styles.scss */ +/* line 6481, ../../../scss/_app_styles.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6489, ../../../scss/_app_styles.scss */ +/* line 6487, ../../../scss/_app_styles.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 6495, ../../../scss/_app_styles.scss */ +/* line 6493, ../../../scss/_app_styles.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29678,29 +29673,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 6504, ../../../scss/_app_styles.scss */ +/* line 6502, ../../../scss/_app_styles.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 6508, ../../../scss/_app_styles.scss */ +/* line 6506, ../../../scss/_app_styles.scss */ .activity-title > li > a { color: black; } -/* line 6517, ../../../scss/_app_styles.scss */ +/* line 6515, ../../../scss/_app_styles.scss */ .activity_page_rendered { margin-left: 20px; max-width: 900px; } /* Rating css */ -/* line 6525, ../../../scss/_app_styles.scss */ +/* line 6523, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 6527, ../../../scss/_app_styles.scss */ +/* line 6525, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -29708,19 +29703,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { unicode-bidi: bidi-override; direction: rtl; } -/* line 6535, ../../../scss/_app_styles.scss */ +/* line 6533, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 6537, ../../../scss/_app_styles.scss */ +/* line 6535, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 6543, ../../../scss/_app_styles.scss */ +/* line 6541, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 6545, ../../../scss/_app_styles.scss */ +/* line 6543, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -29733,7 +29728,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0; vertical-align: bottom; } -/* line 6557, ../../../scss/_app_styles.scss */ +/* line 6555, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -29741,32 +29736,32 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* WHITE STAR */ color: #888; } -/* line 6564, ../../../scss/_app_styles.scss */ +/* line 6562, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 6575, ../../../scss/_app_styles.scss */ +/* line 6573, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 6582, ../../../scss/_app_styles.scss */ +/* line 6580, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 6590, ../../../scss/_app_styles.scss */ +/* line 6588, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 6595, ../../../scss/_app_styles.scss */ +/* line 6593, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -29775,29 +29770,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-shadow: 0 0 1px #333; } -/* line 6605, ../../../scss/_app_styles.scss */ +/* line 6603, ../../../scss/_app_styles.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 6609, ../../../scss/_app_styles.scss */ +/* line 6607, ../../../scss/_app_styles.scss */ .input_links { margin-left: 10px; } -/* line 6611, ../../../scss/_app_styles.scss */ +/* line 6609, ../../../scss/_app_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 6617, ../../../scss/_app_styles.scss */ +/* line 6615, ../../../scss/_app_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 6625, ../../../scss/_app_styles.scss */ +/* line 6623, ../../../scss/_app_styles.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -29806,19 +29801,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 6634, ../../../scss/_app_styles.scss */ +/* line 6632, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 6639, ../../../scss/_app_styles.scss */ +/* line 6637, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 6645, ../../../scss/_app_styles.scss */ +/* line 6643, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -29826,12 +29821,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; margin-left: 12%; } -/* line 6653, ../../../scss/_app_styles.scss */ +/* line 6651, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 6659, ../../../scss/_app_styles.scss */ +/* line 6657, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -29840,21 +29835,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: none; color: #8E8E8E; } -/* line 6668, ../../../scss/_app_styles.scss */ +/* line 6666, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 6673, ../../../scss/_app_styles.scss */ +/* line 6671, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 6675, ../../../scss/_app_styles.scss */ +/* line 6673, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 6678, ../../../scss/_app_styles.scss */ +/* line 6676, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -29865,24 +29860,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #757575; margin-right: 20px; } -/* line 6688, ../../../scss/_app_styles.scss */ +/* line 6686, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 6692, ../../../scss/_app_styles.scss */ +/* line 6690, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 6695, ../../../scss/_app_styles.scss */ +/* line 6693, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 6700, ../../../scss/_app_styles.scss */ +/* line 6698, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 6704, ../../../scss/_app_styles.scss */ +/* line 6702, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -29894,7 +29889,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; color: #222222; } -/* line 6715, ../../../scss/_app_styles.scss */ +/* line 6713, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -29902,15 +29897,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 8px; top: 4px; } -/* line 6723, ../../../scss/_app_styles.scss */ +/* line 6721, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 6725, ../../../scss/_app_styles.scss */ +/* line 6723, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 6728, ../../../scss/_app_styles.scss */ +/* line 6726, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -29920,25 +29915,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { letter-spacing: 0.8px; color: #999999; } -/* line 6737, ../../../scss/_app_styles.scss */ +/* line 6735, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 6743, ../../../scss/_app_styles.scss */ +/* line 6741, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 6752, ../../../scss/_app_styles.scss */ +/* line 6750, ../../../scss/_app_styles.scss */ .icon-color { color: #2e3f51 !important; padding: right; } /* The asset tile */ -/* line 6762, ../../../scss/_app_styles.scss */ +/* line 6760, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29948,7 +29943,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 6771, ../../../scss/_app_styles.scss */ +/* line 6769, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -29965,7 +29960,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 6784, ../../../scss/_app_styles.scss */ +/* line 6782, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -29975,28 +29970,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 6793, ../../../scss/_app_styles.scss */ +/* line 6791, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 6798, ../../../scss/_app_styles.scss */ +/* line 6796, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 6803, ../../../scss/_app_styles.scss */ +/* line 6801, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 6809, ../../../scss/_app_styles.scss */ +/* line 6807, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 6813, ../../../scss/_app_styles.scss */ +/* line 6811, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -30009,7 +30004,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 6826, ../../../scss/_app_styles.scss */ +/* line 6824, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -30023,7 +30018,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 6841, ../../../scss/_app_styles.scss */ +/* line 6839, ../../../scss/_app_styles.scss */ .orange-button-subtitle { color: #ce7869; padding: 4px 5px; @@ -30036,13 +30031,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 6852, ../../../scss/_app_styles.scss */ +/* line 6850, ../../../scss/_app_styles.scss */ .orange-button-subtitle:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 6858, ../../../scss/_app_styles.scss */ +/* line 6856, ../../../scss/_app_styles.scss */ .transcript-toggler { display: block; width: 155px !important; @@ -30058,12 +30053,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; } -/* line 6873, ../../../scss/_app_styles.scss */ +/* line 6871, ../../../scss/_app_styles.scss */ .asset_list { margin-left: 12px; } -/* line 6877, ../../../scss/_app_styles.scss */ +/* line 6875, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -30072,22 +30067,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6886, ../../../scss/_app_styles.scss */ +/* line 6884, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6893, ../../../scss/_app_styles.scss */ +/* line 6891, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6899, ../../../scss/_app_styles.scss */ +/* line 6897, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6901, ../../../scss/_app_styles.scss */ +/* line 6899, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -30096,15 +30091,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6908, ../../../scss/_app_styles.scss */ +/* line 6906, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6912, ../../../scss/_app_styles.scss */ +/* line 6910, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6918, ../../../scss/_app_styles.scss */ +/* line 6916, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30113,7 +30108,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6929, ../../../scss/_app_styles.scss */ +/* line 6927, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -30122,24 +30117,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6938, ../../../scss/_app_styles.scss */ +/* line 6936, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6945, ../../../scss/_app_styles.scss */ +/* line 6943, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 6950, ../../../scss/_app_styles.scss */ +/* line 6948, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 6954, ../../../scss/_app_styles.scss */ +/* line 6952, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -30150,14 +30145,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 6964, ../../../scss/_app_styles.scss */ +/* line 6962, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 6971, ../../../scss/_app_styles.scss */ + /* line 6969, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30165,7 +30160,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 6980, ../../../scss/_app_styles.scss */ + /* line 6978, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30173,7 +30168,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 6987, ../../../scss/_app_styles.scss */ + /* line 6985, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30181,14 +30176,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 6994, ../../../scss/_app_styles.scss */ + /* line 6992, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 7002, ../../../scss/_app_styles.scss */ +/* line 7000, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30203,14 +30198,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7018, ../../../scss/_app_styles.scss */ +/* line 7016, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 7025, ../../../scss/_app_styles.scss */ + /* line 7023, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30221,7 +30216,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7036, ../../../scss/_app_styles.scss */ + /* line 7034, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30232,7 +30227,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7047, ../../../scss/_app_styles.scss */ + /* line 7045, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30243,7 +30238,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7058, ../../../scss/_app_styles.scss */ + /* line 7056, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30253,7 +30248,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7069, ../../../scss/_app_styles.scss */ +/* line 7067, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30268,14 +30263,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7085, ../../../scss/_app_styles.scss */ +/* line 7083, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 7092, ../../../scss/_app_styles.scss */ + /* line 7090, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30286,7 +30281,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7103, ../../../scss/_app_styles.scss */ + /* line 7101, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30297,7 +30292,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7114, ../../../scss/_app_styles.scss */ + /* line 7112, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30308,7 +30303,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7125, ../../../scss/_app_styles.scss */ + /* line 7123, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30318,11 +30313,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7136, ../../../scss/_app_styles.scss */ +/* line 7134, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 7138, ../../../scss/_app_styles.scss */ +/* line 7136, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30331,11 +30326,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 7146, ../../../scss/_app_styles.scss */ +/* line 7144, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 7152, ../../../scss/_app_styles.scss */ +/* line 7150, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30344,7 +30339,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7163, ../../../scss/_app_styles.scss */ +/* line 7161, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30355,22 +30350,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7173, ../../../scss/_app_styles.scss */ +/* line 7171, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7176, ../../../scss/_app_styles.scss */ +/* line 7174, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7181, ../../../scss/_app_styles.scss */ +/* line 7179, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7192, ../../../scss/_app_styles.scss */ +/* line 7190, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30381,26 +30376,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7202, ../../../scss/_app_styles.scss */ +/* line 7200, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7205, ../../../scss/_app_styles.scss */ +/* line 7203, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7209, ../../../scss/_app_styles.scss */ +/* line 7207, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7215, ../../../scss/_app_styles.scss */ +/* line 7213, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7217, ../../../scss/_app_styles.scss */ +/* line 7215, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30409,7 +30404,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7226, ../../../scss/_app_styles.scss */ +/* line 7224, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30418,7 +30413,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7240, ../../../scss/_app_styles.scss */ +/* line 7238, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -30428,19 +30423,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Asset detail */ -/* line 7251, ../../../scss/_app_styles.scss */ +/* line 7249, ../../../scss/_app_styles.scss */ .overlay-head { height: 60px; margin-bottom: 20px; } -/* line 7257, ../../../scss/_app_styles.scss */ +/* line 7255, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7262, ../../../scss/_app_styles.scss */ +/* line 7260, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30454,13 +30449,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7274, ../../../scss/_app_styles.scss */ +/* line 7272, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7281, ../../../scss/_app_styles.scss */ +/* line 7279, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; padding: 7px 14px; @@ -30473,22 +30468,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7292, ../../../scss/_app_styles.scss */ +/* line 7290, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7297, ../../../scss/_app_styles.scss */ +/* line 7295, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; background: #fff; } -/* line 7300, ../../../scss/_app_styles.scss */ +/* line 7298, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: #fff; } -/* line 7303, ../../../scss/_app_styles.scss */ +/* line 7301, ../../../scss/_app_styles.scss */ .orange-button-template > a { color: #ce7869; padding: 7px 14px; @@ -30501,13 +30496,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7314, ../../../scss/_app_styles.scss */ +/* line 7312, ../../../scss/_app_styles.scss */ .orange-button-template > a:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7321, ../../../scss/_app_styles.scss */ +/* line 7319, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30519,7 +30514,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7332, ../../../scss/_app_styles.scss */ +/* line 7330, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30527,18 +30522,18 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7341, ../../../scss/_app_styles.scss */ +/* line 7339, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7348, ../../../scss/_app_styles.scss */ +/* line 7346, ../../../scss/_app_styles.scss */ .page-name { margin-top: 8px; } -/* line 7352, ../../../scss/_app_styles.scss */ +/* line 7350, ../../../scss/_app_styles.scss */ .tag-ele { font-weight: normal; text-align: center; @@ -30557,7 +30552,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: none; } -/* line 7370, ../../../scss/_app_styles.scss */ +/* line 7368, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30575,12 +30570,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7386, ../../../scss/_app_styles.scss */ +/* line 7384, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7391, ../../../scss/_app_styles.scss */ +/* line 7389, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30592,13 +30587,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7401, ../../../scss/_app_styles.scss */ +/* line 7399, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7409, ../../../scss/_app_styles.scss */ +/* line 7407, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30615,13 +30610,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7424, ../../../scss/_app_styles.scss */ +/* line 7422, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* line 7435, ../../../scss/_app_styles.scss */ +/* line 7433, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -30629,7 +30624,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-size: 100% 100%; position: relative; } -/* line 7442, ../../../scss/_app_styles.scss */ +/* line 7440, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -30643,13 +30638,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7456, ../../../scss/_app_styles.scss */ +/* line 7454, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 7461, ../../../scss/_app_styles.scss */ +/* line 7459, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -30658,60 +30653,60 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow: hidden; background-color: #fff; } -/* line 7469, ../../../scss/_app_styles.scss */ +/* line 7467, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 7474, ../../../scss/_app_styles.scss */ +/* line 7472, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 7479, ../../../scss/_app_styles.scss */ +/* line 7477, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 7484, ../../../scss/_app_styles.scss */ +/* line 7482, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 7492, ../../../scss/_app_styles.scss */ +/* line 7490, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 7496, ../../../scss/_app_styles.scss */ +/* line 7494, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 7506, ../../../scss/_app_styles.scss */ +/* line 7504, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -19.3px; } -/* line 7513, ../../../scss/_app_styles.scss */ +/* line 7511, ../../../scss/_app_styles.scss */ .course-students-data { margin: 2px 2px 2px 2px; border: 2px solid #164a7b; padding: 19px 14px 0px 5px; } -/* line 7520, ../../../scss/_app_styles.scss */ +/* line 7518, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 7523, ../../../scss/_app_styles.scss */ +/* line 7521, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 7531, ../../../scss/_app_styles.scss */ +/* line 7529, ../../../scss/_app_styles.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -30727,7 +30722,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7550, ../../../scss/_app_styles.scss */ +/* line 7548, ../../../scss/_app_styles.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -30737,7 +30732,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7559, ../../../scss/_app_styles.scss */ +/* line 7557, ../../../scss/_app_styles.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -30747,7 +30742,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 7568, ../../../scss/_app_styles.scss */ +/* line 7566, ../../../scss/_app_styles.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; @@ -30767,13 +30762,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #A6D7F5; } }*/ -/* line 7591, ../../../scss/_app_styles.scss */ +/* line 7589, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 7596, ../../../scss/_app_styles.scss */ +/* line 7594, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title { width: 43%; /* background-color: blue;*/ @@ -30783,7 +30778,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; color: #fff; } -/* line 7605, ../../../scss/_app_styles.scss */ +/* line 7603, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title.active { background-color: #719dc7; border: 1px solid #CCC; @@ -30791,7 +30786,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; } -/* line 7618, ../../../scss/_app_styles.scss */ +/* line 7616, ../../../scss/_app_styles.scss */ .create_unit { background: #fff; box-shadow: 0px 2px 3px #000; @@ -30799,7 +30794,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 10px; } -/* line 7626, ../../../scss/_app_styles.scss */ +/* line 7624, ../../../scss/_app_styles.scss */ .asset-unit-button { color: #ce7869; padding: 7px 14px; @@ -30812,13 +30807,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 300px; } -/* line 7637, ../../../scss/_app_styles.scss */ +/* line 7635, ../../../scss/_app_styles.scss */ .asset-unit-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7643, ../../../scss/_app_styles.scss */ +/* line 7641, ../../../scss/_app_styles.scss */ .course_creator_header { width: 100%; height: 70px; @@ -30826,7 +30821,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7650, ../../../scss/_app_styles.scss */ +/* line 7648, ../../../scss/_app_styles.scss */ .course_creator_header .unit_editor { width: 100%; height: 320px; @@ -30834,13 +30829,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7659, ../../../scss/_app_styles.scss */ +/* line 7657, ../../../scss/_app_styles.scss */ .course_creator_header .back_to_group { padding: 0px 15px 0px 10px; border-right: 1px solid #ccc; margin-right: 15px; } -/* line 7665, ../../../scss/_app_styles.scss */ +/* line 7663, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit { width: 500px; height: 40px; @@ -30849,24 +30844,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7674, ../../../scss/_app_styles.scss */ +/* line 7672, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit:focus { border: 1px solid #74b3dc; } -/* line 7678, ../../../scss/_app_styles.scss */ +/* line 7676, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7686, ../../../scss/_app_styles.scss */ +/* line 7684, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit select { font-size: 14px; font-family: 'OpenSans-Regular', sans-serif; color: gray; border: 0px solid #74b3dc; } -/* line 7697, ../../../scss/_app_styles.scss */ +/* line 7695, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input { width: 500px; height: 40px; @@ -30875,31 +30870,31 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7705, ../../../scss/_app_styles.scss */ +/* line 7703, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input:focus { border: 1px solid #74b3dc; } -/* line 7709, ../../../scss/_app_styles.scss */ +/* line 7707, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7719, ../../../scss/_app_styles.scss */ +/* line 7717, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading h5 { margin-top: 15px; } -/* line 7724, ../../../scss/_app_styles.scss */ +/* line 7722, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading span { letter-spacing: 0.9px; font-weight: 600; line-height: 50px; } -/* line 7732, ../../../scss/_app_styles.scss */ +/* line 7730, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul { margin: 0px; } -/* line 7735, ../../../scss/_app_styles.scss */ +/* line 7733, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li { list-style-type: none; display: inline-block; @@ -30908,11 +30903,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; letter-spacing: 0.8px; } -/* line 7744, ../../../scss/_app_styles.scss */ +/* line 7742, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { border-bottom: 3px solid #ffc14e; } -/* line 7749, ../../../scss/_app_styles.scss */ +/* line 7747, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions span { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -30924,7 +30919,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; border-radius: 3px; } -/* line 7761, ../../../scss/_app_styles.scss */ +/* line 7759, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -30937,20 +30932,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; } -/* line 7778, ../../../scss/_app_styles.scss */ +/* line 7776, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: 2.7px; } -/* line 7783, ../../../scss/_app_styles.scss */ +/* line 7781, ../../../scss/_app_styles.scss */ .empty-dashboard-message { border: 3px solid #e4e4e4; background: #f8f8f8; padding: 40px 0; text-align: center; } -/* line 7789, ../../../scss/_app_styles.scss */ +/* line 7787, ../../../scss/_app_styles.scss */ .empty-dashboard-message > a { background-color: #164a7b; border: 1px solid #164a7b; @@ -30964,7 +30959,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 5px; padding: 15px 20px; } -/* line 7803, ../../../scss/_app_styles.scss */ +/* line 7801, ../../../scss/_app_styles.scss */ .empty-dashboard-message .button-explore-courses { font-size: 20px; font-weight: normal; @@ -30974,7 +30969,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 170px; } -/* line 7818, ../../../scss/_app_styles.scss */ +/* line 7816, ../../../scss/_app_styles.scss */ .module_card { display: table; height: 290px; @@ -30985,16 +30980,16 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); } -/* line 7828, ../../../scss/_app_styles.scss */ +/* line 7826, ../../../scss/_app_styles.scss */ .module_card:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 7832, ../../../scss/_app_styles.scss */ +/* line 7830, ../../../scss/_app_styles.scss */ .module_card > div { display: table-cell; height: 290px; } -/* line 7837, ../../../scss/_app_styles.scss */ +/* line 7835, ../../../scss/_app_styles.scss */ .module_card .card_banner { width: 250px; height: 290px; @@ -31008,14 +31003,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-radius .2s; transition: border-radius .2s; } -/* line 7850, ../../../scss/_app_styles.scss */ +/* line 7848, ../../../scss/_app_styles.scss */ .module_card .card_banner > img { height: 100%; width: 100%; border-radius: 4px; -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); } -/* line 7855, ../../../scss/_app_styles.scss */ +/* line 7853, ../../../scss/_app_styles.scss */ .module_card .card_banner > img:hover { -webkit-transform: scale(1.03); -moz-transform: scale(1.03); @@ -31024,7 +31019,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transform: scale(1.03); opacity: 0.8; } -/* line 7867, ../../../scss/_app_styles.scss */ +/* line 7865, ../../../scss/_app_styles.scss */ .module_card .card_banner > h4 { position: absolute; top: 100px; @@ -31033,7 +31028,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #ffffff !important; text-shadow: 2px 0px 8px black; } -/* line 7882, ../../../scss/_app_styles.scss */ +/* line 7880, ../../../scss/_app_styles.scss */ .module_card .card_title { display: block; width: 230px; @@ -31043,27 +31038,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px auto; letter-spacing: 1px; } -/* line 7893, ../../../scss/_app_styles.scss */ +/* line 7891, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_banner { border-radius: 8px; } -/* line 7896, ../../../scss/_app_styles.scss */ +/* line 7894, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7901, ../../../scss/_app_styles.scss */ +/* line 7899, ../../../scss/_app_styles.scss */ .module_card.animated_card.isOpen .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7905, ../../../scss/_app_styles.scss */ +/* line 7903, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_summary { left: 30px; } -/* line 7908, ../../../scss/_app_styles.scss */ +/* line 7906, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_summary { left: 5px; } -/* line 7912, ../../../scss/_app_styles.scss */ +/* line 7910, ../../../scss/_app_styles.scss */ .module_card .card_summary { width: 290px; padding: 0px 15px; @@ -31079,35 +31074,35 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Safari */ transition-property: left; } -/* line 7926, ../../../scss/_app_styles.scss */ +/* line 7924, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_label { font-weight: 500; font-size: 12.5px; letter-spacing: 1px; color: black; } -/* line 7932, ../../../scss/_app_styles.scss */ +/* line 7930, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section { margin: 5px 0px; padding: 5px 0px; } -/* line 7936, ../../../scss/_app_styles.scss */ +/* line 7934, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section:not(:last-child) { border-bottom: 1px solid #ccc; } -/* line 7939, ../../../scss/_app_styles.scss */ +/* line 7937, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section p { margin-bottom: 7px; font-size: 12.5px; } -/* line 7943, ../../../scss/_app_styles.scss */ +/* line 7941, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .ellipsis { width: 245px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -/* line 7951, ../../../scss/_app_styles.scss */ +/* line 7949, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol { background: #a2238d; height: 37px; @@ -31121,11 +31116,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 7964, ../../../scss/_app_styles.scss */ +/* line 7962, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 7970, ../../../scss/_app_styles.scss */ +/* line 7968, ../../../scss/_app_styles.scss */ .module_card .card_summary .module_brief { display: block; /* Fallback for non-webkit */ @@ -31142,12 +31137,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: black; } -/* line 7987, ../../../scss/_app_styles.scss */ +/* line 7985, ../../../scss/_app_styles.scss */ .inner { display: inline-block !important; } -/* line 7993, ../../../scss/_app_styles.scss */ +/* line 7991, ../../../scss/_app_styles.scss */ .enroll-btn { width: 90px; opacity: 1; @@ -31163,7 +31158,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #4b4852; } -/* line 8013, ../../../scss/_app_styles.scss */ +/* line 8011, ../../../scss/_app_styles.scss */ .enrollBtn { background: #a2238d; height: 37px; From 735cebe6e6419f11bcf40ca3314d3da01955086c Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Tue, 6 Feb 2018 15:11:49 +0530 Subject: [PATCH 318/766] user authentication on download button removed --- .../gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html index cd7700b380..3bdf43938b 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html @@ -547,7 +547,6 @@


    {% endif %} - {% if user.is_authenticated %} {% if node.if_file.mime_type %} {% if not node.collection_set and "Jsmol" not in node.member_of_names_list%} @@ -557,8 +556,8 @@

    {% endif %} - {% endif %} - + {% endif %} + {% comment %} {% else %} {% if node.if_file.mime_type and "Jsmol" not in node.member_of_names_list %} {% if 'video' in node.if_file.mime_type %} @@ -573,8 +572,9 @@

    {% endif %} {% endif %} -

  • + {% endcomment %} {% endif %} +

    {% if social_share == True and "Group" not in node.member_of_names_list and "PartnerGroup" not in node.member_of_names_list %} From bdf35df87e98e01300589e8ab21d04a95ca4600a Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Tue, 6 Feb 2018 17:59:26 +0530 Subject: [PATCH 319/766] check box for resources hidden if already in resources --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html index 5695349ba4..24d13ea8bf 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html @@ -215,9 +215,11 @@

     
    + {% endif %} {% comment %}
    From 8a6421d378a111af69daf1d1c7bfd240f15209ba Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Tue, 6 Feb 2018 18:05:47 +0530 Subject: [PATCH 320/766] mark as raw material rename to resources --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html index 24d13ea8bf..1a8021ef4c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html @@ -216,7 +216,7 @@

     
    {% endif %} From c13138d6e7692303f2f995b520c5b75885174609 Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Tue, 6 Feb 2018 18:25:16 +0530 Subject: [PATCH 321/766] labels of enroll widget changed according to NROER --- .../ndf/templates/ndf/widget_enroll.html | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_enroll.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_enroll.html index 073ffd6ae8..cef4b69151 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_enroll.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_enroll.html @@ -147,13 +147,26 @@

    {% firstof group_object.altnames group_object.n {% if module_enrollment %} {% if not enrolled_status_dict|get_dict_value_from_key:request.user.pk %} + {% if site.SITE_NAME == "NROER" %} + $(".enrollact-{{group_object.pk}}").val("Join").attr("title", "Join ") + {% else %} $(".enrollact-{{group_object.pk}}").val("Enroll").attr("title", "Enroll ") + {% endif %} {% endif %} {% else %} {% if request.user.pk not in group_object.author_set %} - $(".enrollact-{{group_object.pk}}").val("Enroll").attr("title", "Enroll") + {% if site.SITE_NAME == "NROER" %} + $(".enrollact-{{group_object.pk}}").val("join").attr("title", "Join") + {% else %} + $(".enrollact-{{group_object.pk}}").val("Enroll").attr("title", "Enroll") + {% endif %} + {% else %} - $(".enrollact-{{group_object.pk}}").val("Enrolled").attr("title", "You are enrolled") + {% if site.SITE_NAME == "NROER" %} + $(".enrollact-{{group_object.pk}}").val("Joined").attr("title", "You are joined") + {% else %} + $(".enrollact-{{group_object.pk}}").val("Enrolled").attr("title", "You are enrolled") + {% endif %} {% endif %} {% endif %} From b760a8ca53c4fea454ce7c309bd2e9bcb402dbdf Mon Sep 17 00:00:00 2001 From: root Date: Wed, 7 Feb 2018 10:57:40 +0530 Subject: [PATCH 322/766] changed ebook view and html page and dev utils view and test_template.html page --- .../gnowsys_ndf/ndf/templates/ndf/ebook.html | 18 +- .../ndf/templates/ndf/file_list_tab_new.html | 22 ++- .../ndf/templates/ndf/simple_card_new.html | 18 +- .../ndf/templates/ndf/test_template.html | 20 +- gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py | 2 +- gnowsys-ndf/gnowsys_ndf/ndf/urls/dev_utils.py | 3 +- .../gnowsys_ndf/ndf/views/dev_utils.py | 179 ++++++++++++++++-- gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py | 108 +++++++---- gnowsys-ndf/gnowsys_ndf/settings.py | 2 +- 9 files changed, 285 insertions(+), 87 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/ebook.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/ebook.html index f308cb8571..3b0039ee23 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/ebook.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/ebook.html @@ -4,7 +4,7 @@ {% load ndf_tags %} {% load simple_filters %} -{% block title %} Repository {% endblock %} +{% block title %} {{ title }}{% endblock %} {% block head %} @@ -59,7 +59,7 @@ {% trans "eBooks" %} {% if all_ebooks %} - {{all_ebooks.count}} + {{all_ebooks1_count}} {% endif %} @@ -95,7 +95,6 @@ {% group_type_info groupid request.user as grouptype %} - {% for node in all_ebooks %} @@ -115,24 +114,25 @@ {% endblock %} {% endcomment %} -{# ===================================== #} +{# =================================================================================================================#} {% block body_content %} +
    - {% if ebook_gst.altnames and ebook_gst.altnames != "None" %} - {{ebook_gst.altnames}} + {% if ebook_gst.0.altnames and ebook_gst.0.altnames != "None" %} + {{ebook_gst.0.altnames}} {% else %} - {{ebook_gst.name}} + {{ebook_gst.0.name}} {% endif%}
    -
    {{ebook_gst.content_org|default_if_none:""|safe}}
    +
    {{ebook_gst.0.content_org|default_if_none:""|safe}}
    {% get_filters_data "E-Book" as filter_dict %} {% include "ndf/filters.html" with filter_dict=filter_dict %} -
    {% include "ndf/file_list_tab.html" with resource_type=all_ebooks detail_urlname="page_details" filetype="ebook" res_type_name="" page_info=page_info %}
    +
    {% include "ndf/file_list_tab_new.html" with resource_type=all_ebooks detail_urlname="page_details" filetype="ebook" res_type_name="" page_info=page_info title="eBooks"%}
    {% endblock body_content %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/file_list_tab_new.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/file_list_tab_new.html index 3a83872cea..0eee42a6e7 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/file_list_tab_new.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/file_list_tab_new.html @@ -8,28 +8,38 @@ {% for each_res in resource_type %} +
  • {% if notebook_filter %} + {% include 'ndf/simple_card_new.html' with has_contributor=True resource=each_res - url_name='course_notebook_tab_note' first_arg=group_name second_arg="all-notes" third_arg=each_res|get:'_source'|get:'id' %} + url_name='course_notebook_tab_note' first_arg=group_name second_arg="all-notes" third_arg=each_res.id %} {% else %} + - {% include 'ndf/simple_card_new.html' with has_contributor=True resource=each_res url_name=detail_urlname first_arg=group_id second_arg=each_res|get:'_source'|get:'id' %} + {% include 'ndf/simple_card_new.html' with has_contributor=True resource=each_res url_name=detail_urlname first_arg=group_id second_arg=each_res.id %} {% endif %}
  • - - - - {% endfor %} + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/simple_card_new.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/simple_card_new.html index 05c79f839f..f4f2a60d5e 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/simple_card_new.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/simple_card_new.html @@ -1,8 +1,6 @@ {% load i18n %} {% load ndf_tags %} {% load simple_filters %} - - -
    +
    - {% if is_event %} {% get_event_status resource as event_status_msg %} {% if event_status_msg %} @@ -49,20 +46,17 @@ {% endif %} {% endif %} +
    -
    + {% get_dict_from_list_of_dicts resource.attribute_set as attr_set_dict %} - {% get_dict_from_list_of_dicts resource|get:'_source'|get:'attribute_set' as attr_set_dict %} - - {% get_relation_value resource|get:'_source'|get:'has_thumbnail' as grel_dict %} + {% get_relation_value resource.pk 'has_thumbnail' as grel_dict %} {% if not grel_dict.cursor and grel_dict.grel_node and grel_dict.grel_node.fs_file_ids.1 %} - - {% elif grel_dict.grel_node.if_file.thumbnail.relurl and 'video' or "File" in resource.if_file.mime_type %} - {% elif resource|get:'_source'|get:'if_file'|get:'thumbnail'|get:'relurl' and 'video' in resource|get:'_source'|get:'if_file'|get:'mime_type' %} - + {% elif resource.if_file.thumbnail.relurl and 'video' in resource.if_file.mime_type %} + {% elif resource.if_file.mid.relurl %} {% elif resource.if_file.original.relurl and 'image' in resource.if_file.mime_type %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html index 626a83ccb2..982bcad8fe 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html @@ -72,7 +72,7 @@

    Please Login to create your shelf

    {% block related_content %} {% check_user_join request groupid as user_is_joined %} - + {{ files1_temp }}
      @@ -94,7 +94,7 @@

      Please Login to create your shelf

      {% trans "All files" %} - {{ file_pages.count }} + {{ all_files_count }}
      @@ -286,7 +286,7 @@

      Please Login to create your shelf

      {% if title == "E-Library" %} - 1 + 1 {% else %} 1 {% endif %} @@ -296,7 +296,7 @@

      Please Login to create your shelf

      {% if title == "E-Library" %} - 1 + 1 {% else %} 1 {% endif %} @@ -318,7 +318,7 @@

      Please Login to create your shelf

      {% if title == "E-Library" %} - 1 + 1 {% else %} 1 {% endif %} @@ -341,7 +341,7 @@

      Please Login to create your shelf

      {% if title == "E-Library" %} - 1 + 1 {% else %} 1 {% endif %} @@ -350,7 +350,7 @@

      Please Login to create your shelf

      {% if title == "E-Library" %} - 1 + 1 {% else %} 1 {% endif %} @@ -359,7 +359,7 @@

      Please Login to create your shelf

      {% if title == "E-Library" %} - 1 + 1 {% else %} 1 {% endif %} @@ -368,7 +368,7 @@

      Please Login to create your shelf

      {% if title == "E-Library" %} - 1 + 1 {% else %} 1 {% endif %} @@ -560,7 +560,7 @@

      Please Login to create your shelf

      var url = html = ""; {% if title == "E-Library" %} - href = '{% url "elib_paged_file_objs" group_name_tag "replace-this" 1 %}'; + href = '{% url "elib_paged_file_objects" group_name_tag "replace-this" 1 %}'; urlHtml = "1"; {% else %} href = '{% url "paged_file_objs" group_name_tag "replace-this" 1 %}'; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py index 9764aa4dff..698b1d0b4c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py @@ -129,7 +129,7 @@ # ---end of mis #test url - (r'^dev/', include('gnowsys_ndf.ndf.urls.dev_utils')), + (r'^dev', include('gnowsys_ndf.ndf.urls.dev_utils')), (r'^tools/', include('gnowsys_ndf.ndf.urls.tools')), # meeting app diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/dev_utils.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/dev_utils.py index 678edaeb57..aab864aae7 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/dev_utils.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/dev_utils.py @@ -1,7 +1,8 @@ from django.conf.urls import patterns, url urlpatterns = patterns('gnowsys_ndf.ndf.views.dev_utils', - url(r'^template/$', 'render_test_template', name='render_test_template'), + url(r'^/template[/]$', 'render_test_template', name='render_test_template'), + url(r'^/template/(?P[\w-]+)/(?P[\w-]+)/page-no=(?P\d+)/$', 'elib_paged_file_objects', name='elib_paged_file_objects'), url(r'^git/branch/?$', 'git_branch', name='git_branch'), url(r'^git/(?P[\w-]+)$', 'git_misc', name='git_misc'), diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py index aaf0a8d123..e43be2eab1 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py @@ -200,24 +200,27 @@ def render_test_template(request,group_id='home', app_id=None, page_no=1): ] }).sort("last_update", -1) - print GST_FILE_temp - files1 = res = es.search(index="nodes", doc_type="gsystemtype,gsystem", body={ + + files1 = res = es.search(index="nodes", doc_type="gsystem", body={ "query": {"bool": { "must": [ {"term": {"group_set": str(ObjectId(group_id))} },{"term": {"access_policy": "public"}}], "must_not": [ {"term": {"attribute_set.educationaluse": "ebooks" } } ], "must": [ {"terms": {"member_of": GST_FILE_temp } } ], + "must": [ {"terms": {"member_of": GST_JSMOL_temp } } ], "must":[ {"term": {'access_policy':'public'}} ] #"must": [ {"term": {'created_by': request.user.id}}], } }} ) files1_temp = [] - for each in files1['hits']['hits']: - files1_temp=each['_source'] + all_files_count=files1['hits']['total'] + + + files1_temp = [doc['_source'] for doc in files1['hits']['hits']] - print "----------------------------------------------------------" - #print files1 + #print "----------------------------------------------------------" + #print all_files_count # print "files.count : ", files.count() # pageCollection=node_collection.find({'member_of':GST_PAGE._id, 'group_set': ObjectId(group_id), @@ -268,7 +271,7 @@ def render_test_template(request,group_id='home', app_id=None, page_no=1): #result_pages = paginator.Paginator(result_paginated_cur, page_no, no_of_objs_pp) result_paginated_cur = tuple(files1_temp) - result_pages = Paginator(result_paginated_cur,no_of_objs_pp) + result_pages = Paginator(result_paginated_cur,12) try: results = result_pages.page(page_no) except PageNotAnInteger: @@ -297,23 +300,26 @@ def render_test_template(request,group_id='home', app_id=None, page_no=1): GST_PAGE_collection=[] for a in GST_PAGE['hits']['hits']: - temp1=a['_source']['id'] + temp1=ObjectId(a['_source']['id']) GST_PAGE_collection.append(temp1) - collection_pages_cur1 = res = es.search(index="nodes", doc_type="gsystemtype,gsystem", body={ + collection_pages_cur1 = es.search(index="nodes", doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author", body={ "query": {"bool": { "must": [ {"term": {"group_set": str(ObjectId(group_id))} },{"term": {"access_policy": "public"}}], "must_not": [ {"term": {"attribute_set.educationaluse": "ebooks" } } ], #"must": [ {"term": {'created_by': request.user.id}}], "must": [ {"terms": {'member_of': GST_FILE_temp }}], "must": [ {"terms": {'member_of': GST_PAGE_collection}}], "must": {"exists": {"field":"collection_set"}}, - } }} ) - print collection_pages_cur + } }} ,size=24) + #print collection_pages_cur1 #coll_page_count = collection_pages_cur.count() if collection_pages_cur else 0 coll_page_count = collection_pages_cur1['hits']['total'] if collection_pages_cur1 else 0 + + collection_pages_cur1_temp = [doc['_source'] for doc in collection_pages_cur1['hits']['hits']] + collection_pages = paginator.Paginator(collection_pages_cur, page_no, no_of_objs_pp) datavisual.append({"name":"Doc", "count": educationaluse_stats.get("Documents", 0)}) datavisual.append({"name":"Page", "count": educationaluse_stats.get("Pages", 0)}) @@ -341,6 +347,7 @@ def render_test_template(request,group_id='home', app_id=None, page_no=1): 'ebook_pages': educationaluse_stats.get("eBooks", 0), # 'page_count': pageCollection.count(), # 'page_nodes':pageCollection + 'all_files_count':all_files_count, 'file_pages': results, 'image_pages': images_count['hits']['total'], 'interactive_pages': educationaluse_stats.get("Interactives", 0), @@ -352,7 +359,7 @@ def render_test_template(request,group_id='home', app_id=None, page_no=1): 'video_pages': videos_count['hits']['total'], 'audio_pages': audios_count['hits']['total'], 'collection_pages': collection_pages, - 'collection': collection_pages_cur1['hits']['hits'], + 'collection': collection_pages_cur1_temp, 'collection_count': collection_pages_cur1['hits']['total'], 'groupid': group_id, 'group_id':group_id, @@ -361,6 +368,153 @@ def render_test_template(request,group_id='home', app_id=None, page_no=1): ) +def elib_paged_file_objects(request, group_id, filetype, page_no): + ''' + Method to implement pagination in File and E-Library app. + ''' + if request.is_ajax() and request.method == "POST": + group_name, group_id = get_group_name_id(group_id) + + no_of_objs_pp = 24 + result_pages = None + + filters = request.POST.get("filters", "") + filters = json.loads(filters) + filters = get_filter_querydict(filters) + + + query_dict = filters + + selfilters = urllib.unquote(request.GET.get('selfilters', '')) + if selfilters: + selfilters = json.loads(selfilters) + query_dict = get_filter_querydict(selfilters) + + query_dict.append({'attribute_set.educationaluse': {'$ne': u'eBooks'}}) + + detail_urlname = "file_detail" + if filetype != "all": + + + # elif filetype == "Collections": + if filetype == "Collections": + pass + + else: + query_dict.append({"attribute_set.educationaluse": filetype}) + + GST_FILE_temp=[] + for a in GST_FILE['hits']['hits']: + #temp1=ObjectId(a['_source']['id']) + temp1=a['_source']['id'] + GST_FILE_temp.append(temp1) + + #file_id = GST_FILE._id + GST_JSMOL_temp=[] + for a in GST_JSMOL['hits']['hits']: + temp1=ObjectId(a['_source']['id']) + GST_JSMOL_temp.append(temp1) + + #files = node_collection.find({ + # 'member_of': {'$in': [GST_FILE._id,GST_JSMOL._id]}, + # 'member_of': {'$in': [GST_FILE._id, GST_PAGE._id]}, + # '_type': 'File', + # 'fs_file_ids': {'$ne': []}, + # 'group_set': {'$all': [ObjectId(group_id)]}, + # '$and': query_dict, + # '$or': [ + # { 'access_policy': u"PUBLIC" }, + # { '$and': [ + # {'access_policy': u"PRIVATE"}, + # {'created_by': request.user.id} + # ] + # } + # ] + # }).sort("last_update", -1) + + files1 = res = es.search(index="gsystem", doc_type="image,video,audio", body={ + "query": {"bool": { "must": [ {"term": {"group_set": str(ObjectId(group_id))} },{"term": {"access_policy": "public"}}], + "must_not": [ {"term": {"attribute_set.educationaluse": "ebooks" } } ], + "must": [ {"terms": {"member_of": GST_FILE_temp } } ], + "must": [ {"terms": {"member_of": GST_JSMOL_temp } } ], + "must":[ {"term": {'access_policy':'public'}} ] + } }},size=24 ) + + + + all_files_count=files1['hits']['total'] + + + files1_temp = [doc['_source'] for doc in files1['hits']['hits']] + + #print files1_temp + + educationaluse_stats = {} + + if files1:# and not result_pages: + # print "=======", educationaluse_stats + + eu_list = [] # count + collection_set_count = 0 + #for each in files: + # eu_list += [i.get("educationaluse") for i in each.attribute_set if i.has_key("educationaluse")] + # collection_set_count += 1 if each.collection_set else 0 + + #files.rewind() + + if set(eu_list): + if len(set(eu_list)) > 1: + educationaluse_stats = dict((x, eu_list.count(x)) for x in set(eu_list)) + elif len(set(eu_list)) == 1: + educationaluse_stats = { eu_list[0]: eu_list.count(eu_list[0])} + educationaluse_stats["all"] = files.count() + educationaluse_stats["Collections"] = collection_set_count + + #result_paginated_cur = files + #result_pages = paginator.Paginator(result_paginated_cur, page_no, no_of_objs_pp) + result_paginated_cur = tuple(files1_temp) + + result_pages = Paginator(result_paginated_cur,12) + try: + results = result_pages.page(page_no) + except PageNotAnInteger: + results = result_pages.page(1) + except EmptyPage: + results = result_pages.page(results.num_page) + + filter_result = "True" if (files1['hits']['total'] > 0) else "False" + + if filetype == "Collections": + detail_urlname = "page_details" + result_cur = node_collection.find({ + 'member_of': {'$in': [GST_FILE._id, GST_PAGE._id]}, + 'group_set': {'$all': [ObjectId(group_id)]}, + '$and': query_dict, + '$or': [ + {'access_policy': u"PUBLIC"}, + {'$and': [ + {'access_policy': u"PRIVATE"}, + {'created_by': request.user.id} + ] + } + ], + 'collection_set': {'$exists': "true", '$not': {'$size': 0} } + }).sort("last_update", -1) + # print "=====================", result_cur.count() + + result_paginated_cur = result_cur + result_pages = paginator.Paginator(result_paginated_cur, page_no, no_of_objs_pp) + + return render_to_response ("ndf/file_list_tab_new.html", { + "filter_result": filter_result, + "group_id": group_id, "group_name_tag": group_id, "groupid": group_id, + 'title': "E-Library", "educationaluse_stats": json.dumps(educationaluse_stats), + "resource_type": result_paginated_cur, "detail_urlname": detail_urlname, + "filetype": filetype, "res_type_name": "", "page_info": results, + }, + context_instance = RequestContext(request)) + + def git_branch(request): return HttpResponse(subprocess.check_output(['git', 'rev-parse', '--abbrev-ref', 'HEAD']), content_type="text/plain") @@ -371,4 +525,3 @@ def git_misc(request, git_command): response = subprocess.check_output(['git', git_command]) return HttpResponse(response, content_type="text/plain") - diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py index 1ecc84505f..c4cf5f2431 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py @@ -5,8 +5,7 @@ from django.template import RequestContext # from django.core.urlresolvers import reverse from mongokit import paginator -from django.core.paginator import Paginator - +from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger try: from bson import ObjectId @@ -30,12 +29,14 @@ #GST_PAGE = node_collection.one({'_type':'GSystemType', 'name': u'Page'}) ebook_gst = res = es.search(index="nodes", doc_type="gsystemtype", body={ - "query": {"bool":{"must": [ {"term": {"name":"e-book"} }] }}}) + "query": {"bool":{"must": [ {"term": {"name":"book"} }] }}},size=20) #print ebook_gst + + GST_FILE = es.search(index="nodes", doc_type="gsystemtype", body={ "query": {"bool": {"must": [{"term": {"name":"file"}}]}}}) GST_PAGE = es.search(index="nodes", doc_type="gsystemtype", body={ - "query": {"bool": {"must": [{"term": {"name":"page"}}]}}}) + "query": {"bool": {"must": [{"term": {"name":"page" }}]}}}) #print GST_FILE @@ -67,54 +68,93 @@ def ebook_listing(request, group_id, page_no=1): # }) #print GST_FILE._id - temp=[] + GST_FILE_temp=[] for a in GST_FILE['hits']['hits']: temp1=ObjectId(a['_source']['id']) - temp.append(temp1) + GST_FILE_temp.append(temp1) #print temp + GST_PAGE_temp=[] for a in GST_PAGE['hits']['hits']: temp1=ObjectId(a['_source']['id']) - temp.append(temp1) + GST_PAGE_temp.append(temp1) + + ebook_gst_temp=[] + for a in ebook_gst['hits']['hits']: + temp1=ObjectId(a['_source']['id']) + ebook_gst_temp.append(temp1) - print "-----------------------------------------------------" - #print temp - - all_ebooks1=es.search(index="nodes", doc_type="metatype,gsystemtype,gsystem", body={ - "query": {"bool": {"filter":{ "terms":{ "member_of": ["444"] }} }}}) + ebook_gst1 = [doc['_source'] for doc in ebook_gst['hits']['hits']] + + + print "----------------------------------------================================================" + #print ebook_gst1 + #all_ebooks1=es.search(index="nodes", doc_type="metatype,gsystemtype,gsystem", body={ + # "query": {"bool": {"filter":{ "terms":{ "member_of": temp }} }}}) + + all_ebooks1 =es.search(index="gsystem", doc_type="application", body={ + "query": {"bool": { "must": [ {"term": {"group_set": str(ObjectId(group_id))} },{"term": {"access_policy": "public"}}], + "must": [ {"term": {"attribute_set.educationaluse": "ebooks" } } ], + "must": [ {"terms": {"member_of": GST_FILE_temp } } ], + "must": [ {"terms": {"member_of": GST_PAGE_temp } } ], + "must":[ {"term": {'access_policy':'public'}} ] + + #"must": [ {"term": {'created_by': request.user.id}}], - print all_ebooks1 + } }} ) - all_ebooks = node_collection.find({ - 'member_of': {'$in': temp }, + #print all_ebooks1 + + #all_ebooks = node_collection.find({ + # 'member_of': {'$in': temp }, # 'member_of': {'$in': [GST_FILE._id, GST_PAGE._id]}, # '_type': 'File', # 'fs_file_ids': {'$ne': []}, - 'group_set': {'$in': [ObjectId(group_id)]}, - 'attribute_set.educationaluse': 'eBooks', - '$and': query_dict, - '$or': [ - { 'access_policy': u"PUBLIC" }, - { '$and': [ - {'access_policy': u"PRIVATE"}, - {'created_by': request.user.id} - ] - } - ], - 'collection_set': {'$exists': "true", '$not': {'$size': 0} } - }).sort("last_update", -1) - - - ebooks_page_info = paginator.Paginator(all_ebooks, page_no, GSTUDIO_NO_OF_OBJS_PP) + # 'group_set': {'$in': [ObjectId(group_id)]}, + # 'attribute_set.educationaluse': 'eBooks', + # '$and': query_dict, + # '$or': [ + # { 'access_policy': u"PUBLIC" }, + # { '$and': [ + # {'access_policy': u"PRIVATE"}, + # {'created_by': request.user.id} + # ] + # } + # ], + # 'collection_set': {'$exists': "true", '$not': {'$size': 0} } + # }).sort("last_update", -1) + + all_ebooks1_temp = [] + + all_ebooks1_count=all_ebooks1['hits']['total'] + + + all_ebooks1 = [doc['_source'] for doc in all_ebooks1['hits']['hits']] + + #ebooks_page_info = paginator.Paginator(all_ebooks1, page_no, GSTUDIO_NO_OF_OBJS_PP) + + result_paginated_cur = tuple(all_ebooks1) + + + ebooks_page_info = Paginator(result_paginated_cur,16) + #print ebooks_page_info + page = request.GET.get('page') + + try: + results = ebooks_page_info.page(page) + except PageNotAnInteger: + results = ebooks_page_info.page(1) + except EmptyPage: + results = ebooks_page_info.page(ebooks_page_info.num_page) return render_to_response("ndf/ebook.html", { - "all_ebooks": all_ebooks, "ebook_gst": ebook_gst, - "page_info": ebooks_page_info, "title": "eBooks", - "group_id": group_id, "groupid": group_id + "all_ebooks": all_ebooks1, "ebook_gst": ebook_gst1, + "page_info": results, "title": "eBooks", + "group_id": group_id, "groupid": group_id,"all_ebooks1_count":all_ebooks1_count }, context_instance = RequestContext(request)) diff --git a/gnowsys-ndf/gnowsys_ndf/settings.py b/gnowsys-ndf/gnowsys_ndf/settings.py index 1af6015e65..af5bd277a1 100755 --- a/gnowsys-ndf/gnowsys_ndf/settings.py +++ b/gnowsys-ndf/gnowsys_ndf/settings.py @@ -1044,7 +1044,7 @@ GSTUDIO_ELASTIC_SEARCH = True GSTUDIO_ELASTIC_SEARCH_ALIAS = 'gsearch' GSTUDIO_ELASTIC_SEARCH_SUPERUSER = 'elastic' -GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD = 'changeme' +GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD = 'changeit' GSTUDIO_ELASTIC_SEARCH_PORT = '9200' # --- End of Elastic Search From 0a3c6aab4a8515e6ea46902915cce07d7e0b90d1 Mon Sep 17 00:00:00 2001 From: Saurabh Bharswadkar Date: Wed, 7 Feb 2018 12:26:17 +0530 Subject: [PATCH 323/766] label for workspaces and enroll units --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html index fcd2f17cbd..038c6948e0 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html @@ -69,7 +69,7 @@ {% if site.SITE_NAME == "NROER" %} {% if title == "my desk" %}
      -

      Workspace

      +

      My Workspace

      • {% include "ndf/card_group.html" with node=node url_name="course_about" first_arg=node.pk no_enroll=True %} @@ -78,7 +78,7 @@

        Workspace


      -

      Workspaces & Enrolled Courses

      +

      Joined Workspaces & Enrolled Courses


      From c9e91ce85a5d353db5ea54b0399a7d0bf6fa358e Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Wed, 7 Feb 2018 21:06:40 +0530 Subject: [PATCH 324/766] some changes in dev_utils file --- .../ndf/templates/ndf/file_list_tab_new.html | 15 +------ .../ndf/templates/ndf/test_template.html | 5 ++- gnowsys-ndf/gnowsys_ndf/ndf/urls/dev_utils.py | 6 +-- .../gnowsys_ndf/ndf/views/dev_utils.py | 40 +++++++++++-------- gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py | 2 +- 5 files changed, 32 insertions(+), 36 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/file_list_tab_new.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/file_list_tab_new.html index 0eee42a6e7..b1def78f1d 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/file_list_tab_new.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/file_list_tab_new.html @@ -29,19 +29,6 @@
    - - - @@ -54,7 +41,7 @@ // dots: true, infinite: true, arrows: true, - speed: 500, + speed: 10, // fade: true, cssEase: 'linear' }); diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html index 982bcad8fe..bdd02c37ee 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html @@ -555,8 +555,9 @@

    Please Login to create your shelf

    // providing function to handle filtering part function applyFilter(filtersArr) { - if (updateFilterUrl){ updateFilterUrl("{% url 'e-library' group_name_tag %}"); } - + //if (updateFilterUrl){ updateFilterUrl("{% url 'e-library' group_name_tag %}"); } + if (updateFilterUrl){ updateFilterUrl("{% url 'render_test_template' %}"); } + var url = html = ""; {% if title == "E-Library" %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/dev_utils.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/dev_utils.py index aab864aae7..68a007bcfd 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/dev_utils.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/dev_utils.py @@ -3,12 +3,12 @@ urlpatterns = patterns('gnowsys_ndf.ndf.views.dev_utils', url(r'^/template[/]$', 'render_test_template', name='render_test_template'), url(r'^/template/(?P[\w-]+)/(?P[\w-]+)/page-no=(?P\d+)/$', 'elib_paged_file_objects', name='elib_paged_file_objects'), - + url(r'^/template/(?P[\w-]+)$', 'render_test_template', name='resource_list'), url(r'^git/branch/?$', 'git_branch', name='git_branch'), url(r'^git/(?P[\w-]+)$', 'git_misc', name='git_misc'), ) urlpatterns += patterns('', - url(r'^query/(?P[^/]+)?$', 'gnowsys_ndf.ndf.views.dev_utils.query_doc'), - url(r'^query/(?P[\w-]+)/(?P

    Following are the topics with the tag \"%(tag)s\"

    \n" -"\tSelect the topic from the panel on the left to view the details about that topic. The knowledge graph for that particular topic is also available on the same page.\n" -msgstr "उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है %(tag)s \n" +"\t
    Following are the topics with the tag \"%(tag)s\"

    \n" +"\tSelect the topic from the panel on the left to view the details about that " +"topic. The knowledge graph for that particular topic is also available on " +"the same page.\n" +msgstr "" +"उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए " +"ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है %(tag)s \n" #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:75 -msgid "Select the topic from the panel on the left to view the details about that topic. The knowledge graph for that particular topic is also available on the same page." -msgstr "उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है।" +msgid "" +"Select the topic from the panel on the left to view the details about that " +"topic. The knowledge graph for that particular topic is also available on " +"the same page." +msgstr "" +"उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए " +"ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है।" #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:201 msgid "Wikipedia Page Link:" @@ -5124,14 +6139,35 @@ msgid "Wikidata Project" msgstr "विकिडाटा परियोजना" #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:246 -msgid "All structured data from the main and property namespace is available under the Creative Commons CC0 License. Text in the other namespaces is available under the Creative Commons Attribution-ShareAlike License. Additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy." -msgstr "मुख्य और प्रॉपर्टी नेमस्पेस से सभी संरचित डेटा क्रिएटिव कॉमन्स CC0 लाइसेंस के अंतर्गत उपलब्ध है। अन्य नेमस्पेस में टेक्स्ट क्रिएटिव कॉमन्स एट्रिब्यूशन-शेयर एलेवेंस लाइसेंस के तहत उपलब्ध है। अतिरिक्त शर्तें लागू हो सकते हैं इस साइट का उपयोग करके, आप उपयोग की शर्तों और गोपनीयता नीति से सहमत हैं।" +msgid "" +"All structured data from the main and property namespace is available under " +"the Creative Commons CC0 License. Text in the other namespaces is available " +"under the Creative Commons Attribution-ShareAlike License. Additional terms " +"may apply. By using this site, you agree to the Terms of Use and Privacy " +"Policy." +msgstr "" +"मुख्य और प्रॉपर्टी नेमस्पेस से सभी संरचित डेटा क्रिएटिव कॉमन्स CC0 लाइसेंस के अंतर्गत उपलब्ध " +"है। अन्य नेमस्पेस में टेक्स्ट क्रिएटिव कॉमन्स एट्रिब्यूशन-शेयर एलेवेंस लाइसेंस के तहत उपलब्ध है। " +"अतिरिक्त शर्तें लागू हो सकते हैं इस साइट का उपयोग करके, आप उपयोग की शर्तों और गोपनीयता " +"नीति से सहमत हैं।" #: gnowsys_ndf/ndf/templates/notification/base.html:4 msgid "notices" msgstr "सूचनाएँ" -#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:8 gnowsys_ndf/ndf/templates/notification/notice_settings.html:11 gnowsys_ndf/notification/templates/notification/notice_settings.html:8 gnowsys_ndf/notification/templates/notification/notice_settings.html:11 +#: gnowsys_ndf/ndf/templates/notification/email_body.txt:1 +msgid "You have received the following notice from the site: " +msgstr "आपको निम्नलिखित सुचनाएँ साइट से प्राप्त हुई हैं:" + +#: gnowsys_ndf/ndf/templates/notification/email_subject.txt:1 +#, python-format +msgid "[%(current_site)s] %(message)s" +msgstr "" + +#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:8 +#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:11 +#: gnowsys_ndf/notification/templates/notification/notice_settings.html:8 +#: gnowsys_ndf/notification/templates/notification/notice_settings.html:11 msgid "Notification Settings" msgstr "अधिसूचना सेटिंग" @@ -5151,10 +6187,15 @@ msgstr "एक नया जोड़ें" msgid "now" msgstr "अब" -#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:27 gnowsys_ndf/notification/templates/notification/notice_settings.html:27 +#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:27 +#: gnowsys_ndf/notification/templates/notification/notice_settings.html:27 msgid "Notification Type" msgstr "अधिसूचना प्रकार" +#: gnowsys_ndf/ndf/templates/notification/short.txt:5 +msgid "Activity notification from" +msgstr "से क्रियाकलाप अधिसूचना" + #: gnowsys_ndf/ndf/templates/online_status/example.html:4 msgid "Users online" msgstr "ऑनलाइन उपयोगकर्ता" @@ -5167,7 +6208,8 @@ msgstr "उपयोगकर्ता की स्थिति" msgid "My status " msgstr "मेरी स्थिति" -#: gnowsys_ndf/ndf/templates/registration/activate.html:6 gnowsys_ndf/ndf/templates/registration/activation_complete.html:4 +#: gnowsys_ndf/ndf/templates/registration/activate.html:6 +#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:4 msgid "Activation complete" msgstr "सक्रियता पूर्ण हुई" @@ -5196,22 +6238,29 @@ msgid "using your email and password." msgstr "अपने ईमेल और पासवर्ड का उपयोग करके" #: gnowsys_ndf/ndf/templates/registration/activate.html:27 -msgid "Oops! It seems that your activation key is invalid. Please check the url or try to reset your password again. " -msgstr "ओह ऐसा लगता है कि आपकी सक्रियण कुंजी अमान्य है कृपया यूआरएल की जांच करें या फिर अपना पासवर्ड रीसेट करने का प्रयास करें।" +msgid "" +"Oops! It seems that your activation key is invalid. Please check the url or " +"try to reset your password again. " +msgstr "" +"ओह ऐसा लगता है कि आपकी सक्रियण कुंजी अमान्य है कृपया यूआरएल की जांच करें या फिर अपना " +"पासवर्ड रीसेट करने का प्रयास करें।" #: gnowsys_ndf/ndf/templates/registration/activation_complete.html:13 msgid "Account successfully activated." msgstr "खाता सफलतापूर्वक सक्रिय हो चुका है" -#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 msgid "Please " msgstr "कृपया" -#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 msgid "Sign In" msgstr "साइन इन" -#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 msgid " here." msgstr "यहाँ" @@ -5220,18 +6269,24 @@ msgid "Account registration" msgstr "खाता पजीकृकरण" #: gnowsys_ndf/ndf/templates/registration/activation_email.html:16 -msgid "You (or someone pretending to be you) have asked to register an account at: " +msgid "" +"You (or someone pretending to be you) have asked to register an account at: " msgstr "आपने यहाँ पंजीकरण के लिए आग्रह किया है:" #: gnowsys_ndf/ndf/templates/registration/activation_email.html:17 -msgid "If this wasn't you, please ignore this email and your address will be removed from our records." +msgid "" +"If this wasn't you, please ignore this email and your address will be " +"removed from our records." msgstr "यदि आप ये नहीं थे, कृपया इस ईमेल को अनंदेखा करें। आपका ईमेल पता मिटा दिया जायेगा" #: gnowsys_ndf/ndf/templates/registration/activation_email.html:21 -msgid "To activate this account, please click the following link within the next two days." +msgid "" +"To activate this account, please click the following link within the next " +"two days." msgstr "प्राप्त लिंक केवल दो दिन तक ही वैध रहेगा। कृपया इस अवधि में खाता सक्रिय करें" #: gnowsys_ndf/ndf/templates/registration/activation_email.html:26 +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:11 msgid "Sincerely" msgstr "भवदीय" @@ -5240,24 +6295,56 @@ msgstr "भवदीय" msgid " \"%(site.name|capfirst)s Team\" " msgstr "" +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:5 +msgid "" +"You (or someone pretending to be you) have asked to register an account at " +msgstr "आपने यहाँ पंजीकरण के लिए आग्रह किया" + +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:6 +msgid "" +"If this wasn't you, please ignore this email and your details will be " +"removed from our records." +msgstr "यदि आप ये नहीं थे, कृपया इस ईमेल को अनंदेखा करें। आपका ईमेल पता मिटा दिया जायेगा" + +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:8 +msgid "" +"To activate this account, please click the following link within the next" +msgstr "प्राप्त लिंक केवल दो दिन तक ही वैध रहेगा। कृपया इस अवधि में खाता सक्रिय करें" + +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:8 +msgid "days" +msgstr "दिन" + +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:12 +msgid "Team" +msgstr "" + +#: gnowsys_ndf/ndf/templates/registration/activation_email_subject.txt:3 +msgid "Account registration for" +msgstr "खाता पजीकृकरण" + #: gnowsys_ndf/ndf/templates/registration/login.html:28 msgid "Log In" msgstr "लॉग-इन" -#: gnowsys_ndf/ndf/templates/registration/login.html:35 gnowsys_ndf/ndf/templates/registration/login_clix.html:39 +#: gnowsys_ndf/ndf/templates/registration/login.html:35 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:39 msgid "Either your email or password is incorrect !" msgstr "ईमेल अथवा पासवर्ड गलत है" -#: gnowsys_ndf/ndf/templates/registration/login.html:72 gnowsys_ndf/ndf/templates/registration/login_clix.html:99 +#: gnowsys_ndf/ndf/templates/registration/login.html:72 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:99 #, fuzzy msgid "Recover your password" msgstr "पासवर्ड भूल गए?" -#: gnowsys_ndf/ndf/templates/registration/login.html:72 gnowsys_ndf/ndf/templates/registration/login_clix.html:99 +#: gnowsys_ndf/ndf/templates/registration/login.html:72 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:99 msgid "Forgot your password?" msgstr "पासवर्ड भूल गए?" -#: gnowsys_ndf/ndf/templates/registration/login.html:95 gnowsys_ndf/ndf/templates/registration/login_clix.html:111 +#: gnowsys_ndf/ndf/templates/registration/login.html:95 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:111 #, fuzzy msgid "Click here to register" msgstr "देखने के लिए क्ल्कि करें" @@ -5284,7 +6371,9 @@ msgid "You have sucessfully logged out." msgstr "सफलतापूर्वक लॉग-आउट हो गया है" #: gnowsys_ndf/ndf/templates/registration/logout.html:12 -msgid "Thank you for visiting our website. Please return often to take advantage of this platform." +msgid "" +"Thank you for visiting our website. Please return often to take advantage of " +"this platform." msgstr "हमारी वेबसाइट देखने के लिए धन्यवाद। कृपया इस मंच का लाभ उठाने के लिए अक्सर लौटें।" #: gnowsys_ndf/ndf/templates/registration/password_change_done.html:7 @@ -5307,23 +6396,28 @@ msgstr "पासवर्ड सफलतापूर्वक रीसेट msgid "Confirm password reset" msgstr "पासवर्ड रीसेट की पुष्टि करें" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:43 gnowsys_ndf/ndf/templates/registration/registration_form.html:63 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:43 +#: gnowsys_ndf/ndf/templates/registration/registration_form.html:63 msgid "Either both passwords doesn't match or doesn't satisfy the criteria!!!" msgstr "पासवर्ड कसौटी के अनुरूप नहीं है" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:66 gnowsys_ndf/ndf/templates/registration/registration_form.html:110 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:66 +#: gnowsys_ndf/ndf/templates/registration/registration_form.html:110 msgid "NOTE: " msgstr "टिप्पणी:" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:68 gnowsys_ndf/ndf/templates/registration/registration_form.html:112 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:68 +#: gnowsys_ndf/ndf/templates/registration/registration_form.html:112 msgid "Password must contain atleast 8 characters," msgstr "पासवर्ड में कम-से-कम 8 कैरेक्टर का होना आवश्यक है" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:69 gnowsys_ndf/ndf/templates/registration/registration_form.html:113 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:69 +#: gnowsys_ndf/ndf/templates/registration/registration_form.html:113 msgid "One uppercase letter, and" msgstr "कम-से-कम एक अपरकेस अक्षर और" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:70 gnowsys_ndf/ndf/templates/registration/registration_form.html:114 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:70 +#: gnowsys_ndf/ndf/templates/registration/registration_form.html:114 msgid "One numeral" msgstr "कम-से-कम एक संख्या" @@ -5332,6 +6426,7 @@ msgid "Set password" msgstr "सेट पासवर्ड" #: gnowsys_ndf/ndf/templates/registration/password_reset_done.html:4 +#: gnowsys_ndf/ndf/templates/registration/password_reset_email_subject.txt:2 msgid "Password reset" msgstr "पासवर्ड रीसेट" @@ -5344,15 +6439,23 @@ msgid "An email has been sent to email-ID associated with your account." msgstr "आपके खाते से संबंधित ईमेल आई.डी. पर ईमेल भेजी गई है" #: gnowsys_ndf/ndf/templates/registration/password_reset_done.html:13 -msgid "Please be patient; the delivery of email may be delayed. Remember to confirm that the email that you entered is correct and to check your junk or spam folder or filter if you do not receive this email." -msgstr "कृपया धैर्य रखें; ईमेल की डिलीवरी में देरी हो सकती है यह पुष्टि करने के लिए याद रखें कि आपने जो ईमेल दर्ज किया है वह सही है और यदि आप यह ईमेल प्राप्त नहीं करते हैं तो अपने ट्रेश या स्पैम फ़ोल्डर या फ़िल्टर की जांच करें।" +msgid "" +"Please be patient; the delivery of email may be delayed. Remember to confirm " +"that the email that you entered is correct and to check your junk or spam " +"folder or filter if you do not receive this email." +msgstr "" +"कृपया धैर्य रखें; ईमेल की डिलीवरी में देरी हो सकती है यह पुष्टि करने के लिए याद रखें कि आपने " +"जो ईमेल दर्ज किया है वह सही है और यदि आप यह ईमेल प्राप्त नहीं करते हैं तो अपने ट्रेश या " +"स्पैम फ़ोल्डर या फ़िल्टर की जांच करें।" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:4 msgid "Greetings " msgstr "अभिनंदन" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:5 -msgid "You are receiving this email because you requested that your password be reset on" +msgid "" +"You are receiving this email because you requested that your password be " +"reset on" msgstr "आप यह ईमेल प्राप्त कर रहे हैं क्योंकि आपने अनुरोध किया है कि आपका पासवर्ड रीसेट हो" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:7 @@ -5360,8 +6463,12 @@ msgid "If you do not wish to reset your password, please ignore this message." msgstr "यदि आप अपना पासवर्ड रीसेट नहीं करना चाहते हैं, तो कृपया इस संदेश को अनदेखा करें।" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:9 -msgid "To reset your password, please click the following link, or copy and paste it into your web browser:" -msgstr "अपना पासवर्ड रीसेट करने के लिए, कृपया निम्न लिंक पर क्लिक करें, या उसे अपने वेब ब्राउज़र में कॉपी और पेस्ट करें:" +msgid "" +"To reset your password, please click the following link, or copy and paste " +"it into your web browser:" +msgstr "" +"अपना पासवर्ड रीसेट करने के लिए, कृपया निम्न लिंक पर क्लिक करें, या उसे अपने वेब ब्राउज़र में " +"कॉपी और पेस्ट करें:" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:12 msgid "Your username, in case you've forgotten:" @@ -5375,16 +6482,23 @@ msgstr "आदर सहित" msgid "Management" msgstr "प्रबंधन" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:5 gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:72 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:5 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:65 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:5 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:72 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:5 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:65 msgid "Reset password" msgstr "रीसेट पासवर्ड" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:30 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:30 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:30 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:30 msgid "Forgot password? Don't worry..." msgstr "पासवर्ड भूल गये हैं? चिंता न करें" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:37 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:37 -msgid "Password reset instructions will be sent to the email address associated with your account." +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:37 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:37 +msgid "" +"Password reset instructions will be sent to the email address associated " +"with your account." msgstr "पासवर्ड रीसेट निर्देश अापके खाते से जुडे ईमेल पर भेजे जाएंगे।" #: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:44 @@ -5395,11 +6509,13 @@ msgstr "अवैध ईमेल आई.डी., कृपया फिर स msgid "Please type your valid " msgstr "कृपया वैध ईमेल भरें" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:59 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:52 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:59 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:52 msgid "email address" msgstr "ईमेल पता" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:59 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:52 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:59 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:52 msgid " below:" msgstr "नीचे" @@ -5424,7 +6540,9 @@ msgid "Account creation successful." msgstr "खाता सफलतापूर्वक सृजित हो चुका है" #: gnowsys_ndf/ndf/templates/registration/registration_complete.html:12 -msgid "Please activate your account by clicking on the link provided in the email you will receive." +msgid "" +"Please activate your account by clicking on the link provided in the email " +"you will receive." msgstr "कृपया प्राप्त ईमेल में दिए गए लिंक पर क्लिक करके अपना खाता सक्रिय करें।" #: gnowsys_ndf/ndf/templates/registration/registration_form.html:5 @@ -5527,41 +6645,39 @@ msgstr "सूचना सेटिंग" msgid "notice settings" msgstr "सूचना सेटिंग" -#: gnowsys_ndf/notification/templates/notification/full.html:1 gnowsys_ndf/notification/templates/notification/notice.html:1 +#: gnowsys_ndf/notification/templates/notification/email_body.txt:1 +#, python-format +msgid "" +"You have received the following notice from %(current_site)s:\n" +"\n" +"%(message)s\n" +"\n" +"To see other notices or change how you receive notifications, please go to " +"%(default_http_protocol)s://%(current_site)s%(notices_url)s\n" +msgstr "" + +#: gnowsys_ndf/notification/templates/notification/full.html:1 +#: gnowsys_ndf/notification/templates/notification/full.txt:1 +#: gnowsys_ndf/notification/templates/notification/notice.html:1 +#: gnowsys_ndf/notification/templates/notification/short.txt:1 #, fuzzy, python-format msgid "%(notice)s" msgstr "सूचना" #: gnowsys_ndf/notification/templates/notification/notice_settings.html:15 -#, python-format +#, fuzzy, python-format msgid "" +"\n" "

    \n" " Note:\n" -" You do not have a verified email address to which notices can be sent. Add one now.\n" +" You do not have a verified email address to which notices can be " +"sent. Add one now.\n" "

    \n" " " msgstr "%(email_url)s आपके पास एक सत्यापित ईमेल नहीं है जिसमें सूचनाएं भेजी जा सकती हैं।" -#~ msgid "You have received the following notice from the site: " -#~ msgstr "आपको निम्नलिखित सुचनाएँ साइट से प्राप्त हुई हैं:" - -#~ msgid "Activity notification from" -#~ msgstr "से क्रियाकलाप अधिसूचना" - -#~ msgid "You (or someone pretending to be you) have asked to register an account at " -#~ msgstr "आपने यहाँ पंजीकरण के लिए आग्रह किया" - -#~ msgid "If this wasn't you, please ignore this email and your details will be removed from our records." -#~ msgstr "यदि आप ये नहीं थे, कृपया इस ईमेल को अनंदेखा करें। आपका ईमेल पता मिटा दिया जायेगा" - -#~ msgid "To activate this account, please click the following link within the next" -#~ msgstr "प्राप्त लिंक केवल दो दिन तक ही वैध रहेगा। कृपया इस अवधि में खाता सक्रिय करें" - -#~ msgid "days" -#~ msgstr "दिन" - -#~ msgid "Account registration for" -#~ msgstr "खाता पजीकृकरण" +#~ msgid "Mark as Raw Material" +#~ msgstr "रॉ मटीरियल के रूप में चिह्नित करें" #~ msgid "List Members" #~ msgstr "सदस्यों की सूची" @@ -5569,14 +6685,20 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "Sorry, No resources found with selected filters" #~ msgstr "क्षमा करें, चयनित फिल्टर से कोई संसाधन प्राप्त नहीं हुआ" -#~ msgid "This group doesn't have any files. Be the first to upload a file!" -#~ msgstr "इस समूह में कोई फाइल नहीं है। आप फाइल अपलोड करने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgid "" +#~ "This group doesn't have any files. Be the first to upload a file!" +#~ msgstr "" +#~ "इस समूह में कोई फाइल नहीं है। आप फाइल अपलोड करने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "View Source Code" #~ msgstr "सोर्स कोड देखें" -#~ msgid "All material is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License unless mentioned otherwise." -#~ msgstr "सभी सामग्री क्रियेटिव कॉमन्स ऍट्रीब्यूशन शेयर-अलाइक 3.0 के अनपोर्टेड लाइसेंस के अंतर्गत आती है, यदि कोई अन्य लाइसेंस अंकित नहीं है तो" +#~ msgid "" +#~ "All material is licensed under a Creative Commons Attribution-Share Alike " +#~ "3.0 Unported License unless mentioned otherwise." +#~ msgstr "" +#~ "सभी सामग्री क्रियेटिव कॉमन्स ऍट्रीब्यूशन शेयर-अलाइक 3.0 के अनपोर्टेड लाइसेंस के अंतर्गत " +#~ "आती है, यदि कोई अन्य लाइसेंस अंकित नहीं है तो" #~ msgid "Powered by" #~ msgstr "पावर्ड बाइ" @@ -5593,8 +6715,11 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "Contributor" #~ msgstr "योगदानकर्ता" -#~ msgid "This group doesn't have any forums. Be the first to create a forum!
    " -#~ msgstr "इस समूह में कोई फोरम नहीं है। आप फोरम बनाने वाले प्रथम व्यक्ति हो सकते हैं<" +#~ msgid "" +#~ "This group doesn't have any forums. Be the first to create a forum!

    " +#~ msgstr "" +#~ "इस समूह में कोई फोरम नहीं है। आप फोरम बनाने वाले प्रथम व्यक्ति हो सकते हैं<" #~ msgid "Top Contributors" #~ msgstr "सर्वोच्च योगदानकर्ता" @@ -5677,7 +6802,8 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "Create New Blog" #~ msgstr "नया बनायें" -#~ msgid " This group doesn't have any pages. Be the first to create a Page!" +#~ msgid "" +#~ " This group doesn't have any pages. Be the first to create a Page!" #~ msgstr "इस समूह में कोई पृष्ठ नहीं है। आप पृष्ठ बनाने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "Page Details" @@ -5688,7 +6814,11 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "" #~ "

    \n" -#~ " A Quiz is a sequenced collection of quiz items. A quiz-item can be any of the three types: short response, single-choice and multiple-choice. submit response and match the following types will be implemented very soon.\n" +#~ " A Quiz is a sequenced collection of quiz items. A quiz-" +#~ "item can be any of the three types: short response, single-" +#~ "choice and multiple-choice. " +#~ "submit response and match the following types will be " +#~ "implemented very soon.\n" #~ "

    \n" #~ "

    You can build a quiz in two ways:\n" #~ "

      \n" @@ -5697,7 +6827,10 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ "

    \n" #~ msgstr "" #~ "

    \n" -#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" +#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी " +#~ "आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें " +#~ "और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" #~ "

    \n" #~ "

    आप दो तरह से एक प्रश्नोत्तरी का निर्माण कर सकते हैं:\n" #~ "

      \n" @@ -5712,8 +6845,11 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgstr "प्रश्नोत्तरी प्रश्न संपादक" #~ msgid "" -#~ "

      A Quiz is a sequenced collection of quiz items. A quiz-item can be any of the three types: short response, single-choice and multiple-choice. submit response and match the following types will be implemented very " -#~ "soon.

      \n" +#~ "

      A Quiz is a sequenced collection of " +#~ "quiz items. A quiz-item can be any of the three types: " +#~ "short response, single-choice and " +#~ "multiple-choice. submit response and " +#~ "match the following types will be implemented very soon.

      \n" #~ "

      You can build a quiz in two ways:\n" #~ "

        \n" #~ "\t
      1. By editing, Quiz node (via collection-list).
      2. \n" @@ -5721,7 +6857,10 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ "

      \n" #~ msgstr "" #~ "

      \n" -#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" +#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी " +#~ "आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें " +#~ "और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" #~ "

      \n" #~ "

      आप दो तरह से एक प्रश्नोत्तरी का निर्माण कर सकते हैं:\n" #~ "

        \n" @@ -5745,13 +6884,19 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgstr "प्रश्नोत्तरी" #~ msgid "This group doesn't have any quiz. Be the first to create a Quiz!" -#~ msgstr "इस समूह में कोई प्रश्नोत्तरी नहीं है। आप प्रश्नोत्तरी बनाने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgstr "" +#~ "इस समूह में कोई प्रश्नोत्तरी नहीं है। आप प्रश्नोत्तरी बनाने वाले प्रथम व्यक्ति हो सकते " +#~ "हैं" #~ msgid "Quiz Items" #~ msgstr "प्रश्नोत्तरी प्रश्न" -#~ msgid "This group doesn't have any quiz-items. Be the first to create a Quiz-Item!" -#~ msgstr "इस समूह में कोई प्रश्नोत्तरी प्रश्न नहीं है। आप प्रश्नोत्तरी प्रश्न बनाने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgid "" +#~ "This group doesn't have any quiz-items. Be the first to create a Quiz-" +#~ "Item!" +#~ msgstr "" +#~ "इस समूह में कोई प्रश्नोत्तरी प्रश्न नहीं है। आप प्रश्नोत्तरी प्रश्न बनाने वाले प्रथम " +#~ "व्यक्ति हो सकते हैं" #~ msgid "Not rated yet!" #~ msgstr "अभी तक सृजन" @@ -5759,8 +6904,12 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "resources" #~ msgstr "संसाधन" -#~ msgid "Tag is like a keyword or category label.

        Tags helps you to find photos, videos, files and pages which have something in common.

        " -#~ msgstr "टैग कूटसंकेत के समान है.

        टैग का प्रयोग करके खोजा जा सकता है.

        " +#~ msgid "" +#~ "Tag is like a keyword or category label.

        Tags helps you " +#~ "to find photos, videos, files and pages which have something in common." +#~ msgstr "" +#~ "टैग कूटसंकेत के समान है.

        टैग का प्रयोग करके खोजा जा सकता है.

        " #~ msgid "Attachment(s):" #~ msgstr "संलगन" @@ -5780,8 +6929,12 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "next" #~ msgstr "आगे" -#~ msgid "You (or someone pretending to be you) have asked to register an account at our site." -#~ msgstr "लगता है, आपका सक्रियता संकेत शब्द सही नहीं है। कृपया यू.आर.एल. जाँचें अथवा पासवर्ड रीसेट करें" +#~ msgid "" +#~ "You (or someone pretending to be you) have asked to register an account " +#~ "at our site." +#~ msgstr "" +#~ "लगता है, आपका सक्रियता संकेत शब्द सही नहीं है। कृपया यू.आर.एल. जाँचें अथवा पासवर्ड " +#~ "रीसेट करें" #~ msgid "Management Team" #~ msgstr "प्रबंधन टीम" @@ -5809,11 +6962,13 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "" #~ "\n" -#~ "
        There are no %(grps_category)s created yet.Be the first to create a %(grps_category)s!
        \n" +#~ "
        There are no %(grps_category)s created yet.Be the first to " +#~ "create a %(grps_category)s!
        \n" #~ "\t" #~ msgstr "" #~ "\n" -#~ "
        अभी तक कोई पार्टनर नहीं बनाया गया है। आप पार्टनर बनाने वाले प्रथम व्यक्ति हो सकते हैं
        " +#~ "
        अभी तक कोई पार्टनर नहीं बनाया गया है। आप पार्टनर बनाने वाले प्रथम " +#~ "व्यक्ति हो सकते हैं
        " #~ msgid "Be the first to create a" #~ msgstr "सृजन करने वाले आप प्रथम हो" @@ -5833,14 +6988,20 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "Announced Courses" #~ msgstr "घोषित पाठ्यक्रम" -#~ msgid "This group doesn't have any courses. Be the first to create a course!" -#~ msgstr "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgid "" +#~ "This group doesn't have any courses. Be the first to create a course!" +#~ msgstr "" +#~ "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "You are not enrolled to any course yet." #~ msgstr "आप अभी तक किसी भी पाठ्यक्रम में नामांकित नहीं हैं" -#~ msgid "This group doesn't have any Announced courses. Be the first to Announce a course!" -#~ msgstr "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgid "" +#~ "This group doesn't have any Announced courses. Be the first to " +#~ "Announce a course!" +#~ msgstr "" +#~ "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "This group doesn't have any Announced courses." #~ msgstr "इस समूह में कोई पाठ्यक्रम नहीं है" From 6327bfcc94d75d865f30ab78b800b60f3ee88cd9 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Wed, 28 Mar 2018 16:04:23 +0530 Subject: [PATCH 443/766] About us and analytics block r created --- .../gnowsys_ndf/ndf/templates/ndf/footer.html | 19 ++++++++++++++++++- .../ndf/templates/ndf/landing_page_nroer.html | 6 +++--- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html index e065328687..73234c68d9 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html @@ -4,7 +4,24 @@ {% get_pages "Info page" as infopages %} -

    Following are the topics with the tag \"%(tag)s\"

    \n" -"\tSelect the topic from the panel on the left to view the details about that " -"topic. The knowledge graph for that particular topic is also available on " -"the same page.\n" -msgstr "" -"उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए " -"ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है %(tag)s \n" +msgid " Tags Topic Display\n" +"\t
    Following are the topics with the tag \"%(tag)s\"

    \n" +"\tSelect the topic from the panel on the left to view the details about that topic. The knowledge graph for that particular topic is also available on the same page.\n" +msgstr "उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है %(tag)s \n" #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:75 -msgid "" -"Select the topic from the panel on the left to view the details about that " -"topic. The knowledge graph for that particular topic is also available on " -"the same page." -msgstr "" -"उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए " -"ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है।" +msgid "Select the topic from the panel on the left to view the details about that topic. The knowledge graph for that particular topic is also available on the same page." +msgstr "उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है।" #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:201 msgid "Wikipedia Page Link:" @@ -6173,35 +5055,14 @@ msgid "Wikidata Project" msgstr "विकिडाटा परियोजना" #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:246 -msgid "" -"All structured data from the main and property namespace is available under " -"the Creative Commons CC0 License. Text in the other namespaces is available " -"under the Creative Commons Attribution-ShareAlike License. Additional terms " -"may apply. By using this site, you agree to the Terms of Use and Privacy " -"Policy." -msgstr "" -"मुख्य और प्रॉपर्टी नेमस्पेस से सभी संरचित डेटा क्रिएटिव कॉमन्स CC0 लाइसेंस के अंतर्गत उपलब्ध " -"है। अन्य नेमस्पेस में टेक्स्ट क्रिएटिव कॉमन्स एट्रिब्यूशन-शेयर एलेवेंस लाइसेंस के तहत उपलब्ध है। " -"अतिरिक्त शर्तें लागू हो सकते हैं इस साइट का उपयोग करके, आप उपयोग की शर्तों और गोपनीयता " -"नीति से सहमत हैं।" +msgid "All structured data from the main and property namespace is available under the Creative Commons CC0 License. Text in the other namespaces is available under the Creative Commons Attribution-ShareAlike License. Additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy." +msgstr "मुख्य और प्रॉपर्टी नेमस्पेस से सभी संरचित डेटा क्रिएटिव कॉमन्स CC0 लाइसेंस के अंतर्गत उपलब्ध है। अन्य नेमस्पेस में टेक्स्ट क्रिएटिव कॉमन्स एट्रिब्यूशन-शेयर एलेवेंस लाइसेंस के तहत उपलब्ध है। अतिरिक्त शर्तें लागू हो सकते हैं इस साइट का उपयोग करके, आप उपयोग की शर्तों और गोपनीयता नीति से सहमत हैं।" #: gnowsys_ndf/ndf/templates/notification/base.html:4 msgid "notices" msgstr "सूचनाएँ" -#: gnowsys_ndf/ndf/templates/notification/email_body.txt:1 -msgid "You have received the following notice from the site: " -msgstr "आपको निम्नलिखित सुचनाएँ साइट से प्राप्त हुई हैं:" - -#: gnowsys_ndf/ndf/templates/notification/email_subject.txt:1 -#, python-format -msgid "[%(current_site)s] %(message)s" -msgstr "" - -#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:8 -#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:11 -#: gnowsys_ndf/notification/templates/notification/notice_settings.html:8 -#: gnowsys_ndf/notification/templates/notification/notice_settings.html:11 +#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:8 gnowsys_ndf/ndf/templates/notification/notice_settings.html:11 gnowsys_ndf/notification/templates/notification/notice_settings.html:8 gnowsys_ndf/notification/templates/notification/notice_settings.html:11 msgid "Notification Settings" msgstr "अधिसूचना सेटिंग" @@ -6221,15 +5082,10 @@ msgstr "एक नया जोड़ें" msgid "now" msgstr "अब" -#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:27 -#: gnowsys_ndf/notification/templates/notification/notice_settings.html:27 +#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:27 gnowsys_ndf/notification/templates/notification/notice_settings.html:27 msgid "Notification Type" msgstr "अधिसूचना प्रकार" -#: gnowsys_ndf/ndf/templates/notification/short.txt:5 -msgid "Activity notification from" -msgstr "से क्रियाकलाप अधिसूचना" - #: gnowsys_ndf/ndf/templates/online_status/example.html:4 msgid "Users online" msgstr "ऑनलाइन उपयोगकर्ता" @@ -6242,8 +5098,7 @@ msgstr "उपयोगकर्ता की स्थिति" msgid "My status " msgstr "मेरी स्थिति" -#: gnowsys_ndf/ndf/templates/registration/activate.html:6 -#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:4 +#: gnowsys_ndf/ndf/templates/registration/activate.html:6 gnowsys_ndf/ndf/templates/registration/activation_complete.html:4 msgid "Activation complete" msgstr "सक्रियता पूर्ण हुई" @@ -6272,29 +5127,22 @@ msgid "using your email and password." msgstr "अपने ईमेल और पासवर्ड का उपयोग करके" #: gnowsys_ndf/ndf/templates/registration/activate.html:27 -msgid "" -"Oops! It seems that your activation key is invalid. Please check the url or " -"try to reset your password again. " -msgstr "" -"ओह ऐसा लगता है कि आपकी सक्रियण कुंजी अमान्य है कृपया यूआरएल की जांच करें या फिर अपना " -"पासवर्ड रीसेट करने का प्रयास करें।" +msgid "Oops! It seems that your activation key is invalid. Please check the url or try to reset your password again. " +msgstr "ओह ऐसा लगता है कि आपकी सक्रियण कुंजी अमान्य है कृपया यूआरएल की जांच करें या फिर अपना पासवर्ड रीसेट करने का प्रयास करें।" #: gnowsys_ndf/ndf/templates/registration/activation_complete.html:13 msgid "Account successfully activated." msgstr "खाता सफलतापूर्वक सक्रिय हो चुका है" -#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 -#: gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 msgid "Please " msgstr "कृपया" -#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 -#: gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 msgid "Sign In" msgstr "साइन इन" -#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 -#: gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 msgid " here." msgstr "यहाँ" @@ -6303,24 +5151,18 @@ msgid "Account registration" msgstr "खाता पजीकृकरण" #: gnowsys_ndf/ndf/templates/registration/activation_email.html:16 -msgid "" -"You (or someone pretending to be you) have asked to register an account at: " +msgid "You (or someone pretending to be you) have asked to register an account at: " msgstr "आपने यहाँ पंजीकरण के लिए आग्रह किया है:" #: gnowsys_ndf/ndf/templates/registration/activation_email.html:17 -msgid "" -"If this wasn't you, please ignore this email and your address will be " -"removed from our records." +msgid "If this wasn't you, please ignore this email and your address will be removed from our records." msgstr "यदि आप ये नहीं थे, कृपया इस ईमेल को अनंदेखा करें। आपका ईमेल पता मिटा दिया जायेगा" #: gnowsys_ndf/ndf/templates/registration/activation_email.html:21 -msgid "" -"To activate this account, please click the following link within the next " -"two days." +msgid "To activate this account, please click the following link within the next two days." msgstr "प्राप्त लिंक केवल दो दिन तक ही वैध रहेगा। कृपया इस अवधि में खाता सक्रिय करें" #: gnowsys_ndf/ndf/templates/registration/activation_email.html:26 -#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:11 msgid "Sincerely" msgstr "भवदीय" @@ -6329,56 +5171,24 @@ msgstr "भवदीय" msgid " \"%(site.name|capfirst)s Team\" " msgstr "" -#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:5 -msgid "" -"You (or someone pretending to be you) have asked to register an account at " -msgstr "आपने यहाँ पंजीकरण के लिए आग्रह किया" - -#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:6 -msgid "" -"If this wasn't you, please ignore this email and your details will be " -"removed from our records." -msgstr "यदि आप ये नहीं थे, कृपया इस ईमेल को अनंदेखा करें। आपका ईमेल पता मिटा दिया जायेगा" - -#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:8 -msgid "" -"To activate this account, please click the following link within the next" -msgstr "प्राप्त लिंक केवल दो दिन तक ही वैध रहेगा। कृपया इस अवधि में खाता सक्रिय करें" - -#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:8 -msgid "days" -msgstr "दिन" - -#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:12 -msgid "Team" -msgstr "" - -#: gnowsys_ndf/ndf/templates/registration/activation_email_subject.txt:3 -msgid "Account registration for" -msgstr "खाता पजीकृकरण" - #: gnowsys_ndf/ndf/templates/registration/login.html:28 msgid "Log In" msgstr "लॉग-इन" -#: gnowsys_ndf/ndf/templates/registration/login.html:35 -#: gnowsys_ndf/ndf/templates/registration/login_clix.html:39 +#: gnowsys_ndf/ndf/templates/registration/login.html:35 gnowsys_ndf/ndf/templates/registration/login_clix.html:39 msgid "Either your email or password is incorrect !" msgstr "ईमेल अथवा पासवर्ड गलत है" -#: gnowsys_ndf/ndf/templates/registration/login.html:72 -#: gnowsys_ndf/ndf/templates/registration/login_clix.html:99 +#: gnowsys_ndf/ndf/templates/registration/login.html:72 gnowsys_ndf/ndf/templates/registration/login_clix.html:99 #, fuzzy msgid "Recover your password" msgstr "पासवर्ड भूल गए?" -#: gnowsys_ndf/ndf/templates/registration/login.html:72 -#: gnowsys_ndf/ndf/templates/registration/login_clix.html:99 +#: gnowsys_ndf/ndf/templates/registration/login.html:72 gnowsys_ndf/ndf/templates/registration/login_clix.html:99 msgid "Forgot your password?" msgstr "पासवर्ड भूल गए?" -#: gnowsys_ndf/ndf/templates/registration/login.html:95 -#: gnowsys_ndf/ndf/templates/registration/login_clix.html:111 +#: gnowsys_ndf/ndf/templates/registration/login.html:95 gnowsys_ndf/ndf/templates/registration/login_clix.html:111 #, fuzzy msgid "Click here to register" msgstr "देखने के लिए क्ल्कि करें" @@ -6405,9 +5215,7 @@ msgid "You have sucessfully logged out." msgstr "सफलतापूर्वक लॉग-आउट हो गया है" #: gnowsys_ndf/ndf/templates/registration/logout.html:12 -msgid "" -"Thank you for visiting our website. Please return often to take advantage of " -"this platform." +msgid "Thank you for visiting our website. Please return often to take advantage of this platform." msgstr "हमारी वेबसाइट देखने के लिए धन्यवाद। कृपया इस मंच का लाभ उठाने के लिए अक्सर लौटें।" #: gnowsys_ndf/ndf/templates/registration/password_change_done.html:7 @@ -6430,28 +5238,23 @@ msgstr "पासवर्ड सफलतापूर्वक रीसेट msgid "Confirm password reset" msgstr "पासवर्ड रीसेट की पुष्टि करें" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:43 -#: gnowsys_ndf/ndf/templates/registration/registration_form.html:63 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:43 gnowsys_ndf/ndf/templates/registration/registration_form.html:63 msgid "Either both passwords doesn't match or doesn't satisfy the criteria!!!" msgstr "पासवर्ड कसौटी के अनुरूप नहीं है" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:66 -#: gnowsys_ndf/ndf/templates/registration/registration_form.html:110 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:66 gnowsys_ndf/ndf/templates/registration/registration_form.html:110 msgid "NOTE: " msgstr "टिप्पणी:" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:68 -#: gnowsys_ndf/ndf/templates/registration/registration_form.html:112 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:68 gnowsys_ndf/ndf/templates/registration/registration_form.html:112 msgid "Password must contain atleast 8 characters," msgstr "पासवर्ड में कम-से-कम 8 कैरेक्टर का होना आवश्यक है" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:69 -#: gnowsys_ndf/ndf/templates/registration/registration_form.html:113 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:69 gnowsys_ndf/ndf/templates/registration/registration_form.html:113 msgid "One uppercase letter, and" msgstr "कम-से-कम एक अपरकेस अक्षर और" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:70 -#: gnowsys_ndf/ndf/templates/registration/registration_form.html:114 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:70 gnowsys_ndf/ndf/templates/registration/registration_form.html:114 msgid "One numeral" msgstr "कम-से-कम एक संख्या" @@ -6460,7 +5263,6 @@ msgid "Set password" msgstr "सेट पासवर्ड" #: gnowsys_ndf/ndf/templates/registration/password_reset_done.html:4 -#: gnowsys_ndf/ndf/templates/registration/password_reset_email_subject.txt:2 msgid "Password reset" msgstr "पासवर्ड रीसेट" @@ -6473,23 +5275,15 @@ msgid "An email has been sent to email-ID associated with your account." msgstr "आपके खाते से संबंधित ईमेल आई.डी. पर ईमेल भेजी गई है" #: gnowsys_ndf/ndf/templates/registration/password_reset_done.html:13 -msgid "" -"Please be patient; the delivery of email may be delayed. Remember to confirm " -"that the email that you entered is correct and to check your junk or spam " -"folder or filter if you do not receive this email." -msgstr "" -"कृपया धैर्य रखें; ईमेल की डिलीवरी में देरी हो सकती है यह पुष्टि करने के लिए याद रखें कि आपने " -"जो ईमेल दर्ज किया है वह सही है और यदि आप यह ईमेल प्राप्त नहीं करते हैं तो अपने ट्रेश या " -"स्पैम फ़ोल्डर या फ़िल्टर की जांच करें।" +msgid "Please be patient; the delivery of email may be delayed. Remember to confirm that the email that you entered is correct and to check your junk or spam folder or filter if you do not receive this email." +msgstr "कृपया धैर्य रखें; ईमेल की डिलीवरी में देरी हो सकती है यह पुष्टि करने के लिए याद रखें कि आपने जो ईमेल दर्ज किया है वह सही है और यदि आप यह ईमेल प्राप्त नहीं करते हैं तो अपने ट्रेश या स्पैम फ़ोल्डर या फ़िल्टर की जांच करें।" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:4 msgid "Greetings " msgstr "अभिनंदन" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:5 -msgid "" -"You are receiving this email because you requested that your password be " -"reset on" +msgid "You are receiving this email because you requested that your password be reset on" msgstr "आप यह ईमेल प्राप्त कर रहे हैं क्योंकि आपने अनुरोध किया है कि आपका पासवर्ड रीसेट हो" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:7 @@ -6497,12 +5291,8 @@ msgid "If you do not wish to reset your password, please ignore this message." msgstr "यदि आप अपना पासवर्ड रीसेट नहीं करना चाहते हैं, तो कृपया इस संदेश को अनदेखा करें।" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:9 -msgid "" -"To reset your password, please click the following link, or copy and paste " -"it into your web browser:" -msgstr "" -"अपना पासवर्ड रीसेट करने के लिए, कृपया निम्न लिंक पर क्लिक करें, या उसे अपने वेब ब्राउज़र में " -"कॉपी और पेस्ट करें:" +msgid "To reset your password, please click the following link, or copy and paste it into your web browser:" +msgstr "अपना पासवर्ड रीसेट करने के लिए, कृपया निम्न लिंक पर क्लिक करें, या उसे अपने वेब ब्राउज़र में कॉपी और पेस्ट करें:" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:12 msgid "Your username, in case you've forgotten:" @@ -6516,23 +5306,16 @@ msgstr "आदर सहित" msgid "Management" msgstr "प्रबंधन" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:5 -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:72 -#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:5 -#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:65 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:5 gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:72 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:5 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:65 msgid "Reset password" msgstr "रीसेट पासवर्ड" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:30 -#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:30 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:30 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:30 msgid "Forgot password? Don't worry..." msgstr "पासवर्ड भूल गये हैं? चिंता न करें" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:37 -#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:37 -msgid "" -"Password reset instructions will be sent to the email address associated " -"with your account." +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:37 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:37 +msgid "Password reset instructions will be sent to the email address associated with your account." msgstr "पासवर्ड रीसेट निर्देश अापके खाते से जुडे ईमेल पर भेजे जाएंगे।" #: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:44 @@ -6543,13 +5326,11 @@ msgstr "अवैध ईमेल आई.डी., कृपया फिर स msgid "Please type your valid " msgstr "कृपया वैध ईमेल भरें" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:59 -#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:52 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:59 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:52 msgid "email address" msgstr "ईमेल पता" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:59 -#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:52 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:59 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:52 msgid " below:" msgstr "नीचे" @@ -6574,9 +5355,7 @@ msgid "Account creation successful." msgstr "खाता सफलतापूर्वक सृजित हो चुका है" #: gnowsys_ndf/ndf/templates/registration/registration_complete.html:12 -msgid "" -"Please activate your account by clicking on the link provided in the email " -"you will receive." +msgid "Please activate your account by clicking on the link provided in the email you will receive." msgstr "कृपया प्राप्त ईमेल में दिए गए लिंक पर क्लिक करके अपना खाता सक्रिय करें।" #: gnowsys_ndf/ndf/templates/registration/registration_form.html:5 @@ -6679,42 +5458,40 @@ msgstr "सूचना सेटिंग" msgid "notice settings" msgstr "सूचना सेटिंग" -#: gnowsys_ndf/notification/templates/notification/email_body.txt:1 -#, python-format -msgid "" -"You have received the following notice from %(current_site)s:\n" -"\n" -"%(message)s\n" -"\n" -"To see other notices or change how you receive notifications, please go to " -"%(default_http_protocol)s://%(current_site)s%(notices_url)s\n" -msgstr "" - -#: gnowsys_ndf/notification/templates/notification/full.html:1 -#: gnowsys_ndf/notification/templates/notification/full.txt:1 -#: gnowsys_ndf/notification/templates/notification/notice.html:1 -#: gnowsys_ndf/notification/templates/notification/short.txt:1 +#: gnowsys_ndf/notification/templates/notification/full.html:1 gnowsys_ndf/notification/templates/notification/notice.html:1 #, fuzzy, python-format msgid "%(notice)s" msgstr "सूचना" #: gnowsys_ndf/notification/templates/notification/notice_settings.html:15 -#, fuzzy, python-format -msgid "" -"\n" -"

    \n" +#, python-format +msgid "

    \n" " Note:\n" -" You do not have a verified email address to which notices can be " -"sent. Add one now.\n" +" You do not have a verified email address to which notices can be sent. Add one now.\n" "

    \n" " " msgstr "%(email_url)s आपके पास एक सत्यापित ईमेल नहीं है जिसमें सूचनाएं भेजी जा सकती हैं।" -#~ msgid "Home" -#~ msgstr "हॉम " +#~ msgid "You have received the following notice from the site: " +#~ msgstr "आपको निम्नलिखित सुचनाएँ साइट से प्राप्त हुई हैं:" + +#~ msgid "Activity notification from" +#~ msgstr "से क्रियाकलाप अधिसूचना" -#~ msgid "Mark as Raw Material" -#~ msgstr "रॉ मटीरियल के रूप में चिह्नित करें" +#~ msgid "You (or someone pretending to be you) have asked to register an account at " +#~ msgstr "आपने यहाँ पंजीकरण के लिए आग्रह किया" + +#~ msgid "If this wasn't you, please ignore this email and your details will be removed from our records." +#~ msgstr "यदि आप ये नहीं थे, कृपया इस ईमेल को अनंदेखा करें। आपका ईमेल पता मिटा दिया जायेगा" + +#~ msgid "To activate this account, please click the following link within the next" +#~ msgstr "प्राप्त लिंक केवल दो दिन तक ही वैध रहेगा। कृपया इस अवधि में खाता सक्रिय करें" + +#~ msgid "days" +#~ msgstr "दिन" + +#~ msgid "Account registration for" +#~ msgstr "खाता पजीकृकरण" #~ msgid "List Members" #~ msgstr "सदस्यों की सूची" @@ -6722,20 +5499,14 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "Sorry, No resources found with selected filters" #~ msgstr "क्षमा करें, चयनित फिल्टर से कोई संसाधन प्राप्त नहीं हुआ" -#~ msgid "" -#~ "This group doesn't have any files. Be the first to upload a file!" -#~ msgstr "" -#~ "इस समूह में कोई फाइल नहीं है। आप फाइल अपलोड करने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgid "This group doesn't have any files. Be the first to upload a file!" +#~ msgstr "इस समूह में कोई फाइल नहीं है। आप फाइल अपलोड करने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "View Source Code" #~ msgstr "सोर्स कोड देखें" -#~ msgid "" -#~ "All material is licensed under a Creative Commons Attribution-Share Alike " -#~ "3.0 Unported License unless mentioned otherwise." -#~ msgstr "" -#~ "सभी सामग्री क्रियेटिव कॉमन्स ऍट्रीब्यूशन शेयर-अलाइक 3.0 के अनपोर्टेड लाइसेंस के अंतर्गत " -#~ "आती है, यदि कोई अन्य लाइसेंस अंकित नहीं है तो" +#~ msgid "All material is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License unless mentioned otherwise." +#~ msgstr "सभी सामग्री क्रियेटिव कॉमन्स ऍट्रीब्यूशन शेयर-अलाइक 3.0 के अनपोर्टेड लाइसेंस के अंतर्गत आती है, यदि कोई अन्य लाइसेंस अंकित नहीं है तो" #~ msgid "Powered by" #~ msgstr "पावर्ड बाइ" @@ -6752,11 +5523,8 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "Contributor" #~ msgstr "योगदानकर्ता" -#~ msgid "" -#~ "This group doesn't have any forums. Be the first to create a forum!
    " -#~ msgstr "" -#~ "इस समूह में कोई फोरम नहीं है। आप फोरम बनाने वाले प्रथम व्यक्ति हो सकते हैं<" +#~ msgid "This group doesn't have any forums. Be the first to create a forum!" +#~ msgstr "इस समूह में कोई फोरम नहीं है। आप फोरम बनाने वाले प्रथम व्यक्ति हो सकते हैं<" #~ msgid "Top Contributors" #~ msgstr "सर्वोच्च योगदानकर्ता" @@ -6839,8 +5607,7 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "Create New Blog" #~ msgstr "नया बनायें" -#~ msgid "" -#~ " This group doesn't have any pages. Be the first to create a Page!" +#~ msgid " This group doesn't have any pages. Be the first to create a Page!" #~ msgstr "इस समूह में कोई पृष्ठ नहीं है। आप पृष्ठ बनाने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "Page Details" @@ -6851,11 +5618,7 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "" #~ "

    \n" -#~ " A Quiz is a sequenced collection of quiz items. A quiz-" -#~ "item can be any of the three types: short response, single-" -#~ "choice and multiple-choice. " -#~ "submit response and match the following types will be " -#~ "implemented very soon.\n" +#~ " A Quiz is a sequenced collection of quiz items. A quiz-item can be any of the three types: short response, single-choice and multiple-choice. submit response and match the following types will be implemented very soon.\n" #~ "

    \n" #~ "

    You can build a quiz in two ways:\n" #~ "

      \n" @@ -6864,10 +5627,7 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ "

    \n" #~ msgstr "" #~ "

    \n" -#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी " -#~ "आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें " -#~ "और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" +#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" #~ "

    \n" #~ "

    आप दो तरह से एक प्रश्नोत्तरी का निर्माण कर सकते हैं:\n" #~ "

      \n" @@ -6882,11 +5642,8 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgstr "प्रश्नोत्तरी प्रश्न संपादक" #~ msgid "" -#~ "

      A Quiz is a sequenced collection of " -#~ "quiz items. A quiz-item can be any of the three types: " -#~ "short response, single-choice and " -#~ "multiple-choice. submit response and " -#~ "match the following types will be implemented very soon.

      \n" +#~ "

      A Quiz is a sequenced collection of quiz items. A quiz-item can be any of the three types: short response, single-choice and multiple-choice. submit response and match the following types will be implemented very " +#~ "soon.

      \n" #~ "

      You can build a quiz in two ways:\n" #~ "

        \n" #~ "\t
      1. By editing, Quiz node (via collection-list).
      2. \n" @@ -6894,10 +5651,7 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ "

      \n" #~ msgstr "" #~ "

      \n" -#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी " -#~ "आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें " -#~ "और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" +#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" #~ "

      \n" #~ "

      आप दो तरह से एक प्रश्नोत्तरी का निर्माण कर सकते हैं:\n" #~ "

        \n" @@ -6921,19 +5675,13 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgstr "प्रश्नोत्तरी" #~ msgid "This group doesn't have any quiz. Be the first to create a Quiz!" -#~ msgstr "" -#~ "इस समूह में कोई प्रश्नोत्तरी नहीं है। आप प्रश्नोत्तरी बनाने वाले प्रथम व्यक्ति हो सकते " -#~ "हैं" +#~ msgstr "इस समूह में कोई प्रश्नोत्तरी नहीं है। आप प्रश्नोत्तरी बनाने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "Quiz Items" #~ msgstr "प्रश्नोत्तरी प्रश्न" -#~ msgid "" -#~ "This group doesn't have any quiz-items. Be the first to create a Quiz-" -#~ "Item!" -#~ msgstr "" -#~ "इस समूह में कोई प्रश्नोत्तरी प्रश्न नहीं है। आप प्रश्नोत्तरी प्रश्न बनाने वाले प्रथम " -#~ "व्यक्ति हो सकते हैं" +#~ msgid "This group doesn't have any quiz-items. Be the first to create a Quiz-Item!" +#~ msgstr "इस समूह में कोई प्रश्नोत्तरी प्रश्न नहीं है। आप प्रश्नोत्तरी प्रश्न बनाने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "Not rated yet!" #~ msgstr "अभी तक सृजन" @@ -6941,12 +5689,8 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "resources" #~ msgstr "संसाधन" -#~ msgid "" -#~ "Tag is like a keyword or category label.

        Tags helps you " -#~ "to find photos, videos, files and pages which have something in common." -#~ msgstr "" -#~ "टैग कूटसंकेत के समान है.

        टैग का प्रयोग करके खोजा जा सकता है.

        " +#~ msgid "Tag is like a keyword or category label.

        Tags helps you to find photos, videos, files and pages which have something in common.

        " +#~ msgstr "टैग कूटसंकेत के समान है.

        टैग का प्रयोग करके खोजा जा सकता है.

        " #~ msgid "Attachment(s):" #~ msgstr "संलगन" @@ -6966,12 +5710,8 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "next" #~ msgstr "आगे" -#~ msgid "" -#~ "You (or someone pretending to be you) have asked to register an account " -#~ "at our site." -#~ msgstr "" -#~ "लगता है, आपका सक्रियता संकेत शब्द सही नहीं है। कृपया यू.आर.एल. जाँचें अथवा पासवर्ड " -#~ "रीसेट करें" +#~ msgid "You (or someone pretending to be you) have asked to register an account at our site." +#~ msgstr "लगता है, आपका सक्रियता संकेत शब्द सही नहीं है। कृपया यू.आर.एल. जाँचें अथवा पासवर्ड रीसेट करें" #~ msgid "Management Team" #~ msgstr "प्रबंधन टीम" @@ -6999,13 +5739,11 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "" #~ "\n" -#~ "
        There are no %(grps_category)s created yet.Be the first to " -#~ "create a %(grps_category)s!
        \n" +#~ "
        There are no %(grps_category)s created yet.Be the first to create a %(grps_category)s!
        \n" #~ "\t" #~ msgstr "" #~ "\n" -#~ "
        अभी तक कोई पार्टनर नहीं बनाया गया है। आप पार्टनर बनाने वाले प्रथम " -#~ "व्यक्ति हो सकते हैं
        " +#~ "
        अभी तक कोई पार्टनर नहीं बनाया गया है। आप पार्टनर बनाने वाले प्रथम व्यक्ति हो सकते हैं
        " #~ msgid "Be the first to create a" #~ msgstr "सृजन करने वाले आप प्रथम हो" @@ -7025,20 +5763,14 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "Announced Courses" #~ msgstr "घोषित पाठ्यक्रम" -#~ msgid "" -#~ "This group doesn't have any courses. Be the first to create a course!" -#~ msgstr "" -#~ "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgid "This group doesn't have any courses. Be the first to create a course!" +#~ msgstr "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "You are not enrolled to any course yet." #~ msgstr "आप अभी तक किसी भी पाठ्यक्रम में नामांकित नहीं हैं" -#~ msgid "" -#~ "This group doesn't have any Announced courses. Be the first to " -#~ "Announce a course!" -#~ msgstr "" -#~ "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgid "This group doesn't have any Announced courses. Be the first to Announce a course!" +#~ msgstr "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "This group doesn't have any Announced courses." #~ msgstr "इस समूह में कोई पाठ्यक्रम नहीं है" diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html index 745fc5eac9..e125f30bd4 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html @@ -66,7 +66,7 @@

      1. - + {% trans "Repository" %}
      2. diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/repository.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/repository.html index 9a6d316d62..bb3d5e4b43 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/repository.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/repository.html @@ -34,6 +34,7 @@ >

        + {% if each_gapp.altnames %} {% trans each_gapp.altnames %} {% elif each_gapp.name %} From a7fad629d71ff2423f10374f4096e83dc4ed33d4 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Fri, 30 Mar 2018 09:26:17 +0530 Subject: [PATCH 454/766] Task is renamed as Calendar on lms_secondary_header --- .../conf/locale/hi/LC_MESSAGES/django.po | 2561 ++++++++++++----- .../gnowsys_ndf/ndf/templates/ndf/lms.html | 2 +- .../ndf/templates/ndf/widget_interaction.html | 2 +- 3 files changed, 1913 insertions(+), 652 deletions(-) diff --git a/gnowsys-ndf/conf/locale/hi/LC_MESSAGES/django.po b/gnowsys-ndf/conf/locale/hi/LC_MESSAGES/django.po index 388a0f10b4..8614547bac 100644 --- a/gnowsys-ndf/conf/locale/hi/LC_MESSAGES/django.po +++ b/gnowsys-ndf/conf/locale/hi/LC_MESSAGES/django.po @@ -2,17 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-31 12:54+0530\n" +"POT-Creation-Date: 2018-03-29 18:52+0530\n" "PO-Revision-Date: 2018-03-29 13:17+0530\n" +"Last-Translator: \n" +"Language-Team: \n" "Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.0.6\n" -"Last-Translator: \n" -"Language-Team: \n" -#: gnowsys_ndf/ndf/templates/error_base.html:79 gnowsys_ndf/ndf/templates/ndf/gheader.html:87 gnowsys_ndf/ndf/templates/ndf/header.html:50 +#: gnowsys_ndf/ndf/templates/error_base.html:79 +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:87 +#: gnowsys_ndf/ndf/templates/ndf/header.html:52 msgid "Menu" msgstr "मेन्यू" @@ -28,31 +30,48 @@ msgstr "स्टूडियो" msgid "invalid captcha Try Again" msgstr "अमान्य कैप्चा, दोबारा प्रयास करें " -#: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:8 gnowsys_ndf/ndf/templates/ndf/beta.html:8 gnowsys_ndf/ndf/templates/ndf/file.html:291 -msgid "Files Listed below are already uploaded. Duplicate file uploads are not possible." +#: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:8 +#: gnowsys_ndf/ndf/templates/ndf/beta.html:8 +#: gnowsys_ndf/ndf/templates/ndf/file.html:291 +msgid "" +"Files Listed below are already uploaded. Duplicate file uploads are not " +"possible." msgstr "नीचे दी गई फ़ाइलें पहले ही अपलोड की जा चुकी हैं। डुप्लिकेट फ़ाइल अपलोड संभव नहीं है" -#: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:18 gnowsys_ndf/ndf/templates/ndf/beta.html:38 +#: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:18 +#: gnowsys_ndf/ndf/templates/ndf/beta.html:38 msgid "File Name" msgstr "फ़ाइल नाम" -#: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:19 gnowsys_ndf/ndf/templates/ndf/DocumentList.html:25 gnowsys_ndf/ndf/templates/ndf/card_group.html:64 gnowsys_ndf/ndf/templates/ndf/version_page.html:35 +#: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:19 +#: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:25 +#: gnowsys_ndf/ndf/templates/ndf/card_group.html:64 +#: gnowsys_ndf/ndf/templates/ndf/version_page.html:35 msgid "View" msgstr "देखें" -#: gnowsys_ndf/ndf/templates/ndf/ImageDashboard.html:131 gnowsys_ndf/ndf/templates/ndf/course_event_group.html:148 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:524 gnowsys_ndf/ndf/templates/ndf/videoDashboard.html:131 -msgid "Only image files can be uploaded" +#: gnowsys_ndf/ndf/templates/ndf/ImageDashboard.html:131 +#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:148 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:524 +#: gnowsys_ndf/ndf/templates/ndf/videoDashboard.html:131 +#, fuzzy +msgid "Only image files can be uploaded!" msgstr "केवल इमेज फ़ाइलों को अपलोड किया जा सकता है" -#: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:90 gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:65 +#: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:90 +#: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:65 msgid "Editing Event:" msgstr "इवेंट संपादन" -#: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:93 gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:67 +#: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:93 +#: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:67 msgid "Create a New" msgstr "नया बनाएँ" -#: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:93 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:129 gnowsys_ndf/ndf/templates/ndf/mis_report.html:56 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:339 +#: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:93 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:129 +#: gnowsys_ndf/ndf/templates/ndf/mis_report.html:56 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:339 msgid "Event" msgstr "इवेंट" @@ -72,87 +91,182 @@ msgstr "शेष समय (मिनट में)" msgid "Alloted time (in minutes):" msgstr "सुनिश्चित अवधि (मिनट में)" -#: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:263 gnowsys_ndf/ndf/templates/ndf/mis_report.html:57 +#: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:263 +#: gnowsys_ndf/ndf/templates/ndf/mis_report.html:57 msgid "Voluntary Teacher" msgstr "ऐच्छिक शिक्षक" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:41 gnowsys_ndf/ndf/templates/ndf/filehive.html:41 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:41 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:41 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:41 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:41 msgid "Uploading" msgstr "अपलोड हो रहा है" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:42 gnowsys_ndf/ndf/templates/ndf/filehive.html:42 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:42 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:42 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:42 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:42 msgid "You can upload files of any format to your group library." msgstr "समूह लाईब्रेरी में किसी भी प्रारूप में फाईल अपलोड कर सकते हैं" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:57 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:57 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:57 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:57 msgid "New File" msgstr "नई फ़ाइल" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:84 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:39 gnowsys_ndf/ndf/templates/ndf/action_panel.html:171 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:417 gnowsys_ndf/ndf/templates/ndf/file.html:229 gnowsys_ndf/ndf/templates/ndf/filehive.html:53 -#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:285 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:84 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:84 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:39 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:171 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:417 +#: gnowsys_ndf/ndf/templates/ndf/file.html:229 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:53 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:285 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:84 msgid "Upload File" msgstr "फ़ाइल अपलोड करें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:87 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:42 gnowsys_ndf/ndf/templates/ndf/filehive.html:55 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:87 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:87 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:42 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:55 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:87 msgid "Choose File" msgstr "फ़ाइल चुनें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:89 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:48 gnowsys_ndf/ndf/templates/ndf/filehive.html:57 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:89 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:89 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:48 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:57 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:89 msgid "Title of File" msgstr "फ़ाइल शीर्षक" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:94 gnowsys_ndf/ndf/templates/ndf/add_asset.html:189 gnowsys_ndf/ndf/templates/ndf/create_unit.html:92 gnowsys_ndf/ndf/templates/ndf/filehive.html:62 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:94 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:189 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:80 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:62 msgid "Select Language" msgstr "भाषा चुनें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:108 gnowsys_ndf/ndf/templates/ndf/filehive.html:77 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:108 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:108 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:77 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:108 msgid "Add Description" msgstr "विवरण जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:112 gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:124 gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:135 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:66 gnowsys_ndf/ndf/templates/ndf/course_create_note.html:21 gnowsys_ndf/ndf/templates/ndf/course_create_note.html:33 -#: gnowsys_ndf/ndf/templates/ndf/filehive.html:89 gnowsys_ndf/ndf/templates/ndf/filehive.html:100 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:112 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:124 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:135 gnowsys_ndf/ndf/templates/ndf/widget_tags.html:33 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:112 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:124 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:135 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:66 +#: gnowsys_ndf/ndf/templates/ndf/course_create_note.html:21 +#: gnowsys_ndf/ndf/templates/ndf/course_create_note.html:33 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:89 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:100 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:112 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:124 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:135 +#: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:33 #: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:45 msgid "Add Tag" msgstr "टैग जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:124 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:70 gnowsys_ndf/ndf/templates/ndf/course_create_note.html:21 gnowsys_ndf/ndf/templates/ndf/filehive.html:89 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:124 gnowsys_ndf/ndf/templates/ndf/widget_tags.html:33 -msgid "Tags help identify similiar work easily. Just add tag text and click on [Add Tag] button" -msgstr "टैग एक जैसे काम को आसानी से पहचानने में सहायता करता है। टैग टेक्स्ट जोड़ें और 'टैग जोड़ें' बटन पर क्लिक करें" - -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:131 gnowsys_ndf/ndf/templates/ndf/course_create_note.html:29 gnowsys_ndf/ndf/templates/ndf/filehive.html:96 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:131 gnowsys_ndf/ndf/templates/ndf/widget_tags.html:41 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:124 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:70 +#: gnowsys_ndf/ndf/templates/ndf/course_create_note.html:21 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:89 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:124 +#: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:33 +#, fuzzy +msgid "" +"Tags help identify similiar work easily. Just add tag text and click Add Tag " +"button" +msgstr "" +"टैग एक जैसे काम को आसानी से पहचानने में सहायता करता है। टैग टेक्स्ट जोड़ें और 'टैग जोड़ें' बटन " +"पर क्लिक करें" + +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:131 +#: gnowsys_ndf/ndf/templates/ndf/course_create_note.html:29 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:96 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:131 +#: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:41 msgid "Add tag text and click on [Add Tag] button" msgstr "टैग टेक्स्ट जोड़ें और 'टैग जोड़ें' बटन पर क्लिक करें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:144 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:94 gnowsys_ndf/ndf/templates/ndf/filehive.html:109 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:144 gnowsys_ndf/ndf/templates/ndf/widget_tags.html:94 -msgid "Non empty tags can have only alphanumeric characters, dash(-) and spaces." +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:144 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:94 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:109 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:144 +#: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:94 +msgid "" +"Non empty tags can have only alphanumeric characters, dash(-) and spaces." msgstr "टैग में केवल अल्फ़ान्यूमेरिक वर्ण, डैश (-) और रिक्त स्थान का प्रयोग किया जा सकता है " -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:169 gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:182 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:134 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:89 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:96 -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:215 gnowsys_ndf/ndf/templates/ndf/filehive.html:134 gnowsys_ndf/ndf/templates/ndf/filehive.html:147 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:89 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:96 -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:222 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:100 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:107 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:169 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:182 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:169 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:182 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:134 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:89 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:96 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:215 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:134 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:147 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:89 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:96 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:222 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:100 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:107 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:169 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:182 msgid "Public" msgstr "सार्वजनिक" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:172 gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:186 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:136 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:92 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:99 -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:218 gnowsys_ndf/ndf/templates/ndf/filehive.html:137 gnowsys_ndf/ndf/templates/ndf/filehive.html:151 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:92 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:99 -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:225 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:103 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:110 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:177 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:172 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:172 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:186 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:136 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:92 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:99 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:218 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:137 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:151 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:92 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:99 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:225 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:103 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:110 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:177 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:172 #: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:186 msgid "Private" msgstr "निजी" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:199 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:273 gnowsys_ndf/ndf/templates/ndf/filehive.html:164 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:199 -msgid "Depending on the size of file/s and your Internet speed, upload process may take time. Please do not close this window." -msgstr "फ़ाइलों के आकार और आपकी इंटरनेट की गति के आधार पर, अपलोड प्रक्रिया को समय लग सकता है। कृपया इस विंडो को बंद न करें।" +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:199 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:273 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:164 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:199 +msgid "" +"Depending on the size of file/s and your Internet speed, upload process may " +"take time. Please do not close this window." +msgstr "" +"फ़ाइलों के आकार और आपकी इंटरनेट की गति के आधार पर, अपलोड प्रक्रिया को समय लग सकता है। " +"कृपया इस विंडो को बंद न करें।" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:201 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:274 gnowsys_ndf/ndf/templates/ndf/filehive.html:166 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:201 -msgid "Please upload videos in webm format. If you upload videos of other formats, it will take longer to publish them." -msgstr "कृपया वीडियो वेबएम प्रारूप में अपलोड करें। यदि आप किसी अन्य प्रारूप में वीडियो अपलोड करते हैं तो उनके प्रकाशन में अधिक समय लग सकता है।" +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:201 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:274 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:166 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:201 +msgid "" +"Please upload videos in webm format. If you upload videos of other formats, " +"it will take longer to publish them." +msgstr "" +"कृपया वीडियो वेबएम प्रारूप में अपलोड करें। यदि आप किसी अन्य प्रारूप में वीडियो अपलोड करते " +"हैं तो उनके प्रकाशन में अधिक समय लग सकता है।" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:205 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:290 gnowsys_ndf/ndf/templates/ndf/filehive.html:170 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:205 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:205 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:290 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:170 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:205 msgid "You are not an authorised user. Please login to upload files." msgstr "आप अधिकृत उपयोगकर्ता नहीं हैं। कृपया फाईल अपलोड करने से पहले लॉगिन करें।" -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:57 gnowsys_ndf/ndf/templates/ndf/file_statistics.html:68 gnowsys_ndf/ndf/templates/ndf/visualize.html:168 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:57 +#: gnowsys_ndf/ndf/templates/ndf/file_statistics.html:68 +#: gnowsys_ndf/ndf/templates/ndf/visualize.html:168 msgid "Details" msgstr "विवरण" @@ -160,14 +274,33 @@ msgstr "विवरण" msgid "Add one tag at a time" msgstr "एक समय में एक टैग जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:78 gnowsys_ndf/ndf/templates/ndf/buddy.html:76 gnowsys_ndf/ndf/templates/ndf/event.html:58 gnowsys_ndf/ndf/templates/ndf/event.html:64 gnowsys_ndf/ndf/templates/ndf/mis_base.html:63 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:343 -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:362 gnowsys_ndf/ndf/templates/ndf/resource_view.html:37 gnowsys_ndf/ndf/templates/ndf/shelf.html:14 gnowsys_ndf/ndf/templates/ndf/unit_structure.html:19 gnowsys_ndf/ndf/templates/ndf/unit_structure.html:23 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:78 +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:76 +#: gnowsys_ndf/ndf/templates/ndf/event.html:58 +#: gnowsys_ndf/ndf/templates/ndf/event.html:64 +#: gnowsys_ndf/ndf/templates/ndf/mis_base.html:63 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:343 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:362 +#: gnowsys_ndf/ndf/templates/ndf/resource_view.html:37 +#: gnowsys_ndf/ndf/templates/ndf/shelf.html:14 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:19 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:23 msgid "Add" msgstr "जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:127 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:125 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:241 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:386 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:391 -#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:137 gnowsys_ndf/ndf/templates/ndf/location_widget.html:4 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:310 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:279 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:125 -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:248 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:133 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:197 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:127 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:125 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:241 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:386 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:391 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:137 +#: gnowsys_ndf/ndf/templates/ndf/location_widget.html:4 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:310 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:279 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:125 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:248 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:133 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:197 msgid "Add Location" msgstr "लोकेशन जोड़ें" @@ -192,18 +325,28 @@ msgid "What constitutes OER" msgstr "ओईआर क्या है " #: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:20 -msgid "You can upload files of any format in group library" +#, fuzzy +msgid "You can upload files of any format" msgstr "समूह लाईब्रेरी में किसी भी प्रारूप में फाईल अपलोड कर सकते हैं" #: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:24 -msgid "All files get uploaded under the CC BY-SA licence (This license lets others remix, tweak, and build upon your work even for commercial purposes, as long as they credit you and license their new creations under the identical terms) unless you chose a different licence" -msgstr "CC BY-SA लाइसेंस के तहत सभी फाइलें अपलोड की जा रही हैं। यह लाइसेंस दूसरों को रीमिक्स, ट्विक करने और व्यावसायिक कार्यों के लिए भी अपने काम का निर्माण करने की अनुमति देता है, जब तक कि आप एक अलग लाइसेंस नहीं चुनते हैं, तब तक इसका प्रयोग करके नया काम तैयार कर सकते हैं। " +msgid "" +"All files get uploaded under the CC BY-SA licence (This license lets others " +"remix, tweak, and build upon your work even for commercial purposes, as long " +"as they credit you and license their new creations under the identical " +"terms) unless you chose a different licence" +msgstr "" +"CC BY-SA लाइसेंस के तहत सभी फाइलें अपलोड की जा रही हैं। यह लाइसेंस दूसरों को रीमिक्स, " +"ट्विक करने और व्यावसायिक कार्यों के लिए भी अपने काम का निर्माण करने की अनुमति देता है, " +"जब तक कि आप एक अलग लाइसेंस नहीं चुनते हैं, तब तक इसका प्रयोग करके नया काम तैयार कर सकते " +"हैं। " #: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:27 msgid "Please visit" msgstr "कृपया अवश्य पधारें " -#: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:27 gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:26 +#: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:27 +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:26 msgid "and" msgstr "और" @@ -211,35 +354,68 @@ msgstr "और" msgid "to learn more about licenses" msgstr "लाइसेंस के बारे में अधिक जानकारी के लिए" -#: gnowsys_ndf/ndf/templates/ndf/User_Activity.html:9 gnowsys_ndf/ndf/templates/ndf/lms.html:119 +#: gnowsys_ndf/ndf/templates/ndf/User_Activity.html:9 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:115 msgid "Activities" msgstr "क्रियाकलाप" -#: gnowsys_ndf/ndf/templates/ndf/User_Activity.html:66 gnowsys_ndf/ndf/templates/ndf/uDashboard.html:204 +#: gnowsys_ndf/ndf/templates/ndf/User_Activity.html:66 +#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:204 msgid "No Recent Activities" msgstr "हाल ही में कोई क्रियाकलाप नहीं है" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:82 gnowsys_ndf/ndf/templates/ndf/activity_player.html:349 gnowsys_ndf/ndf/templates/ndf/admin_fields.html:57 gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:30 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:335 -#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:337 gnowsys_ndf/ndf/templates/ndf/data_review_tbody.html:12 gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:59 gnowsys_ndf/ndf/templates/ndf/gevent_base.html:149 gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:118 gnowsys_ndf/ndf/templates/ndf/lms.html:205 -#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:182 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:184 gnowsys_ndf/ndf/templates/ndf/moderation_data_review.html:47 gnowsys_ndf/ndf/templates/ndf/unit_structure.html:287 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:82 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:354 +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:57 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:30 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:335 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:337 +#: gnowsys_ndf/ndf/templates/ndf/data_review_tbody.html:12 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:59 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:149 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:118 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:197 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:182 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:184 +#: gnowsys_ndf/ndf/templates/ndf/moderation_data_review.html:47 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:287 msgid "Yes" msgstr "हाँ" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:85 gnowsys_ndf/ndf/templates/ndf/activity_player.html:350 gnowsys_ndf/ndf/templates/ndf/admin_fields.html:58 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:341 gnowsys_ndf/ndf/templates/ndf/data_review_tbody.html:13 -#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:60 gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:121 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:188 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:190 gnowsys_ndf/ndf/templates/ndf/moderation_data_review.html:48 -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:134 gnowsys_ndf/ndf/templates/ndf/unit_structure.html:290 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:85 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:355 +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:58 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:341 +#: gnowsys_ndf/ndf/templates/ndf/data_review_tbody.html:13 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:60 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:121 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:188 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:190 +#: gnowsys_ndf/ndf/templates/ndf/moderation_data_review.html:48 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:134 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:290 msgid "No" msgstr "नहीं" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:110 gnowsys_ndf/ndf/templates/ndf/action_panel.html:112 gnowsys_ndf/ndf/templates/ndf/action_panel.html:118 gnowsys_ndf/ndf/templates/ndf/action_panel.html:122 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:110 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:112 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:118 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:122 msgid " Edit" msgstr "संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:124 gnowsys_ndf/ndf/templates/ndf/action_panel.html:129 gnowsys_ndf/ndf/templates/ndf/action_panel.html:167 gnowsys_ndf/ndf/templates/ndf/action_panel.html:191 gnowsys_ndf/ndf/templates/ndf/action_panel.html:450 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:124 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:129 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:167 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:191 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:450 msgid "You are not authorized for this action" msgstr "आप इस एक्शन के लिए अधिकृत नहीं हैं" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:139 gnowsys_ndf/ndf/templates/ndf/action_panel.html:141 gnowsys_ndf/ndf/templates/ndf/mis_details.html:420 gnowsys_ndf/ndf/templates/ndf/mis_details.html:425 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:139 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:141 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:420 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:425 msgid "Publish" msgstr "प्रकाशित" @@ -251,14 +427,34 @@ msgstr "नियंत्रण" msgid "Published" msgstr "प्रकाशित" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:158 gnowsys_ndf/ndf/templates/ndf/version_page.html:39 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:158 +#: gnowsys_ndf/ndf/templates/ndf/version_page.html:39 msgid "History" msgstr "इतिहास" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:162 gnowsys_ndf/ndf/templates/ndf/action_panel.html:164 gnowsys_ndf/ndf/templates/ndf/action_panel.html:167 gnowsys_ndf/ndf/templates/ndf/action_panel.html:348 gnowsys_ndf/ndf/templates/ndf/buddy.html:86 gnowsys_ndf/ndf/templates/ndf/course_detail.html:77 -#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:112 gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:29 gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:17 gnowsys_ndf/ndf/templates/ndf/discussion.html:88 gnowsys_ndf/ndf/templates/ndf/discussion.html:270 gnowsys_ndf/ndf/templates/ndf/forumdetails.html:123 -#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:149 gnowsys_ndf/ndf/templates/ndf/gevent_base.html:70 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:109 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:126 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:117 -#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:60 gnowsys_ndf/ndf/templates/ndf/lms.html:198 gnowsys_ndf/ndf/templates/ndf/note_page.html:79 gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:304 gnowsys_ndf/ndf/templates/ndf/replytwistrep.html:174 gnowsys_ndf/ndf/templates/ndf/thread_details.html:102 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:162 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:164 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:167 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:348 +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:86 +#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:77 +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:112 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:89 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:17 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:88 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:270 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:123 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:149 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:70 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:109 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:126 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:118 +#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:60 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:190 +#: gnowsys_ndf/ndf/templates/ndf/note_page.html:79 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:304 +#: gnowsys_ndf/ndf/templates/ndf/replytwistrep.html:174 +#: gnowsys_ndf/ndf/templates/ndf/thread_details.html:102 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:526 msgid "Delete" msgstr "डिलीट" @@ -267,11 +463,16 @@ msgstr "डिलीट" msgid "Publish this resource in other group/s" msgstr "इस संसाधन को अन्य समूह में प्रकाशित करें" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:179 gnowsys_ndf/ndf/templates/ndf/action_panel.html:191 gnowsys_ndf/ndf/templates/ndf/add_asset.html:62 gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:4 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:179 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:191 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:62 +#: gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:4 msgid "Cross Publish" msgstr "क्रॉस प्रकाशित करें" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:182 gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:59 gnowsys_ndf/ndf/templates/ndf/mis_details.html:455 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:182 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:59 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:455 msgid "Select Groups" msgstr "समूह चुनें" @@ -283,11 +484,16 @@ msgstr "चयनित समूह सेव करें " msgid "keyword or label to categorize" msgstr "वर्गीकृत करने के लिए कीवर्ड या लेबल" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:235 gnowsys_ndf/ndf/templates/ndf/card.html:51 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:407 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:295 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:235 +#: gnowsys_ndf/ndf/templates/ndf/card.html:51 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:407 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:295 msgid "Tags" msgstr "टैग्स" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:249 gnowsys_ndf/ndf/templates/ndf/course_about.html:124 gnowsys_ndf/ndf/templates/ndf/ggallerymodal.html:114 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:249 +#: gnowsys_ndf/ndf/templates/ndf/course_about.html:124 +#: gnowsys_ndf/ndf/templates/ndf/ggallerymodal.html:114 msgid "No tags defined yet!" msgstr "कोई टैग अभी तक परिभाषित नहीं है" @@ -311,7 +517,11 @@ msgstr "रेटिंग" msgid "Click to view the location" msgstr "लोकेशन देखने के लिए क्ल्कि करें" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:277 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:214 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:218 gnowsys_ndf/ndf/templates/ndf/mis_details.html:133 gnowsys_ndf/ndf/templates/ndf/wikidata.html:107 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:277 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:214 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:218 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:133 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:107 msgid "Location" msgstr "लोकेशन " @@ -319,15 +529,23 @@ msgstr "लोकेशन " msgid "Graphs" msgstr "ग्राफ" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:300 gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:222 gnowsys_ndf/ndf/templates/ndf/mis_details.html:126 gnowsys_ndf/ndf/templates/ndf/wikidata.html:98 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:300 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:222 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:126 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:98 msgid "Collection Graph" msgstr "संग्रह ग्राफ" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:304 gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:225 gnowsys_ndf/ndf/templates/ndf/mis_details.html:129 gnowsys_ndf/ndf/templates/ndf/wikidata.html:101 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:304 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:225 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:129 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:101 msgid "Dependency Graph" msgstr "निर्भरता ग्राफ" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:311 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:129 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:311 +#: gnowsys_ndf/ndf/templates/ndf/header.html:418 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:129 msgid "Help" msgstr "सहायता" @@ -343,7 +561,8 @@ msgstr "नया बनायें" msgid "New Partner" msgstr "नए पार्टर्नस" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:344 gnowsys_ndf/ndf/templates/ndf/group.html:51 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:344 +#: gnowsys_ndf/ndf/templates/ndf/group.html:51 msgid "New Group" msgstr "नया समूह" @@ -355,8 +574,15 @@ msgstr "डिलीट पाटनर्स" msgid "Delete Group" msgstr "डिलीट समूह " -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:362 gnowsys_ndf/ndf/templates/ndf/action_panel.html:366 gnowsys_ndf/ndf/templates/ndf/action_panel.html:370 gnowsys_ndf/ndf/templates/ndf/action_panel.html:373 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:126 -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:254 gnowsys_ndf/ndf/templates/ndf/partner_list.html:37 gnowsys_ndf/ndf/templates/ndf/task.html:64 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:187 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:362 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:366 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:370 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:373 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:126 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:254 +#: gnowsys_ndf/ndf/templates/ndf/partner_list.html:37 +#: gnowsys_ndf/ndf/templates/ndf/task.html:64 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:187 msgid "New" msgstr "नया" @@ -364,7 +590,8 @@ msgstr "नया" msgid "New Sub Partner" msgstr "नया सब-पार्टनर" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:395 gnowsys_ndf/ndf/templates/ndf/module_detail.html:36 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:395 +#: gnowsys_ndf/ndf/templates/ndf/module_detail.html:36 msgid "New SubGroup" msgstr "नया उप-समूह" @@ -380,11 +607,16 @@ msgstr "कार्यक्रम" msgid "Unsubscribe" msgstr "सदस्यता रद्द" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:440 gnowsys_ndf/ndf/templates/ndf/action_panel.html:450 gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:32 gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:49 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:440 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:450 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:32 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:49 msgid "Join" msgstr "शामिल हों" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:447 gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:30 gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:45 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:447 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:30 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:45 msgid "Joined" msgstr "शामिल हो गए" @@ -392,72 +624,109 @@ msgstr "शामिल हो गए" msgid "You are already a member of this group" msgstr "आप पहले से ही इस समूह का सदस्य हैं" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:474 gnowsys_ndf/ndf/templates/ndf/under_moderation.html:23 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:474 +#: gnowsys_ndf/ndf/templates/ndf/under_moderation.html:23 msgid "Moderate Resources" msgstr "नियंत्रित संसाधन" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:480 gnowsys_ndf/ndf/templates/ndf/program_event_group.html:18 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:480 +#: gnowsys_ndf/ndf/templates/ndf/program_event_group.html:18 msgid "Moderation Status" msgstr "मॉडरेशन स्टेटस " -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:76 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:81 msgid "Write Note" msgstr "नोट लिखें " -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:81 gnowsys_ndf/ndf/templates/ndf/activity_player.html:153 gnowsys_ndf/ndf/templates/ndf/activity_player.html:225 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:86 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:158 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:230 msgid "Previous Lesson" msgstr "पिछला पाठ" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:88 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:93 msgid "PREV" msgstr "पिछला" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:93 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:98 msgid "OF" msgstr "का" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:97 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:102 msgid "NEXT" msgstr "अगला " -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:104 gnowsys_ndf/ndf/templates/ndf/activity_player.html:162 gnowsys_ndf/ndf/templates/ndf/activity_player.html:234 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:109 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:167 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:239 msgid "Next Lesson" msgstr "अगला पाठ" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:156 gnowsys_ndf/ndf/templates/ndf/activity_player.html:228 gnowsys_ndf/ndf/templates/ndf/unit_player.html:37 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:161 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:233 +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:37 msgid "Previous Activity" msgstr "पिछला क्रियाकलाप" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:159 gnowsys_ndf/ndf/templates/ndf/activity_player.html:231 gnowsys_ndf/ndf/templates/ndf/unit_player.html:85 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:164 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:236 +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:85 msgid "Next Activity" msgstr "अगला क्रियाकलाप" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:168 gnowsys_ndf/ndf/templates/ndf/activity_player.html:240 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:173 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:245 msgid "Write a new Note" msgstr "एक नया नोट लिखें" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:291 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:296 msgid "Student Help" msgstr "छात्रा सहायता" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:294 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:299 msgid "Teacher's Help" msgstr "शिक्षक सहायता" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:299 gnowsys_ndf/ndf/templates/ndf/gevent_base.html:105 gnowsys_ndf/ndf/templates/ndf/mis_details.html:134 gnowsys_ndf/ndf/templates/ndf/wikidata.html:110 -msgid "Discuss" -msgstr "परिचर्चा" - -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:45 gnowsys_ndf/ndf/templates/ndf/course_pages.html:38 gnowsys_ndf/ndf/templates/ndf/file.html:221 gnowsys_ndf/ndf/templates/ndf/list_themes.html:35 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:45 +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:38 +#: gnowsys_ndf/ndf/templates/ndf/file.html:221 +#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:35 msgid "Actions" msgstr "एक्शन" -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:50 gnowsys_ndf/ndf/templates/ndf/add_asset.html:107 gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:70 gnowsys_ndf/ndf/templates/ndf/batch_detail.html:19 gnowsys_ndf/ndf/templates/ndf/course_details.html:50 gnowsys_ndf/ndf/templates/ndf/course_details.html:144 -#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:42 gnowsys_ndf/ndf/templates/ndf/curriculum.html:381 gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:30 gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:18 gnowsys_ndf/ndf/templates/ndf/curriculum_resources_listing.html:20 -#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:121 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:136 gnowsys_ndf/ndf/templates/ndf/forumdetails.html:116 gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:149 gnowsys_ndf/ndf/templates/ndf/gevent_base.html:44 -#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:130 gnowsys_ndf/ndf/templates/ndf/gtask_details.html:34 gnowsys_ndf/ndf/templates/ndf/gtask_details.html:161 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:121 gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:111 -#: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:115 gnowsys_ndf/ndf/templates/ndf/mis_details.html:446 gnowsys_ndf/ndf/templates/ndf/mis_details.html:469 gnowsys_ndf/ndf/templates/ndf/mis_list.html:263 gnowsys_ndf/ndf/templates/ndf/module_detail.html:33 gnowsys_ndf/ndf/templates/ndf/note_page.html:78 -#: gnowsys_ndf/ndf/templates/ndf/quiz.html:84 gnowsys_ndf/ndf/templates/ndf/quiz_details.html:124 gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:5 gnowsys_ndf/ndf/templates/ndf/task_details.html:58 gnowsys_ndf/ndf/templates/ndf/theme.html:381 gnowsys_ndf/ndf/templates/ndf/translate_detail.html:16 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:50 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:107 +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:70 +#: gnowsys_ndf/ndf/templates/ndf/batch_detail.html:19 +#: gnowsys_ndf/ndf/templates/ndf/course_details.html:50 +#: gnowsys_ndf/ndf/templates/ndf/course_details.html:144 +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:42 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:381 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:90 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:18 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_resources_listing.html:20 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:121 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:136 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:116 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:149 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:44 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:130 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:34 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:161 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:122 +#: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:111 +#: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:115 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:446 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:469 +#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:263 +#: gnowsys_ndf/ndf/templates/ndf/module_detail.html:33 +#: gnowsys_ndf/ndf/templates/ndf/note_page.html:78 +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:84 +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:124 +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:5 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:58 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:381 +#: gnowsys_ndf/ndf/templates/ndf/translate_detail.html:19 #: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:43 msgid "Edit" msgstr "संपादित करें" @@ -472,7 +741,8 @@ msgstr "मेटाडाटा जोड़ें" msgid " View Metadata" msgstr "मेटाडाटा देखें" -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:67 gnowsys_ndf/ndf/templates/ndf/add_asset.html:71 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:67 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:71 msgid "Delete Asset" msgstr "एसेट डिलीट करें " @@ -488,7 +758,7 @@ msgstr "फाइल जोड़ें" #: gnowsys_ndf/ndf/templates/ndf/add_asset.html:80 #, fuzzy -msgid "Add page" +msgid "Add page" msgstr "पृष्ठ जोड़ें" #: gnowsys_ndf/ndf/templates/ndf/add_asset.html:105 @@ -496,7 +766,8 @@ msgstr "पृष्ठ जोड़ें" msgid "Add a new" msgstr "नया पृष्ठ जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:110 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:95 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:110 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:95 #, fuzzy msgid "Resource" msgstr "संसाधन" @@ -511,9 +782,19 @@ msgstr "फोल्डर" msgid "Asset" msgstr "एसेट" -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:118 gnowsys_ndf/ndf/templates/ndf/add_asset.html:231 gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:341 gnowsys_ndf/ndf/templates/ndf/edit_forum.html:126 gnowsys_ndf/ndf/templates/ndf/gtask_details.html:258 gnowsys_ndf/ndf/templates/ndf/gtask_details.html:271 -#: gnowsys_ndf/ndf/templates/ndf/replyforum.html:103 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:322 gnowsys_ndf/ndf/templates/ndf/task_details.html:282 gnowsys_ndf/ndf/templates/ndf/task_details.html:295 gnowsys_ndf/ndf/templates/ndf/unit_structure.html:345 gnowsys_ndf/ndf/templates/ndf/unit_structure.html:347 -#: gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:19 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:118 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:233 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:341 +#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:126 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:258 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:271 +#: gnowsys_ndf/ndf/templates/ndf/replyforum.html:103 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:322 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:282 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:295 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:345 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:347 +#: gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:21 msgid "Save" msgstr "सेव करें" @@ -556,26 +837,33 @@ msgstr "एसेट का विवरण" msgid "Add tags:" msgstr "टैग जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:218 -msgid "Mark as Raw Material" -msgstr "रॉ मटीरियल के रूप में चिह्नित करें" +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:219 +#, fuzzy +msgid "Mark as Resource" +msgstr "नियंत्रित संसाधन" -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:243 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:246 #, fuzzy msgid "Enter File Name" msgstr "फ़ाइल का नाम डालें" -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:252 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:253 #, fuzzy msgid "Enter File Description" msgstr "फ़ाइल का विवरण डालें " -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:255 gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:117 gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:144 gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:168 gnowsys_ndf/ndf/templates/ndf/beta.html:25 -#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:121 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:226 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:256 +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:117 +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:144 +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:168 +#: gnowsys_ndf/ndf/templates/ndf/beta.html:25 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:121 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:226 msgid "Upload" msgstr "अपलोड" -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:272 gnowsys_ndf/ndf/templates/ndf/file.html:262 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:275 +#: gnowsys_ndf/ndf/templates/ndf/file.html:262 #, fuzzy msgid "Delete Files" msgstr "डिलीट फ़ाइल" @@ -584,17 +872,32 @@ msgstr "डिलीट फ़ाइल" msgid "Add Internal Image" msgstr "आंतरिक इमेज जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 gnowsys_ndf/ndf/templates/ndf/add_editor.html:262 gnowsys_ndf/ndf/templates/ndf/image_detail.html:4 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:349 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:247 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:262 +#: gnowsys_ndf/ndf/templates/ndf/image_detail.html:4 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:349 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:247 msgid "Image" msgstr "इमेज" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 gnowsys_ndf/ndf/templates/ndf/add_editor.html:262 gnowsys_ndf/ndf/templates/ndf/card.html:43 gnowsys_ndf/ndf/templates/ndf/create_event_group.html:385 gnowsys_ndf/ndf/templates/ndf/create_group.html:301 gnowsys_ndf/ndf/templates/ndf/gtask_details.html:265 -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:289 gnowsys_ndf/ndf/templates/ndf/translation_page.html:76 gnowsys_ndf/ndf/templates/ndf/translation_page.html:111 gnowsys_ndf/ndf/templates/ndf/translation_page.html:175 gnowsys_ndf/ndf/templates/ndf/translation_page.html:197 -#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:332 gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:41 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:262 +#: gnowsys_ndf/ndf/templates/ndf/card.html:43 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:385 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:301 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:265 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:289 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:76 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:111 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:175 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:197 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:332 +#: gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:41 msgid "Description" msgstr "विवरण" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 gnowsys_ndf/ndf/templates/ndf/add_editor.html:263 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:263 msgid "Some description" msgstr "कुछ विवरण" @@ -602,7 +905,8 @@ msgstr "कुछ विवरण" msgid "Width" msgstr "चौड़ाई" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 gnowsys_ndf/ndf/templates/ndf/add_editor.html:265 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:265 msgid "Enter width in pixel eg.600" msgstr "चौड़ाई पिक्सेल में दर्ज करें जैसे 600" @@ -650,15 +954,25 @@ msgstr "प्रकार" msgid "Author" msgstr "निर्माता" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:127 gnowsys_ndf/ndf/templates/ndf/curriculum.html:379 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:120 gnowsys_ndf/ndf/templates/ndf/list_themes.html:32 gnowsys_ndf/ndf/templates/ndf/theme.html:379 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:127 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:379 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:120 +#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:32 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:379 msgid "Creation date" msgstr "निर्माण तिथि" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:129 gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:94 gnowsys_ndf/ndf/templates/ndf/wikidata.html:207 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:129 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:94 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:207 msgid "Member of" msgstr "सदस्य" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:130 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:59 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:110 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:59 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:57 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:130 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:59 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:110 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:59 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:57 msgid "Collection" msgstr "संग्रह" @@ -670,32 +984,51 @@ msgstr "ऐट्रीब्यूट टाइप सेट" msgid "RelationType_set" msgstr "रिलेशन टाइप सेट" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:199 gnowsys_ndf/ndf/templates/ndf/curriculum.html:404 gnowsys_ndf/ndf/templates/ndf/list_themes.html:57 gnowsys_ndf/ndf/templates/ndf/quiz.html:85 gnowsys_ndf/ndf/templates/ndf/theme.html:404 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:199 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:404 +#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:57 +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:85 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:404 msgid "Translate" msgstr "अनुवाद करें" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:215 gnowsys_ndf/ndf/templates/ndf/curriculum.html:261 gnowsys_ndf/ndf/templates/ndf/mis_details.html:122 gnowsys_ndf/ndf/templates/ndf/theme.html:261 gnowsys_ndf/ndf/templates/ndf/wikidata.html:94 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:215 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:261 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:122 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:261 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:94 msgid "Graph" msgstr "ग्राफ" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:219 gnowsys_ndf/ndf/templates/ndf/mis_details.html:124 gnowsys_ndf/ndf/templates/ndf/wikidata.html:96 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:219 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:124 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:96 msgid "Concept Graph" msgstr "संकल्पना ग्राफ" -#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:56 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:329 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:331 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:365 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:367 -#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:58 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:176 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:178 +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:56 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:329 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:331 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:365 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:367 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:58 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:176 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:178 msgid "Unknown" msgstr "अज्ञात" -#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:66 gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:74 +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:66 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:74 msgid "PUBLISHED" msgstr "प्रकाशित" -#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:67 gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:75 +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:67 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:75 msgid "DRAFT" msgstr "प्रारूप" -#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:68 gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:76 +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:68 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:76 msgid "HIDDEN" msgstr "छिपा हुआ" @@ -703,33 +1036,72 @@ msgstr "छिपा हुआ" msgid "Underlying Moderation Groups:" msgstr "अंडरलाईन मोडरेशन ग्रुप" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:7 gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:60 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:7 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:60 msgid "Course Announcement " msgstr "कोर्स की घोषणा" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:58 gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:69 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:58 +#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:69 #, python-format msgid " Editing %(title_var)s: %(node_name)s " msgstr "संपादन %(title_var)s:%(node_name)s" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:68 gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:75 gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:88 gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:22 gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:22 -#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:22 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:109 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:68 +#: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:75 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:88 +#: gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:22 +#: gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:22 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:22 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:109 msgid "Fill" msgstr "भरें" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:74 gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:81 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:74 +#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:81 #, python-format msgid " %(tab_name)s " msgstr "टैब _ नाम:%(tab_name)s" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:92 gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:101 gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:192 gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:217 -#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:251 gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:262 gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:275 gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:288 gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:297 -#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:47 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:59 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:71 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:87 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:99 -#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:111 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:137 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:203 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:251 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:264 -#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:279 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:292 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:307 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:320 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:335 -#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:202 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:134 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:146 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:158 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:174 -#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:186 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:198 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:278 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:311 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:324 -#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:339 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:352 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:367 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:380 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:395 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:92 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:101 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:192 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:217 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:251 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:262 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:275 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:288 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:297 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:47 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:59 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:71 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:87 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:99 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:111 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:137 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:203 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:251 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:264 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:279 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:292 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:307 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:320 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:335 +#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:202 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:134 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:146 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:158 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:174 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:186 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:198 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:278 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:311 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:324 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:339 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:352 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:367 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:380 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:395 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:427 #, python-format msgid " %(label_val)s " @@ -743,8 +1115,17 @@ msgstr "के लिए घोषणा" msgid "Course Period" msgstr "कोर्स कालांश" +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:140 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:279 +#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:143 +#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:182 +#, fuzzy +msgid "From" +msgstr "से" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:148 gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:153 gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:192 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:148 +#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:153 +#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:192 msgid "To" msgstr "तक" @@ -756,7 +1137,8 @@ msgstr "संस्था में घोषणा" msgid "Select University" msgstr "विश्वविद्यालय चुनें" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:176 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:482 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:176 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:482 msgid "- - - Select University - - -" msgstr "विश्वविद्यालय चुनें" @@ -764,24 +1146,51 @@ msgstr "विश्वविद्यालय चुनें" msgid "Please select University" msgstr "कृपया विश्वविद्यालय चुनें" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:717 gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:217 gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:175 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:392 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:409 -#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:612 gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:275 gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:297 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:207 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:224 -#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:680 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:1270 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:717 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:217 +#: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:175 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:392 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:409 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:612 +#: gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:275 +#: gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:297 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:207 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:224 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:680 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:1270 msgid "Next" msgstr "आगे" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:723 gnowsys_ndf/ndf/templates/ndf/course_detail.html:75 gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:75 gnowsys_ndf/ndf/templates/ndf/gevent_base.html:56 gnowsys_ndf/ndf/templates/ndf/lms.html:185 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:723 +#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:75 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:75 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:56 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:177 msgid "Announce" msgstr "घोषणा करें" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:726 gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:184 gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:621 gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:284 gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:306 -#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:689 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:1279 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:726 +#: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:184 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:621 +#: gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:284 +#: gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:306 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:689 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:1279 msgid "Update" msgstr "अपडेट" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:735 gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:160 gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:193 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:388 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:402 -#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:630 gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:293 gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:315 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:203 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:217 -#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:698 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:1288 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:735 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:160 +#: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:193 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:388 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:402 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:630 +#: gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:293 +#: gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:315 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:203 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:217 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:698 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:1288 msgid "Previous" msgstr "पिछला" @@ -838,7 +1247,10 @@ msgstr "लिंक /संबंधित फाइल जोड़ें" msgid "Add Alternate File" msgstr "वैकल्पिक फाइल जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:62 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:339 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:358 gnowsys_ndf/ndf/templates/ndf/resource_view.html:33 +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:62 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:339 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:358 +#: gnowsys_ndf/ndf/templates/ndf/resource_view.html:33 #, fuzzy msgid "Add Transcript" msgstr "लिप्यन्तर जोड़ें" @@ -867,7 +1279,9 @@ msgstr "भाषा चुनें" msgid "--- Select Alternate Type ---" msgstr "वैकल्पिक प्रकार का चयन करें" -#: gnowsys_ndf/ndf/templates/ndf/assets.html:41 gnowsys_ndf/ndf/templates/ndf/assets.html:46 gnowsys_ndf/ndf/templates/ndf/assets.html:51 +#: gnowsys_ndf/ndf/templates/ndf/assets.html:41 +#: gnowsys_ndf/ndf/templates/ndf/assets.html:46 +#: gnowsys_ndf/ndf/templates/ndf/assets.html:51 #, fuzzy msgid "Add Folder" msgstr "फोल्डर जोड़ें" @@ -876,11 +1290,13 @@ msgstr "फोल्डर जोड़ें" msgid "Add Attendance" msgstr "उपस्थिति जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:30 gnowsys_ndf/ndf/templates/ndf/event_details.html:75 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:30 +#: gnowsys_ndf/ndf/templates/ndf/event_details.html:75 msgid "Attendance" msgstr "उपस्थिति" -#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:36 gnowsys_ndf/ndf/templates/ndf/batch_detail.html:42 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:36 +#: gnowsys_ndf/ndf/templates/ndf/batch_detail.html:42 msgid "Batch" msgstr "बैच" @@ -892,11 +1308,13 @@ msgstr "बैच चुनें" msgid "Majority" msgstr "बहुसंख्य" -#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:58 gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:88 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:58 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:88 msgid "Present" msgstr "उपस्थित" -#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:63 gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:89 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:63 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:89 msgid "Absent" msgstr "अनुपस्थित" @@ -908,7 +1326,8 @@ msgstr "सभी छात्र -उपस्थिति अंकित क msgid "Students Name" msgstr "छात्र/छात्रा का नाम" -#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:109 gnowsys_ndf/ndf/templates/ndf/mis_report.html:55 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:109 +#: gnowsys_ndf/ndf/templates/ndf/mis_report.html:55 msgid "Student" msgstr "छात्र/छात्रा " @@ -920,7 +1339,8 @@ msgstr "पूर्ण हुआ" msgid "Present Students" msgstr "उपस्थित छात्र/छात्रा" -#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:121 gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:129 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:121 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:129 msgid "Student " msgstr "छात्र/छात्रा" @@ -928,8 +1348,13 @@ msgstr "छात्र/छात्रा" msgid "Absent Students" msgstr "अनुपस्थित छात्र/छात्रा" -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:9 gnowsys_ndf/ndf/templates/ndf/event.html:4 gnowsys_ndf/ndf/templates/ndf/event_base.html:5 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:9 gnowsys_ndf/ndf/templates/ndf/gevent.html:4 gnowsys_ndf/ndf/templates/ndf/mis_details.html:120 -#: gnowsys_ndf/ndf/templates/ndf/test_template.html:4 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:9 +#: gnowsys_ndf/ndf/templates/ndf/event.html:4 +#: gnowsys_ndf/ndf/templates/ndf/event_base.html:5 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:9 +#: gnowsys_ndf/ndf/templates/ndf/gevent.html:4 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:120 +#: gnowsys_ndf/ndf/templates/ndf/test_template.html:3 msgid "Events" msgstr "इवेंटस" @@ -938,43 +1363,62 @@ msgstr "इवेंटस" msgid "Edit Course" msgstr "कोर्स संपादन" -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:126 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:132 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:126 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:132 #, fuzzy msgid "Edit Course Structure" msgstr "कोर्स संरचना संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:126 gnowsys_ndf/ndf/templates/ndf/course_detail.html:76 gnowsys_ndf/ndf/templates/ndf/course_details.html:29 gnowsys_ndf/ndf/templates/ndf/course_event_group.html:26 gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:76 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:126 +#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:76 +#: gnowsys_ndf/ndf/templates/ndf/course_details.html:29 +#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:26 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:76 msgid "Add Course Structure" msgstr "कोर्स संरचना जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:136 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:144 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:136 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:144 #, fuzzy msgid " Add Students" msgstr "छात्र/छात्रा शामिल करें " -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:136 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:144 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:136 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:144 #, fuzzy msgid " Add Members" msgstr "सदस्य शामिल करें " -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:141 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:148 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:141 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:148 msgid " Add Admins" msgstr "एडमिन जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:162 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:220 gnowsys_ndf/ndf/templates/ndf/gevent_base.html:91 gnowsys_ndf/ndf/templates/ndf/lms.html:47 gnowsys_ndf/ndf/templates/ndf/lms.html:76 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:162 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:220 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:91 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:47 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:72 msgid "Overview" msgstr "अवलोकन" -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:168 gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:196 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:226 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:301 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:168 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:196 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:226 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:301 #, fuzzy msgid "Course Content" msgstr "कोर्स विषयवस्तु" -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:174 gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:197 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:232 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:302 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:174 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:197 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:232 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:302 msgid "Raw Material" msgstr "रॉ मेटेरियल " -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:195 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:300 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:195 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:300 #, fuzzy msgid "About the course" msgstr "कोर्स के बारे में :" @@ -986,7 +1430,7 @@ msgstr "ऐट्रीब्यूट टाइप " #: gnowsys_ndf/ndf/templates/ndf/basic_temp.html:51 #, fuzzy -msgid "Possible Attribute Type " +msgid "PossibleAttributeType " msgstr "संभावित ऐट्रीब्यूट टाइप " #: gnowsys_ndf/ndf/templates/ndf/basic_temp.html:61 @@ -999,16 +1443,24 @@ msgstr "रिलेशन टाइप " msgid "PossibleRelationType " msgstr "संभावित रिलेशन टाइप" +#: gnowsys_ndf/ndf/templates/ndf/batch.html:5 +#, fuzzy, python-format +msgid " %(title)s " +msgstr "विकल्प" -#: gnowsys_ndf/ndf/templates/ndf/batch.html:81 gnowsys_ndf/ndf/templates/ndf/new_create_batch.html:114 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:523 +#: gnowsys_ndf/ndf/templates/ndf/batch.html:81 +#: gnowsys_ndf/ndf/templates/ndf/new_create_batch.html:114 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:523 msgid "Course Type" msgstr "कोर्स के प्रकार" -#: gnowsys_ndf/ndf/templates/ndf/batch.html:87 gnowsys_ndf/ndf/templates/ndf/new_create_batch.html:123 +#: gnowsys_ndf/ndf/templates/ndf/batch.html:87 +#: gnowsys_ndf/ndf/templates/ndf/new_create_batch.html:123 msgid "Name of Course" msgstr "कोर्स का नाम" -#: gnowsys_ndf/ndf/templates/ndf/batch.html:172 gnowsys_ndf/ndf/templates/ndf/new_create_batch.html:229 +#: gnowsys_ndf/ndf/templates/ndf/batch.html:172 +#: gnowsys_ndf/ndf/templates/ndf/new_create_batch.html:229 msgid " - - - Select course - - - " msgstr "कोर्स चुनें" @@ -1024,7 +1476,12 @@ msgstr "उपयोगकर्ता" msgid "View history " msgstr "इतिहास देखें" -#: gnowsys_ndf/ndf/templates/ndf/beta.html:21 gnowsys_ndf/ndf/templates/ndf/file_search.html:16 gnowsys_ndf/ndf/templates/ndf/header.html:521 gnowsys_ndf/ndf/templates/ndf/header.html:535 gnowsys_ndf/ndf/templates/ndf/node_search_base.html:6 gnowsys_ndf/ndf/templates/ndf/search_page.html:4 +#: gnowsys_ndf/ndf/templates/ndf/beta.html:21 +#: gnowsys_ndf/ndf/templates/ndf/file_search.html:16 +#: gnowsys_ndf/ndf/templates/ndf/header.html:528 +#: gnowsys_ndf/ndf/templates/ndf/header.html:542 +#: gnowsys_ndf/ndf/templates/ndf/node_search_base.html:6 +#: gnowsys_ndf/ndf/templates/ndf/search_page.html:4 msgid "Search" msgstr "खोजें" @@ -1058,8 +1515,12 @@ msgid "Add a buddy" msgstr "दोस्त जोड़ें" #: gnowsys_ndf/ndf/templates/ndf/buddy.html:41 -msgid "Multiple users can be logged into the platform. Just specify your color and animal and click add to join the session." -msgstr "एकाधिक उपयोगकर्ता प्लेटफॉर्म पर लॉगइन कर सकते हैं। बस अपने रंग और जानवर का चुनाव करें और सत्र में शामिल होने के लिए क्लिक करें" +msgid "" +"Multiple users can be logged into the platform. Just specify your color and " +"animal and click add to join the session." +msgstr "" +"एकाधिक उपयोगकर्ता प्लेटफॉर्म पर लॉगइन कर सकते हैं। बस अपने रंग और जानवर का चुनाव करें और " +"सत्र में शामिल होने के लिए क्लिक करें" #: gnowsys_ndf/ndf/templates/ndf/buddy.html:52 #, fuzzy @@ -1080,9 +1541,21 @@ msgstr "दूसरा चरण:" msgid "Select your animal/flower/fruit" msgstr "अपने जानवर/ फूल/ फल का चयन करें" -#: gnowsys_ndf/ndf/templates/ndf/buddy.html:75 gnowsys_ndf/ndf/templates/ndf/buddy.html:85 gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:98 gnowsys_ndf/ndf/templates/ndf/create_event_group.html:407 gnowsys_ndf/ndf/templates/ndf/create_group.html:330 gnowsys_ndf/ndf/templates/ndf/create_unit.html:175 -#: gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:29 gnowsys_ndf/ndf/templates/ndf/edit_forum.html:127 gnowsys_ndf/ndf/templates/ndf/gevent_base.html:148 gnowsys_ndf/ndf/templates/ndf/lms.html:204 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:344 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:363 -#: gnowsys_ndf/ndf/templates/ndf/resource_view.html:38 gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:21 gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:79 +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:75 +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:85 +#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:98 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:407 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:330 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:138 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:29 +#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:127 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:148 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:196 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:344 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:363 +#: gnowsys_ndf/ndf/templates/ndf/resource_view.html:38 +#: gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:23 +#: gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:79 msgid "Cancel" msgstr "रद्द करें" @@ -1122,33 +1595,45 @@ msgstr "मेरे ई-कोर्सेस" msgid "My Events" msgstr "मेरे इवेंटस" -#: gnowsys_ndf/ndf/templates/ndf/course.html:49 gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html:18 +#: gnowsys_ndf/ndf/templates/ndf/course.html:49 +#: gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html:18 msgid "Courses" msgstr "कोर्सेस " #: gnowsys_ndf/ndf/templates/ndf/course_create_edit.html:13 -msgid "

        Building of a Course

        \n" -"

        Course is a sequence of learning modules.

        " -msgstr "

        पाठ्यक्रम निर्माण

        \n" +msgid "" +"

        Building of a Course

        \n" +"

        Course is a sequence of learning modules." +"

        " +msgstr "" +"

        पाठ्यक्रम निर्माण

        \n" "

        पाठ्यक्रम पहले से तैयार क्रमबद्ध संग्रह है

        " #: gnowsys_ndf/ndf/templates/ndf/course_create_edit.html:22 msgid "Upload thumbnail : " msgstr "कोर्सेस अपलोड करें" -#: gnowsys_ndf/ndf/templates/ndf/course_create_edit.html:31 gnowsys_ndf/ndf/templates/ndf/create_event_group.html:364 gnowsys_ndf/ndf/templates/ndf/create_partner.html:137 +#: gnowsys_ndf/ndf/templates/ndf/course_create_edit.html:31 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:364 +#: gnowsys_ndf/ndf/templates/ndf/create_partner.html:137 msgid "View existing thumbnail " msgstr "मौजूदा थंबनेल देखें" -#: gnowsys_ndf/ndf/templates/ndf/course_create_note.html:119 gnowsys_ndf/ndf/templates/ndf/widget_tags.html:164 +#: gnowsys_ndf/ndf/templates/ndf/course_create_note.html:119 +#: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:164 msgid "Remove this tag" msgstr "इस टैग को हटाएँ " -#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:66 gnowsys_ndf/ndf/templates/ndf/course_details.html:65 gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:66 +#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:66 +#: gnowsys_ndf/ndf/templates/ndf/course_details.html:65 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:66 msgid "View history" msgstr "इतिहास देखें" -#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:76 gnowsys_ndf/ndf/templates/ndf/course_details.html:29 gnowsys_ndf/ndf/templates/ndf/course_event_group.html:26 gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:76 +#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:76 +#: gnowsys_ndf/ndf/templates/ndf/course_details.html:29 +#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:26 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:76 msgid "Edit Course Structure" msgstr "कोर्स संरचना संपादित करें" @@ -1157,7 +1642,8 @@ msgstr "कोर्स संरचना संपादित करें" msgid "* Note: You have not added any resources to this course yet" msgstr "नोट: आपने अभी तक इस कोर्स में कोई संसाधन नहीं जोड़ा है" -#: gnowsys_ndf/ndf/templates/ndf/course_details.html:76 gnowsys_ndf/ndf/templates/ndf/student_enroll.html:113 +#: gnowsys_ndf/ndf/templates/ndf/course_details.html:76 +#: gnowsys_ndf/ndf/templates/ndf/student_enroll.html:113 msgid "Course Details" msgstr "कोर्स विवरण" @@ -1169,11 +1655,17 @@ msgstr "कोर्स रजिस्ट्रेशन विवरण" msgid "Release Date" msgstr "रिलीज़ की तारीख" -#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:160 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:537 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:110 +#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:160 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:537 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:110 msgid "Please wait while file is Uploading..." msgstr "कृपया प्रतीक्षा करें फाईल अपलोड हो रही है" -#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:167 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:544 gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:440 gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:480 gnowsys_ndf/ndf/templates/ndf/widget_photo_upload.html:268 +#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:167 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:544 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:440 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:480 +#: gnowsys_ndf/ndf/templates/ndf/widget_photo_upload.html:268 msgid "Please select an image to set it as a profile picture !" msgstr "कृपया एक प्रोफ़ाइल पिक्चर के रूप में सेट करने के लिए तस्वीर का चयन करें" @@ -1181,7 +1673,8 @@ msgstr "कृपया एक प्रोफ़ाइल पिक्चर msgid "Unique Name: " msgstr "अद्वितीय नाम" -#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:13 gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:20 +#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:13 +#: gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:20 #, fuzzy msgid "Please enter Name" msgstr "कृपया नाम भरें" @@ -1211,7 +1704,8 @@ msgstr "टेम्पलेट चुनें" msgid "Select Template (Optional): " msgstr "टेम्पलेट चुनें (वैकल्पिक)" -#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:71 gnowsys_ndf/ndf/templates/ndf/lms.html:196 +#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:71 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:188 #, fuzzy msgid "Edit Metadata" msgstr "मेटाडाटा सम्पादित करें" @@ -1221,12 +1715,14 @@ msgstr "मेटाडाटा सम्पादित करें" msgid "Add Tags:" msgstr "टैग जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:43 gnowsys_ndf/ndf/templates/ndf/unit_player.html:57 +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:43 +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:57 #, fuzzy msgid " Edit Content" msgstr "विषय-वस्तु सम्पादित करें " -#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:44 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:125 +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:44 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:125 msgid "Interaction Settings" msgstr "इंटरैक्शन सेटिंग्स" @@ -1266,20 +1762,25 @@ msgstr "टीचेस् पेज जोड़ें" msgid "Add Help page" msgstr "सहायता पृष्ठ जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/course_units.html:104 gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:104 +#: gnowsys_ndf/ndf/templates/ndf/course_units.html:104 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:104 msgid "Unit Name: " msgstr "इकाई का नाम" -#: gnowsys_ndf/ndf/templates/ndf/course_units.html:153 gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:153 +#: gnowsys_ndf/ndf/templates/ndf/course_units.html:153 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:153 msgid "Add New Page: " msgstr "नया पृष्ठ जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/course_units.html:160 gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:160 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:287 +#: gnowsys_ndf/ndf/templates/ndf/course_units.html:160 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:160 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:287 #, fuzzy msgid "Page Type:" msgstr "पेज प्रकार" -#: gnowsys_ndf/ndf/templates/ndf/course_units.html:184 gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:184 +#: gnowsys_ndf/ndf/templates/ndf/course_units.html:184 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:184 msgid "Add New File: " msgstr "नई फ़ाइल जोड़ें" @@ -1301,11 +1802,13 @@ msgstr "कोर्स घोषणा" msgid "Create Program" msgstr "कार्यक्रम बनाएं" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:70 gnowsys_ndf/ndf/templates/ndf/create_group.html:65 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:70 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:65 msgid "Group Name" msgstr "समूह का नाम" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:74 gnowsys_ndf/ndf/templates/ndf/create_group.html:69 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:74 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:69 msgid "Enter the unique group name" msgstr "समूह को विशिष्ट नाम दें" @@ -1313,36 +1816,53 @@ msgstr "समूह को विशिष्ट नाम दें" msgid "Group Name is required and it must be a string. " msgstr "समूह का नाम आवश्यक है और यह एक स्ट्रिंग होना चाहिए" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:89 gnowsys_ndf/ndf/templates/ndf/create_group.html:84 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:89 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:84 msgid "Alternate Group Name" msgstr "समूह का वैकल्पिक नाम" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:93 gnowsys_ndf/ndf/templates/ndf/create_group.html:88 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:93 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:88 msgid "Provide display/alternate group name" msgstr "समूह का वैकल्पिक / प्रदर्शित नाम" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:108 gnowsys_ndf/ndf/templates/ndf/create_group.html:103 gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:49 gnowsys_ndf/ndf/templates/ndf/create_unit.html:138 gnowsys_ndf/ndf/templates/ndf/edit_group.html:106 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:108 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:103 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:49 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:118 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:106 msgid "Group Type" msgstr "समूह प्रकार" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:121 gnowsys_ndf/ndf/templates/ndf/create_event_group.html:147 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:121 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:147 msgid "Please select group type." msgstr "कृपया समूह प्रकार चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:133 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:113 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:230 gnowsys_ndf/ndf/templates/ndf/header.html:393 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:259 -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:113 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:237 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:124 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:189 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:133 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:113 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:230 +#: gnowsys_ndf/ndf/templates/ndf/header.html:396 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:259 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:113 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:237 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:124 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:189 msgid "Language" msgstr "भाषा" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:162 gnowsys_ndf/ndf/templates/ndf/create_group.html:154 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:162 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:154 msgid "Level of moderation" msgstr "नियंत्रण स्तर" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:168 gnowsys_ndf/ndf/templates/ndf/create_group.html:160 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:168 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:160 msgid "Select Level" msgstr "स्तर चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:177 gnowsys_ndf/ndf/templates/ndf/create_group.html:169 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:177 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:169 msgid "Please select moderation level." msgstr "कृपया नियंत्रण स्तर चुनें" @@ -1374,28 +1894,36 @@ msgstr "कृपया नामांकन की आरंभ तिथि msgid "Enrollment End Date" msgstr "नामांकन अंतिम तिथि" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:360 gnowsys_ndf/ndf/templates/ndf/create_partner.html:132 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:360 +#: gnowsys_ndf/ndf/templates/ndf/create_partner.html:132 msgid "Upload thumbnail" msgstr "थंबनेल अपलोड करें" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:441 gnowsys_ndf/ndf/templates/ndf/create_group.html:380 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:441 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:380 msgid "Group name cannot include " msgstr "समूह का नाम शामिल नहीं हो सकता" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:447 gnowsys_ndf/ndf/templates/ndf/create_group.html:386 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:447 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:386 msgid "Group name cannot be empty." msgstr "समूह का नाम रिक्त नहीं हो सकता" #: gnowsys_ndf/ndf/templates/ndf/create_forum.html:49 -msgid "

        Starting Discussions

        \n" -"

        Use a relevant topic for the forum so that interested people can join the discussion

        " -msgstr "[Starting Discussions] [Use a relevant topic for the (forum) so that interested people can join the discussion]" +msgid "" +"

        Starting Discussions

        \n" +"

        Use a relevant topic for the forum so " +"that interested people can join the discussion

        " +msgstr "" +"[Starting Discussions] [Use a relevant topic for the (forum) so that " +"interested people can join the discussion]" #: gnowsys_ndf/ndf/templates/ndf/create_forum.html:55 msgid "Create a new discussion thread" msgstr "चर्चा की एक नई कड़ी बनाएँ" -#: gnowsys_ndf/ndf/templates/ndf/create_forum.html:63 gnowsys_ndf/ndf/templates/ndf/edit_forum.html:87 +#: gnowsys_ndf/ndf/templates/ndf/create_forum.html:63 +#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:87 msgid "Forum name:" msgstr "फोरम नाम" @@ -1403,7 +1931,10 @@ msgstr "फोरम नाम" msgid "Enter the name of forum here" msgstr "फ़ोरम का नाम यहाँ दर्ज करें" -#: gnowsys_ndf/ndf/templates/ndf/create_forum.html:89 gnowsys_ndf/ndf/templates/ndf/edit_forum.html:112 gnowsys_ndf/ndf/templates/ndf/gtask_details.html:158 gnowsys_ndf/ndf/templates/ndf/task_details.html:182 +#: gnowsys_ndf/ndf/templates/ndf/create_forum.html:89 +#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:112 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:158 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:182 msgid "Description:" msgstr "विवरणः" @@ -1415,25 +1946,38 @@ msgstr "फोरम बनाएँ" msgid "Forum with same name already exist. Please choose another name" msgstr "इस नाम का फ़ोरम पहले से मौजूद है कृपया दूसरा नाम चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_forum.html:217 gnowsys_ndf/ndf/templates/ndf/edit_forum.html:301 +#: gnowsys_ndf/ndf/templates/ndf/create_forum.html:217 +#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:301 msgid "Forum name cannot be empty" msgstr "फोरम का नाम रिक्त नहीं हो सकता" #: gnowsys_ndf/ndf/templates/ndf/create_group.html:15 -msgid "\n" +#, fuzzy +msgid "" +"\n" "

        Types of Groups

        \n" "
        \n" "
        Open Groups
        \n" -"

        Open groups are ideal for projects that require a high level of collaboration and participation. Any metastudio user can join this group without prior approval

        \n" +"

        Open groups are ideal for projects that require a " +"high level of collaboration and participation. Any metastudio user can join " +"this group without prior approval

        \n" "
        Closed Groups
        \n" -"

        Closed groups are ideal for projects that require restricted access to content and documents. Users can only join after their membership request is approved or have been invited.

        " -msgstr "\n" +"

        Closed groups are ideal for projects that require " +"restricted access to content and documents. Users can only join after their " +"membership request is approved or have been invited.

        \n" +" " +msgstr "" +"\n" "

        Types of Groups

        \n" "
        \n" "
        Open Groups
        \n" -"

        खुले समूह उन परियोजनाओं के लिए आदर्श होते हैं जिनके लिए उच्च स्तर के सहयोग और भागीदारी की आवश्यकता होती है। कोई भी मेटास्टऑडियो उपयोगकर्ता बिना किसी पूर्व अनुमोदन के इस समूह में शामिल हो सकता है \n" +"

        खुले समूह उन परियोजनाओं के लिए आदर्श होते हैं जिनके लिए उच्च " +"स्तर के सहयोग और भागीदारी की आवश्यकता होती है। कोई भी मेटास्टऑडियो उपयोगकर्ता बिना " +"किसी पूर्व अनुमोदन के इस समूह में शामिल हो सकता है \n" "

        Closed Groups
        \n" -"

        बंद किए गए समूह उन प्रोजेक्ट्स के लिए आदर्श होते हैं जिनके लिए सामग्री और दस्तावेज़ों तक प्रतिबंधित पहुंच की आवश्यकता होती है। उपयोगकर्ता केवल उनके सदस्यता अनुरोध के बाद ही शामिल हो सकते हैं या उन्हें आमंत्रित किया गया हो। " +"

        बंद किए गए समूह उन प्रोजेक्ट्स के लिए आदर्श होते हैं जिनके लिए " +"सामग्री और दस्तावेज़ों तक प्रतिबंधित पहुंच की आवश्यकता होती है। उपयोगकर्ता केवल उनके " +"सदस्यता अनुरोध के बाद ही शामिल हो सकते हैं या उन्हें आमंत्रित किया गया हो। " #: gnowsys_ndf/ndf/templates/ndf/create_group.html:31 msgid "More Edit options" @@ -1459,7 +2003,9 @@ msgstr "समूह का नाम आवश्यक है और यह msgid "Group Editing Policy" msgstr "समूह संपादन नीति" -#: gnowsys_ndf/ndf/templates/ndf/create_group.html:274 gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:85 gnowsys_ndf/ndf/templates/ndf/edit_group.html:186 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:274 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:85 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:186 msgid "Group Agency Types" msgstr "समूह संस्था प्रकार" @@ -1476,20 +2022,30 @@ msgid "Please fill a valid email" msgstr "कृपया वैध ईमेल भरें" #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:9 -msgid "\n" +msgid "" +"\n" "

        Types of Groups

        \n" "
        Open Groups
        \n" -"

        Open groups are ideal for projects that require a high level of collaboration and participation. Any metastudio user can join this group without prior approval

        \n" +"

        Open groups are ideal for projects that require a " +"high level of collaboration and participation. Any metastudio user can join " +"this group without prior approval

        \n" "
        Closed Groups
        \n" -"

        Closed groups are ideal for projects that require restricted access to content and documents. Users can only join after their membership request is approved or have been invited.

        \n" +"

        Closed groups are ideal for projects that require " +"restricted access to content and documents. Users can only join after their " +"membership request is approved or have been invited.

        \n" " " -msgstr "\n" +msgstr "" +"\n" "

        Types of Groups

        \n" "
        \n" "
        Open Groups
        \n" -"

        खुले समूह उन परियोजनाओं के लिए आदर्श होते हैं जिनके लिए उच्च स्तर के सहयोग और भागीदारी की आवश्यकता होती है। कोई भी मेटास्टऑडियो उपयोगकर्ता बिना किसी पूर्व अनुमोदन के इस समूह में शामिल हो सकता है \n" +"

        खुले समूह उन परियोजनाओं के लिए आदर्श होते हैं जिनके लिए उच्च " +"स्तर के सहयोग और भागीदारी की आवश्यकता होती है। कोई भी मेटास्टऑडियो उपयोगकर्ता बिना " +"किसी पूर्व अनुमोदन के इस समूह में शामिल हो सकता है \n" "

        Closed Groups
        \n" -"

        बंद किए गए समूह उन प्रोजेक्ट्स के लिए आदर्श होते हैं जिनके लिए सामग्री और दस्तावेज़ों तक प्रतिबंधित पहुंच की आवश्यकता होती है। उपयोगकर्ता केवल उनके सदस्यता अनुरोध के बाद ही शामिल हो सकते हैं या उन्हें आमंत्रित किया गया हो। " +"

        बंद किए गए समूह उन प्रोजेक्ट्स के लिए आदर्श होते हैं जिनके लिए " +"सामग्री और दस्तावेज़ों तक प्रतिबंधित पहुंच की आवश्यकता होती है। उपयोगकर्ता केवल उनके " +"सदस्यता अनुरोध के बाद ही शामिल हो सकते हैं या उन्हें आमंत्रित किया गया हो। " #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:20 msgid " Existing Groups:" @@ -1504,15 +2060,18 @@ msgstr "एक उप-समूह बनायें %(maingroup)s" msgid "Name of the Group" msgstr "समूह का नाम" -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:53 gnowsys_ndf/ndf/templates/ndf/edit_group.html:111 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:53 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:111 msgid "PUBLIC" msgstr "सार्वजनिक" -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:54 gnowsys_ndf/ndf/templates/ndf/edit_group.html:112 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:54 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:112 msgid "PRIVATE" msgstr "निजी" -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:55 gnowsys_ndf/ndf/templates/ndf/edit_group.html:113 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:55 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:113 msgid "ANONYMOUS" msgstr "अज्ञात" @@ -1524,11 +2083,14 @@ msgstr "संपादन योग्य_अपरिनियमित" msgid "EDITABLE_MODERATED" msgstr "संपादन योग्य_ नियंत्रित " -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:68 gnowsys_ndf/ndf/templates/ndf/edit_group.html:126 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:68 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:126 msgid "NON_EDITABLE" msgstr "गैर संपादन योग्य" -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:76 gnowsys_ndf/ndf/templates/ndf/edit_group.html:72 gnowsys_ndf/ndf/templates/ndf/edit_group.html:139 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:76 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:72 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:139 msgid "OPEN" msgstr "खुला" @@ -1540,7 +2102,8 @@ msgstr "अनुरोध द्वारा" msgid "BY_INVITATION" msgstr "निमंत्रण द्वारा" -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:97 gnowsys_ndf/ndf/templates/ndf/edit_group.html:161 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:97 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:161 msgid "Group Member Visibility" msgstr "समूह सदस्य दृश्यता" @@ -1552,7 +2115,8 @@ msgstr "सदस्य को सूचित करें" msgid "NOT_DISCLOSED_TO_MEM" msgstr "सदस्यों को सूचित न करें " -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:109 gnowsys_ndf/ndf/templates/ndf/edit_group.html:172 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:109 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:172 msgid "Group Encryption policy" msgstr "समूह एन्क्रिप्शन नीति" @@ -1560,15 +2124,18 @@ msgstr "समूह एन्क्रिप्शन नीति" msgid "NOT_ENCRYPTED" msgstr "एन्क्रिप्टेड नहीं" -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:114 gnowsys_ndf/ndf/templates/ndf/edit_group.html:178 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:114 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:178 msgid "ENCRYPTED" msgstr "एन्क्रिप्टेड" -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:119 gnowsys_ndf/ndf/templates/ndf/edit_group.html:146 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:119 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:146 msgid "Group Existance visibility" msgstr "समूह अस्तित्व दृश्यता" -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:123 gnowsys_ndf/ndf/templates/ndf/edit_group.html:151 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:123 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:151 msgid "ANNOUNCED" msgstr "घोषित" @@ -1576,11 +2143,14 @@ msgstr "घोषित" msgid "NOT_ANNOUNCED" msgstr "अघोषित" -#: gnowsys_ndf/ndf/templates/ndf/create_thread.html:41 gnowsys_ndf/ndf/templates/ndf/edit_thread.html:51 +#: gnowsys_ndf/ndf/templates/ndf/create_thread.html:41 +#: gnowsys_ndf/ndf/templates/ndf/edit_thread.html:51 msgid "Thread" msgstr "कड़ी" -#: gnowsys_ndf/ndf/templates/ndf/create_thread.html:52 gnowsys_ndf/ndf/templates/ndf/edit_thread.html:62 gnowsys_ndf/ndf/templates/ndf/forumdetails.html:44 +#: gnowsys_ndf/ndf/templates/ndf/create_thread.html:52 +#: gnowsys_ndf/ndf/templates/ndf/edit_thread.html:62 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:44 msgid "Threads are new ideas on the topic" msgstr "‘कडि़याँ’ विषय से संबंधित नए विचार हैं" @@ -1588,11 +2158,13 @@ msgstr "‘कडि़याँ’ विषय से संबंधित msgid "Add a new Thread to forum" msgstr "फोरम में एक नई कड़ी जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/create_thread.html:92 gnowsys_ndf/ndf/templates/ndf/edit_thread.html:99 +#: gnowsys_ndf/ndf/templates/ndf/create_thread.html:92 +#: gnowsys_ndf/ndf/templates/ndf/edit_thread.html:99 msgid "Thread:" msgstr "कड़ी:" -#: gnowsys_ndf/ndf/templates/ndf/create_thread.html:102 gnowsys_ndf/ndf/templates/ndf/edit_thread.html:110 +#: gnowsys_ndf/ndf/templates/ndf/create_thread.html:102 +#: gnowsys_ndf/ndf/templates/ndf/edit_thread.html:110 msgid "Thread Content: " msgstr "कड़ी की विषय-वस्तु" @@ -1600,95 +2172,124 @@ msgstr "कड़ी की विषय-वस्तु" msgid "Existing threads of forum" msgstr "फोरम की मौजुदा कडि़याँ" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:13 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:14 #, fuzzy msgid "Enter Group Name" msgstr "समूह का वैकल्पिक नाम" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:13 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:14 #, fuzzy msgid "Enter Unit Name" msgstr "बैच का नाम अंकित करें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:32 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:28 #, fuzzy -msgid "Enter alternate Name" +msgid "Enter alternate Name for Unit" msgstr "बैच का नाम अंकित करें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:46 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:40 #, fuzzy msgid "Select Module" msgstr "समूह चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:50 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:42 #, fuzzy msgid "Choose Module" msgstr "फ़ाइल चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:62 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:53 #, fuzzy msgid "Select Grade" msgstr "समूह चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:66 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:55 #, fuzzy msgid "Choose Grade" msgstr "फ़ाइल चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:78 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:68 #, fuzzy msgid "Select Subject" msgstr "संग्रह चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:82 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:70 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:120 #, fuzzy msgid "Choose Subject" msgstr "उपयोगकर्ता चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:158 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:129 +#, fuzzy +msgid "Add Tags" +msgstr "टैग जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:133 +#, fuzzy +msgid "Enter Description" +msgstr "विवरण" + +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:142 msgid "Unit with same name exists" msgstr "समान नाम वाला यूनिट मौजूद है" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:158 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:142 #, fuzzy msgid "Please choose another name" msgstr "कृपया वैध नाम भरें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:161 -#, fuzzy -msgid "Enter Description" -msgstr "विवरण" - -#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:183 gnowsys_ndf/ndf/templates/ndf/curriculum.html:340 gnowsys_ndf/ndf/templates/ndf/theme.html:183 gnowsys_ndf/ndf/templates/ndf/theme.html:340 -msgid "Are you sure you want to delete? All of the related items for the following themes also will be deleted:" +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:183 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:340 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:183 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:340 +msgid "" +"Are you sure you want to delete? All of the related items for the following " +"themes also will be deleted:" msgstr "क्या आप मिटाना चाहते हैं। ऐसा करने से सभी संबंधित वस्तुएँ भी मिट जायेंगी" -#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:261 gnowsys_ndf/ndf/templates/ndf/curriculum.html:265 gnowsys_ndf/ndf/templates/ndf/theme.html:261 gnowsys_ndf/ndf/templates/ndf/theme.html:265 gnowsys_ndf/ndf/templates/ndf/translation_page.html:65 gnowsys_ndf/ndf/templates/ndf/translation_page.html:96 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:261 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:265 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:261 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:265 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:65 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:96 #: gnowsys_ndf/ndf/templates/ndf/translation_page.html:151 msgid "Theme" msgstr "प्रसंग" -#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:265 gnowsys_ndf/ndf/templates/ndf/theme.html:265 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:265 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:265 msgid "Tree" msgstr "ट्री" -#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:269 gnowsys_ndf/ndf/templates/ndf/theme.html:269 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:269 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:269 msgid "Open" msgstr "खुला" -#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:270 gnowsys_ndf/ndf/templates/ndf/theme.html:270 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:270 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:270 msgid "Close" msgstr "बंद" -#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:377 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:118 gnowsys_ndf/ndf/templates/ndf/list_themes.html:30 gnowsys_ndf/ndf/templates/ndf/theme.html:377 gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:14 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:377 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:118 +#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:30 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:377 +#: gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:14 msgid "Title" msgstr "शीर्षक" -#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:378 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:119 gnowsys_ndf/ndf/templates/ndf/list_themes.html:31 gnowsys_ndf/ndf/templates/ndf/theme.html:378 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:378 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:119 +#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:31 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:378 msgid "Created by" msgstr "सृजक" -#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:413 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:142 gnowsys_ndf/ndf/templates/ndf/list_themes.html:68 gnowsys_ndf/ndf/templates/ndf/theme.html:413 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:413 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:142 +#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:68 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:413 msgid "No data to display" msgstr "प्रदर्शन हेतु विषय नहीं हैं" @@ -1700,56 +2301,78 @@ msgstr "विशिष्ट संपादन सीखने के उद msgid "Create a new specific learning objective " msgstr "एक नया विशिष्ट शिक्षण उद्देश्य बनाएं" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:50 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:50 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:50 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:50 msgid "View: " msgstr "देखें:" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:77 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:77 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:77 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:77 msgid " Name " msgstr "नाम" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:79 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:206 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:89 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:79 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:213 -#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:90 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:165 gnowsys_ndf/ndf/templates/ndf/translation_page.html:98 gnowsys_ndf/ndf/templates/ndf/translation_page.html:102 -msgid "Please give your page a descriptive name. It's helpful for others and for yourself." +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:79 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:206 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:89 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:79 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:213 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:90 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:165 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:98 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:102 +msgid "" +"Please give your page a descriptive name. It's helpful for others and for " +"yourself." msgstr "अपने पृष्ठ को एक विवरणात्मक नाम दें जो आपके और दूसरों के लिए सहायक होगा" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:84 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:84 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:95 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:170 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:84 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:84 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:95 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:170 msgid "Privacy" msgstr "गोपनीयता" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:154 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:161 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:154 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:161 msgid "Theme Name" msgstr "प्रसंग नाम" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:169 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:176 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:169 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:176 msgid "+ Add Topic" msgstr "प्रकरण जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:173 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:180 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:173 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:180 msgid "Topic Name" msgstr "प्रकरण नाम" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:4 gnowsys_ndf/ndf/templates/ndf/curriculum_listing.html:4 gnowsys_ndf/ndf/templates/ndf/lms.html:66 gnowsys_ndf/ndf/templates/ndf/lms.html:102 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:6 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_listing.html:4 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:62 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:98 #, fuzzy msgid "Topic Map" msgstr "प्रकरण नाम" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:129 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:250 #, fuzzy msgid "Curriculum Name" msgstr "फोरम नाम" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:132 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:253 #, fuzzy msgid "Curriculum Description" msgstr "विवरण" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:132 gnowsys_ndf/ndf/templates/ndf/unit_structure.html:332 gnowsys_ndf/ndf/templates/ndf/unit_structure.html:337 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:253 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:332 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:337 #, fuzzy msgid "optional" msgstr "विकल्प" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:135 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:256 msgid "Save Curriculum" msgstr "पाठ्यक्रम सहेजें" @@ -1763,7 +2386,9 @@ msgid "Are you sure want to delete?" msgstr "क्या आप वाकई डिलीटकरना चाहते हैं?" #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:88 -msgid "Are you sure you want to delete? All of the following related items also will be deleted:" +msgid "" +"Are you sure you want to delete? All of the following related items also " +"will be deleted:" msgstr "क्या आप मिटाना चाहते हैं। ऐसा करने से सभी संबंधित वस्तुएँ भी मिट जायेंगी" #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:236 @@ -1778,11 +2403,16 @@ msgstr "अपलोड की गई फाइल" msgid "content:" msgstr "विषय-वस्तुः" -#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:427 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:326 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:427 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:326 msgid "Content" msgstr "विषय-वस्तु" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:91 gnowsys_ndf/ndf/templates/ndf/discussion.html:273 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:104 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:121 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:112 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:91 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:273 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:104 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:121 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:113 #: gnowsys_ndf/ndf/templates/ndf/reply_to_reply.html:82 msgid "Reply" msgstr "जवाब दें" @@ -1791,58 +2421,95 @@ msgstr "जवाब दें" msgid "Enter text here." msgstr "यहाँ लिखें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:189 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:193 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:233 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:222 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:189 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:193 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:233 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:225 msgid "Login to start discussion" msgstr "परिचर्चा करने की पहल करें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:232 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:239 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:280 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:269 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:232 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:239 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:280 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:272 msgid "Login to start discussion." msgstr "परिचर्चा करने की पहल करें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:240 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:248 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:289 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:278 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:240 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:248 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:289 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:281 msgid "Begin Discussion" msgstr "परिचर्चा आरंभ करें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:241 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:249 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:241 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:249 msgid "Comment" msgstr "टिप्पणी" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:245 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:253 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:245 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:253 msgid "Join Discussion" msgstr "परिचर्चा से जुड़ें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:334 gnowsys_ndf/ndf/templates/ndf/discussion.html:342 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:349 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:357 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:391 -#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:399 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:378 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:386 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:334 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:342 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:349 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:357 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:391 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:399 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:381 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:389 msgid "Please provide the reply content." msgstr "कृपया उत्तर सामग्री प्रदान करें।" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:357 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:384 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:426 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:413 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:357 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:384 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:426 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:416 msgid "Along with this reply, total of" msgstr "इस उत्तर के साथ, कुल मिलाकर" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:357 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:384 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:426 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:413 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:357 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:384 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:426 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:416 msgid "replies would get deleted.\\nClick " msgstr "जवाब हटाए जाएंगे। \\ n क्लिक करें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:361 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:388 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:430 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:417 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:361 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:388 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:430 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:420 msgid "Are you sure to delete this reply ?\\nClick " msgstr "क्या आप इस उत्तर को हटाना चाहते हैं? \\ क्लिक करें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:387 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:414 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:456 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:443 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:387 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:414 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:456 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:446 msgid "To delete this reply, you need to be login and author of this reply." -msgstr "इस जवाब को मिटाने के लिए, आपको इस जवाब का लेखक होना तथा लॉगिन करना आवश्यक है" +msgstr "" +"इस जवाब को मिटाने के लिए, आपको इस जवाब का लेखक होना तथा लॉगिन करना आवश्यक है" #: gnowsys_ndf/ndf/templates/ndf/document_detail.html:9 msgid "download" msgstr "डाउनलोड" -#: gnowsys_ndf/ndf/templates/ndf/document_edit.html:5 gnowsys_ndf/ndf/templates/ndf/image_edit.html:5 gnowsys_ndf/ndf/templates/ndf/video_edit.html:5 +#: gnowsys_ndf/ndf/templates/ndf/document_edit.html:5 +#: gnowsys_ndf/ndf/templates/ndf/image_edit.html:5 +#: gnowsys_ndf/ndf/templates/ndf/video_edit.html:5 msgid "Editor" msgstr "संपादक" -#: gnowsys_ndf/ndf/templates/ndf/document_edit.html:6 gnowsys_ndf/ndf/templates/ndf/image_edit.html:6 -msgid "

        You can upload files of any format to your group library. Also edit the details regarding the same.

        " -msgstr "

        समूह लाईब्रेरी में किसी भी प्रारूप में फाईल अपलोड कर सकते हैं, विवरण को संपादित करें" +#: gnowsys_ndf/ndf/templates/ndf/document_edit.html:6 +#: gnowsys_ndf/ndf/templates/ndf/image_edit.html:6 +msgid "" +"

        You can upload files of any " +"format to your group library. Also edit the details regarding the same.

        " +msgstr "" +"

        समूह लाईब्रेरी में किसी भी प्रारूप में फाईल अपलोड कर सकते हैं, विवरण को संपादित करें" #: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:51 msgid "Select from following drawer: " @@ -1860,6 +2527,13 @@ msgstr "खोज करने के लिए कम से कम 3 वर् msgid "No content of selected type !" msgstr "चयनित प्रकार की कोई भी विषय वस्तु उपलब्ध नहीं है।" +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:309 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:174 +#: gnowsys_ndf/ndf/templates/ndf/group.html:120 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:234 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:258 +msgid "by" +msgstr "द्वारा" #: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:309 msgid "on" @@ -1873,7 +2547,10 @@ msgstr "सभी को दाएं पर ले जाएं" msgid "Move ALL to Left" msgstr "सभी को बाएं ओर ले जाएं" -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:408 gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:434 gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:577 gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:591 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:408 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:434 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:577 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:591 msgid "Nothing to move." msgstr "कुछ भी नहीं मिला" @@ -1882,9 +2559,11 @@ msgid "eBooks" msgstr "ई-पुस्तकें" #: gnowsys_ndf/ndf/templates/ndf/ebook.html:77 -msgid " \n" +msgid "" +" \n" "

        \n" -"
        Each eBook is a collection of chapter files.\n" +"
        Each eBook is a collection of " +"chapter files.\n" "
        \n" " " msgstr "प्रत्येक ई-पुस्तक अध्याय फ़ाइलों का एक संग्रह है" @@ -1894,8 +2573,10 @@ msgid "Are you sure you want to cancel edit" msgstr "क्या आप वाकई संपादन को रद्द करना चाहते हैं?" #: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:73 -msgid "

        Existing Discussion

        \n" -"

        Use a relevant topic for the Forum so that people interested can join the discussion.

        " +msgid "" +"

        Existing Discussion

        \n" +"

        Use a relevant topic for the " +"Forum so that people interested can join the discussion.

        " msgstr "फोरम के लिए एक ऐसा विषय चुने जिसमें लोग भाग लेना चाहें" #: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:79 @@ -1906,7 +2587,9 @@ msgstr "फोरम को संपादित करें" msgid "Forum Name" msgstr "फोरम नाम" -#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:126 gnowsys_ndf/ndf/templates/ndf/forumdetails.html:107 gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:136 +#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:126 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:107 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:136 msgid "Forum" msgstr "फोरम" @@ -1927,11 +2610,13 @@ msgstr "%(name)s के सेटिंग बदलने के लिए य msgid "Subscription policy" msgstr "सदस्यता नीति" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:73 gnowsys_ndf/ndf/templates/ndf/edit_group.html:140 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:73 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:140 msgid "BY REQUEST" msgstr "अनुरोध द्वारा" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:74 gnowsys_ndf/ndf/templates/ndf/edit_group.html:141 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:74 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:141 msgid "BY INVITATION" msgstr "निमंत्रण द्वारा" @@ -1985,8 +2670,13 @@ msgstr "संपादित करें" msgid "Edit Thread " msgstr "कड़ी संपादन करें" -#: gnowsys_ndf/ndf/templates/ndf/event_base.html:89 gnowsys_ndf/ndf/templates/ndf/footer.html:30 gnowsys_ndf/ndf/templates/ndf/gevent_base.html:41 gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:99 gnowsys_ndf/ndf/templates/ndf/header.html:482 gnowsys_ndf/ndf/templates/ndf/lms.html:151 -#: gnowsys_ndf/ndf/templates/ndf/lms.html:155 gnowsys_ndf/ndf/templates/ndf/quiz_details.html:43 +#: gnowsys_ndf/ndf/templates/ndf/event_base.html:89 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:19 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:41 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:99 +#: gnowsys_ndf/ndf/templates/ndf/header.html:489 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:147 +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:43 msgid "About" msgstr "बारे में" @@ -1999,7 +2689,11 @@ msgstr "आरंभ" msgid "NoteBook" msgstr "ई-पुस्तक" -#: gnowsys_ndf/ndf/templates/ndf/event_base.html:103 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:244 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:304 gnowsys_ndf/ndf/templates/ndf/lms.html:53 gnowsys_ndf/ndf/templates/ndf/lms.html:89 +#: gnowsys_ndf/ndf/templates/ndf/event_base.html:103 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:244 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:304 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:54 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:86 msgid "Gallery" msgstr "गेलरी" @@ -2007,19 +2701,28 @@ msgstr "गेलरी" msgid "Following are the Notes added: " msgstr "यह नोट्स जोड़े गए हैं:" -#: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:181 gnowsys_ndf/ndf/templates/ndf/page_list.html:85 gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:5 gnowsys_ndf/ndf/templates/ndf/term.html:36 +#: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:181 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:85 +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:5 +#: gnowsys_ndf/ndf/templates/ndf/term.html:36 msgid "Create" msgstr "सृजित करें" -#: gnowsys_ndf/ndf/templates/ndf/event_details.html:74 gnowsys_ndf/ndf/templates/ndf/mis_details.html:119 gnowsys_ndf/ndf/templates/ndf/wikidata.html:91 +#: gnowsys_ndf/ndf/templates/ndf/event_details.html:74 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:119 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:91 msgid "Read" msgstr "पढ़ें" -#: gnowsys_ndf/ndf/templates/ndf/event_list.html:18 gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:16 -msgid "Are you sure you want to delete? All of the following related items also will be deleted!" +#: gnowsys_ndf/ndf/templates/ndf/event_list.html:18 +#: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:16 +msgid "" +"Are you sure you want to delete? All of the following related items also " +"will be deleted!" msgstr "क्या आप डिलीट करना चाहते हैं। ऐसा करने से सभी संबंधित वस्तुएँ भी डिलीट हो जायेंगी" -#: gnowsys_ndf/ndf/templates/ndf/event_list.html:98 gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:153 +#: gnowsys_ndf/ndf/templates/ndf/event_list.html:98 +#: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:153 msgid "This group doesn't have a registered" msgstr "इस समूह में कोई पंजीकृत नहीं है" @@ -2028,7 +2731,8 @@ msgstr "इस समूह में कोई पंजीकृत नही msgid " Create Course" msgstr "पाठ्यक्रम का नाम" -#: gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html:23 gnowsys_ndf/ndf/templates/ndf/header.html:117 +#: gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html:23 +#: gnowsys_ndf/ndf/templates/ndf/header.html:120 msgid "Workspaces" msgstr "कार्यस्थान" @@ -2050,7 +2754,8 @@ msgstr "कार्यस्थान प्रदर्शन क्रम" msgid "SAVE" msgstr "सेव" -#: gnowsys_ndf/ndf/templates/ndf/file.html:84 gnowsys_ndf/ndf/templates/ndf/page_list.html:77 +#: gnowsys_ndf/ndf/templates/ndf/file.html:84 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:77 msgid "Collections" msgstr "संग्रह" @@ -2074,7 +2779,8 @@ msgstr "ऑडियो" msgid "Images" msgstr "इमेज" -#: gnowsys_ndf/ndf/templates/ndf/file.html:181 gnowsys_ndf/ndf/templates/ndf/file.html:207 +#: gnowsys_ndf/ndf/templates/ndf/file.html:181 +#: gnowsys_ndf/ndf/templates/ndf/file.html:207 msgid "Videos" msgstr "वीडियो" @@ -2099,11 +2805,19 @@ msgstr "फाईल सांख्यिकी" msgid "this file is already uploaded please choose different file" msgstr "यह फाइल अपलोड की गई है कृपया अन्य फाइल चुने" -#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:7 gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:13 gnowsys_ndf/ndf/templates/ndf/group.html:74 gnowsys_ndf/ndf/templates/ndf/group.html:79 gnowsys_ndf/ndf/templates/ndf/pandoracollection.html:10 gnowsys_ndf/ndf/templates/ndf/pandoracollection.html:17 +#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:7 +#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:13 +#: gnowsys_ndf/ndf/templates/ndf/group.html:74 +#: gnowsys_ndf/ndf/templates/ndf/group.html:79 +#: gnowsys_ndf/ndf/templates/ndf/pandoracollection.html:10 +#: gnowsys_ndf/ndf/templates/ndf/pandoracollection.html:17 msgid "Search Results:" msgstr "खोज परिणामः" -#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:7 gnowsys_ndf/ndf/templates/ndf/forum.html:80 gnowsys_ndf/ndf/templates/ndf/group.html:74 gnowsys_ndf/ndf/templates/ndf/page_list.html:127 +#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:7 +#: gnowsys_ndf/ndf/templates/ndf/forum.html:80 +#: gnowsys_ndf/ndf/templates/ndf/group.html:74 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:127 msgid "Found" msgstr "मिल गया" @@ -2111,7 +2825,8 @@ msgstr "मिल गया" msgid "This group doesn't have any collections." msgstr "इस समूह में कोई संग्रह नहीं है" -#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:130 gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:138 +#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:130 +#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:138 msgid "Sorry, No such files found." msgstr "क्षमा करें, ऐसी कोई भी फाइल नहीं मिली है" @@ -2137,7 +2852,8 @@ msgstr "टैग्स" #: gnowsys_ndf/ndf/templates/ndf/file_search.html:53 msgid "No file found. Please try using some other keyword" -msgstr "कोई फाइल नहीं प्राप्त हुई है। कृपया अन्य संकेतशब्द (keyword) से प्रयास करें।" +msgstr "" +"कोई फाइल नहीं प्राप्त हुई है। कृपया अन्य संकेतशब्द (keyword) से प्रयास करें।" #: gnowsys_ndf/ndf/templates/ndf/file_statistics.html:58 msgid "Bar-Chart" @@ -2147,7 +2863,8 @@ msgstr "बार चार्ट" msgid "Pie" msgstr "पाई" -#: gnowsys_ndf/ndf/templates/ndf/file_statistics.html:61 gnowsys_ndf/ndf/templates/ndf/uDashboard.html:26 +#: gnowsys_ndf/ndf/templates/ndf/file_statistics.html:61 +#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:26 msgid "Activity Ratings" msgstr "क्रियाकलाप रेटिंग" @@ -2159,7 +2876,12 @@ msgstr "कुल क्रियाकलाप रेटिंग" msgid "Filter Resources" msgstr "संसाधन" -#: gnowsys_ndf/ndf/templates/ndf/filters.html:133 gnowsys_ndf/ndf/templates/ndf/filters.html:154 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:307 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:312 gnowsys_ndf/ndf/templates/ndf/student_list.html:207 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:687 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:133 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:154 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:307 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:312 +#: gnowsys_ndf/ndf/templates/ndf/student_list.html:207 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:687 msgid "Select" msgstr "चुनें" @@ -2171,7 +2893,8 @@ msgstr "फिल्टर्स" msgid "No values for the key" msgstr "कुंजी के लिए कोई मान नहीं है" -#: gnowsys_ndf/ndf/templates/ndf/filters.html:420 gnowsys_ndf/ndf/templates/ndf/filters.html:498 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:420 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:498 msgid "Remove this filter" msgstr "इस फिल्टर को हटायें" @@ -2183,44 +2906,65 @@ msgstr "पहले से ही लागू है" msgid "Please select the proper filter first" msgstr "कृपया संस्था चुनें" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:31 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:15 +msgid "Quick Links" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/footer.html:20 msgid "Partners" msgstr "पार्टर्नस" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:32 gnowsys_ndf/ndf/templates/ndf/group.html:12 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:21 +#: gnowsys_ndf/ndf/templates/ndf/group.html:12 msgid "Groups" msgstr "समूह" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:33 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:22 msgid "Terms of Service" msgstr "सेवा की शर्तें" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:34 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:23 msgid "Privacy Policy" msgstr "गोपनीयता नीति" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:35 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:24 msgid "Contribute" msgstr "योगदान करें" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:36 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:25 msgid "Contact" msgstr "संपर्क करें" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:38 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:27 msgid "Issues" msgstr "मुद्दे" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:40 gnowsys_ndf/ndf/templates/ndf/task.html:67 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:190 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:28 +msgid "Sitemap" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/footer.html:29 +#: gnowsys_ndf/ndf/templates/ndf/task.html:67 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:190 msgid "Feedback" msgstr "प्रतिक्रिया" +#: gnowsys_ndf/ndf/templates/ndf/footer.html:39 +#, fuzzy +msgid "Other Links" +msgstr "अन्य विवरण" + +#: gnowsys_ndf/ndf/templates/ndf/footer.html:58 +msgid "Connect With Us" +msgstr "" + #: gnowsys_ndf/ndf/templates/ndf/forum.html:34 #, fuzzy msgid "Forums" msgstr "फोरम" -#: gnowsys_ndf/ndf/templates/ndf/forum.html:44 gnowsys_ndf/ndf/templates/ndf/forumdetails.html:64 +#: gnowsys_ndf/ndf/templates/ndf/forum.html:44 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:64 msgid "Create Forum" msgstr "फोरम बनाएँ" @@ -2266,22 +3010,31 @@ msgstr "नवीनतम क्रियाकलाप" #: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:206 msgid "This forum dosen't have any threads. Be the first to create a thread" -msgstr "इस समूह में कोई प्रश्नोत्तरी प्रश्न नहीं है। आप प्रश्नोत्तरी प्रश्न बनाने वाले प्रथम व्यक्ति हो सकते हैं" +msgstr "" +"इस समूह में कोई प्रश्नोत्तरी प्रश्न नहीं है। आप प्रश्नोत्तरी प्रश्न बनाने वाले प्रथम व्यक्ति " +"हो सकते हैं" #: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:274 #, python-format -msgid " This forum has %(thread_count)s existing threads.Please remove them and try again " +msgid "" +" This forum has %(thread_count)s existing threads.Please remove them and " +"try again " msgstr "इस मंच में%(thread_count)s के मौजूदा थ्रेड हैं। कृपया उन्हें हटा दें और पुन: प्रयास करें" #: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:146 msgid "You have not added any content to this course yet" msgstr "आपने अभी तक पाठ्यक्रम में विषय-वस्तु नहीं जोड़ी है" -#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:129 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:10 gnowsys_ndf/ndf/templates/ndf/quiz_details.html:98 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:339 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:353 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:129 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:10 +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:98 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:339 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:353 msgid "Edit " msgstr "संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:129 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:339 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:129 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:339 msgid "eCourse" msgstr "पाठ्यक्रम" @@ -2310,17 +3063,25 @@ msgstr "प्रबंधन" msgid "Manage Members" msgstr "सदस्य" -#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:238 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:303 gnowsys_ndf/ndf/templates/ndf/lms.html:60 gnowsys_ndf/ndf/templates/ndf/lms.html:96 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:238 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:303 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:92 #, fuzzy msgid "Notebook" msgstr "ई-पुस्तक" -#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:250 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:364 gnowsys_ndf/ndf/templates/ndf/quiz.html:31 gnowsys_ndf/ndf/templates/ndf/quiz.html:47 gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:26 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:267 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:250 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:364 +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:31 +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:47 +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:26 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:267 #: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:126 msgid "Quiz" msgstr "प्रश्नोत्तरी" -#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:258 gnowsys_ndf/ndf/templates/ndf/uDashboard.html:285 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:258 +#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:285 msgid "Dashboard" msgstr "डेशबोर्ड" @@ -2328,7 +3089,8 @@ msgstr "डेशबोर्ड" msgid "Unit: " msgstr "इकाई का नाम" -#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:47 gnowsys_ndf/ndf/templates/ndf/lms.html:175 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:47 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:167 #, fuzzy msgid "Manage Users" msgstr "प्रबंधन" @@ -2337,26 +3099,38 @@ msgstr "प्रबंधन" msgid "Export to ePub" msgstr "ePub मैं एक्सपोर्ट करें " -#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:96 gnowsys_ndf/ndf/templates/ndf/lms.html:117 gnowsys_ndf/ndf/templates/ndf/page_list.html:139 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:96 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:113 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:139 msgid "Pages" msgstr "पृष्ठ" -#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:99 gnowsys_ndf/ndf/templates/ndf/lms.html:130 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:99 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:126 #, fuzzy msgid "Assets" msgstr "आकलन" -#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:102 gnowsys_ndf/ndf/templates/ndf/lms.html:134 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:102 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:130 #, fuzzy msgid "Assessments" msgstr "आकलन" -#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:144 gnowsys_ndf/ndf/templates/ndf/lms.html:200 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:105 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:134 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:110 +msgid "Discuss" +msgstr "परिचर्चा" + +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:144 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:192 #, fuzzy msgid "Delete Unit:" msgstr "डिलीट यूनिट " -#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:146 gnowsys_ndf/ndf/templates/ndf/lms.html:202 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:146 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:194 msgid "Are you sure want to delete this unit?" msgstr "क्या आप वाकई इस यूनिट को हटाना चाहते हैं?" @@ -2364,20 +3138,29 @@ msgstr "क्या आप वाकई इस यूनिट को हटा msgid "Epub will be downloaded automatically." msgstr "ePub स्वयं डाउनलोड हो जायेगा " -#: gnowsys_ndf/ndf/templates/ndf/gheader.html:105 gnowsys_ndf/ndf/templates/ndf/header.html:68 gnowsys_ndf/ndf/templates/ndf/repository.html:19 +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:105 +#: gnowsys_ndf/ndf/templates/ndf/header.html:70 +#: gnowsys_ndf/ndf/templates/ndf/repository.html:19 msgid "Repository" msgstr "संसाधन कोष" -#: gnowsys_ndf/ndf/templates/ndf/gheader.html:161 gnowsys_ndf/ndf/templates/ndf/header.html:220 +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:161 +#: gnowsys_ndf/ndf/templates/ndf/header.html:223 msgid "MY COURSES" msgstr "मेरे पाठ्यक्रम" -#: gnowsys_ndf/ndf/templates/ndf/gheader.html:178 gnowsys_ndf/ndf/templates/ndf/header.html:239 +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:178 +#: gnowsys_ndf/ndf/templates/ndf/header.html:242 msgid "EXPLORE" msgstr "खोजें" -#: gnowsys_ndf/ndf/templates/ndf/gheader.html:214 gnowsys_ndf/ndf/templates/ndf/header.html:291 gnowsys_ndf/ndf/templates/ndf/header_clix.html:140 gnowsys_ndf/ndf/templates/ndf/header_clix.html:185 gnowsys_ndf/ndf/templates/registration/password_change_form.html:12 -#: gnowsys_ndf/ndf/templates/registration/password_change_form.html:16 gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:34 +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:214 +#: gnowsys_ndf/ndf/templates/ndf/header.html:294 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:140 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:185 +#: gnowsys_ndf/ndf/templates/registration/password_change_form.html:12 +#: gnowsys_ndf/ndf/templates/registration/password_change_form.html:16 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:34 msgid "Change Password" msgstr "पासवर्ड बदलें" @@ -2397,36 +3180,74 @@ msgstr "एडमिन डिजाइनर" msgid "Home Dashboard" msgstr "हॉम डेशबोर्ड" -#: gnowsys_ndf/ndf/templates/ndf/gheader.html:234 gnowsys_ndf/ndf/templates/ndf/header.html:347 gnowsys_ndf/ndf/templates/ndf/header_clix.html:145 gnowsys_ndf/ndf/templates/ndf/header_clix.html:190 +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:234 +#: gnowsys_ndf/ndf/templates/ndf/header.html:350 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:145 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:190 msgid "Logout" msgstr "लोगआउट" -#: gnowsys_ndf/ndf/templates/ndf/gheader.html:256 gnowsys_ndf/ndf/templates/ndf/header.html:373 gnowsys_ndf/ndf/templates/ndf/header_clix.html:153 gnowsys_ndf/ndf/templates/ndf/header_clix.html:208 gnowsys_ndf/ndf/templates/ndf/landing_page_clix.html:41 gnowsys_ndf/ndf/templates/registration/login.html:4 -#: gnowsys_ndf/ndf/templates/registration/login.html:85 gnowsys_ndf/ndf/templates/registration/login_clix.html:8 gnowsys_ndf/ndf/templates/registration/login_clix.html:91 +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:256 +#: gnowsys_ndf/ndf/templates/ndf/header.html:376 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:153 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:208 +#: gnowsys_ndf/ndf/templates/ndf/landing_page_clix.html:41 +#: gnowsys_ndf/ndf/templates/registration/login.html:4 +#: gnowsys_ndf/ndf/templates/registration/login.html:85 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:8 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:91 msgid "Login" msgstr "लॉगिन" -#: gnowsys_ndf/ndf/templates/ndf/gheader.html:471 gnowsys_ndf/ndf/templates/ndf/header.html:617 -msgid "RSS Feeds may not be displayed properly in this browser. Would you still like to continue?" -msgstr "इस ब्राउज़र में आरएसएस फ़ीड ठीक से प्रदर्शित नहीं की जा सकतीं। क्या आप अभी भी जारी रखना चाहेंगे?" +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:471 +#: gnowsys_ndf/ndf/templates/ndf/header.html:624 +msgid "" +"RSS Feeds may not be displayed properly in this browser. Would you still " +"like to continue?" +msgstr "" +"इस ब्राउज़र में आरएसएस फ़ीड ठीक से प्रदर्शित नहीं की जा सकतीं। क्या आप अभी भी जारी रखना " +"चाहेंगे?" #: gnowsys_ndf/ndf/templates/ndf/group.html:31 -msgid "

        Groups are an easy way to share content and conversation, either privately or with the world. Many times, a group already exist for a specific interest or topic. If you can't find one you like, feel free to start your own.

        \n" +msgid "" +"

        Groups are an easy way to share content and conversation, either " +"privately or with the world. Many times, a group already exist for a " +"specific interest or topic. If you can't find one you like, feel free to " +"start your own.

        \n" "
        How do groups work?
        \n" -"

        Groups can either be public, restricted (users may read a brief description or overview but not view content) or completely private. Every group has a wiki, a pool for resources, and a discussion board for talking.

        " -msgstr "

        समूह विषय वस्तु को वितरित करने तथा सम्प्रेषित करने का निजि अथवा विश्व स्तरीयसरल मार्ग है। कई बार विशिष्ट अभिरुचि या प्रकरण पर समूह पहले से उपस्थिति होते हैं। यदि आपको अपनी अभिरुचि का समूह नहीं मिले तो आप अपना समूह आरम्भ कर सकते हैं।

        \n" -"
        समूह कैसे कार्य करते हैं?

        समूह सार्वजनिक, अवरुध (उपयोगकर्ता विषय वस्तु का संक्षिप्त विवरण अथवा रूप् रेखा पढ सकते हैं परंतु विषय वस्तु को पूर्णतः देख नहीं सकते) अथवा पूर्णतः निजि। प्रत्येक समूह एक विकी, संसाधन समूह तथा वार्ता हेतु परिचर्चा बोर्ड रखता है।

        " +"

        Groups can either be public, restricted (users may read a brief " +"description or overview but not view content) or completely private. Every " +"group has a wiki, a pool for resources, and a discussion board for talking." +msgstr "" +"

        समूह विषय वस्तु को वितरित करने तथा सम्प्रेषित करने का निजि अथवा विश्व स्तरीयसरल " +"मार्ग है। कई बार विशिष्ट अभिरुचि या प्रकरण पर समूह पहले से उपस्थिति होते हैं। यदि आपको " +"अपनी अभिरुचि का समूह नहीं मिले तो आप अपना समूह आरम्भ कर सकते हैं।

        \n" +"
        समूह कैसे कार्य करते हैं?

        समूह सार्वजनिक, अवरुध (उपयोगकर्ता विषय वस्तु का " +"संक्षिप्त विवरण अथवा रूप् रेखा पढ सकते हैं परंतु विषय वस्तु को पूर्णतः देख नहीं सकते) अथवा " +"पूर्णतः निजि। प्रत्येक समूह एक विकी, संसाधन समूह तथा वार्ता हेतु परिचर्चा बोर्ड रखता है।" #: gnowsys_ndf/ndf/templates/ndf/group.html:64 msgid "All Groups" msgstr "सभी समूह" +#: gnowsys_ndf/ndf/templates/ndf/group.html:80 +#, fuzzy, python-format +msgid "" +" No %(title|lower)s%(group_nodes_count|pluralize)s matched your search " +"criteria " +msgstr "आपके खोज मापदंड से मेल खाती है %(title|lower)s%(TASK_inst.count|pluralize)s" -#: gnowsys_ndf/ndf/templates/ndf/group.html:120 gnowsys_ndf/ndf/templates/ndf/uDashboard.html:184 +#: gnowsys_ndf/ndf/templates/ndf/group.html:120 +#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:184 msgid "created" msgstr "सृजित" -#: gnowsys_ndf/ndf/templates/ndf/group.html:120 gnowsys_ndf/ndf/templates/ndf/gtask_details.html:234 gnowsys_ndf/ndf/templates/ndf/task_details.html:258 gnowsys_ndf/ndf/templates/ndf/uDashboard.html:184 +#: gnowsys_ndf/ndf/templates/ndf/group.html:120 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:234 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:258 +#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:184 msgid "ago" msgstr "पूर्व" @@ -2439,21 +3260,28 @@ msgid "Objects" msgstr "ऑब्जेक्ट" #: gnowsys_ndf/ndf/templates/ndf/group.html:142 -msgid "

        There are no groups created yet. Be the first to create a Group!
        " -msgstr "
        अभी तक कोई समूह नहीं बनाया गया है। आप समूह बनाने वाले प्रथम व्यक्ति हो सकते हैं
        " +msgid "" +"
        There are no groups created yet. Be the first to create a Group!
        " +msgstr "" +"
        अभी तक कोई समूह नहीं बनाया गया है। आप समूह बनाने वाले प्रथम व्यक्ति हो सकते हैं
        " #: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:101 -msgid "\n" +msgid "" +"\n" " Group Dashboard Shows the tasks and activities on the site.\n" " " -msgstr "\n" +msgstr "" +"\n" " समूह डेशबोर्ड साइट में हो रहे क्रियाकलाप और कार्य को दिखाता है " #: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:193 msgid "Approval" msgstr "अनुमोदन" -#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:199 gnowsys_ndf/ndf/templates/ndf/unit_player.html:22 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:199 +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:22 msgid "Activity" msgstr "क्रियाकलाप" @@ -2465,7 +3293,9 @@ msgstr "कैलेंडर" msgid "Enrollment Details" msgstr "नामांकन विवरण" -#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:220 gnowsys_ndf/ndf/templates/ndf/mis_list.html:258 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:522 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:220 +#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:258 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:522 msgid "S. #" msgstr "" @@ -2481,7 +3311,9 @@ msgstr "प्रदर्शन हेतु विषय नहीं है msgid "Please select the image type file!" msgstr "कृपया कार्य प्रकार चुनें" -#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:424 gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:464 gnowsys_ndf/ndf/templates/ndf/widget_photo_upload.html:235 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:424 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:464 +#: gnowsys_ndf/ndf/templates/ndf/widget_photo_upload.html:235 msgid "Only image files should be selected for setting your profile picture!" msgstr "प्रोफ़ाइल तस्वीर सेट करने के लिए केवल चित्र फाइल का ही चयन करें" @@ -2497,123 +3329,168 @@ msgstr "आप चयनित छात्रों का अनुमोद msgid "Do you want to continue rejecting the selected students?" msgstr "आप चयनित छात्रों का खारिज जारी रखना चाहते हैं ?" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:90 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:218 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:90 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:218 msgid "Feature" msgstr "विशेषता" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:91 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:219 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:91 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:219 msgid "Support" msgstr "मदद" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:127 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:255 gnowsys_ndf/ndf/templates/ndf/task.html:65 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:188 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:127 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:255 +#: gnowsys_ndf/ndf/templates/ndf/task.html:65 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:188 msgid "In Progress" msgstr "प्रगति में" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:137 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:265 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:209 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:137 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:265 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:209 msgid "Low" msgstr "कम" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:138 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:266 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:211 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:138 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:266 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:211 msgid "High" msgstr "उच्च" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:139 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:267 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:213 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:139 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:267 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:213 msgid "Immediate" msgstr "तुरंत" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:177 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:305 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:236 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:177 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:305 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:236 msgid "Single Assignee" msgstr "कार्य प्राप्तकर्ता:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:178 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:306 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:237 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:178 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:306 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:237 msgid "Multiple Assignee" msgstr "कार्य प्राप्तकर्ता:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:179 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:307 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:179 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:307 msgid "Group Assignee" msgstr "कार्य प्राप्तकर्ता:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:14 gnowsys_ndf/ndf/templates/ndf/task_details.html:38 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:14 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:38 msgid "New Task" msgstr "नया कार्य" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:25 gnowsys_ndf/ndf/templates/ndf/lms.html:70 gnowsys_ndf/ndf/templates/ndf/lms.html:108 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:176 gnowsys_ndf/ndf/templates/ndf/task_details.html:49 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:25 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:66 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:104 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:176 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:49 msgid "Task" msgstr "कार्य" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:48 gnowsys_ndf/ndf/templates/ndf/task_details.html:72 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:48 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:72 msgid "Parent task" msgstr "मूल कार्यः" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:62 gnowsys_ndf/ndf/templates/ndf/task_details.html:86 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:62 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:86 msgid "Task type:" msgstr "कार्य प्रकार:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:73 gnowsys_ndf/ndf/templates/ndf/task_details.html:97 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:73 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:97 msgid "Status:" msgstr "स्थिति:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:87 gnowsys_ndf/ndf/templates/ndf/task_details.html:111 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:87 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:111 msgid "Start Date:" msgstr "आरंभ तिथिः" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:98 gnowsys_ndf/ndf/templates/ndf/task_details.html:122 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:98 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:122 msgid "Priority:" msgstr "प्राथमिकता:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:112 gnowsys_ndf/ndf/templates/ndf/task_details.html:136 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:112 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:136 msgid "Due Date:" msgstr "नियत तिथि:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:123 gnowsys_ndf/ndf/templates/ndf/task_details.html:147 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:123 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:147 msgid "Assignee:" msgstr "कार्य प्राप्तकर्ता:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:137 gnowsys_ndf/ndf/templates/ndf/task_details.html:161 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:137 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:161 msgid "Sub Task:" msgstr "उप-कार्य:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:234 gnowsys_ndf/ndf/templates/ndf/task_details.html:258 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:234 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:258 msgid "Edited" msgstr "संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:237 gnowsys_ndf/ndf/templates/ndf/task_details.html:261 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:237 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:261 msgid "Versions" msgstr "सत्र" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:255 gnowsys_ndf/ndf/templates/ndf/task_details.html:279 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:255 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:279 msgid "Editing Name" msgstr "नाम संपादन" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:257 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:167 gnowsys_ndf/ndf/templates/ndf/task_details.html:281 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:257 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:167 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:281 msgid "Enter name" msgstr "बैच का नाम अंकित करें" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:274 gnowsys_ndf/ndf/templates/ndf/task_details.html:298 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:274 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:298 msgid "×" msgstr "×" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:291 gnowsys_ndf/ndf/templates/ndf/task_details.html:315 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:291 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:315 msgid "Nothing is Changed" msgstr "कुछ भी नहीं मिला" -#: gnowsys_ndf/ndf/templates/ndf/header.html:211 +#: gnowsys_ndf/ndf/templates/ndf/header.html:125 +msgid "Explore" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/header.html:130 +msgid "My Desk" +msgstr "" + +#: gnowsys_ndf/ndf/templates/ndf/header.html:214 msgid "MY DASHBOARD" msgstr "मेरा डैशबोर्ड" -#: gnowsys_ndf/ndf/templates/ndf/header.html:228 +#: gnowsys_ndf/ndf/templates/ndf/header.html:231 msgid "MY GROUPS" msgstr "मेरे समूह" -#: gnowsys_ndf/ndf/templates/ndf/header.html:467 +#: gnowsys_ndf/ndf/templates/ndf/header.html:474 msgid "APPS" msgstr "ऐप्स" -#: gnowsys_ndf/ndf/templates/ndf/header.html:489 gnowsys_ndf/ndf/templates/ndf/header.html:499 +#: gnowsys_ndf/ndf/templates/ndf/header.html:496 +#: gnowsys_ndf/ndf/templates/ndf/header.html:506 msgid "Updates" msgstr "अद्यतन सूची" -#: gnowsys_ndf/ndf/templates/ndf/header.html:554 +#: gnowsys_ndf/ndf/templates/ndf/header.html:561 msgid "BACK" msgstr "पीछे" @@ -2639,12 +3516,19 @@ msgstr "ग्रेड" msgid " %(content)s " msgstr "विषय-वस्तुः" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:14 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:192 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:200 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:257 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:269 -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:287 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:304 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:14 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:192 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:200 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:257 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:269 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:287 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:304 msgid "Please select" msgstr "कृपया चुनें" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:30 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:65 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:122 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:30 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:65 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:122 msgid "Please fill a valid" msgstr "कृपया वैध < > भरें" @@ -2664,7 +3548,9 @@ msgstr "देखने के लिए क्ल्कि करें" msgid "Upload! " msgstr "अपलोड करें" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:262 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:280 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:292 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:262 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:280 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:292 #, fuzzy, python-format msgid " - - - Select %(alt)s - - - " msgstr " - - - चुनें - - - " @@ -2674,28 +3560,35 @@ msgstr " - - - चुनें - - - " msgid " %(choice)s " msgstr "विकल्प" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:282 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:297 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:282 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:297 #, fuzzy, python-format msgid " %(alt)s " msgstr "%(alt)s" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:307 gnowsys_ndf/ndf/templates/notification/notice_settings.html:52 gnowsys_ndf/notification/templates/notification/notice_settings.html:52 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:307 +#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:52 +#: gnowsys_ndf/notification/templates/notification/notice_settings.html:52 msgid "Change" msgstr "बदलें" -#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:38 gnowsys_ndf/ndf/templates/ndf/invite_users.html:34 +#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:38 +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:34 msgid "Notification mails sent to newly selected users" msgstr "समूह संचालक के अतिरिक्त अन्य सभी को मेल भेजें" -#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:42 gnowsys_ndf/ndf/templates/ndf/invite_users.html:38 +#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:42 +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:38 msgid "Notification mails sent to all users except group owner" msgstr "समूह संचालक के अतिरिक्त अन्य सभी को मेल भेजें" -#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:54 gnowsys_ndf/ndf/templates/ndf/invite_users.html:50 +#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:54 +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:50 msgid "Successfully applied modifications and e-mail notifications sent" msgstr "भेजे गए संशोधनों और ई-मेल सूचनाओं को सफलतापूर्वक लागू किया गया" -#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:114 gnowsys_ndf/ndf/templates/ndf/invite_users.html:110 +#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:114 +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:110 msgid "Type here and press enter to search users" msgstr "यहां टाइप करें और उपयोगकर्ताओं को खोजने के लिए एन्टर दबाएं" @@ -2708,11 +3601,15 @@ msgid "

        Select Admins

        " msgstr "

        उपयोगकर्ता चुनें

        " #: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:163 -msgid "

        Following are the topics with the tag \"%(tag)s\"

        \n" -"\tSelect the topic from the panel on the left to view the details about that topic. The knowledge graph for that particular topic is also available on the same page.\n" -msgstr "उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है %(tag)s \n" +msgid "" +" Tags Topic Display\n" +"\t
        Following are the topics with the tag \"%(tag)s\"

        \n" +"\tSelect the topic from the panel on the left to view the details about that " +"topic. The knowledge graph for that particular topic is also available on " +"the same page.\n" +msgstr "" +"उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए " +"ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है %(tag)s \n" #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:75 -msgid "Select the topic from the panel on the left to view the details about that topic. The knowledge graph for that particular topic is also available on the same page." -msgstr "उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है।" +msgid "" +"Select the topic from the panel on the left to view the details about that " +"topic. The knowledge graph for that particular topic is also available on " +"the same page." +msgstr "" +"उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए " +"ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है।" #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:201 msgid "Wikipedia Page Link:" @@ -5055,14 +6169,35 @@ msgid "Wikidata Project" msgstr "विकिडाटा परियोजना" #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:246 -msgid "All structured data from the main and property namespace is available under the Creative Commons CC0 License. Text in the other namespaces is available under the Creative Commons Attribution-ShareAlike License. Additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy." -msgstr "मुख्य और प्रॉपर्टी नेमस्पेस से सभी संरचित डेटा क्रिएटिव कॉमन्स CC0 लाइसेंस के अंतर्गत उपलब्ध है। अन्य नेमस्पेस में टेक्स्ट क्रिएटिव कॉमन्स एट्रिब्यूशन-शेयर एलेवेंस लाइसेंस के तहत उपलब्ध है। अतिरिक्त शर्तें लागू हो सकते हैं इस साइट का उपयोग करके, आप उपयोग की शर्तों और गोपनीयता नीति से सहमत हैं।" +msgid "" +"All structured data from the main and property namespace is available under " +"the Creative Commons CC0 License. Text in the other namespaces is available " +"under the Creative Commons Attribution-ShareAlike License. Additional terms " +"may apply. By using this site, you agree to the Terms of Use and Privacy " +"Policy." +msgstr "" +"मुख्य और प्रॉपर्टी नेमस्पेस से सभी संरचित डेटा क्रिएटिव कॉमन्स CC0 लाइसेंस के अंतर्गत उपलब्ध " +"है। अन्य नेमस्पेस में टेक्स्ट क्रिएटिव कॉमन्स एट्रिब्यूशन-शेयर एलेवेंस लाइसेंस के तहत उपलब्ध है। " +"अतिरिक्त शर्तें लागू हो सकते हैं इस साइट का उपयोग करके, आप उपयोग की शर्तों और गोपनीयता " +"नीति से सहमत हैं।" #: gnowsys_ndf/ndf/templates/notification/base.html:4 msgid "notices" msgstr "सूचनाएँ" -#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:8 gnowsys_ndf/ndf/templates/notification/notice_settings.html:11 gnowsys_ndf/notification/templates/notification/notice_settings.html:8 gnowsys_ndf/notification/templates/notification/notice_settings.html:11 +#: gnowsys_ndf/ndf/templates/notification/email_body.txt:1 +msgid "You have received the following notice from the site: " +msgstr "आपको निम्नलिखित सुचनाएँ साइट से प्राप्त हुई हैं:" + +#: gnowsys_ndf/ndf/templates/notification/email_subject.txt:1 +#, python-format +msgid "[%(current_site)s] %(message)s" +msgstr "" + +#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:8 +#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:11 +#: gnowsys_ndf/notification/templates/notification/notice_settings.html:8 +#: gnowsys_ndf/notification/templates/notification/notice_settings.html:11 msgid "Notification Settings" msgstr "अधिसूचना सेटिंग" @@ -5082,10 +6217,15 @@ msgstr "एक नया जोड़ें" msgid "now" msgstr "अब" -#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:27 gnowsys_ndf/notification/templates/notification/notice_settings.html:27 +#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:27 +#: gnowsys_ndf/notification/templates/notification/notice_settings.html:27 msgid "Notification Type" msgstr "अधिसूचना प्रकार" +#: gnowsys_ndf/ndf/templates/notification/short.txt:5 +msgid "Activity notification from" +msgstr "से क्रियाकलाप अधिसूचना" + #: gnowsys_ndf/ndf/templates/online_status/example.html:4 msgid "Users online" msgstr "ऑनलाइन उपयोगकर्ता" @@ -5098,7 +6238,8 @@ msgstr "उपयोगकर्ता की स्थिति" msgid "My status " msgstr "मेरी स्थिति" -#: gnowsys_ndf/ndf/templates/registration/activate.html:6 gnowsys_ndf/ndf/templates/registration/activation_complete.html:4 +#: gnowsys_ndf/ndf/templates/registration/activate.html:6 +#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:4 msgid "Activation complete" msgstr "सक्रियता पूर्ण हुई" @@ -5127,22 +6268,29 @@ msgid "using your email and password." msgstr "अपने ईमेल और पासवर्ड का उपयोग करके" #: gnowsys_ndf/ndf/templates/registration/activate.html:27 -msgid "Oops! It seems that your activation key is invalid. Please check the url or try to reset your password again. " -msgstr "ओह ऐसा लगता है कि आपकी सक्रियण कुंजी अमान्य है कृपया यूआरएल की जांच करें या फिर अपना पासवर्ड रीसेट करने का प्रयास करें।" +msgid "" +"Oops! It seems that your activation key is invalid. Please check the url or " +"try to reset your password again. " +msgstr "" +"ओह ऐसा लगता है कि आपकी सक्रियण कुंजी अमान्य है कृपया यूआरएल की जांच करें या फिर अपना " +"पासवर्ड रीसेट करने का प्रयास करें।" #: gnowsys_ndf/ndf/templates/registration/activation_complete.html:13 msgid "Account successfully activated." msgstr "खाता सफलतापूर्वक सक्रिय हो चुका है" -#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 msgid "Please " msgstr "कृपया" -#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 msgid "Sign In" msgstr "साइन इन" -#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 msgid " here." msgstr "यहाँ" @@ -5151,18 +6299,24 @@ msgid "Account registration" msgstr "खाता पजीकृकरण" #: gnowsys_ndf/ndf/templates/registration/activation_email.html:16 -msgid "You (or someone pretending to be you) have asked to register an account at: " +msgid "" +"You (or someone pretending to be you) have asked to register an account at: " msgstr "आपने यहाँ पंजीकरण के लिए आग्रह किया है:" #: gnowsys_ndf/ndf/templates/registration/activation_email.html:17 -msgid "If this wasn't you, please ignore this email and your address will be removed from our records." +msgid "" +"If this wasn't you, please ignore this email and your address will be " +"removed from our records." msgstr "यदि आप ये नहीं थे, कृपया इस ईमेल को अनंदेखा करें। आपका ईमेल पता मिटा दिया जायेगा" #: gnowsys_ndf/ndf/templates/registration/activation_email.html:21 -msgid "To activate this account, please click the following link within the next two days." +msgid "" +"To activate this account, please click the following link within the next " +"two days." msgstr "प्राप्त लिंक केवल दो दिन तक ही वैध रहेगा। कृपया इस अवधि में खाता सक्रिय करें" #: gnowsys_ndf/ndf/templates/registration/activation_email.html:26 +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:11 msgid "Sincerely" msgstr "भवदीय" @@ -5171,24 +6325,56 @@ msgstr "भवदीय" msgid " \"%(site.name|capfirst)s Team\" " msgstr "" +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:5 +msgid "" +"You (or someone pretending to be you) have asked to register an account at " +msgstr "आपने यहाँ पंजीकरण के लिए आग्रह किया" + +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:6 +msgid "" +"If this wasn't you, please ignore this email and your details will be " +"removed from our records." +msgstr "यदि आप ये नहीं थे, कृपया इस ईमेल को अनंदेखा करें। आपका ईमेल पता मिटा दिया जायेगा" + +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:8 +msgid "" +"To activate this account, please click the following link within the next" +msgstr "प्राप्त लिंक केवल दो दिन तक ही वैध रहेगा। कृपया इस अवधि में खाता सक्रिय करें" + +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:8 +msgid "days" +msgstr "दिन" + +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:12 +msgid "Team" +msgstr "" + +#: gnowsys_ndf/ndf/templates/registration/activation_email_subject.txt:3 +msgid "Account registration for" +msgstr "खाता पजीकृकरण" + #: gnowsys_ndf/ndf/templates/registration/login.html:28 msgid "Log In" msgstr "लॉग-इन" -#: gnowsys_ndf/ndf/templates/registration/login.html:35 gnowsys_ndf/ndf/templates/registration/login_clix.html:39 +#: gnowsys_ndf/ndf/templates/registration/login.html:35 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:39 msgid "Either your email or password is incorrect !" msgstr "ईमेल अथवा पासवर्ड गलत है" -#: gnowsys_ndf/ndf/templates/registration/login.html:72 gnowsys_ndf/ndf/templates/registration/login_clix.html:99 +#: gnowsys_ndf/ndf/templates/registration/login.html:72 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:99 #, fuzzy msgid "Recover your password" msgstr "पासवर्ड भूल गए?" -#: gnowsys_ndf/ndf/templates/registration/login.html:72 gnowsys_ndf/ndf/templates/registration/login_clix.html:99 +#: gnowsys_ndf/ndf/templates/registration/login.html:72 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:99 msgid "Forgot your password?" msgstr "पासवर्ड भूल गए?" -#: gnowsys_ndf/ndf/templates/registration/login.html:95 gnowsys_ndf/ndf/templates/registration/login_clix.html:111 +#: gnowsys_ndf/ndf/templates/registration/login.html:95 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:111 #, fuzzy msgid "Click here to register" msgstr "देखने के लिए क्ल्कि करें" @@ -5215,7 +6401,9 @@ msgid "You have sucessfully logged out." msgstr "सफलतापूर्वक लॉग-आउट हो गया है" #: gnowsys_ndf/ndf/templates/registration/logout.html:12 -msgid "Thank you for visiting our website. Please return often to take advantage of this platform." +msgid "" +"Thank you for visiting our website. Please return often to take advantage of " +"this platform." msgstr "हमारी वेबसाइट देखने के लिए धन्यवाद। कृपया इस मंच का लाभ उठाने के लिए अक्सर लौटें।" #: gnowsys_ndf/ndf/templates/registration/password_change_done.html:7 @@ -5238,23 +6426,28 @@ msgstr "पासवर्ड सफलतापूर्वक रीसेट msgid "Confirm password reset" msgstr "पासवर्ड रीसेट की पुष्टि करें" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:43 gnowsys_ndf/ndf/templates/registration/registration_form.html:63 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:43 +#: gnowsys_ndf/ndf/templates/registration/registration_form.html:63 msgid "Either both passwords doesn't match or doesn't satisfy the criteria!!!" msgstr "पासवर्ड कसौटी के अनुरूप नहीं है" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:66 gnowsys_ndf/ndf/templates/registration/registration_form.html:110 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:66 +#: gnowsys_ndf/ndf/templates/registration/registration_form.html:110 msgid "NOTE: " msgstr "टिप्पणी:" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:68 gnowsys_ndf/ndf/templates/registration/registration_form.html:112 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:68 +#: gnowsys_ndf/ndf/templates/registration/registration_form.html:112 msgid "Password must contain atleast 8 characters," msgstr "पासवर्ड में कम-से-कम 8 कैरेक्टर का होना आवश्यक है" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:69 gnowsys_ndf/ndf/templates/registration/registration_form.html:113 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:69 +#: gnowsys_ndf/ndf/templates/registration/registration_form.html:113 msgid "One uppercase letter, and" msgstr "कम-से-कम एक अपरकेस अक्षर और" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:70 gnowsys_ndf/ndf/templates/registration/registration_form.html:114 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:70 +#: gnowsys_ndf/ndf/templates/registration/registration_form.html:114 msgid "One numeral" msgstr "कम-से-कम एक संख्या" @@ -5263,6 +6456,7 @@ msgid "Set password" msgstr "सेट पासवर्ड" #: gnowsys_ndf/ndf/templates/registration/password_reset_done.html:4 +#: gnowsys_ndf/ndf/templates/registration/password_reset_email_subject.txt:2 msgid "Password reset" msgstr "पासवर्ड रीसेट" @@ -5275,15 +6469,23 @@ msgid "An email has been sent to email-ID associated with your account." msgstr "आपके खाते से संबंधित ईमेल आई.डी. पर ईमेल भेजी गई है" #: gnowsys_ndf/ndf/templates/registration/password_reset_done.html:13 -msgid "Please be patient; the delivery of email may be delayed. Remember to confirm that the email that you entered is correct and to check your junk or spam folder or filter if you do not receive this email." -msgstr "कृपया धैर्य रखें; ईमेल की डिलीवरी में देरी हो सकती है यह पुष्टि करने के लिए याद रखें कि आपने जो ईमेल दर्ज किया है वह सही है और यदि आप यह ईमेल प्राप्त नहीं करते हैं तो अपने ट्रेश या स्पैम फ़ोल्डर या फ़िल्टर की जांच करें।" +msgid "" +"Please be patient; the delivery of email may be delayed. Remember to confirm " +"that the email that you entered is correct and to check your junk or spam " +"folder or filter if you do not receive this email." +msgstr "" +"कृपया धैर्य रखें; ईमेल की डिलीवरी में देरी हो सकती है यह पुष्टि करने के लिए याद रखें कि आपने " +"जो ईमेल दर्ज किया है वह सही है और यदि आप यह ईमेल प्राप्त नहीं करते हैं तो अपने ट्रेश या " +"स्पैम फ़ोल्डर या फ़िल्टर की जांच करें।" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:4 msgid "Greetings " msgstr "अभिनंदन" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:5 -msgid "You are receiving this email because you requested that your password be reset on" +msgid "" +"You are receiving this email because you requested that your password be " +"reset on" msgstr "आप यह ईमेल प्राप्त कर रहे हैं क्योंकि आपने अनुरोध किया है कि आपका पासवर्ड रीसेट हो" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:7 @@ -5291,8 +6493,12 @@ msgid "If you do not wish to reset your password, please ignore this message." msgstr "यदि आप अपना पासवर्ड रीसेट नहीं करना चाहते हैं, तो कृपया इस संदेश को अनदेखा करें।" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:9 -msgid "To reset your password, please click the following link, or copy and paste it into your web browser:" -msgstr "अपना पासवर्ड रीसेट करने के लिए, कृपया निम्न लिंक पर क्लिक करें, या उसे अपने वेब ब्राउज़र में कॉपी और पेस्ट करें:" +msgid "" +"To reset your password, please click the following link, or copy and paste " +"it into your web browser:" +msgstr "" +"अपना पासवर्ड रीसेट करने के लिए, कृपया निम्न लिंक पर क्लिक करें, या उसे अपने वेब ब्राउज़र में " +"कॉपी और पेस्ट करें:" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:12 msgid "Your username, in case you've forgotten:" @@ -5306,16 +6512,23 @@ msgstr "आदर सहित" msgid "Management" msgstr "प्रबंधन" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:5 gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:72 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:5 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:65 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:5 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:72 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:5 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:65 msgid "Reset password" msgstr "रीसेट पासवर्ड" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:30 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:30 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:30 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:30 msgid "Forgot password? Don't worry..." msgstr "पासवर्ड भूल गये हैं? चिंता न करें" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:37 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:37 -msgid "Password reset instructions will be sent to the email address associated with your account." +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:37 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:37 +msgid "" +"Password reset instructions will be sent to the email address associated " +"with your account." msgstr "पासवर्ड रीसेट निर्देश अापके खाते से जुडे ईमेल पर भेजे जाएंगे।" #: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:44 @@ -5326,11 +6539,13 @@ msgstr "अवैध ईमेल आई.डी., कृपया फिर स msgid "Please type your valid " msgstr "कृपया वैध ईमेल भरें" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:59 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:52 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:59 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:52 msgid "email address" msgstr "ईमेल पता" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:59 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:52 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:59 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:52 msgid " below:" msgstr "नीचे" @@ -5355,7 +6570,9 @@ msgid "Account creation successful." msgstr "खाता सफलतापूर्वक सृजित हो चुका है" #: gnowsys_ndf/ndf/templates/registration/registration_complete.html:12 -msgid "Please activate your account by clicking on the link provided in the email you will receive." +msgid "" +"Please activate your account by clicking on the link provided in the email " +"you will receive." msgstr "कृपया प्राप्त ईमेल में दिए गए लिंक पर क्लिक करके अपना खाता सक्रिय करें।" #: gnowsys_ndf/ndf/templates/registration/registration_form.html:5 @@ -5458,40 +6675,39 @@ msgstr "सूचना सेटिंग" msgid "notice settings" msgstr "सूचना सेटिंग" -#: gnowsys_ndf/notification/templates/notification/full.html:1 gnowsys_ndf/notification/templates/notification/notice.html:1 +#: gnowsys_ndf/notification/templates/notification/email_body.txt:1 +#, python-format +msgid "" +"You have received the following notice from %(current_site)s:\n" +"\n" +"%(message)s\n" +"\n" +"To see other notices or change how you receive notifications, please go to " +"%(default_http_protocol)s://%(current_site)s%(notices_url)s\n" +msgstr "" + +#: gnowsys_ndf/notification/templates/notification/full.html:1 +#: gnowsys_ndf/notification/templates/notification/full.txt:1 +#: gnowsys_ndf/notification/templates/notification/notice.html:1 +#: gnowsys_ndf/notification/templates/notification/short.txt:1 #, fuzzy, python-format msgid "%(notice)s" msgstr "सूचना" #: gnowsys_ndf/notification/templates/notification/notice_settings.html:15 -#, python-format -msgid "

        \n" +#, fuzzy, python-format +msgid "" +"\n" +"

        \n" " Note:\n" -" You do not have a verified email address to which notices can be sent. Add one now.\n" +" You do not have a verified email address to which notices can be " +"sent. Add one now.\n" "

        \n" " " msgstr "%(email_url)s आपके पास एक सत्यापित ईमेल नहीं है जिसमें सूचनाएं भेजी जा सकती हैं।" -#~ msgid "You have received the following notice from the site: " -#~ msgstr "आपको निम्नलिखित सुचनाएँ साइट से प्राप्त हुई हैं:" - -#~ msgid "Activity notification from" -#~ msgstr "से क्रियाकलाप अधिसूचना" - -#~ msgid "You (or someone pretending to be you) have asked to register an account at " -#~ msgstr "आपने यहाँ पंजीकरण के लिए आग्रह किया" - -#~ msgid "If this wasn't you, please ignore this email and your details will be removed from our records." -#~ msgstr "यदि आप ये नहीं थे, कृपया इस ईमेल को अनंदेखा करें। आपका ईमेल पता मिटा दिया जायेगा" - -#~ msgid "To activate this account, please click the following link within the next" -#~ msgstr "प्राप्त लिंक केवल दो दिन तक ही वैध रहेगा। कृपया इस अवधि में खाता सक्रिय करें" - -#~ msgid "days" -#~ msgstr "दिन" - -#~ msgid "Account registration for" -#~ msgstr "खाता पजीकृकरण" +#~ msgid "Mark as Raw Material" +#~ msgstr "रॉ मटीरियल के रूप में चिह्नित करें" #~ msgid "List Members" #~ msgstr "सदस्यों की सूची" @@ -5499,14 +6715,20 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "Sorry, No resources found with selected filters" #~ msgstr "क्षमा करें, चयनित फिल्टर से कोई संसाधन प्राप्त नहीं हुआ" -#~ msgid "This group doesn't have any files. Be the first to upload a file!" -#~ msgstr "इस समूह में कोई फाइल नहीं है। आप फाइल अपलोड करने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgid "" +#~ "This group doesn't have any files. Be the first to upload a file!" +#~ msgstr "" +#~ "इस समूह में कोई फाइल नहीं है। आप फाइल अपलोड करने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "View Source Code" #~ msgstr "सोर्स कोड देखें" -#~ msgid "All material is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License unless mentioned otherwise." -#~ msgstr "सभी सामग्री क्रियेटिव कॉमन्स ऍट्रीब्यूशन शेयर-अलाइक 3.0 के अनपोर्टेड लाइसेंस के अंतर्गत आती है, यदि कोई अन्य लाइसेंस अंकित नहीं है तो" +#~ msgid "" +#~ "All material is licensed under a Creative Commons Attribution-Share Alike " +#~ "3.0 Unported License unless mentioned otherwise." +#~ msgstr "" +#~ "सभी सामग्री क्रियेटिव कॉमन्स ऍट्रीब्यूशन शेयर-अलाइक 3.0 के अनपोर्टेड लाइसेंस के अंतर्गत " +#~ "आती है, यदि कोई अन्य लाइसेंस अंकित नहीं है तो" #~ msgid "Powered by" #~ msgstr "पावर्ड बाइ" @@ -5523,8 +6745,11 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "Contributor" #~ msgstr "योगदानकर्ता" -#~ msgid "This group doesn't have any forums. Be the first to create a forum!
        " -#~ msgstr "इस समूह में कोई फोरम नहीं है। आप फोरम बनाने वाले प्रथम व्यक्ति हो सकते हैं<" +#~ msgid "" +#~ "This group doesn't have any forums. Be the first to create a forum!

        " +#~ msgstr "" +#~ "इस समूह में कोई फोरम नहीं है। आप फोरम बनाने वाले प्रथम व्यक्ति हो सकते हैं<" #~ msgid "Top Contributors" #~ msgstr "सर्वोच्च योगदानकर्ता" @@ -5607,7 +6832,8 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "Create New Blog" #~ msgstr "नया बनायें" -#~ msgid " This group doesn't have any pages. Be the first to create a Page!" +#~ msgid "" +#~ " This group doesn't have any pages. Be the first to create a Page!" #~ msgstr "इस समूह में कोई पृष्ठ नहीं है। आप पृष्ठ बनाने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "Page Details" @@ -5618,7 +6844,11 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "" #~ "

        \n" -#~ " A Quiz is a sequenced collection of quiz items. A quiz-item can be any of the three types: short response, single-choice and multiple-choice. submit response and match the following types will be implemented very soon.\n" +#~ " A Quiz is a sequenced collection of quiz items. A quiz-" +#~ "item can be any of the three types: short response, single-" +#~ "choice and multiple-choice. " +#~ "submit response and match the following types will be " +#~ "implemented very soon.\n" #~ "

        \n" #~ "

        You can build a quiz in two ways:\n" #~ "

          \n" @@ -5627,7 +6857,10 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ "

        \n" #~ msgstr "" #~ "

        \n" -#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" +#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी " +#~ "आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें " +#~ "और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" #~ "

        \n" #~ "

        आप दो तरह से एक प्रश्नोत्तरी का निर्माण कर सकते हैं:\n" #~ "

          \n" @@ -5642,8 +6875,11 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgstr "प्रश्नोत्तरी प्रश्न संपादक" #~ msgid "" -#~ "

          A Quiz is a sequenced collection of quiz items. A quiz-item can be any of the three types: short response, single-choice and multiple-choice. submit response and match the following types will be implemented very " -#~ "soon.

          \n" +#~ "

          A Quiz is a sequenced collection of " +#~ "quiz items. A quiz-item can be any of the three types: " +#~ "short response, single-choice and " +#~ "multiple-choice. submit response and " +#~ "match the following types will be implemented very soon.

          \n" #~ "

          You can build a quiz in two ways:\n" #~ "

            \n" #~ "\t
          1. By editing, Quiz node (via collection-list).
          2. \n" @@ -5651,7 +6887,10 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ "

          \n" #~ msgstr "" #~ "

          \n" -#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" +#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी " +#~ "आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें " +#~ "और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" #~ "

          \n" #~ "

          आप दो तरह से एक प्रश्नोत्तरी का निर्माण कर सकते हैं:\n" #~ "

            \n" @@ -5675,13 +6914,19 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgstr "प्रश्नोत्तरी" #~ msgid "This group doesn't have any quiz. Be the first to create a Quiz!" -#~ msgstr "इस समूह में कोई प्रश्नोत्तरी नहीं है। आप प्रश्नोत्तरी बनाने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgstr "" +#~ "इस समूह में कोई प्रश्नोत्तरी नहीं है। आप प्रश्नोत्तरी बनाने वाले प्रथम व्यक्ति हो सकते " +#~ "हैं" #~ msgid "Quiz Items" #~ msgstr "प्रश्नोत्तरी प्रश्न" -#~ msgid "This group doesn't have any quiz-items. Be the first to create a Quiz-Item!" -#~ msgstr "इस समूह में कोई प्रश्नोत्तरी प्रश्न नहीं है। आप प्रश्नोत्तरी प्रश्न बनाने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgid "" +#~ "This group doesn't have any quiz-items. Be the first to create a Quiz-" +#~ "Item!" +#~ msgstr "" +#~ "इस समूह में कोई प्रश्नोत्तरी प्रश्न नहीं है। आप प्रश्नोत्तरी प्रश्न बनाने वाले प्रथम " +#~ "व्यक्ति हो सकते हैं" #~ msgid "Not rated yet!" #~ msgstr "अभी तक सृजन" @@ -5689,8 +6934,12 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "resources" #~ msgstr "संसाधन" -#~ msgid "Tag is like a keyword or category label.

            Tags helps you to find photos, videos, files and pages which have something in common.

            " -#~ msgstr "टैग कूटसंकेत के समान है.

            टैग का प्रयोग करके खोजा जा सकता है.

            " +#~ msgid "" +#~ "Tag is like a keyword or category label.

            Tags helps you " +#~ "to find photos, videos, files and pages which have something in common." +#~ msgstr "" +#~ "टैग कूटसंकेत के समान है.

            टैग का प्रयोग करके खोजा जा सकता है.

            " #~ msgid "Attachment(s):" #~ msgstr "संलगन" @@ -5710,8 +6959,12 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "next" #~ msgstr "आगे" -#~ msgid "You (or someone pretending to be you) have asked to register an account at our site." -#~ msgstr "लगता है, आपका सक्रियता संकेत शब्द सही नहीं है। कृपया यू.आर.एल. जाँचें अथवा पासवर्ड रीसेट करें" +#~ msgid "" +#~ "You (or someone pretending to be you) have asked to register an account " +#~ "at our site." +#~ msgstr "" +#~ "लगता है, आपका सक्रियता संकेत शब्द सही नहीं है। कृपया यू.आर.एल. जाँचें अथवा पासवर्ड " +#~ "रीसेट करें" #~ msgid "Management Team" #~ msgstr "प्रबंधन टीम" @@ -5739,11 +6992,13 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "" #~ "\n" -#~ "
            There are no %(grps_category)s created yet.Be the first to create a %(grps_category)s!
            \n" +#~ "
            There are no %(grps_category)s created yet.Be the first to " +#~ "create a %(grps_category)s!
            \n" #~ "\t" #~ msgstr "" #~ "\n" -#~ "
            अभी तक कोई पार्टनर नहीं बनाया गया है। आप पार्टनर बनाने वाले प्रथम व्यक्ति हो सकते हैं
            " +#~ "
            अभी तक कोई पार्टनर नहीं बनाया गया है। आप पार्टनर बनाने वाले प्रथम " +#~ "व्यक्ति हो सकते हैं
            " #~ msgid "Be the first to create a" #~ msgstr "सृजन करने वाले आप प्रथम हो" @@ -5763,14 +7018,20 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "Announced Courses" #~ msgstr "घोषित पाठ्यक्रम" -#~ msgid "This group doesn't have any courses. Be the first to create a course!" -#~ msgstr "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgid "" +#~ "This group doesn't have any courses. Be the first to create a course!" +#~ msgstr "" +#~ "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "You are not enrolled to any course yet." #~ msgstr "आप अभी तक किसी भी पाठ्यक्रम में नामांकित नहीं हैं" -#~ msgid "This group doesn't have any Announced courses. Be the first to Announce a course!" -#~ msgstr "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgid "" +#~ "This group doesn't have any Announced courses. Be the first to " +#~ "Announce a course!" +#~ msgstr "" +#~ "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "This group doesn't have any Announced courses." #~ msgstr "इस समूह में कोई पाठ्यक्रम नहीं है" diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html index 1c806234f2..f7ec9dbd79 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html @@ -63,7 +63,7 @@ {% endif %}
          1. - {% trans "Task" %} + {% trans "Calendar" %}
          2. {% else %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_interaction.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_interaction.html index c7c4a13d16..322a36fd12 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_interaction.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/widget_interaction.html @@ -17,7 +17,7 @@

            Interaction Settings

    -

    {% trans "Do you want to enable Comments/Discussion on this Activity for Students ? " %}

    +

    {% trans "Do you want to enable Comments/Discussion on this Activity ? " %}

    From 7a28a20d50a179ba63d2888e99a0decaefa5f105 Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Fri, 30 Mar 2018 11:28:47 +0530 Subject: [PATCH 455/766] search ption move to top header and write note renamed to write blog --- .../ndf/templates/ndf/activity_player.html | 29 +++++++++-- .../gnowsys_ndf/ndf/templates/ndf/header.html | 52 +++++++++++++------ 2 files changed, 59 insertions(+), 22 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/activity_player.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/activity_player.html index 5e07c9ac00..71e45406ec 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/activity_player.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/activity_player.html @@ -78,12 +78,23 @@ @@ -105,8 +116,16 @@
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html index 202ec1f950..db9232c699 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html @@ -129,7 +129,23 @@

    My Desk {% endif %} - +
  • +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
  • {% comment %} @@ -532,23 +548,7 @@

    --> -
  • -
    - -
    -
    - -
    -
    - -
    -
    -
    -
  • @@ -647,3 +647,21 @@

    {% endif %} + From ef3ad5d8f588c255c413152fda35b4123f2c69ec Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Fri, 30 Mar 2018 11:59:37 +0530 Subject: [PATCH 456/766] My Performance is renamed as My Progress --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html index 8bd01a13ed..5988b8744d 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html @@ -44,7 +44,7 @@ {#
  • {% trans "My WorkSpace" %}
  • #} -
  • {% trans "My Performance" %}
  • +
  • {% trans "My Progress" %}
  • From 648102de3d4a4b496f62cdd87f8efb6ac37aeae5 Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Fri, 30 Mar 2018 15:35:42 +0530 Subject: [PATCH 457/766] search box moved to top header --- .../gnowsys_ndf/ndf/templates/ndf/header.html | 88 ++++++++++++++++--- 1 file changed, 74 insertions(+), 14 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html index db9232c699..1e86d31f70 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html @@ -129,13 +129,22 @@

    My Desk {% endif %} +
  • +
    + +
    + +
  • -
    - + +
    - +
    + + + + + + + +{% endblock %} + +{% if chk_advanced_search %} + + {% block body_content %} +
    +
    + + +
    + +
    + +
    +
      + + {% for each in search_curr %} +
    • + {% if GSTUDIO_ELASTIC_SEARCH == True %} + + {% include 'ndf/simple_card.html' with no_footer=True resource=each url_name="page_details" first_arg=groupid second_arg=each.pk %} + + {% else %} + {% include 'ndf/simple_card.html' with no_footer=True resource=each url_name="page_details" first_arg=groupid second_arg=each%} + {%endif%} +
    • + {% endfor %} +
    + {% if not search_curr %} + No results found + {% endif %} +
    +
    +
    + + {% if has_next %} + + {% endif %} +
    + + + + {% endblock %} +{% endif%} + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/advanced_search.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/advanced_search.py new file mode 100644 index 0000000000..870d0e8c4b --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/advanced_search.py @@ -0,0 +1,7 @@ +from django.conf.urls import patterns, url + +urlpatterns = patterns('gnowsys_ndf.ndf.views.advanced_search', + + url(r'^$', 'search_detail',name='advanced_search'), + +) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py new file mode 100644 index 0000000000..2bbe5272a7 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py @@ -0,0 +1,131 @@ +import re +import urllib + +''' -- imports from installed packages -- ''' +from django.shortcuts import render_to_response +from django.template import RequestContext +from mongokit import paginator + + +try: + from bson import ObjectId +except ImportError: # old pymongo + from pymongo.objectid import ObjectId + +''' -- imports from application folders/files -- ''' +from gnowsys_ndf.settings import GAPPS +# from gnowsys_ndf.ndf.models import Node, GRelation,GSystemType,File,Triple +from gnowsys_ndf.ndf.models import Node, GRelation,GSystemType, Triple +from gnowsys_ndf.ndf.models import node_collection +from gnowsys_ndf.ndf.views.file import * +from gnowsys_ndf.ndf.views.methods import get_group_name_id, cast_to_data_type, get_execution_time +from gnowsys_ndf.ndf.views.methods import get_filter_querydict +from gnowsys_ndf.ndf.models.es import * +from gnowsys_ndf.ndf.paginator import Paginator ,EmptyPage, PageNotAnInteger +from gnowsys_ndf.local_settings import GSTUDIO_ADVANCED_SEARCH +from gnowsys_ndf.ndf.templatetags.ndf_tags import get_relation_value + + + +q = Q('match',name=dict(query='File',type='phrase')) +GST_FILE = Search(using=es, index="nodes",doc_type="gsystemtype").query(q) +GST_FILE1 = GST_FILE.execute() + +def search_detail(request,group_id,page_no=1): + + search_result = '' + try: + group_id = ObjectId(group_id) + + except: + group_name, group_id = get_group_name_id(group_id) + + + + chk_advanced_search = request.GET.get('chk_advanced_search',None) + print chk_advanced_search + if request.GET.get('field_list',None): + selected_field = request.GET.get('field_list',None) + else: + selected_field = "content" + print selected_field + print "mmmmmmmmmmmmmmmmmmmmmmmmmmmm----------------------" + #,Q('exists',field='content')55ab34ff81fccb4f1d806025 + + q = Q('bool', must=[Q('match', member_of=GST_FILE1.hits[0].id),Q('match',group_set='55ab34ff81fccb4f1d806025'),Q('match',access_policy='public'),~Q('exists',field=selected_field)]) + search_result =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q) + #search_result.filter('exists', field='attribute_set__educationaluse') + + if request.GET.get('field_list',None) == "true": + print "chk_advanced_search" + #q = Q('bool', must=[Q('match',language=dict(query='english',type='phrase')),Q('match', access_policy='public'),Q('match', group_set=str(group_id))]) + #lan = Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q) + #lan1 = lan.execute() + #print lan.count() + print ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;" + #Q('match',language=dict(query='hindi',type='phrase')) + #Q('match', content=request.GET.get('search_text','')), + q = Q('bool', must=[Q('match', language='en'),Q('match', access_policy='public'),Q('match', group_set=str(group_id))]) + search_result =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q) + #search_result =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author") + #search_result.filter( 'range', gte='900', lte='097f', field='content' ) + #for a in search_result: + # print a.id + search_result = search_result.filter("terms", content=["ncert"]) + + #search_result.query('regexp', title="my * is") + response = s.execute() + + + search_str_user="" + #print search_result.count() + #print group_id + + page_no = request.GET.get('page_no',None) + print page_no + print "44444444444444444444444444" + + has_next = True + if search_result.count() <=20: + has_next = False + + if request.GET.get('page_no',None) in [None,'']: + print "siddhu11" + search_result=search_result[0:20] + page_no = 2 + else: + p = int(int(page_no) -1) + temp1=int((int(p)) * 20) + temp2=temp1+20 + search_result=search_result[temp1:temp2] + + if temp1 < search_result.count() <= temp2: + print temp2 + has_next = False + page_no = int(int(page_no)+1) + + if request.GET.get('field_list',None) == "attribute_type_set" : + print "if block" + temp = node_collection.find({'_type': 'GSystem'}) + + + lst = [] + for each in temp: + if each._id: + rel_val = get_relation_value(ObjectId(each._id),"teaches") + if not rel_val['grel_id']: + lst.append(each._id) + + search_result = node_collection.find({ '_id': {'$in': lst} }) + + + #print search_result1 + print "aaaaaaaaaaaa" + #temp.rewind() + + + + + return render_to_response('ndf/asearch.html', {"page_no":page_no,"has_next":has_next,'GSTUDIO_ELASTIC_SEARCH':GSTUDIO_ELASTIC_SEARCH,'advanced_search':"true",'groupid':group_id,'group_id':group_id,'title':"advanced_search","search_curr":search_result,'field_list':selected_field,'chk_advanced_search':chk_advanced_search}, + context_instance=RequestContext(request)) + From d49fbd0441af5368becb08db4b70e57d9338e7b2 Mon Sep 17 00:00:00 2001 From: amitmoralwar Date: Mon, 2 Apr 2018 16:11:33 +0530 Subject: [PATCH 463/766] Interaction setting-discuss in top right has same UI as discuss in bottom --- .../ndf/static/ndf/css/themes/clix/styles.css | 2 +- .../static/ndf/css/themes/metastudio/styles.css | 2 +- .../ndf/static/ndf/css/themes/nroer/styles.css | 2 +- .../ndf/static/ndf/css/themes/tiss/styles.css | 2 +- .../ndf/static/ndf/scss/_app_styles.scss | 2 +- .../ndf/templates/ndf/activity_player.html | 14 +++++++++++++- .../ndf/templates/ndf/in-line-texteditor.html | 2 +- 7 files changed, 19 insertions(+), 7 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css index ef00337483..a6d7036f7b 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css @@ -30562,7 +30562,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .explore-button { border-radius: 5px; text-transform: uppercase; - margin-left: 150px; + margin-left: 1150px; color: #ffffff; padding: 5px 17px; width: inherit; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css index 7953a4e28a..e71108a36a 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css @@ -30585,7 +30585,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .explore-button { border-radius: 5px; text-transform: uppercase; - margin-left: 150px; + margin-left: 1150px; color: #ffffff; padding: 5px 17px; width: inherit; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css index 23979edc0b..d947c37f64 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css @@ -30886,7 +30886,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .explore-button { border-radius: 5px; text-transform: uppercase; - margin-left: 150px; + margin-left: 1150px; color: #ffffff; padding: 5px 17px; width: inherit; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css index 7953a4e28a..e71108a36a 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css @@ -30585,7 +30585,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .explore-button { border-radius: 5px; text-transform: uppercase; - margin-left: 150px; + margin-left: 1150px; color: #ffffff; padding: 5px 17px; width: inherit; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss index 92729f87f7..881b72f9bc 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss @@ -7389,7 +7389,7 @@ $ah_2_background_color_hover: rgba(244, 244, 244, 0.3);; // //font-size: 25px; border-radius: 5px; text-transform: uppercase; - margin-left: 150px; + margin-left: 1150px; color: #ffffff; padding: 5px 17px; width: inherit; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/activity_player.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/activity_player.html index 5e07c9ac00..2f45bdb073 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/activity_player.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/activity_player.html @@ -300,7 +300,19 @@

    {% firstof group_object.altnames group_object.name %}

    {% if player_discussion or node_discussion %} - {% if not thr_int_type %} {{disc_label}} {% else %} {{thr_int_type}} {% endif %} + +
    + {% if thr_int_type %} + {% if thr_int_type == "None" %} Feedback {% else %} {{thr_int_type}} {% endif %} + {% if all_replies|length > 0 %}({{all_replies|length }}) {% endif %} + {% else %} + {{default_discussion_lbl}} {% if all_replies|length > 0 %} ({{all_replies|length }}) {% endif %} + {% endif %} +
    + + + + {% endif %} {% comment %} Translate diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html index 39835d2b98..ecf6f14b93 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html @@ -196,7 +196,7 @@ p.after('
    '); // '' + '' $('.ckeditor-reply-area').html(data); - $('.post-btn-div').html(''); + $('.post-btn-div').html(''); setCurrNodeEdit(1); From ee889845f2133c49620e16eb5b3afc33930224ff Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Tue, 3 Apr 2018 12:48:28 +0530 Subject: [PATCH 464/766] contextual search for repository page and e-library page.... but in e-library some issue found.... --- .../gnowsys_ndf/ndf/templates/ndf/header.html | 10 +- .../ndf/templates/ndf/repository.html | 55 +++--- .../gnowsys_ndf/ndf/views/e-library.py | 174 +++++++++++++----- gnowsys-ndf/gnowsys_ndf/ndf/views/methods.py | 50 ++++- 4 files changed, 216 insertions(+), 73 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html index 7bb682c363..831bcd3c65 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html @@ -140,7 +140,7 @@

  • + {% if GSTUDIO_NROER_GAPPS_NEW_count == 0 and search_text != None and search_text != "partner" and temp_search_text == "default" %} +

    We couldn't find any results matching "{{ search_text }}"

    + {% endif %} +
    - {% for each_gapp in gapps_obj_list %} -
    - - - {% endfor %} + {% endfor %} + {% endif %} + + {% if search_text == "partner" or temp_search_text == "default" %} + + {% endif %} + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-library.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-library.py index aef9ed01d7..39fd8f128d 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-library.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-library.py @@ -65,8 +65,16 @@ ############################################################################## @get_execution_time def resource_list(request, group_id="home", app_id=None, page_no=1): + + print request.get_full_path() + + is_video = request.GET.get('is_video', "") + search_text = request.GET.get('search_text', None) + print search_text + print "-------------------------------" + print GST_FILE1 try: group_id = ObjectId(group_id) @@ -190,27 +198,50 @@ def resource_list(request, group_id="home", app_id=None, page_no=1): for value in lists: strconcat1 = strconcat1+'eval(str("'+ value +'")),' + if search_text in (None,'',""): + + q = eval("Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',member_of=GST_FILE1.hits[0].id),"+strconcat1[:-1]+"],must_not=[Q('match', attribute_set__educationaluse ='ebooks')])") + + collection_query = eval("Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('exists',field='collection_set'),"+strconcat1[:-1]+"]," + + "should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ]," + + "must_not=[Q('match', attribute_set__educationaluse ='ebooks')],minimum_should_match=1)") + + q_images_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='images'),"+strconcat1[:-1]+"])") + q_audios_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='audios'),"+strconcat1[:-1]+"])") + q_videos_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='videos'),"+strconcat1[:-1]+"])") + q_intercatives_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='interactives'),"+strconcat1[:-1]+"])") + q_applications_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='documents'),"+strconcat1[:-1]+"])") + q_ebooks_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='ebooks'),"+strconcat1[:-1]+"])") + q_all_count = eval("Q('bool', must=["+strconcat1[:-1]+"]," + +"should=[Q('match', attribute_set__educationaluse='documents'),Q('match', attribute_set__educationaluse='images'),Q('match', attribute_set__educationaluse='videos')," + "Q('match', attribute_set__educationaluse='interactives')])") + + else: - q = eval("Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',member_of=GST_FILE1.hits[0].id),"+strconcat1[:-1]+"],must_not=[Q('match', attribute_set__educationaluse ='ebooks')])") + q = eval("Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',member_of=GST_FILE1.hits[0].id),Q('multi_match', query=search_text, fields=['content','name','tags']),"+strconcat1[:-1]+"],must_not=[Q('match', attribute_set__educationaluse ='ebooks')])") - collection_query = eval("Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('exists',field='collection_set'),"+strconcat1[:-1]+"]," - + "should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ]," - + "must_not=[Q('match', attribute_set__educationaluse ='ebooks')],minimum_should_match=1)") + collection_query = eval("Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('multi_match', query=search_text, fields=['content','name','tags']),Q('exists',field='collection_set'),"+strconcat1[:-1]+"]," + + "should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ]," + + "must_not=[Q('match', attribute_set__educationaluse ='ebooks')],minimum_should_match=1)") - q_images_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='images'),"+strconcat1[:-1]+"])") - q_audios_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='audios'),"+strconcat1[:-1]+"])") - q_videos_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='videos'),"+strconcat1[:-1]+"])") - q_intercatives_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='interactives'),"+strconcat1[:-1]+"])") - q_applications_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='documents'),"+strconcat1[:-1]+"])") - q_ebooks_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='ebooks'),"+strconcat1[:-1]+"])") - q_all_count = eval("Q('bool', must=["+strconcat1[:-1]+"]," - +"should=[Q('match', attribute_set__educationaluse='documents'),Q('match', attribute_set__educationaluse='images'),Q('match', attribute_set__educationaluse='videos')," - "Q('match', attribute_set__educationaluse='interactives')])") + q_images_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='images'),Q('multi_match', query=search_text, fields=['content','name','tags']),"+strconcat1[:-1]+"])") + q_audios_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='audios'),Q('multi_match', query=search_text, fields=['content','name','tags']),"+strconcat1[:-1]+"])") + q_videos_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='videos'),Q('multi_match', query=search_text, fields=['content','name','tags']),"+strconcat1[:-1]+"])") + q_intercatives_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='interactives'),Q('multi_match', query=search_text, fields=['content','name','tags']),"+strconcat1[:-1]+"])") + q_applications_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='documents'),Q('multi_match', query=search_text, fields=['content','name','tags']),"+strconcat1[:-1]+"])") + q_ebooks_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='ebooks'),Q('multi_match', query=search_text, fields=['content','name','tags']),"+strconcat1[:-1]+"])") + q_all_count = eval("Q('bool', must=[Q('multi_match', query=search_text, fields=['content','name','tags']),"+strconcat1[:-1]+"]," + +"should=[Q('match', attribute_set__educationaluse='documents'),Q('match', attribute_set__educationaluse='images'),Q('match', attribute_set__educationaluse='videos')," + "Q('match', attribute_set__educationaluse='interactives')])") else: - - q = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('match',member_of=GST_FILE1.hits[0].id)], - must_not=[Q('match', attribute_set__educationaluse ='ebooks')]) + if search_text in (None,'',""): + q = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('match',member_of=GST_FILE1.hits[0].id)], + must_not=[Q('match', attribute_set__educationaluse ='ebooks')]) + else: + q = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('match',member_of=GST_FILE1.hits[0].id),Q('multi_match', query=search_text, fields=['content','name','tags'])], + must_not=[Q('match', attribute_set__educationaluse ='ebooks')]) + files_new = Search(using=es, index="nodes",doc_type="gsystem").query(q) files_new = files_new[0:24] @@ -223,7 +254,7 @@ def resource_list(request, group_id="home", app_id=None, page_no=1): files_new=files_new[temp:temp+24] temp111 = "" - if selfilters in (None,'',""): + if selfilters in (None,'',"") and search_text in (None,'',""): q_images_count = Q('bool', must=[Q('match', attribute_set__educationaluse='images'),Q('match', access_policy='public'),Q('match', group_set=str(group_id))]) q_audios_count = Q('bool', must=[Q('match', attribute_set__educationaluse='audios'),Q('match', access_policy='public'),Q('match', group_set=str(group_id))]) q_videos_count = Q('bool', must=[Q('match', attribute_set__educationaluse='videos'),Q('match', access_policy='public'),Q('match', group_set=str(group_id))]) @@ -232,6 +263,15 @@ def resource_list(request, group_id="home", app_id=None, page_no=1): q_ebooks_count = Q('bool', must=[Q('match', attribute_set__educationaluse='ebooks'),Q('match', access_policy='public'),Q('match', group_set=str(group_id))]) q_all_count= Q('bool', must=[Q('terms',attribute_set__educationaluse=['documents','images','audios','videos','interactives','maps','audio','select','teachers'])]) + elif selfilters in (None,'',"") and search_text is not None: + q_images_count = Q('bool', must=[Q('match', attribute_set__educationaluse='images'),Q('match', access_policy='public'),Q('match', group_set=str(group_id)),Q('multi_match', query=search_text, fields=['content','name','tags'])]) + q_audios_count = Q('bool', must=[Q('match', attribute_set__educationaluse='audios'),Q('match', access_policy='public'),Q('match', group_set=str(group_id)),Q('multi_match', query=search_text, fields=['content','name','tags'])]) + q_videos_count = Q('bool', must=[Q('match', attribute_set__educationaluse='videos'),Q('match', access_policy='public'),Q('match', group_set=str(group_id)),Q('multi_match', query=search_text, fields=['content','name','tags'])]) + q_intercatives_count = Q('bool', must=[Q('match', attribute_set__educationaluse='interactives'),Q('match', access_policy='public'),Q('match', group_set=str(group_id)),Q('multi_match', query=search_text, fields=['content','name','tags'])]) + q_applications_count = Q('bool', must=[Q('match', attribute_set__educationaluse='documents'),Q('match', access_policy='public'),Q('match', group_set=str(group_id)),Q('multi_match', query=search_text, fields=['content','name','tags'])]) + q_ebooks_count = Q('bool', must=[Q('match', attribute_set__educationaluse='ebooks'),Q('match', access_policy='public'),Q('match', group_set=str(group_id)),Q('multi_match', query=search_text, fields=['content','name','tags'])]) + q_all_count= Q('bool', must=[Q('terms',attribute_set__educationaluse=['documents','images','audios','videos','interactives','maps','audio','select','teachers']),Q('multi_match', query=search_text, fields=['content','name','tags'])]) + images_count =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q_images_count) audios_count =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q_audios_count) @@ -281,10 +321,17 @@ def resource_list(request, group_id="home", app_id=None, page_no=1): if selfilters: collection_pages_cur =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(collection_query) else: - q = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('exists',field='collection_set')], - should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ], - must_not=[Q('match', attribute_set__educationaluse ='ebooks')], minimum_should_match=1) - collection_pages_cur =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q) + if search_text in (None,'',""): + q = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('exists',field='collection_set')], + should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ], + must_not=[Q('match', attribute_set__educationaluse ='ebooks')], minimum_should_match=1) + collection_pages_cur =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q) + else: + q = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('exists',field='collection_set'),Q('multi_match', query=search_text, fields=['content','name','tags'])], + should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ], + must_not=[Q('match', attribute_set__educationaluse ='ebooks')], minimum_should_match=1) + collection_pages_cur =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q) + @@ -359,6 +406,7 @@ def resource_list(request, group_id="home", app_id=None, page_no=1): 'groupid': group_id, 'group_id':group_id, "datavisual":datavisual, "GSTUDIO_ELASTIC_SEARCH":GSTUDIO_ELASTIC_SEARCH, + "search_text":search_text }, context_instance=RequestContext(request) @@ -369,8 +417,14 @@ def elib_paged_file_objs(request, group_id, filetype, page_no): ''' Method to implement pagination in File and E-Library app. ''' + search_text = request.GET.get("search_text", None) if request.method == "POST": + + print "111111111111111111111111111111111111111111118888888888888" + print search_text + print "111111111111111111111111111111111111111111118888888888888" + group_name, group_id = get_group_name_id(group_id) @@ -504,21 +558,38 @@ def elib_paged_file_objs(request, group_id, filetype, page_no): filetype = str(filetype) if filters: - q = eval("Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',member_of=GST_FILE1.hits[0].id),Q('match', attribute_set__educationaluse=filetype),"+strconcat1[:-1]+"])") + + if search_text in (None,'',""): + + q = eval("Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',member_of=GST_FILE1.hits[0].id),Q('match', attribute_set__educationaluse=filetype),"+strconcat1[:-1]+"])") + + collection_query = eval("Q('bool', must=[Q('match', group_set=str(group_id)),Q('match',access_policy='public'),Q('exists',field='collection_set'),"+strconcat1[:-1]+"]," + + "should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ]," + + "must_not=[Q('match', attribute_set__educationaluse ='ebooks')], minimum_should_match=1)") + else: + q = eval("Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',member_of=GST_FILE1.hits[0].id),Q('match', attribute_set__educationaluse=filetype),Q('multi_match', query=search_text, fields=['content','name','tags']),"+strconcat1[:-1]+"])") - collection_query = eval("Q('bool', must=[Q('match', group_set=str(group_id)),Q('match',access_policy='public'),Q('exists',field='collection_set'),"+strconcat1[:-1]+"]," - + "should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ]," - + "must_not=[Q('match', attribute_set__educationaluse ='ebooks')], minimum_should_match=1)") + collection_query = eval("Q('bool', must=[Q('match', group_set=str(group_id)),Q('match',access_policy='public'),Q('exists',field='collection_set'),Q('multi_match', query=search_text, fields=['content','name','tags']),"+strconcat1[:-1]+"]," + + "should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ]," + + "must_not=[Q('match', attribute_set__educationaluse ='ebooks')], minimum_should_match=1)") else: + if search_text in (None,'',""): - q = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('match', attribute_set__educationaluse =filetype)], - should=[Q('match',member_of=GST_FILE1.hits[0].id)], minimum_should_match=1) - - collection_query = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('exists',field='collection_set')], - should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ], - must_not=[Q('match', attribute_set__educationaluse ='ebooks')], minimum_should_match=1) + q = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('match', attribute_set__educationaluse =filetype)], + should=[Q('match',member_of=GST_FILE1.hits[0].id)], minimum_should_match=1) + + collection_query = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('exists',field='collection_set')], + should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ], + must_not=[Q('match', attribute_set__educationaluse ='ebooks')], minimum_should_match=1) + else: + q = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('match', attribute_set__educationaluse =filetype),Q('multi_match', query=search_text, fields=['content','name','tags'])], + should=[Q('match',member_of=GST_FILE1.hits[0].id)], minimum_should_match=1) + + collection_query = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('exists',field='collection_set'),Q('multi_match', query=search_text, fields=['content','name','tags'])], + should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ], + must_not=[Q('match', attribute_set__educationaluse ='ebooks')], minimum_should_match=1) @@ -531,22 +602,40 @@ def elib_paged_file_objs(request, group_id, filetype, page_no): else: if filters: + if search_text in (None,'',""): + + q = eval("Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',member_of=GST_FILE1.hits[0].id),Q('terms',attribute_set__educationaluse=['documents','images','audios','videos']),"+strconcat1[:-1]+"])") + + collection_query = eval("Q('bool', must=[Q('match', group_set=str(group_id)),Q('match',access_policy='public'),Q('exists',field='collection_set'),"+strconcat1[:-1]+"]," + + "should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ]," + + "must_not=[Q('match', attribute_set__educationaluse ='ebooks')], minimum_should_match=1)") + + else: + + q = eval("Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',member_of=GST_FILE1.hits[0].id),Q('terms',attribute_set__educationaluse=['documents','images','audios','videos']),Q('multi_match', query=search_text, fields=['content','name','tags']),"+strconcat1[:-1]+"])") + + collection_query = eval("Q('bool', must=[Q('match', group_set=str(group_id)),Q('match',access_policy='public'),Q('multi_match', query=search_text, fields=['content','name','tags']),Q('exists',field='collection_set'),"+strconcat1[:-1]+"]," + + "should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ]," + + "must_not=[Q('match', attribute_set__educationaluse ='ebooks')], minimum_should_match=1)") - q = eval("Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',member_of=GST_FILE1.hits[0].id),Q('terms',attribute_set__educationaluse=['documents','images','audios','videos']),"+strconcat1[:-1]+"])") - collection_query = eval("Q('bool', must=[Q('match', group_set=str(group_id)),Q('match',access_policy='public'),Q('exists',field='collection_set'),"+strconcat1[:-1]+"]," - + "should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ]," - + "must_not=[Q('match', attribute_set__educationaluse ='ebooks')], minimum_should_match=1)") else: + if search_text in (None,'',""): + q = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('match',member_of=GST_FILE1.hits[0].id),Q('terms',attribute_set__educationaluse=['documents','images','audios','videos'])], + ) + + collection_query = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('exists',field='collection_set')], + should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ], + must_not=[Q('match', attribute_set__educationaluse ='ebooks')]) + else: + q = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('match',member_of=GST_FILE1.hits[0].id),Q('multi_match', query=search_text, fields=['content','name','tags']),Q('terms',attribute_set__educationaluse=['documents','images','audios','videos'])], + ) + + collection_query = Q('bool', must=[Q('match', group_set=str(group_id)),Q('multi_match', query=search_text, fields=['content','name','tags']), Q('match',access_policy='public'),Q('exists',field='collection_set')], + should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ], + must_not=[Q('match', attribute_set__educationaluse ='ebooks')]) - q = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('match',member_of=GST_FILE1.hits[0].id),Q('terms',attribute_set__educationaluse=['documents','images','audios','videos'])], - ) - - collection_query = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('exists',field='collection_set')], - should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ], - must_not=[Q('match', attribute_set__educationaluse ='ebooks')]) - files1 =Search(using=es, index="gsystem",doc_type="image,video,audio,application").query(q) if int(page_no)==1: @@ -676,6 +765,7 @@ def resource_list(request, group_id, app_id=None, page_no=1): is_video = request.GET.get('is_video', "") + try: group_id = ObjectId(group_id) #print group_id diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/methods.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/methods.py index ccb2c85618..f4bf02636e 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/methods.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/methods.py @@ -55,7 +55,7 @@ from gnowsys_ndf.ndf.views.tasks import record_in_benchmark from datetime import datetime, timedelta, date from gnowsys_ndf.ndf.views.utils import get_dict_from_list_of_dicts - +from gnowsys_ndf.local_settings import GSTUDIO_ELASTIC_SEARCH history_manager = HistoryManager() theme_GST = node_collection.one({'_type': 'GSystemType', 'name': 'Theme'}) @@ -5076,14 +5076,47 @@ def repository(request, group_id): ''' It's an NROER repository. Which will hold the list of apps. ''' + from gnowsys_ndf.settings import GSTUDIO_NROER_GAPPS gapp_metatype = node_collection.one({"_type": "MetaType", "name": "GAPP"}) - - gapps_list = [i.values()[0] for i in GSTUDIO_NROER_GAPPS] - gapps_list.insert(gapps_list.index('program'), 'event') - gapps_list.pop(gapps_list.index('program')) + + search_text = request.GET.get('search_text',None) + + print search_text + + #GSTUDIO_NROER_GAPPS = [{"themes":"topic"}] + GSTUDIO_NROER_GAPPS_NEW = {} + if search_text: + for a in GSTUDIO_NROER_GAPPS: + for k,v in a.iteritems(): + if k.lower() == search_text.lower(): + print "siddhu" + GSTUDIO_NROER_GAPPS_NEW[k] = v + + GSTUDIO_NROER_GAPPS = [] + GSTUDIO_NROER_GAPPS.append(GSTUDIO_NROER_GAPPS_NEW.copy()) + print GSTUDIO_NROER_GAPPS + if len(GSTUDIO_NROER_GAPPS_NEW) == 0: + from gnowsys_ndf.settings import GSTUDIO_NROER_GAPPS + gapps_list = [i.values()[0] for i in GSTUDIO_NROER_GAPPS] + gapps_list.insert(gapps_list.index('program'), 'event') + gapps_list.pop(gapps_list.index('program')) # print gapps_list + + else: + print GSTUDIO_NROER_GAPPS + if search_text == "events": + gapps_list = [i.values()[0] for i in GSTUDIO_NROER_GAPPS] + gapps_list.insert(gapps_list.index('program'), 'event') + gapps_list.pop(gapps_list.index('program')) + else: + gapps_list = [i.values()[0] for i in GSTUDIO_NROER_GAPPS] + temp_search_text= "" + if search_text == None or search_text not in [i.keys()[0].lower() for i in GSTUDIO_NROER_GAPPS]: + temp_search_text = "default" + print temp_search_text + GSTUDIO_NROER_GAPPS_NEW_count = len(GSTUDIO_NROER_GAPPS_NEW) gapps_obj_list = [] for each_gapp in gapps_list: @@ -5096,7 +5129,12 @@ def repository(request, group_id): return render_to_response("ndf/repository.html", {"gapps_obj_list": gapps_obj_list, "gapps_dict": GSTUDIO_NROER_GAPPS, - 'group_id': group_id, 'groupid': group_id + 'group_id': group_id, 'groupid': group_id, + 'search_text':search_text, + 'temp_search_text':temp_search_text, + 'GSTUDIO_ELASTIC_SEARCH':GSTUDIO_ELASTIC_SEARCH, + 'GSTUDIO_NROER_GAPPS_NEW_count':GSTUDIO_NROER_GAPPS_NEW_count + }, context_instance=RequestContext(request) ) From 58bf85ceeb234a006762f089e779e4467d9b1346 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Tue, 3 Apr 2018 16:14:02 +0530 Subject: [PATCH 465/766] Home page redesigning as per mock up --- gnowsys-ndf/bower.json | 2 +- .../ndf/static/ndf/css/themes/clix/styles.css | 2275 +++++++++-------- .../ndf/css/themes/metastudio/styles.css | 2275 +++++++++-------- .../static/ndf/css/themes/nroer/styles.css | 2275 +++++++++-------- .../ndf/static/ndf/css/themes/tiss/styles.css | 2275 +++++++++-------- .../ndf/static/ndf/scss/_app_styles.scss | 82 +- .../gnowsys_ndf/ndf/templates/ndf/footer.html | 22 +- .../ndf/templates/ndf/landing_page_nroer.html | 95 +- 8 files changed, 4890 insertions(+), 4411 deletions(-) diff --git a/gnowsys-ndf/bower.json b/gnowsys-ndf/bower.json index 4f4447cd2b..74bb5d3f5a 100755 --- a/gnowsys-ndf/bower.json +++ b/gnowsys-ndf/bower.json @@ -35,7 +35,7 @@ "d3-cloud": "#1.0.5", "d3-tip": "#0.6.4", "side-comments": "aroc/side-comments##0.0.3", - "slick-carousel": "#1.3.7", + "slick-carousel": "^1.3.7", "onepage-scroll": "#1.3.1", "open-sans-fontface": "#1.1.0", "mousetrap": "#1.5.3", diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css index 110b8225a5..05d1a85601 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css @@ -23906,98 +23906,99 @@ body > footer .myfooter .footer_link_cont .links_show { max-height: 600px; } /* line 567, ../../../scss/_app_styles.scss */ -body > footer .myfooter .footer_link_cont h4 { +body > footer .myfooter .footer_link_cont .flinks { + font-size: 18px; color: #999; } -/* line 570, ../../../scss/_app_styles.scss */ -body > footer .myfooter .footer_link_cont .social_links { +/* line 571, ../../../scss/_app_styles.scss */ +body > footer .myfooter .footer_link_cont .social_links a { font-size: 24px; margin-right: 5px; } -/* line 575, ../../../scss/_app_styles.scss */ +/* line 576, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links { color: #777777; cursor: pointer; } -/* line 578, ../../../scss/_app_styles.scss */ +/* line 579, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links i { font-size: 24px; margin-right: 5px; } -/* line 581, ../../../scss/_app_styles.scss */ +/* line 582, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links:hover { text-decoration: underline; } -/* line 588, ../../../scss/_app_styles.scss */ +/* line 589, ../../../scss/_app_styles.scss */ body > footer hr.footerlogo-divider { border-color: #555; margin-top: 10px; } -/* line 594, ../../../scss/_app_styles.scss */ +/* line 595, ../../../scss/_app_styles.scss */ body > footer ul#footerlogo li { margin: 0px 5px; display: inline; } -/* line 600, ../../../scss/_app_styles.scss */ +/* line 601, ../../../scss/_app_styles.scss */ .no-gap ul { margin-left: 0rem; } -/* line 606, ../../../scss/_app_styles.scss */ +/* line 607, ../../../scss/_app_styles.scss */ body > footer ul#poweredlogos { margin-left: 0px; } -/* line 610, ../../../scss/_app_styles.scss */ +/* line 611, ../../../scss/_app_styles.scss */ #poweredlogos li { margin: 0px 5px; display: inline; } -/* line 616, ../../../scss/_app_styles.scss */ +/* line 617, ../../../scss/_app_styles.scss */ .no-gap ul { margin-left: 0rem; } -/* line 621, ../../../scss/_app_styles.scss */ +/* line 622, ../../../scss/_app_styles.scss */ .coll-arrows { cursor: pointer; display: block; padding: 0.5rem; } -/* line 626, ../../../scss/_app_styles.scss */ +/* line 627, ../../../scss/_app_styles.scss */ .coll-arrows:hover { background-color: #D3D3D3; } /* Sections */ -/* line 633, ../../../scss/_app_styles.scss */ +/* line 634, ../../../scss/_app_styles.scss */ main > article { padding: 0px; } -/* line 636, ../../../scss/_app_styles.scss */ +/* line 637, ../../../scss/_app_styles.scss */ main > nav { border-top: 3px solid black; position: relative; z-index: 10; } -/* line 640, ../../../scss/_app_styles.scss */ +/* line 641, ../../../scss/_app_styles.scss */ main > nav > .button-bar { background-color: #6152ae; /* Hide icons till we can retreive custom icons from the system */ } -/* line 642, ../../../scss/_app_styles.scss */ +/* line 643, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group { margin: 0; } -/* line 644, ../../../scss/_app_styles.scss */ +/* line 645, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group.tools { padding: 5px; } -/* line 650, ../../../scss/_app_styles.scss */ +/* line 651, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button { border: none; font-size: 0.8rem; @@ -24006,135 +24007,135 @@ main > nav > .button-bar li .button { color: black; margin: 0; } -/* line 654, ../../../scss/_app_styles.scss */ +/* line 655, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.home { font-weight: bold; } -/* line 657, ../../../scss/_app_styles.scss */ +/* line 658, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings, main > nav > .button-bar li .button#toggle-help { padding: 6px 10px; color: #333; background-color: rgba(255, 255, 255, 0.3); } -/* line 662, ../../../scss/_app_styles.scss */ +/* line 663, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:hover, main > nav > .button-bar li .button#toggle-help:hover { background-color: rgba(0, 0, 0, 0.2); color: white; } -/* line 667, ../../../scss/_app_styles.scss */ +/* line 668, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button#toggle-help { background-color: inherit; } -/* line 671, ../../../scss/_app_styles.scss */ +/* line 672, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:after { border: none; } -/* line 679, ../../../scss/_app_styles.scss */ +/* line 680, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button:hover { color: white; } -/* line 685, ../../../scss/_app_styles.scss */ +/* line 686, ../../../scss/_app_styles.scss */ main > nav > .button-bar li.active .button { background-color: #6153ae; color: white; } -/* line 693, ../../../scss/_app_styles.scss */ +/* line 694, ../../../scss/_app_styles.scss */ main > nav > .button-bar .app i { display: none !important; } -/* line 703, ../../../scss/_app_styles.scss */ +/* line 704, ../../../scss/_app_styles.scss */ main > aside > div h2 { color: #111; } -/* line 706, ../../../scss/_app_styles.scss */ +/* line 707, ../../../scss/_app_styles.scss */ main > aside > div h3 { font-size: 1.2rem; font-weight: normal; color: #222; } -/* line 711, ../../../scss/_app_styles.scss */ +/* line 712, ../../../scss/_app_styles.scss */ main > aside > div h4 { font-size: 1rem; color: #222; } -/* line 714, ../../../scss/_app_styles.scss */ +/* line 715, ../../../scss/_app_styles.scss */ main > aside > div h4 span { display: none; } -/* line 717, ../../../scss/_app_styles.scss */ +/* line 718, ../../../scss/_app_styles.scss */ main > aside > div h4:hover span { display: inline; } -/* line 721, ../../../scss/_app_styles.scss */ +/* line 722, ../../../scss/_app_styles.scss */ main > aside > div h5, main > aside > div h6 { margin: 0; } -/* line 725, ../../../scss/_app_styles.scss */ +/* line 726, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content { width: auto; padding: 0; border: 1px solid #222; } -/* line 729, ../../../scss/_app_styles.scss */ +/* line 730, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content .item { width: 70px; } -/* line 736, ../../../scss/_app_styles.scss */ +/* line 737, ../../../scss/_app_styles.scss */ main > aside > div footer { background-color: #222; min-height: 1rem; } -/* line 739, ../../../scss/_app_styles.scss */ +/* line 740, ../../../scss/_app_styles.scss */ main > aside > div footer label { font-size: 0.7rem; } -/* line 752, ../../../scss/_app_styles.scss */ +/* line 753, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection { background-color: #444; padding: 0; border-bottom: 2px solid #6152ae; margin: 0; } -/* line 757, ../../../scss/_app_styles.scss */ +/* line 758, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li { border-bottom: 1px solid #555; } -/* line 759, ../../../scss/_app_styles.scss */ +/* line 760, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li a { border-left: 2px solid black; } -/* line 762, ../../../scss/_app_styles.scss */ +/* line 763, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li.active a, main > aside > div .side-nav.collection li a:hover { color: white !important; border-left: 2px solid #6152ae; background-color: #6152ae; } -/* line 775, ../../../scss/_app_styles.scss */ +/* line 776, ../../../scss/_app_styles.scss */ article { position: relative; z-index: 1; min-height: 400px; overflow-x: visible; } -/* line 780, ../../../scss/_app_styles.scss */ +/* line 781, ../../../scss/_app_styles.scss */ article > header, article form > header { padding: 15px; background-color: #f0f0f0; } -/* line 793, ../../../scss/_app_styles.scss */ +/* line 794, ../../../scss/_app_styles.scss */ article h1:not(.subheader) .tabs { display: inline-block; position: relative; bottom: -0.5rem; } -/* line 799, ../../../scss/_app_styles.scss */ +/* line 800, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div, article h1:not(.subheader) div input:not(.subheader) div { display: inline-block; position: relative; } -/* line 802, ../../../scss/_app_styles.scss */ +/* line 803, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input { height: 200%; font-style: italic; @@ -24144,13 +24145,13 @@ article h1:not(.subheader) div input { border-bottom: 2px dotted #222; background-color: inherit; } -/* line 812, ../../../scss/_app_styles.scss */ +/* line 813, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input:hover { background-color: white; } /* Card block */ -/* line 822, ../../../scss/_app_styles.scss */ +/* line 823, ../../../scss/_app_styles.scss */ .card > * { position: relative; background-color: white; @@ -24161,51 +24162,51 @@ article h1:not(.subheader) div input:hover { opacity: 0.9; overflow: hidden; } -/* line 834, ../../../scss/_app_styles.scss */ +/* line 835, ../../../scss/_app_styles.scss */ .card > * > a { color: inherit; display: block; position: relative; z-index: 200; } -/* line 845, ../../../scss/_app_styles.scss */ +/* line 846, ../../../scss/_app_styles.scss */ .card > *.published { opacity: 1; background-color: #e6f9ee; } -/* line 850, ../../../scss/_app_styles.scss */ +/* line 851, ../../../scss/_app_styles.scss */ .card > *.published hr { border-color: #7ee2a8; } -/* line 855, ../../../scss/_app_styles.scss */ +/* line 856, ../../../scss/_app_styles.scss */ .card > *.moderation { opacity: 1; background-color: #efefef; } -/* line 860, ../../../scss/_app_styles.scss */ +/* line 861, ../../../scss/_app_styles.scss */ .card > *.moderation hr { border-color: #bcbcbc; } -/* line 865, ../../../scss/_app_styles.scss */ +/* line 866, ../../../scss/_app_styles.scss */ .card > *.unapproved { opacity: 1; border-style: solid; border-color: #f04124; } -/* line 871, ../../../scss/_app_styles.scss */ +/* line 872, ../../../scss/_app_styles.scss */ .card > *:hover { border-style: solid; opacity: 1; } -/* line 877, ../../../scss/_app_styles.scss */ +/* line 878, ../../../scss/_app_styles.scss */ .card > *:hover i { opacity: 0.3; } -/* line 880, ../../../scss/_app_styles.scss */ +/* line 881, ../../../scss/_app_styles.scss */ .card > *:hover footer .age { display: block; } -/* line 885, ../../../scss/_app_styles.scss */ +/* line 886, ../../../scss/_app_styles.scss */ .card > * > i { position: absolute; top: -10px; @@ -24214,28 +24215,28 @@ article h1:not(.subheader) div input:hover { color: #6153ae; opacity: 0.3; } -/* line 894, ../../../scss/_app_styles.scss */ +/* line 895, ../../../scss/_app_styles.scss */ .card > * .preview { float: left; padding-right: 5px; padding-top: 4px; } -/* line 899, ../../../scss/_app_styles.scss */ +/* line 900, ../../../scss/_app_styles.scss */ .card > * header { overflow: hidden; } -/* line 903, ../../../scss/_app_styles.scss */ +/* line 904, ../../../scss/_app_styles.scss */ .card > * .label, .card > * .label-list:empty:before { opacity: 0.5; } -/* line 906, ../../../scss/_app_styles.scss */ +/* line 907, ../../../scss/_app_styles.scss */ .card > * p { color: #555; height: 80px; background-repeat: no-repeat; font-size: 80%; } -/* line 912, ../../../scss/_app_styles.scss */ +/* line 913, ../../../scss/_app_styles.scss */ .card > * .th { margin: 20px auto; width: 80px; @@ -24243,23 +24244,23 @@ article h1:not(.subheader) div input:hover { overflow: hidden; display: none; } -/* line 918, ../../../scss/_app_styles.scss */ +/* line 919, ../../../scss/_app_styles.scss */ .card > * .th:hover { width: 150px; height: 150px; } -/* line 922, ../../../scss/_app_styles.scss */ +/* line 923, ../../../scss/_app_styles.scss */ .card > * .th img { width: 100%; } -/* line 926, ../../../scss/_app_styles.scss */ +/* line 927, ../../../scss/_app_styles.scss */ .card > * footer { margin-top: 1rem; font-size: 70%; clear: both; color: #e01818; } -/* line 931, ../../../scss/_app_styles.scss */ +/* line 932, ../../../scss/_app_styles.scss */ .card > * footer .age { display: none; position: absolute; @@ -24269,7 +24270,7 @@ article h1:not(.subheader) div input:hover { width: 100%; } -/* line 942, ../../../scss/_app_styles.scss */ +/* line 943, ../../../scss/_app_styles.scss */ .edit-card { position: relative; background-color: white; @@ -24278,40 +24279,40 @@ article h1:not(.subheader) div input:hover { } /* Content Tabs */ -/* line 955, ../../../scss/_app_styles.scss */ +/* line 956, ../../../scss/_app_styles.scss */ article .tabs { display: inline-block; } -/* line 957, ../../../scss/_app_styles.scss */ +/* line 958, ../../../scss/_app_styles.scss */ article .tabs dd a { border-radius: 4px; border: 1px transparent; } -/* line 961, ../../../scss/_app_styles.scss */ +/* line 962, ../../../scss/_app_styles.scss */ article .tabs dd.active a { color: #6152ae; border: 1px solid; } -/* line 965, ../../../scss/_app_styles.scss */ +/* line 966, ../../../scss/_app_styles.scss */ article .tabs dd:hover a { color: #6152ae; } -/* line 969, ../../../scss/_app_styles.scss */ +/* line 970, ../../../scss/_app_styles.scss */ article .tabs i { margin-right: 5px; font-size: 1.6rem; } -/* line 973, ../../../scss/_app_styles.scss */ +/* line 974, ../../../scss/_app_styles.scss */ article .tabs span { font-size: 17px; vertical-align: text-bottom; } -/* line 979, ../../../scss/_app_styles.scss */ +/* line 980, ../../../scss/_app_styles.scss */ article section.content { border: 1px solid #eee; } -/* line 986, ../../../scss/_app_styles.scss */ +/* line 987, ../../../scss/_app_styles.scss */ .card > div:hover { box-shadow: 0 0 10px lightgray; transition: 0.9s; @@ -24320,31 +24321,31 @@ article section.content { } /* Default card */ -/* line 994, ../../../scss/_app_styles.scss */ +/* line 995, ../../../scss/_app_styles.scss */ .card > :hover .label, .card > :hover .label-list:empty:before { opacity: 1; } -/* line 999, ../../../scss/_app_styles.scss */ +/* line 1000, ../../../scss/_app_styles.scss */ .gallery .card .th { display: block; } /* Inline label list */ -/* line 1007, ../../../scss/_app_styles.scss */ +/* line 1008, ../../../scss/_app_styles.scss */ .label-list { display: inline-block; text-align: left; margin-bottom: 0.1rem; } -/* line 1011, ../../../scss/_app_styles.scss */ +/* line 1012, ../../../scss/_app_styles.scss */ .label-list:empty:before { content: "UNTAGGED"; opacity: 0.2 !important; padding: 2px; background-color: transparent; } -/* line 1019, ../../../scss/_app_styles.scss */ +/* line 1020, ../../../scss/_app_styles.scss */ .label-list .label, .label-list .label-list:empty:before { background-color: transparent; padding: 2px; @@ -24352,20 +24353,20 @@ article section.content { /*************************** 2. Custom CSS overrides ***********************/ /* Content area */ -/* line 1028, ../../../scss/_app_styles.scss */ +/* line 1029, ../../../scss/_app_styles.scss */ article { padding-bottom: 1rem; } -/* line 1032, ../../../scss/_app_styles.scss */ +/* line 1033, ../../../scss/_app_styles.scss */ article > header { border-bottom: 1px solid #ddd; } -/* line 1036, ../../../scss/_app_styles.scss */ +/* line 1037, ../../../scss/_app_styles.scss */ article > footer { border-top: 1px dotted #ddd; } -/* line 1048, ../../../scss/_app_styles.scss */ +/* line 1049, ../../../scss/_app_styles.scss */ textarea { min-height: 6rem; } @@ -24386,39 +24387,39 @@ textarea { }*/ /*************************** 3. Custom CSS Below ***********************/ /*CSS fix for tables generated via orgitdown*/ -/* line 1068, ../../../scss/_app_styles.scss */ +/* line 1069, ../../../scss/_app_styles.scss */ #content table td, #content colgroup col { float: none !important; } -/* line 1073, ../../../scss/_app_styles.scss */ +/* line 1074, ../../../scss/_app_styles.scss */ .user { color: inherit; } -/* line 1077, ../../../scss/_app_styles.scss */ +/* line 1078, ../../../scss/_app_styles.scss */ .user i { margin-right: 3px; } -/* line 1080, ../../../scss/_app_styles.scss */ +/* line 1081, ../../../scss/_app_styles.scss */ .user:hover i { opacity: 1; } -/* line 1084, ../../../scss/_app_styles.scss */ +/* line 1085, ../../../scss/_app_styles.scss */ a.node { display: block; } -/* line 1088, ../../../scss/_app_styles.scss */ +/* line 1089, ../../../scss/_app_styles.scss */ .button.edit { margin-bottom: 0; } /************ Forms **************/ /* Node edit */ -/* line 1096, ../../../scss/_app_styles.scss */ +/* line 1097, ../../../scss/_app_styles.scss */ input.node-title { font-size: 3rem; height: 4rem; @@ -24426,13 +24427,13 @@ input.node-title { } /* view-graph in node_details_base.html */ -/* line 1103, ../../../scss/_app_styles.scss */ +/* line 1104, ../../../scss/_app_styles.scss */ .graph-height { height: 70%; } /*for graph and location*/ -/* line 1108, ../../../scss/_app_styles.scss */ +/* line 1109, ../../../scss/_app_styles.scss */ .graph-div { height: 90%; width: -webkit-calc(100% - 10px); @@ -24446,13 +24447,13 @@ input.node-title { } /*for graph and location*/ -/* line 1118, ../../../scss/_app_styles.scss */ +/* line 1119, ../../../scss/_app_styles.scss */ .graph-div h3 { border-bottom: 2px inset #154534; padding: 0.25em 0; } -/* line 1123, ../../../scss/_app_styles.scss */ +/* line 1124, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal, #view-map-edit-widget .close-reveal-modal { z-index: 1; background-color: captiontext; @@ -24463,7 +24464,7 @@ input.node-title { box-shadow: 0 1px 10px 2px #A9A9A9; } -/* line 1134, ../../../scss/_app_styles.scss */ +/* line 1135, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal:hover, #view-map-edit-widget .close-reveal-modal:hover { background-color: white; border-radius: 30px; @@ -24476,7 +24477,7 @@ input.node-title { /****************** CUSTOM *********************/ /* UI Button */ -/* line 1149, ../../../scss/_app_styles.scss */ +/* line 1150, ../../../scss/_app_styles.scss */ .ui.button { margin-right: 0.5rem; border: 1px solid rgba(0, 0, 0, 0.2); @@ -24486,102 +24487,102 @@ input.node-title { padding: 0.5vw 0.75vw; z-index: 500; } -/* line 1160, ../../../scss/_app_styles.scss */ +/* line 1161, ../../../scss/_app_styles.scss */ .ui.button label { color: #666; } -/* line 1163, ../../../scss/_app_styles.scss */ +/* line 1164, ../../../scss/_app_styles.scss */ .ui.button small { margin-left: 2px; display: inline; } -/* line 1167, ../../../scss/_app_styles.scss */ +/* line 1168, ../../../scss/_app_styles.scss */ .ui.button:hover, .ui.button:active { border-color: rgba(255, 255, 255, 0.2); background-color: rgba(0, 0, 0, 0.9); } -/* line 1170, ../../../scss/_app_styles.scss */ +/* line 1171, ../../../scss/_app_styles.scss */ .ui.button:hover label, .ui.button:active label { color: #ddd; } -/* line 1173, ../../../scss/_app_styles.scss */ +/* line 1174, ../../../scss/_app_styles.scss */ .ui.button:hover small, .ui.button:active small { display: inline; } -/* line 1176, ../../../scss/_app_styles.scss */ +/* line 1177, ../../../scss/_app_styles.scss */ .ui.button:hover:focus, .ui.button:active:focus { font-weight: bold; } -/* line 1185, ../../../scss/_app_styles.scss */ +/* line 1186, ../../../scss/_app_styles.scss */ aside#help h4 { color: black; } -/* line 1188, ../../../scss/_app_styles.scss */ +/* line 1189, ../../../scss/_app_styles.scss */ aside#help p, aside#help h5, aside#help h6 { color: #ddd; padding: 0.3rem 0.9375rem; } -/* line 1195, ../../../scss/_app_styles.scss */ +/* line 1196, ../../../scss/_app_styles.scss */ .align-center { margin: 0 auto; display: block; } -/* line 1201, ../../../scss/_app_styles.scss */ +/* line 1202, ../../../scss/_app_styles.scss */ #profile-img { height: 40px; margin-right: 5px; } -/* line 1209, ../../../scss/_app_styles.scss */ +/* line 1210, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin-bottom: 20px; } -/* line 1213, ../../../scss/_app_styles.scss */ +/* line 1214, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 1219, ../../../scss/_app_styles.scss */ +/* line 1220, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 1222, ../../../scss/_app_styles.scss */ +/* line 1223, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 1226, ../../../scss/_app_styles.scss */ +/* line 1227, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 1231, ../../../scss/_app_styles.scss */ +/* line 1232, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 1238, ../../../scss/_app_styles.scss */ +/* line 1239, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 1242, ../../../scss/_app_styles.scss */ +/* line 1243, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 1247, ../../../scss/_app_styles.scss */ +/* line 1248, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 1253, ../../../scss/_app_styles.scss */ +/* line 1254, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -24590,16 +24591,16 @@ aside#help p, aside#help h5, aside#help h6 { border-top: 1px solid #B1B1B1; width: 80%; } -/* line 1262, ../../../scss/_app_styles.scss */ +/* line 1263, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 1267, ../../../scss/_app_styles.scss */ +/* line 1268, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 1270, ../../../scss/_app_styles.scss */ +/* line 1271, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { color: #ffffff !important; height: 2em; @@ -24607,7 +24608,7 @@ aside#help p, aside#help h5, aside#help h6 { padding-left: 10px; line-height: 1.5em; } -/* line 1280, ../../../scss/_app_styles.scss */ +/* line 1281, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -24617,12 +24618,12 @@ aside#help p, aside#help h5, aside#help h6 { border-radius: 0px 0px 5px 5px; /*background-color: #f2f2f2;*/ } -/* line 1289, ../../../scss/_app_styles.scss */ +/* line 1290, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 1295, ../../../scss/_app_styles.scss */ +/* line 1296, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -24648,7 +24649,7 @@ aside#help p, aside#help h5, aside#help h6 { } }*/ /* Simple Card CSS*/ -/* line 1323, ../../../scss/_app_styles.scss */ +/* line 1324, ../../../scss/_app_styles.scss */ .scard { background: #FFF; border: 1px solid #AAA; @@ -24660,12 +24661,12 @@ aside#help p, aside#help h5, aside#help h6 { height: 9rem; /*float:left;*/ } -/* line 1332, ../../../scss/_app_styles.scss */ +/* line 1333, ../../../scss/_app_styles.scss */ .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1338, ../../../scss/_app_styles.scss */ +/* line 1339, ../../../scss/_app_styles.scss */ .scard .scard_header { text-align: center; position: fixed; @@ -24683,7 +24684,7 @@ aside#help p, aside#help h5, aside#help h6 { font-weight: bold; } -/* line 1355, ../../../scss/_app_styles.scss */ +/* line 1356, ../../../scss/_app_styles.scss */ .scard-content { height: 2.7em; padding: 0.5rem; @@ -24696,7 +24697,7 @@ aside#help p, aside#help h5, aside#help h6 { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 1366, ../../../scss/_app_styles.scss */ +/* line 1367, ../../../scss/_app_styles.scss */ .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; @@ -24706,7 +24707,7 @@ aside#help p, aside#help h5, aside#help h6 { text-align: center; } -/* line 1379, ../../../scss/_app_styles.scss */ +/* line 1380, ../../../scss/_app_styles.scss */ .scard-action { height: height; font-size: 0.6em; @@ -24720,7 +24721,7 @@ aside#help p, aside#help h5, aside#help h6 { background-color: #CCCCCC; } -/* line 1394, ../../../scss/_app_styles.scss */ +/* line 1395, ../../../scss/_app_styles.scss */ .scard-desc { font-size: 0.7em; color: #333333; @@ -24736,13 +24737,13 @@ aside#help p, aside#help h5, aside#help h6 { display-inline: block; } -/* line 1409, ../../../scss/_app_styles.scss */ +/* line 1410, ../../../scss/_app_styles.scss */ p { margin: 0px; padding: 10px; } -/* line 1414, ../../../scss/_app_styles.scss */ +/* line 1415, ../../../scss/_app_styles.scss */ .scard-image { padding: 0px; margin: 0px; @@ -24753,7 +24754,7 @@ p { overflow: hidden; background-color: #f2f2f2; } -/* line 1423, ../../../scss/_app_styles.scss */ +/* line 1424, ../../../scss/_app_styles.scss */ .scard-image img { border-radius: 2px 2px 0 0; display: block; @@ -24761,7 +24762,7 @@ p { opacity: 0.9; height: 100%; } -/* line 1432, ../../../scss/_app_styles.scss */ +/* line 1433, ../../../scss/_app_styles.scss */ .scard-image i { font-size: 7rem; opacity: 0.75; @@ -24775,83 +24776,83 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1446, ../../../scss/_app_styles.scss */ +/* line 1447, ../../../scss/_app_styles.scss */ .scard-image i.common-icon:before { content: "\f1fb"; } -/* line 1449, ../../../scss/_app_styles.scss */ +/* line 1450, ../../../scss/_app_styles.scss */ .scard-image i.file:before { content: "\f18e"; } -/* line 1452, ../../../scss/_app_styles.scss */ +/* line 1453, ../../../scss/_app_styles.scss */ .scard-image i.page:before { content: "\f18e"; } -/* line 1455, ../../../scss/_app_styles.scss */ +/* line 1456, ../../../scss/_app_styles.scss */ .scard-image i.collection:before { content: "\f18a"; } -/* line 1458, ../../../scss/_app_styles.scss */ +/* line 1459, ../../../scss/_app_styles.scss */ .scard-image i.documents:before { content: "\f18b"; } -/* line 1461, ../../../scss/_app_styles.scss */ +/* line 1462, ../../../scss/_app_styles.scss */ .scard-image i.pdf:before { content: "\f18b"; } -/* line 1464, ../../../scss/_app_styles.scss */ +/* line 1465, ../../../scss/_app_styles.scss */ .scard-image i.text:before { content: "\f18e"; } -/* line 1467, ../../../scss/_app_styles.scss */ +/* line 1468, ../../../scss/_app_styles.scss */ .scard-image i.interactives:before { content: "\f1b2"; } -/* line 1470, ../../../scss/_app_styles.scss */ +/* line 1471, ../../../scss/_app_styles.scss */ .scard-image i.ebooks:before { content: "\f11e"; } -/* line 1473, ../../../scss/_app_styles.scss */ +/* line 1474, ../../../scss/_app_styles.scss */ .scard-image i.images:before { content: "\f125"; } -/* line 1476, ../../../scss/_app_styles.scss */ +/* line 1477, ../../../scss/_app_styles.scss */ .scard-image i.audios:before, .scard-image i.audio:before { content: "\f17b"; } -/* line 1479, ../../../scss/_app_styles.scss */ +/* line 1480, ../../../scss/_app_styles.scss */ .scard-image i.videos:before, .scard-image i.video:before { content: "\f20e"; } -/* line 1485, ../../../scss/_app_styles.scss */ +/* line 1486, ../../../scss/_app_styles.scss */ .published.scard-action { background: #A6D9CB; } -/* line 1489, ../../../scss/_app_styles.scss */ +/* line 1490, ../../../scss/_app_styles.scss */ .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 1495, ../../../scss/_app_styles.scss */ +/* line 1496, ../../../scss/_app_styles.scss */ .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1500, ../../../scss/_app_styles.scss */ +/* line 1501, ../../../scss/_app_styles.scss */ .moderation.scard-action { border-color: transparent #6153ae transparent transparent; border-color: rgba(255, 255, 255, 0) #6153ae rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1504, ../../../scss/_app_styles.scss */ +/* line 1505, ../../../scss/_app_styles.scss */ .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 1508, ../../../scss/_app_styles.scss */ +/* line 1509, ../../../scss/_app_styles.scss */ .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -24862,7 +24863,7 @@ p { /* End Simple Card CSS*/ /* Customized Off-Canvas */ -/* line 1646, ../../../scss/_app_styles.scss */ +/* line 1647, ../../../scss/_app_styles.scss */ #help-canvas-menu { position: fixed; top: 52px; @@ -24875,26 +24876,26 @@ p { height: 100%; } -/* line 1657, ../../../scss/_app_styles.scss */ +/* line 1658, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded { left: 0 !important; z-index: 100000000; left: 150px; } -/* line 1662, ../../../scss/_app_styles.scss */ +/* line 1663, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded .help-button { right: 80px; z-index: -1; } -/* line 1667, ../../../scss/_app_styles.scss */ +/* line 1668, ../../../scss/_app_styles.scss */ #help-canvas-menu.animating .help-button { -webkit-animation: shake 400ms; animation: shake 400ms; } -/* line 1671, ../../../scss/_app_styles.scss */ +/* line 1672, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button { position: absolute; -webkit-transform: rotate(-90deg); @@ -24921,12 +24922,12 @@ p { border-top-right-radius: 5px; } -/* line 1697, ../../../scss/_app_styles.scss */ +/* line 1698, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button-text { font-size: 18px; } -/* line 1700, ../../../scss/_app_styles.scss */ +/* line 1701, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button .text { color: #f9f9f9; letter-spacing: .1em; @@ -24935,7 +24936,7 @@ p { text-shadow: 0 0 1px rgba(0, 0, 0, 0.35); } -/* line 1709, ../../../scss/_app_styles.scss */ +/* line 1710, ../../../scss/_app_styles.scss */ #help-canvas-menu .mainContainer { background: #fff; /*-webkit-box-shadow:3px 3px 17px -1px #7b7b7b; @@ -24949,7 +24950,7 @@ p { } /* End of Customized Off-Canvas */ -/* line 1727, ../../../scss/_app_styles.scss */ +/* line 1728, ../../../scss/_app_styles.scss */ .rcard { overflow: hidden; color: #272727; @@ -24957,56 +24958,56 @@ p { background-color: #f5f5f5; margin: 5px; } -/* line 1738, ../../../scss/_app_styles.scss */ +/* line 1739, ../../../scss/_app_styles.scss */ .rcard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1743, ../../../scss/_app_styles.scss */ +/* line 1744, ../../../scss/_app_styles.scss */ .rcard .title { font-size: 1.1rem; font-weight: bold; } -/* line 1749, ../../../scss/_app_styles.scss */ +/* line 1750, ../../../scss/_app_styles.scss */ .rcard .content { padding: 0.5rem 2rem; border-radius: 0 0 2px 2px; overflow: hidden; height: 7.25rem; } -/* line 1756, ../../../scss/_app_styles.scss */ +/* line 1757, ../../../scss/_app_styles.scss */ .rcard .content .slick-slider { margin-bottom: 0; } -/* line 1760, ../../../scss/_app_styles.scss */ +/* line 1761, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev { left: 0.25rem; } -/* line 1763, ../../../scss/_app_styles.scss */ +/* line 1764, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev:before { color: #ccc; } -/* line 1769, ../../../scss/_app_styles.scss */ +/* line 1770, ../../../scss/_app_styles.scss */ .rcard .content .slick-next { right: 0.25rem; } -/* line 1772, ../../../scss/_app_styles.scss */ +/* line 1773, ../../../scss/_app_styles.scss */ .rcard .content .slick-next:before { color: #ccc; } -/* line 1778, ../../../scss/_app_styles.scss */ +/* line 1779, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title { width: 100%; border-bottom: 1px solid #808080; line-height: 0.25em; margin: 10px 0 20px; } -/* line 1784, ../../../scss/_app_styles.scss */ +/* line 1785, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title small { padding: 0 10px; background-color: #f5f5f5; } -/* line 1791, ../../../scss/_app_styles.scss */ +/* line 1792, ../../../scss/_app_styles.scss */ .rcard .action { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -25014,15 +25015,15 @@ p { font-size: small; height: 2rem; } -/* line 1798, ../../../scss/_app_styles.scss */ +/* line 1799, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection { opacity: 0.5; } -/* line 1801, ../../../scss/_app_styles.scss */ +/* line 1802, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection:hover { opacity: 1; } -/* line 1815, ../../../scss/_app_styles.scss */ +/* line 1816, ../../../scss/_app_styles.scss */ .rcard .image { position: relative; background-color: #ccc; @@ -25030,7 +25031,7 @@ p { height: 8em; overflow: hidden; } -/* line 1825, ../../../scss/_app_styles.scss */ +/* line 1826, ../../../scss/_app_styles.scss */ .rcard .image .title { position: absolute; bottom: 0; @@ -25042,7 +25043,7 @@ p { text-transform: uppercase; text-shadow: 0px 0px 0.5px rgba(0, 0, 0, 0.5); } -/* line 1838, ../../../scss/_app_styles.scss */ +/* line 1839, ../../../scss/_app_styles.scss */ .rcard .image img { border-radius: 2px 2px 0 0; display: block; @@ -25052,14 +25053,14 @@ p { filter: brightness(0.75); -webkit-filter: brightness(0.75); } -/* line 1850, ../../../scss/_app_styles.scss */ +/* line 1851, ../../../scss/_app_styles.scss */ .rcard .image img:hover { filter: brightness(1); -webkit-filter: brightness(1); transform: translate3d(0, 0, 0); transition: all 1.5s ease; } -/* line 1859, ../../../scss/_app_styles.scss */ +/* line 1860, ../../../scss/_app_styles.scss */ .rcard .image i { font-size: 7rem; opacity: 0.75; @@ -25073,51 +25074,51 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1876, ../../../scss/_app_styles.scss */ +/* line 1877, ../../../scss/_app_styles.scss */ .rcard .image i.file:before { content: "\f18e"; } -/* line 1877, ../../../scss/_app_styles.scss */ +/* line 1878, ../../../scss/_app_styles.scss */ .rcard .image i.page:before { content: "\f18e"; } -/* line 1878, ../../../scss/_app_styles.scss */ +/* line 1879, ../../../scss/_app_styles.scss */ .rcard .image i.collection:before { content: "\f18a"; } -/* line 1880, ../../../scss/_app_styles.scss */ +/* line 1881, ../../../scss/_app_styles.scss */ .rcard .image i.documents:before { content: "\f18b"; } -/* line 1881, ../../../scss/_app_styles.scss */ +/* line 1882, ../../../scss/_app_styles.scss */ .rcard .image i.pdf:before { content: "\f18b"; } -/* line 1882, ../../../scss/_app_styles.scss */ +/* line 1883, ../../../scss/_app_styles.scss */ .rcard .image i.text:before { content: "\f18e"; } -/* line 1883, ../../../scss/_app_styles.scss */ +/* line 1884, ../../../scss/_app_styles.scss */ .rcard .image i.interactives:before { content: "\f1b2"; } -/* line 1884, ../../../scss/_app_styles.scss */ +/* line 1885, ../../../scss/_app_styles.scss */ .rcard .image i.ebooks:before { content: "\f11e"; } -/* line 1885, ../../../scss/_app_styles.scss */ +/* line 1886, ../../../scss/_app_styles.scss */ .rcard .image i.images:before { content: "\f125"; } -/* line 1886, ../../../scss/_app_styles.scss */ +/* line 1887, ../../../scss/_app_styles.scss */ .rcard .image i.audios:before, .rcard .image i.audio:before { content: "\f17b"; } -/* line 1887, ../../../scss/_app_styles.scss */ +/* line 1888, ../../../scss/_app_styles.scss */ .rcard .image i.videos:before, .rcard .image i.video:before { content: "\f20e"; } -/* line 1890, ../../../scss/_app_styles.scss */ +/* line 1891, ../../../scss/_app_styles.scss */ .rcard .card-label { border-style: solid; border-width: 0 70px 40px 0; @@ -25130,59 +25131,59 @@ p { z-index: 1; opacity: 0.75; } -/* line 1903, ../../../scss/_app_styles.scss */ +/* line 1904, ../../../scss/_app_styles.scss */ .rcard .card-label { border-color: transparent #333 transparent transparent; border-color: rgba(255, 255, 255, 0) #333 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1908, ../../../scss/_app_styles.scss */ +/* line 1909, ../../../scss/_app_styles.scss */ .rcard .published.card-label { border-color: transparent #43AC6A transparent transparent; border-color: rgba(255, 255, 255, 0) #43AC6A rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1912, ../../../scss/_app_styles.scss */ +/* line 1913, ../../../scss/_app_styles.scss */ .rcard .published.card-label .label-text:before { content: "\221A"; margin-left: 5px; font-size: larger; } -/* line 1920, ../../../scss/_app_styles.scss */ +/* line 1921, ../../../scss/_app_styles.scss */ .rcard .draft.card-label { border-color: transparent #cdcdcd transparent transparent; border-color: rgba(255, 255, 255, 0) #cdcdcd rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1924, ../../../scss/_app_styles.scss */ +/* line 1925, ../../../scss/_app_styles.scss */ .rcard .draft.card-label .label-text:before { content: "Draft"; } -/* line 1929, ../../../scss/_app_styles.scss */ +/* line 1930, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1933, ../../../scss/_app_styles.scss */ +/* line 1934, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label .label-text:before { content: "Deleted"; } -/* line 1938, ../../../scss/_app_styles.scss */ +/* line 1939, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label { border-color: transparent #6153ae transparent transparent; border-color: rgba(255, 255, 255, 0) #6153ae rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1942, ../../../scss/_app_styles.scss */ +/* line 1943, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label .label-text:before { content: "Mod"; } -/* line 1945, ../../../scss/_app_styles.scss */ +/* line 1946, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label { border-color: transparent #000 transparent transparent; border-color: rgba(255, 255, 255, 0) #000 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1949, ../../../scss/_app_styles.scss */ +/* line 1950, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label .label-text:before { content: "hidden"; } -/* line 1952, ../../../scss/_app_styles.scss */ +/* line 1953, ../../../scss/_app_styles.scss */ .rcard .label-text { color: #fff; font-size: 0.75rem; @@ -25193,7 +25194,7 @@ p { transform: rotate(30deg); } -/* line 1966, ../../../scss/_app_styles.scss */ +/* line 1967, ../../../scss/_app_styles.scss */ .compulsory:after { content: '*'; color: red; @@ -25201,19 +25202,19 @@ p { } /* Watermark background for node_ajax_content */ -/* line 1974, ../../../scss/_app_styles.scss */ +/* line 1975, ../../../scss/_app_styles.scss */ .allow.draft { background-size: 10%; background-repeat: repeat; background-image: url("/static/ndf/images/draft-watermark.png"); } -/* line 1982, ../../../scss/_app_styles.scss */ +/* line 1983, ../../../scss/_app_styles.scss */ .text-gray { color: gray; } -/* line 1987, ../../../scss/_app_styles.scss */ +/* line 1988, ../../../scss/_app_styles.scss */ .repository-title { color: #D7D7D7; font-size: 1.1em; @@ -25226,7 +25227,7 @@ p { text-align: center; } -/* line 1999, ../../../scss/_app_styles.scss */ +/* line 2000, ../../../scss/_app_styles.scss */ .repository-desc { font-size: 1.1em; width: auto; @@ -25238,12 +25239,12 @@ p { margin-left: 4px; } -/* line 2010, ../../../scss/_app_styles.scss */ +/* line 2011, ../../../scss/_app_styles.scss */ .card-holder { padding-left: 2%; } -/* line 2014, ../../../scss/_app_styles.scss */ +/* line 2015, ../../../scss/_app_styles.scss */ .app-card-wrapper { position: relative; margin: auto; @@ -25253,14 +25254,14 @@ p { max-width: calc(70rem + 70px); } -/* line 2023, ../../../scss/_app_styles.scss */ +/* line 2024, ../../../scss/_app_styles.scss */ .app-card-container { display: inline-block; vertical-align: top; margin: 15px; } -/* line 2029, ../../../scss/_app_styles.scss */ +/* line 2030, ../../../scss/_app_styles.scss */ .app-card { width: 19rem; margin: 15px 20px; @@ -25271,7 +25272,7 @@ p { border: thin solid #D3D3D3; } -/* line 2039, ../../../scss/_app_styles.scss */ +/* line 2040, ../../../scss/_app_styles.scss */ .app-card:hover { box-shadow: 0px 0px 15px #808080; border: thin solid #D3D3D3; @@ -25279,26 +25280,26 @@ p { transition: all 0.6s ease 0s; } -/* line 2046, ../../../scss/_app_styles.scss */ +/* line 2047, ../../../scss/_app_styles.scss */ .app-card-icon { color: #4c4c4c; position: relative; font-size: 6em; } -/* line 2052, ../../../scss/_app_styles.scss */ +/* line 2053, ../../../scss/_app_styles.scss */ .app-card-title { padding-bottom: -1em; } -/* line 2056, ../../../scss/_app_styles.scss */ +/* line 2057, ../../../scss/_app_styles.scss */ .app-card-content { color: #4c4c4c; text-align: center; margin-top: 0.5cm; } -/* line 2063, ../../../scss/_app_styles.scss */ +/* line 2064, ../../../scss/_app_styles.scss */ .fullscreen-icon { display: none; } @@ -25314,58 +25315,58 @@ div.show-image:hover div.fullscreen-icon{ font-size:2em; }*/ -/* line 2082, ../../../scss/_app_styles.scss */ +/* line 2083, ../../../scss/_app_styles.scss */ .cke .cke_toolbox .cke_toolbar:last-child { float: right; } -/* line 2088, ../../../scss/_app_styles.scss */ +/* line 2089, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin: 0px 1em; } -/* line 2092, ../../../scss/_app_styles.scss */ +/* line 2093, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 2098, ../../../scss/_app_styles.scss */ +/* line 2099, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 2101, ../../../scss/_app_styles.scss */ +/* line 2102, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 2105, ../../../scss/_app_styles.scss */ +/* line 2106, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 2110, ../../../scss/_app_styles.scss */ +/* line 2111, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 2117, ../../../scss/_app_styles.scss */ +/* line 2118, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 2121, ../../../scss/_app_styles.scss */ +/* line 2122, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 2126, ../../../scss/_app_styles.scss */ +/* line 2127, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 2132, ../../../scss/_app_styles.scss */ +/* line 2133, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -25373,16 +25374,16 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 0em; border-top: 1px solid #B1B1B1; } -/* line 2140, ../../../scss/_app_styles.scss */ +/* line 2141, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 2145, ../../../scss/_app_styles.scss */ +/* line 2146, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 2148, ../../../scss/_app_styles.scss */ +/* line 2149, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { /*background-color: #3e3e3e;*/ color: #ececec !important; @@ -25392,7 +25393,7 @@ div.show-image:hover div.fullscreen-icon{ line-height: 1.5em; border-radius: 5px 5px 0px 0px; } -/* line 2158, ../../../scss/_app_styles.scss */ +/* line 2159, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -25401,12 +25402,12 @@ div.show-image:hover div.fullscreen-icon{ padding-left: 10px; border-radius: 0px 0px 5px 5px; } -/* line 2166, ../../../scss/_app_styles.scss */ +/* line 2167, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 2172, ../../../scss/_app_styles.scss */ +/* line 2173, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -25414,7 +25415,7 @@ div.show-image:hover div.fullscreen-icon{ /* Large desktop */ @media (min-width: 34em) { - /* line 2180, ../../../scss/_app_styles.scss */ + /* line 2181, ../../../scss/_app_styles.scss */ .container { max-width: 34rem; margin: 0px auto; @@ -25422,7 +25423,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 48em) { - /* line 2188, ../../../scss/_app_styles.scss */ + /* line 2189, ../../../scss/_app_styles.scss */ .container { max-width: 45rem; margin: 0px auto; @@ -25430,7 +25431,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 62em) { - /* line 2196, ../../../scss/_app_styles.scss */ + /* line 2197, ../../../scss/_app_styles.scss */ .container { max-width: 60rem; margin: 0px auto; @@ -25438,20 +25439,20 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 75em) { - /* line 2204, ../../../scss/_app_styles.scss */ + /* line 2205, ../../../scss/_app_styles.scss */ .container { max-width: 72.25rem; margin: 0px auto; } } -/* line 2210, ../../../scss/_app_styles.scss */ +/* line 2211, ../../../scss/_app_styles.scss */ .course-page { position: relative; background-size: 100% 100%; height: 100%; margin-top: 10px; } -/* line 2216, ../../../scss/_app_styles.scss */ +/* line 2217, ../../../scss/_app_styles.scss */ .course-page > .container { background-color: #fff; padding: 0px 0px; @@ -25459,7 +25460,7 @@ div.show-image:hover div.fullscreen-icon{ box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3); } -/* line 2224, ../../../scss/_app_styles.scss */ +/* line 2225, ../../../scss/_app_styles.scss */ .course-page-opacity { height: 100%; width: 100%; @@ -25473,12 +25474,12 @@ div.show-image:hover div.fullscreen-icon{ background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 2238, ../../../scss/_app_styles.scss */ +/* line 2239, ../../../scss/_app_styles.scss */ #envelop-cover { /*background: #A0148E;*/ height: 250px; } -/* line 2242, ../../../scss/_app_styles.scss */ +/* line 2243, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header { font-size: 35px; font-weight: 500; @@ -25488,11 +25489,11 @@ div.show-image:hover div.fullscreen-icon{ height: 250px; color: #fff; } -/* line 2251, ../../../scss/_app_styles.scss */ +/* line 2252, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header label { color: #fff; } -/* line 2255, ../../../scss/_app_styles.scss */ +/* line 2256, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background, #envelop-cover .course-page-header .course-header-background-layer { position: absolute; left: 0px; @@ -25501,17 +25502,17 @@ div.show-image:hover div.fullscreen-icon{ bottom: 0px; height: 250px; } -/* line 2262, ../../../scss/_app_styles.scss */ +/* line 2263, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background img, #envelop-cover .course-page-header .course-header-background-layer img { width: auto; height: 250px; } -/* line 2268, ../../../scss/_app_styles.scss */ +/* line 2269, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background-layer { background-color: rgba(0, 0, 0, 0.5); opacity: 0; } -/* line 2273, ../../../scss/_app_styles.scss */ +/* line 2274, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings { margin-left: 15px; position: absolute; @@ -25519,20 +25520,20 @@ div.show-image:hover div.fullscreen-icon{ bottom: 55px; /*width: 170px;*/ } -/* line 2279, ../../../scss/_app_styles.scss */ +/* line 2280, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul { box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); } -/* line 2281, ../../../scss/_app_styles.scss */ +/* line 2282, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul > li:hover { background: rgba(0, 0, 0, 0.9); } -/* line 2285, ../../../scss/_app_styles.scss */ +/* line 2286, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a { font-size: 15px; color: #737373; } -/* line 2286, ../../../scss/_app_styles.scss */ +/* line 2287, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child { background: rgba(50, 50, 50, 0.8); padding: 9px 12px 9px 10px; @@ -25540,11 +25541,11 @@ div.show-image:hover div.fullscreen-icon{ font-size: 12px; margin: 0px; } -/* line 2292, ../../../scss/_app_styles.scss */ +/* line 2293, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child > i { margin-right: 5px; } -/* line 2299, ../../../scss/_app_styles.scss */ +/* line 2300, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span { background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.7); @@ -25555,30 +25556,30 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; border-radius: 3px; } -/* line 2309, ../../../scss/_app_styles.scss */ +/* line 2310, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span i { font-size: 20px; } -/* line 2316, ../../../scss/_app_styles.scss */ +/* line 2317, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a { font-size: 15px; color: #737373; } -/* line 2319, ../../../scss/_app_styles.scss */ +/* line 2320, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a i { font-size: 18px; } -/* line 2326, ../../../scss/_app_styles.scss */ +/* line 2327, ../../../scss/_app_styles.scss */ #envelop-cover .heading { letter-spacing: -1.2px; font-weight: 400; } -/* line 2331, ../../../scss/_app_styles.scss */ +/* line 2332, ../../../scss/_app_styles.scss */ #envelop-cover .meta { line-height: 2.1em; padding-left: 14px; } -/* line 2335, ../../../scss/_app_styles.scss */ +/* line 2336, ../../../scss/_app_styles.scss */ #envelop-cover .meta .key { color: #A7A4A4; font-weight: 500; @@ -25588,27 +25589,27 @@ div.show-image:hover div.fullscreen-icon{ vertical-align: top; margin-right: 10px; } -/* line 2345, ../../../scss/_app_styles.scss */ +/* line 2346, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value { display: inline-block; } -/* line 2348, ../../../scss/_app_styles.scss */ +/* line 2349, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .name { color: #000; } -/* line 2352, ../../../scss/_app_styles.scss */ +/* line 2353, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .time { font-size: 13px; font-weight: 300; color: #000; } -/* line 2359, ../../../scss/_app_styles.scss */ +/* line 2360, ../../../scss/_app_styles.scss */ #envelop-cover .course-title { position: absolute; bottom: 50px; left: 5px; } -/* line 2364, ../../../scss/_app_styles.scss */ +/* line 2365, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs { border: 0 solid silver; border-width: 0px 0px 0px 0px; @@ -25620,7 +25621,7 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; background-color: rgba(255, 255, 255, 0.8); } -/* line 2375, ../../../scss/_app_styles.scss */ +/* line 2376, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title { border: 0 solid silver; border-width: 0 0 0px 0px; @@ -25630,7 +25631,7 @@ div.show-image:hover div.fullscreen-icon{ display: inline-block; border-top: 5px solid transparent; } -/* line 2384, ../../../scss/_app_styles.scss */ +/* line 2385, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title a { color: #6F669E; font-weight: 600; @@ -25638,25 +25639,25 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: -0.3px; padding: 0rem 0.8rem 0.4rem; } -/* line 2392, ../../../scss/_app_styles.scss */ +/* line 2393, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active { border-width: 0px 0px 0px 0px; background: #FFFFFF; border-top: 5px solid #F11FD0; } -/* line 2396, ../../../scss/_app_styles.scss */ +/* line 2397, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active a { color: #6153AE; } -/* line 2409, ../../../scss/_app_styles.scss */ +/* line 2410, ../../../scss/_app_styles.scss */ .note-tags a { background: #ffebb2; padding: 0.2em 0.7em; display: inline-block; } -/* line 2416, ../../../scss/_app_styles.scss */ +/* line 2417, ../../../scss/_app_styles.scss */ .toggleButtons a { padding: 0.5em 1em; margin: 0px; @@ -25665,69 +25666,69 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid #B7B7B7; display: inline; } -/* line 2424, ../../../scss/_app_styles.scss */ +/* line 2425, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { margin-right: -3px; border-right: 0px solid #000; } -/* line 2428, ../../../scss/_app_styles.scss */ +/* line 2429, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { border-radius: 10px 0px 0px 10px; } -/* line 2431, ../../../scss/_app_styles.scss */ +/* line 2432, ../../../scss/_app_styles.scss */ .toggleButtons a:last-child { border-radius: 0px 10px 10px 0px; } -/* line 2434, ../../../scss/_app_styles.scss */ +/* line 2435, ../../../scss/_app_styles.scss */ .toggleButtons a.active { background-color: #908F8F; color: #fff; } -/* line 2441, ../../../scss/_app_styles.scss */ +/* line 2442, ../../../scss/_app_styles.scss */ .explore-header { line-height: 3em; } -/* line 2444, ../../../scss/_app_styles.scss */ +/* line 2445, ../../../scss/_app_styles.scss */ .explore-header > div { vertical-align: middle; display: inline-block; } -/* line 2448, ../../../scss/_app_styles.scss */ +/* line 2449, ../../../scss/_app_styles.scss */ .explore-header .heading { font-size: 2em; } -/* line 2461, ../../../scss/_app_styles.scss */ +/* line 2462, ../../../scss/_app_styles.scss */ #envelop-content { /*background-color: #fff;*/ padding: 0px 10px; overflow-x: hidden; /* For accordian in the mobile view*/ } -/* line 2467, ../../../scss/_app_styles.scss */ +/* line 2468, ../../../scss/_app_styles.scss */ #envelop-content .accordion { margin-left: 0px; } -/* line 2471, ../../../scss/_app_styles.scss */ +/* line 2472, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation a { background-color: #DEDEDE; } -/* line 2474, ../../../scss/_app_styles.scss */ +/* line 2475, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation.active a { background-color: #fff; } -/* line 2481, ../../../scss/_app_styles.scss */ +/* line 2482, ../../../scss/_app_styles.scss */ #envelop-content > div > .tabs-content > .content { background: #FFFFFF; padding: 1em; } -/* line 2488, ../../../scss/_app_styles.scss */ +/* line 2489, ../../../scss/_app_styles.scss */ #envelop-content .course-book #course-dashboard { padding: 0px; } -/* line 2496, ../../../scss/_app_styles.scss */ +/* line 2497, ../../../scss/_app_styles.scss */ .course-overview-container { /*.about-course-heading { display: block; @@ -25762,23 +25763,23 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; }*/ } -/* line 2497, ../../../scss/_app_styles.scss */ +/* line 2498, ../../../scss/_app_styles.scss */ .course-overview-container .course-overview > .columns { padding: 0px 10px; } -/* line 2500, ../../../scss/_app_styles.scss */ +/* line 2501, ../../../scss/_app_styles.scss */ .course-overview-container h5 { text-transform: uppercase; } -/* line 2503, ../../../scss/_app_styles.scss */ +/* line 2504, ../../../scss/_app_styles.scss */ .course-overview-container .correct-count { color: #367714; } -/* line 2506, ../../../scss/_app_styles.scss */ +/* line 2507, ../../../scss/_app_styles.scss */ .course-overview-container .incorrect-count { color: #9b0000; } -/* line 2509, ../../../scss/_app_styles.scss */ +/* line 2510, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-heading { text-transform: uppercase; font-size: 12px; @@ -25787,45 +25788,45 @@ div.show-image:hover div.fullscreen-icon{ color: #8E8E8E; display: block; } -/* line 2517, ../../../scss/_app_styles.scss */ +/* line 2518, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-count { font-size: 30px; font-weight: 500; letter-spacing: 0.5px; display: block; } -/* line 2523, ../../../scss/_app_styles.scss */ +/* line 2524, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session { border-bottom: 1px solid #ccc; margin-bottom: 12px; padding-bottom: 15px; } -/* line 2528, ../../../scss/_app_styles.scss */ +/* line 2529, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session h5, .course-overview-container .ongoing-session h3 { color: #2b78e4; } -/* line 2531, ../../../scss/_app_styles.scss */ +/* line 2532, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session button { font-size: 14px; padding: 7px; margin: 0px; background-color: #2B78E4; } -/* line 2539, ../../../scss/_app_styles.scss */ +/* line 2540, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > h5 { color: #888; } -/* line 2542, ../../../scss/_app_styles.scss */ +/* line 2543, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > .row { margin: 10px 0px; } -/* line 2545, ../../../scss/_app_styles.scss */ +/* line 2546, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2550, ../../../scss/_app_styles.scss */ +/* line 2551, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -25834,17 +25835,17 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2558, ../../../scss/_app_styles.scss */ +/* line 2559, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2568, ../../../scss/_app_styles.scss */ +/* line 2569, ../../../scss/_app_styles.scss */ .course-overview-container .course-notif-logs ul { list-style: none; } -/* line 2572, ../../../scss/_app_styles.scss */ +/* line 2573, ../../../scss/_app_styles.scss */ .course-overview-container .course-section { border: 1px solid #ccc; padding: 10px; @@ -25852,11 +25853,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 40px 0px; position: relative; } -/* line 2579, ../../../scss/_app_styles.scss */ +/* line 2580, ../../../scss/_app_styles.scss */ .course-overview-container .course-section > .row { margin: 20px 0px; } -/* line 2583, ../../../scss/_app_styles.scss */ +/* line 2584, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-heading { text-transform: uppercase; font-weight: 600; @@ -25866,7 +25867,7 @@ div.show-image:hover div.fullscreen-icon{ margin: 2px 0px 15px; color: #888; } -/* line 2593, ../../../scss/_app_styles.scss */ +/* line 2594, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-icon { position: absolute; font-size: 40px; @@ -25875,58 +25876,58 @@ div.show-image:hover div.fullscreen-icon{ color: #aaa; background: #fff; } -/* line 2617, ../../../scss/_app_styles.scss */ +/* line 2618, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning { background-color: #fffdd7; } -/* line 2619, ../../../scss/_app_styles.scss */ +/* line 2620, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning > h5 { color: #c09100; } -/* line 2622, ../../../scss/_app_styles.scss */ +/* line 2623, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning i { padding: 10px; margin-right: 5px; color: #c09100; } -/* line 2627, ../../../scss/_app_styles.scss */ +/* line 2628, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning a { text-decoration: underline; } -/* line 2631, ../../../scss/_app_styles.scss */ +/* line 2632, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data { margin: 20px 0px; } -/* line 2635, ../../../scss/_app_styles.scss */ +/* line 2636, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 2638, ../../../scss/_app_styles.scss */ +/* line 2639, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 2645, ../../../scss/_app_styles.scss */ +/* line 2646, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table { width: 100%; margin: 15px 0px; } -/* line 2649, ../../../scss/_app_styles.scss */ +/* line 2650, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table tr { border: none; } -/* line 2653, ../../../scss/_app_styles.scss */ +/* line 2654, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table .progress .merter-val { margin-left: 5px; } -/* line 2691, ../../../scss/_app_styles.scss */ +/* line 2692, ../../../scss/_app_styles.scss */ .about-course { background-color: #fff; padding: 10px 23px; } -/* line 2694, ../../../scss/_app_styles.scss */ +/* line 2695, ../../../scss/_app_styles.scss */ .about-course > h5 { text-transform: uppercase; font-weight: 600; @@ -25937,7 +25938,7 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 5px; } -/* line 2705, ../../../scss/_app_styles.scss */ +/* line 2706, ../../../scss/_app_styles.scss */ .course-desc { letter-spacing: 0.7px; font-weight: 400; @@ -25947,7 +25948,7 @@ div.show-image:hover div.fullscreen-icon{ margin-top: 5px; } -/* line 2713, ../../../scss/_app_styles.scss */ +/* line 2714, ../../../scss/_app_styles.scss */ .course-highlight { letter-spacing: 0.7px; font-weight: 400; @@ -25958,25 +25959,25 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 4px; margin-bottom: 5px; } -/* line 2723, ../../../scss/_app_styles.scss */ +/* line 2724, ../../../scss/_app_styles.scss */ .course-highlight > span { color: #ce7869; } -/* line 2729, ../../../scss/_app_styles.scss */ +/* line 2730, ../../../scss/_app_styles.scss */ .icon-wid { font-size: 34px !important; color: #a2b1be; margin-right: 10px; } -/* line 2738, ../../../scss/_app_styles.scss */ +/* line 2739, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2743, ../../../scss/_app_styles.scss */ +/* line 2744, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -25985,96 +25986,96 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2751, ../../../scss/_app_styles.scss */ +/* line 2752, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2760, ../../../scss/_app_styles.scss */ +/* line 2761, ../../../scss/_app_styles.scss */ .student-dashboard-header-container { background-color: #90F; padding: 10px 10px; height: 110px; width: 100%; } -/* line 2768, ../../../scss/_app_styles.scss */ +/* line 2769, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header img { height: 75px; width: 75px; vertical-align: top; margin: 0px 10px; } -/* line 2774, ../../../scss/_app_styles.scss */ +/* line 2775, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info { display: inline-block; } -/* line 2776, ../../../scss/_app_styles.scss */ +/* line 2777, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info > span { display: block; color: #fff; } -/* line 2780, ../../../scss/_app_styles.scss */ +/* line 2781, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-name { color: #fff; font-weight: 600; font-size: 22px; letter-spacing: 0.5px; } -/* line 2786, ../../../scss/_app_styles.scss */ +/* line 2787, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-overall-points { font-size: 26px; color: #ffff00; } -/* line 2799, ../../../scss/_app_styles.scss */ +/* line 2800, ../../../scss/_app_styles.scss */ .student-dashboard { background-color: #fff; padding: 10px; } -/* line 2804, ../../../scss/_app_styles.scss */ +/* line 2805, ../../../scss/_app_styles.scss */ .student-dashboard #course-act-logs > span { display: inline-block; vertical-align: top; } -/* line 2813, ../../../scss/_app_styles.scss */ +/* line 2814, ../../../scss/_app_styles.scss */ .rating-star-number { position: relative; display: inline-block; } -/* line 2816, ../../../scss/_app_styles.scss */ +/* line 2817, ../../../scss/_app_styles.scss */ .rating-star-number > span { position: absolute; top: 11px; left: 14px; font-size: 13px; } -/* line 2822, ../../../scss/_app_styles.scss */ +/* line 2823, ../../../scss/_app_styles.scss */ .rating-star-number i { font-size: 40px; color: gold; } -/* line 2829, ../../../scss/_app_styles.scss */ +/* line 2830, ../../../scss/_app_styles.scss */ .course-notif .notif-type img { height: 35px; width: 75%; } -/* line 2833, ../../../scss/_app_styles.scss */ +/* line 2834, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating { position: absolute; right: 15%; top: 0; } -/* line 2837, ../../../scss/_app_styles.scss */ +/* line 2838, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating i { font-size: 40px; right: 10%; color: #f1c233; } -/* line 2842, ../../../scss/_app_styles.scss */ +/* line 2843, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating span { position: absolute; left: 50%; @@ -26083,12 +26084,12 @@ div.show-image:hover div.fullscreen-icon{ font-size: 11px; } -/* line 2856, ../../../scss/_app_styles.scss */ +/* line 2857, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > ul, .course-dashboard .course-notifications > ul, .course-dashboard .course-performance > ul { list-style: none; } -/* line 2860, ../../../scss/_app_styles.scss */ +/* line 2861, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > .row, .course-dashboard .course-notifications > .row, .course-dashboard .course-performance > .row { padding: 0px; @@ -26100,45 +26101,45 @@ div.show-image:hover div.fullscreen-icon{ margin: 0em 0em; border-radius: 10px; } -/* line 2872, ../../../scss/_app_styles.scss */ +/* line 2873, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-heading { padding: 0.2em 0.7em; border-bottom: 1px solid #DADADA; font-weight: 500; font-size: 1.3em; } -/* line 2878, ../../../scss/_app_styles.scss */ +/* line 2879, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row { padding: 1em; } -/* line 2881, ../../../scss/_app_styles.scss */ +/* line 2882, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row:nth-child(n+3) { border-top: 1px solid #DCDCDC; } -/* line 2887, ../../../scss/_app_styles.scss */ +/* line 2888, ../../../scss/_app_styles.scss */ .course-dashboard .course-status .course-update .course-current-state { color: #000; font-weight: bold; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 2897, ../../../scss/_app_styles.scss */ +/* line 2898, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications { position: relative; } -/* line 2902, ../../../scss/_app_styles.scss */ +/* line 2903, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .notification-text { font-size: 0.85em; letter-spacing: 0em; word-spacing: 0.2em; } -/* line 2907, ../../../scss/_app_styles.scss */ +/* line 2908, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .time-elapsed { font-size: 0.6em; color: #424242; cursor: pointer; } -/* line 2914, ../../../scss/_app_styles.scss */ +/* line 2915, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-count { font-size: 1em; position: absolute; @@ -26146,42 +26147,42 @@ div.show-image:hover div.fullscreen-icon{ top: 0.3em; } -/* line 2924, ../../../scss/_app_styles.scss */ +/* line 2925, ../../../scss/_app_styles.scss */ .notebook .notebook-header { border-color: black; border-style: solid; border-width: 1px 0px; padding-top: 1em; } -/* line 2930, ../../../scss/_app_styles.scss */ +/* line 2931, ../../../scss/_app_styles.scss */ .notebook .notebook-header a, .notebook .notebook-header input { margin: 0px; } -/* line 2933, ../../../scss/_app_styles.scss */ +/* line 2934, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count { text-align: center; } -/* line 2938, ../../../scss/_app_styles.scss */ +/* line 2939, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:first-child { font-size: 21px; font-weight: 600; padding: 15px; } -/* line 2943, ../../../scss/_app_styles.scss */ +/* line 2944, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:last-child { background: lightgrey; padding: 2px 5px; vertical-align: text-bottom; } -/* line 2953, ../../../scss/_app_styles.scss */ +/* line 2954, ../../../scss/_app_styles.scss */ .notebook .notebook-body { padding: 0px 0px; } -/* line 2957, ../../../scss/_app_styles.scss */ +/* line 2958, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .row { margin: 30px 0px; } -/* line 2960, ../../../scss/_app_styles.scss */ +/* line 2961, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card, .notebook .notebook-body .note-cards .note-details { border: 1px solid #ccc; padding: 10px 15px; @@ -26191,12 +26192,12 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; position: relative; } -/* line 2969, ../../../scss/_app_styles.scss */ +/* line 2970, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-heading, .notebook .notebook-body .note-cards .note-details .note-heading { font-weight: 800; font-size: 20px; } -/* line 2973, ../../../scss/_app_styles.scss */ +/* line 2974, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-close, .notebook .notebook-body .note-cards .note-details .note-close { position: absolute; right: 7px; @@ -26205,22 +26206,22 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 700; color: #929292; } -/* line 2981, ../../../scss/_app_styles.scss */ +/* line 2982, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-summary, .notebook .notebook-body .note-cards .note-details .note-summary { margin: 15px 0px; } -/* line 2984, ../../../scss/_app_styles.scss */ +/* line 2985, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info, .notebook .notebook-body .note-cards .note-card .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data { color: #989898; font-size: 13px; letter-spacing: 0.9px; font-weight: 500; } -/* line 2990, ../../../scss/_app_styles.scss */ +/* line 2991, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info > span, .notebook .notebook-body .note-cards .note-card .note-extra-data > span, .notebook .notebook-body .note-cards .note-details .note-info > span, .notebook .notebook-body .note-cards .note-details .note-extra-data > span { margin-right: 5px; } -/* line 2995, ../../../scss/_app_styles.scss */ +/* line 2996, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-tags > span, .notebook .notebook-body .note-cards .note-details .note-tags > span { display: inline-block; margin: 10px; @@ -26228,53 +26229,53 @@ div.show-image:hover div.fullscreen-icon{ color: #cba552; padding: 2px 5px; } -/* line 3003, ../../../scss/_app_styles.scss */ +/* line 3004, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions, .notebook .notebook-body .note-cards .note-details .note-actions { color: #989898; cursor: pointer; } -/* line 3007, ../../../scss/_app_styles.scss */ +/* line 3008, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions span, .notebook .notebook-body .note-cards .note-details .note-actions span { margin-right: 10px 5px; } -/* line 3013, ../../../scss/_app_styles.scss */ +/* line 3014, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-tags, .notebook .notebook-body .note-cards .note-details .note-actions { display: inline-block; margin-right: 10px; } -/* line 3020, ../../../scss/_app_styles.scss */ +/* line 3021, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags { float: right; } -/* line 3022, ../../../scss/_app_styles.scss */ +/* line 3023, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags > span { margin: 0px; } -/* line 3031, ../../../scss/_app_styles.scss */ +/* line 3032, ../../../scss/_app_styles.scss */ .notebook .notebook-body > div { padding: 0px; } -/* line 3037, ../../../scss/_app_styles.scss */ +/* line 3038, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index { border-right: 1px solid #AFAEAE; padding: 4px 0px; background-color: #F1F1F1; } -/* line 3042, ../../../scss/_app_styles.scss */ +/* line 3043, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content { padding: 0px; } -/* line 3045, ../../../scss/_app_styles.scss */ +/* line 3046, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content .active { padding: 0px; } -/* line 3049, ../../../scss/_app_styles.scss */ +/* line 3050, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3054, ../../../scss/_app_styles.scss */ +/* line 3055, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title { width: 50%; /*background-color: #DEDEDE;*/ @@ -26282,114 +26283,114 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3061, ../../../scss/_app_styles.scss */ +/* line 3062, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title a { border-radius: inherit; font-size: 0.9rem; text-align: center; color: #989898; } -/* line 3068, ../../../scss/_app_styles.scss */ +/* line 3069, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3072, ../../../scss/_app_styles.scss */ +/* line 3073, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active a { color: #3a3169; } -/* line 3079, ../../../scss/_app_styles.scss */ +/* line 3080, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tab-content { padding: 0px; } -/* line 3084, ../../../scss/_app_styles.scss */ +/* line 3085, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date { font-size: 12px; font-weight: bold; background: #EFEFEF; padding: 7px 10px; } -/* line 3090, ../../../scss/_app_styles.scss */ +/* line 3091, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date .note-count { font-size: 11px; line-height: 2em; } -/* line 3095, ../../../scss/_app_styles.scss */ +/* line 3096, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes > div { border-bottom: 1px solid #AFAEAE; } -/* line 3098, ../../../scss/_app_styles.scss */ +/* line 3099, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note { padding: 5px 15px; background: #FFF; cursor: pointer; color: #A2A2A2; } -/* line 3104, ../../../scss/_app_styles.scss */ +/* line 3105, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-heading { font-weight: 400; font-size: 17px; } -/* line 3109, ../../../scss/_app_styles.scss */ +/* line 3110, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta { font-size: 13px; } -/* line 3112, ../../../scss/_app_styles.scss */ +/* line 3113, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta > span:not(:first-child) { font-size: 11px; font-weight: 600; color: #717171; } -/* line 3119, ../../../scss/_app_styles.scss */ +/* line 3120, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer { color: #888888; } -/* line 3122, ../../../scss/_app_styles.scss */ +/* line 3123, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer span { margin-right: 10px; } -/* line 3127, ../../../scss/_app_styles.scss */ +/* line 3128, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active { border-left: 5px solid #6153AE; background: #F4E7FF; font-weight: 800; color: #6153AE; } -/* line 3133, ../../../scss/_app_styles.scss */ +/* line 3134, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-heading { font-weight: 500; font-size: 17px; } -/* line 3137, ../../../scss/_app_styles.scss */ +/* line 3138, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-meta > span:not(:first-child) { color: #6153AE; } -/* line 3145, ../../../scss/_app_styles.scss */ +/* line 3146, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page { background-color: #fff; padding-bottom: 30px; } -/* line 3152, ../../../scss/_app_styles.scss */ +/* line 3153, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .group_content { margin-top: 5px; margin-left: 0px; } -/* line 3157, ../../../scss/_app_styles.scss */ +/* line 3158, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page > div { background-color: #fff; } -/* line 3161, ../../../scss/_app_styles.scss */ +/* line 3162, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar { padding: 1.8em 1.2em 0em; margin: 0em; background-color: #FFF; } -/* line 3166, ../../../scss/_app_styles.scss */ +/* line 3167, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .note-creator { font-weight: bold; } -/* line 3169, ../../../scss/_app_styles.scss */ +/* line 3170, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-title { text-align: left; color: #C3C3C3; @@ -26397,102 +26398,102 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.3px; margin-top: 5px; } -/* line 3176, ../../../scss/_app_styles.scss */ +/* line 3177, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating { text-align: right; } -/* line 3178, ../../../scss/_app_styles.scss */ +/* line 3179, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating > div { display: inline-block; } -/* line 3183, ../../../scss/_app_styles.scss */ +/* line 3184, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-title { font-size: 2.3em; font-weight: 500; margin-right: 1em; } -/* line 3188, ../../../scss/_app_styles.scss */ +/* line 3189, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content { padding: 2em 2em 1em; background: #fff; margin: 0em; } -/* line 3195, ../../../scss/_app_styles.scss */ +/* line 3196, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-header > div { display: inline-block; } -/* line 3200, ../../../scss/_app_styles.scss */ +/* line 3201, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text { font-size: 19px; letter-spacing: 0.7px; } -/* line 3203, ../../../scss/_app_styles.scss */ +/* line 3204, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text p { padding: 0px; } -/* line 3209, ../../../scss/_app_styles.scss */ +/* line 3210, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections { padding: 0em 1em 0em; } -/* line 3213, ../../../scss/_app_styles.scss */ +/* line 3214, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header span { font-weight: bold; } -/* line 3216, ../../../scss/_app_styles.scss */ +/* line 3217, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { margin-left: 15px; } -/* line 3221, ../../../scss/_app_styles.scss */ +/* line 3222, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment { border-top: 1px solid grey; padding: 15px 10px; margin-top: 5px; } -/* line 3226, ../../../scss/_app_styles.scss */ +/* line 3227, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { min-height: 200px; margin-top: 0px; } -/* line 3232, ../../../scss/_app_styles.scss */ +/* line 3233, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { font-size: 90px; line-height: 0em; } -/* line 3242, ../../../scss/_app_styles.scss */ +/* line 3243, ../../../scss/_app_styles.scss */ #newNoteModal { width: 40%; } -/* line 3245, ../../../scss/_app_styles.scss */ +/* line 3246, ../../../scss/_app_styles.scss */ #newNoteModal > div { margin-bottom: 1em; } -/* line 3249, ../../../scss/_app_styles.scss */ +/* line 3250, ../../../scss/_app_styles.scss */ #newNoteModal input { width: 100%; } -/* line 3252, ../../../scss/_app_styles.scss */ +/* line 3253, ../../../scss/_app_styles.scss */ #newNoteModal .heading { margin-right: 1em; } -/* line 3256, ../../../scss/_app_styles.scss */ +/* line 3257, ../../../scss/_app_styles.scss */ #newNoteModal .note-tags { padding: 1em; border: 1px solid black; } -/* line 3262, ../../../scss/_app_styles.scss */ +/* line 3263, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button { float: left; margin-left: 1em; margin-bottom: 0px; } -/* line 3267, ../../../scss/_app_styles.scss */ +/* line 3268, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button:last-child { float: right; } -/* line 3275, ../../../scss/_app_styles.scss */ +/* line 3276, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header { line-height: 2em; border-top: 1px solid #797979; @@ -26500,33 +26501,33 @@ div.show-image:hover div.fullscreen-icon{ text-align: center; padding: 0.7em 1em; } -/* line 3282, ../../../scss/_app_styles.scss */ +/* line 3283, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input, .gallery-page .gallery-header select, .gallery-page .gallery-header a { border-radius: 4px; margin-bottom: 0em; } -/* line 3286, ../../../scss/_app_styles.scss */ +/* line 3287, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input.prefix, .gallery-page .gallery-header select.prefix, .gallery-page .gallery-header a.prefix { border-radius: 0px; } -/* line 3291, ../../../scss/_app_styles.scss */ +/* line 3292, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header i { font-size: 1em; color: #A29E9E; } -/* line 3297, ../../../scss/_app_styles.scss */ +/* line 3298, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .filters .columns { padding-left: 5px; } -/* line 3303, ../../../scss/_app_styles.scss */ +/* line 3304, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .columns { padding-left: 5px; } -/* line 3307, ../../../scss/_app_styles.scss */ +/* line 3308, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags { text-align: left; } -/* line 3310, ../../../scss/_app_styles.scss */ +/* line 3311, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag { padding: 0px 10px; background: #cccccc; @@ -26536,73 +26537,73 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.8em; color: #757575; } -/* line 3319, ../../../scss/_app_styles.scss */ +/* line 3320, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag span { margin: 0px 2px 0px 6px; cursor: pointer; } -/* line 3324, ../../../scss/_app_styles.scss */ +/* line 3325, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags > div { display: inline-block; } -/* line 3331, ../../../scss/_app_styles.scss */ +/* line 3332, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading { font-size: 19px; } -/* line 3334, ../../../scss/_app_styles.scss */ +/* line 3335, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading a { background: #e7e7e7; border-width: 1px 0px 1px 1px; border-color: #cccccc; border-style: solid; } -/* line 3341, ../../../scss/_app_styles.scss */ +/* line 3342, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading input { border-radius: 0px; box-shadow: none; border-left: 0px; } -/* line 3348, ../../../scss/_app_styles.scss */ +/* line 3349, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel { background: #FFF; } -/* line 3351, ../../../scss/_app_styles.scss */ +/* line 3352, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content { min-height: 250px; } -/* line 3354, ../../../scss/_app_styles.scss */ +/* line 3355, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader { line-height: 3em; padding: 10px 0px; } -/* line 3358, ../../../scss/_app_styles.scss */ +/* line 3359, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader upload-file { margin: 0px; font-size: 1em; } -/* line 3363, ../../../scss/_app_styles.scss */ +/* line 3364, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions { font-size: 1.2em; color: #2a79e4; } -/* line 3367, ../../../scss/_app_styles.scss */ +/* line 3368, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions > div { display: inline-block; margin-right: 10px; } -/* line 3374, ../../../scss/_app_styles.scss */ +/* line 3375, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel { background: #fff; } -/* line 3377, ../../../scss/_app_styles.scss */ +/* line 3378, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row { margin: 10px 0px; } -/* line 3380, ../../../scss/_app_styles.scss */ +/* line 3381, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row > div:first-child { font-weight: 500; } -/* line 3385, ../../../scss/_app_styles.scss */ +/* line 3386, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .file-name { font-size: 20px; font-weight: bold; @@ -26610,11 +26611,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 10px 0px 20px; } -/* line 3396, ../../../scss/_app_styles.scss */ +/* line 3397, ../../../scss/_app_styles.scss */ .gallery-card .select-file { vertical-align: top; } -/* line 3400, ../../../scss/_app_styles.scss */ +/* line 3401, ../../../scss/_app_styles.scss */ .gallery-card .file-item { width: 80%; color: #fff; @@ -26625,17 +26626,17 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid black; overflow: hidden; } -/* line 3410, ../../../scss/_app_styles.scss */ +/* line 3411, ../../../scss/_app_styles.scss */ .gallery-card .file-item .item-thumbnail-image { height: 100%; padding: 1em; } -/* line 3415, ../../../scss/_app_styles.scss */ +/* line 3416, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-details { margin-top: 10%; display: none; } -/* line 3420, ../../../scss/_app_styles.scss */ +/* line 3421, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions { display: none; position: absolute; @@ -26644,11 +26645,11 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; font-size: 25px; } -/* line 3428, ../../../scss/_app_styles.scss */ +/* line 3429, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions i { margin: 0px 10px; } -/* line 3433, ../../../scss/_app_styles.scss */ +/* line 3434, ../../../scss/_app_styles.scss */ .gallery-card .file-item .filename-footer { position: absolute; bottom: 0px; @@ -26659,24 +26660,24 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 600; background: #999999; } -/* line 3444, ../../../scss/_app_styles.scss */ +/* line 3445, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover { background: #999999; } -/* line 3447, ../../../scss/_app_styles.scss */ +/* line 3448, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .item-thumbnail-image { opacity: 0.2; } -/* line 3451, ../../../scss/_app_styles.scss */ +/* line 3452, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .file-details, .gallery-card .file-item:hover .file-actions { display: block; } -/* line 3454, ../../../scss/_app_styles.scss */ +/* line 3455, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .filename-footer { display: none; } -/* line 3462, ../../../scss/_app_styles.scss */ +/* line 3463, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'], dialog[id^='reveal-'] { width: 100vw; height: 100vh; @@ -26740,49 +26741,49 @@ div.show-image:hover div.fullscreen-icon{ } }*/ } -/* line 3526, ../../../scss/_app_styles.scss */ +/* line 3527, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body, dialog[id^='reveal-'] .gmodal-body { position: relative; height: 100%; } -/* line 3529, ../../../scss/_app_styles.scss */ +/* line 3530, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel { background-color: #fff; height: 100%; } -/* line 3531, ../../../scss/_app_styles.scss */ +/* line 3532, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray { display: none; } -/* line 3535, ../../../scss/_app_styles.scss */ +/* line 3536, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe { height: 550px !important; width: 130% !important; } -/* line 3540, ../../../scss/_app_styles.scss */ +/* line 3541, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page { margin-top: -10px !important; } -/* line 3544, ../../../scss/_app_styles.scss */ +/* line 3545, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel span, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel span { display: none !important; } -/* line 3548, ../../../scss/_app_styles.scss */ +/* line 3549, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .button, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .button { display: none !important; } -/* line 3555, ../../../scss/_app_styles.scss */ +/* line 3556, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder { height: 100%; } -/* line 3558, ../../../scss/_app_styles.scss */ +/* line 3559, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item { height: 100%; width: 100%; background: transparent; padding: 0px; } -/* line 3564, ../../../scss/_app_styles.scss */ +/* line 3565, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image { width: auto; margin: 0px auto; @@ -26790,7 +26791,7 @@ div.show-image:hover div.fullscreen-icon{ padding: 1em 0em; height: 100%; } -/* line 3573, ../../../scss/_app_styles.scss */ +/* line 3574, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer { height: 2em; line-height: 2em; @@ -26802,32 +26803,32 @@ div.show-image:hover div.fullscreen-icon{ opacity: 0; background-color: rgba(0, 0, 0, 0.9); } -/* line 3584, ../../../scss/_app_styles.scss */ +/* line 3585, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details), dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details) { cursor: pointer; } -/* line 3588, ../../../scss/_app_styles.scss */ +/* line 3589, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details { text-align: center; width: 100%; } -/* line 3592, ../../../scss/_app_styles.scss */ +/* line 3593, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i { margin-left: 1em; margin-right: 0.5em; cursor: pointer; } -/* line 3600, ../../../scss/_app_styles.scss */ +/* line 3601, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer { opacity: 0.8; transition: opacity 1s; } -/* line 3605, ../../../scss/_app_styles.scss */ +/* line 3606, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel { height: 100%; padding: 0px 25px; } -/* line 3609, ../../../scss/_app_styles.scss */ +/* line 3610, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side { background: #fff; height: 100%; @@ -26848,31 +26849,31 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.9em; }*/ } -/* line 3613, ../../../scss/_app_styles.scss */ +/* line 3614, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div { width: 100%; display: block; margin: 12px 0px; padding: 0px 10px; } -/* line 3620, ../../../scss/_app_styles.scss */ +/* line 3621, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal { font-size: 20px; top: 6px; right: 26px; } -/* line 3627, ../../../scss/_app_styles.scss */ +/* line 3628, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span { vertical-align: top; margin-right: 5px; line-height: 35px; } -/* line 3632, ../../../scss/_app_styles.scss */ +/* line 3633, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating { background: #ccc; padding: 2px 5px; } -/* line 3638, ../../../scss/_app_styles.scss */ +/* line 3639, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a { padding: 3px 7px; background: #fff; @@ -26882,13 +26883,13 @@ div.show-image:hover div.fullscreen-icon{ margin-right: 10px; display: inline-block; } -/* line 3649, ../../../scss/_app_styles.scss */ +/* line 3650, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3654, ../../../scss/_app_styles.scss */ +/* line 3655, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26897,17 +26898,17 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3662, ../../../scss/_app_styles.scss */ +/* line 3663, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a { border-radius: inherit; } -/* line 3666, ../../../scss/_app_styles.scss */ +/* line 3667, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3674, ../../../scss/_app_styles.scss */ +/* line 3675, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span { font-weight: 500; font-size: 16px; @@ -26915,20 +26916,20 @@ div.show-image:hover div.fullscreen-icon{ line-height: 35px; } -/* line 3704, ../../../scss/_app_styles.scss */ +/* line 3705, ../../../scss/_app_styles.scss */ .user-comment { display: inline-flex; width: 100%; } -/* line 3708, ../../../scss/_app_styles.scss */ +/* line 3709, ../../../scss/_app_styles.scss */ .user-comment > div { display: inline-block; } -/* line 3711, ../../../scss/_app_styles.scss */ +/* line 3712, ../../../scss/_app_styles.scss */ .user-comment > div:last-child { width: 100%; } -/* line 3716, ../../../scss/_app_styles.scss */ +/* line 3717, ../../../scss/_app_styles.scss */ .user-comment .comment-heading { color: #9C9C9C; border-bottom: 1px solid grey; @@ -26936,71 +26937,71 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 10px; margin-top: 10px; } -/* line 3724, ../../../scss/_app_styles.scss */ +/* line 3725, ../../../scss/_app_styles.scss */ .user-comment .comment-heading > div { display: inline-block; } -/* line 3728, ../../../scss/_app_styles.scss */ +/* line 3729, ../../../scss/_app_styles.scss */ .user-comment .comment-heading .commentor-name span { font-weight: bold; color: #333333; } -/* line 3733, ../../../scss/_app_styles.scss */ +/* line 3734, ../../../scss/_app_styles.scss */ .user-comment .comment-footer { font-size: 0.9em; font-weight: 400; border: 1px solid #9E9E9E; background: #CCCCCC; } -/* line 3739, ../../../scss/_app_styles.scss */ +/* line 3740, ../../../scss/_app_styles.scss */ .user-comment .comment-footer > div { cursor: pointer; } -/* line 3742, ../../../scss/_app_styles.scss */ +/* line 3743, ../../../scss/_app_styles.scss */ .user-comment .comment-footer i { margin-right: 1em; } -/* line 3748, ../../../scss/_app_styles.scss */ +/* line 3749, ../../../scss/_app_styles.scss */ .user-comment .comment-container .comment-add { margin-top: 0.4em; } -/* line 3752, ../../../scss/_app_styles.scss */ +/* line 3753, ../../../scss/_app_styles.scss */ .user-comment .user-avatar { font-size: 10em; font-size: 5em; line-height: 1em; } -/* line 3759, ../../../scss/_app_styles.scss */ +/* line 3760, ../../../scss/_app_styles.scss */ .course-content { /*border-top: 1px solid #000;*/ } -/* line 3761, ../../../scss/_app_styles.scss */ +/* line 3762, ../../../scss/_app_styles.scss */ .course-content .alert-box { padding: 5px; font-size: 1em; } -/* line 3765, ../../../scss/_app_styles.scss */ +/* line 3766, ../../../scss/_app_styles.scss */ .course-content .alert-box > div { display: inline-block; vertical-align: top; } -/* line 3769, ../../../scss/_app_styles.scss */ +/* line 3770, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note { width: 96%; } -/* line 3772, ../../../scss/_app_styles.scss */ +/* line 3773, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note > div:nth-child(2) { color: #000; margin-top: 5px; padding-top: 5px; border-top: 1px solid #000; } -/* line 3779, ../../../scss/_app_styles.scss */ +/* line 3780, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-icon { margin: 0px 5px; } -/* line 3782, ../../../scss/_app_styles.scss */ +/* line 3783, ../../../scss/_app_styles.scss */ .course-content .alert-box .close { position: relative; top: 0px; @@ -27010,17 +27011,17 @@ div.show-image:hover div.fullscreen-icon{ text-decoration: underline; color: #085394 !important; } -/* line 3793, ../../../scss/_app_styles.scss */ +/* line 3794, ../../../scss/_app_styles.scss */ .course-content .collection { overflow: visible; } -/* line 3796, ../../../scss/_app_styles.scss */ +/* line 3797, ../../../scss/_app_styles.scss */ .course-content .collection .course-module { position: relative; border-bottom: 1px solid #CCC; padding: 1em 0em; } -/* line 3803, ../../../scss/_app_styles.scss */ +/* line 3804, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-header .fa { position: absolute; left: -1.1em; @@ -27029,58 +27030,58 @@ div.show-image:hover div.fullscreen-icon{ background: #EAEAEA; font-size: 1.4em; } -/* line 3821, ../../../scss/_app_styles.scss */ +/* line 3822, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-page:hover span { text-decoration: underline; color: #9900ff !important; } -/* line 3826, ../../../scss/_app_styles.scss */ +/* line 3827, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .jqtree-tree .jqtree-title { cursor: pointer; } -/* line 3830, ../../../scss/_app_styles.scss */ +/* line 3831, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part { margin-left: 1em; } -/* line 3833, ../../../scss/_app_styles.scss */ +/* line 3834, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler { color: #585858; } -/* line 3836, ../../../scss/_app_styles.scss */ +/* line 3837, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler.jqtree-closed { color: #CCC; } -/* line 3840, ../../../scss/_app_styles.scss */ +/* line 3841, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part span { vertical-align: top; } -/* line 3843, ../../../scss/_app_styles.scss */ +/* line 3844, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .fa { display: inline; margin-right: 5px; } -/* line 3853, ../../../scss/_app_styles.scss */ +/* line 3854, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header { font-weight: 400; font-size: 1.3em; border-bottom: 1px solid #707070; color: #797979; } -/* line 3859, ../../../scss/_app_styles.scss */ +/* line 3860, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header > div { padding: 0.3em 0em; } -/* line 3863, ../../../scss/_app_styles.scss */ +/* line 3864, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header a { color: #797979; } -/* line 3867, ../../../scss/_app_styles.scss */ +/* line 3868, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous { cursor: pointer; padding: 0px; } -/* line 3871, ../../../scss/_app_styles.scss */ +/* line 3872, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous a:first-child { border-right: 1px solid grey; padding-right: 5px; @@ -27088,27 +27089,27 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3880, ../../../scss/_app_styles.scss */ +/* line 3881, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header i { margin-right: 0.1em; } -/* line 3884, ../../../scss/_app_styles.scss */ +/* line 3885, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .unit-title { text-align: center; color: #999999; } -/* line 3888, ../../../scss/_app_styles.scss */ +/* line 3889, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-title { text-align: center; color: #000; } -/* line 3892, ../../../scss/_app_styles.scss */ +/* line 3893, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note { color: #2a78e3; cursor: pointer; padding: 0px; } -/* line 3897, ../../../scss/_app_styles.scss */ +/* line 3898, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note a:last-child { border-left: 1px solid grey; padding-left: 5px; @@ -27116,11 +27117,11 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3905, ../../../scss/_app_styles.scss */ +/* line 3906, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note > div { float: right; } -/* line 3910, ../../../scss/_app_styles.scss */ +/* line 3911, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container { border: 1px solid black; height: 100%; @@ -27128,18 +27129,18 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 2em; padding: 0em 1em; } -/* line 3917, ../../../scss/_app_styles.scss */ +/* line 3918, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides { height: 100%; } -/* line 3921, ../../../scss/_app_styles.scss */ +/* line 3922, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 3929, ../../../scss/_app_styles.scss */ +/* line 3930, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -27147,12 +27148,12 @@ div.show-image:hover div.fullscreen-icon{ color: #999999; margin-left: 12%; } -/* line 3937, ../../../scss/_app_styles.scss */ +/* line 3938, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 3943, ../../../scss/_app_styles.scss */ +/* line 3944, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -27161,21 +27162,21 @@ div.show-image:hover div.fullscreen-icon{ display: none; color: #8E8E8E; } -/* line 3952, ../../../scss/_app_styles.scss */ +/* line 3953, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 3957, ../../../scss/_app_styles.scss */ +/* line 3958, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 3959, ../../../scss/_app_styles.scss */ +/* line 3960, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 3962, ../../../scss/_app_styles.scss */ +/* line 3963, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -27186,24 +27187,24 @@ div.show-image:hover div.fullscreen-icon{ color: #757575; margin-right: 20px; } -/* line 3972, ../../../scss/_app_styles.scss */ +/* line 3973, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 3976, ../../../scss/_app_styles.scss */ +/* line 3977, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 3979, ../../../scss/_app_styles.scss */ +/* line 3980, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 3984, ../../../scss/_app_styles.scss */ +/* line 3985, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 3988, ../../../scss/_app_styles.scss */ +/* line 3989, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content { width: 75%; margin: 0px auto; @@ -27214,7 +27215,7 @@ div.show-image:hover div.fullscreen-icon{ min-height: 50px; position: relative; } -/* line 3998, ../../../scss/_app_styles.scss */ +/* line 3999, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -27222,15 +27223,15 @@ div.show-image:hover div.fullscreen-icon{ left: 8px; top: 4px; } -/* line 4006, ../../../scss/_app_styles.scss */ +/* line 4007, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 4008, ../../../scss/_app_styles.scss */ +/* line 4009, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 4011, ../../../scss/_app_styles.scss */ +/* line 4012, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -27240,27 +27241,27 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.8px; color: #999999; } -/* line 4020, ../../../scss/_app_styles.scss */ +/* line 4021, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 4026, ../../../scss/_app_styles.scss */ +/* line 4027, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 4033, ../../../scss/_app_styles.scss */ +/* line 4034, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section { width: 75%; margin: 0px auto; } -/* line 4037, ../../../scss/_app_styles.scss */ +/* line 4038, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section .user-prof-image { font-size: 7em; text-align: center; } -/* line 4042, ../../../scss/_app_styles.scss */ +/* line 4043, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section #postCommentBtn { padding: 2em 3em; } @@ -27281,28 +27282,28 @@ div.show-image:hover div.fullscreen-icon{ position: absolute; } */ -/* line 4063, ../../../scss/_app_styles.scss */ +/* line 4064, ../../../scss/_app_styles.scss */ .rate-scale { cursor: pointer; } -/* line 4066, ../../../scss/_app_styles.scss */ +/* line 4067, ../../../scss/_app_styles.scss */ .rate-scale i { margin-right: 0em !important; padding-right: 0.5em; } -/* line 4070, ../../../scss/_app_styles.scss */ +/* line 4071, ../../../scss/_app_styles.scss */ .rate-scale .hover-rating, .rate-scale .rated { color: yellow; } -/* line 4076, ../../../scss/_app_styles.scss */ +/* line 4077, ../../../scss/_app_styles.scss */ #left-tab { position: absolute; left: 0px; bottom: 0px; } -/* line 4081, ../../../scss/_app_styles.scss */ +/* line 4082, ../../../scss/_app_styles.scss */ #right-tab { position: absolute; right: 0px; @@ -27310,12 +27311,12 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 6px; } -/* line 4087, ../../../scss/_app_styles.scss */ +/* line 4088, ../../../scss/_app_styles.scss */ #enrolled-btn { margin-bottom: 0px; } -/* line 4090, ../../../scss/_app_styles.scss */ +/* line 4091, ../../../scss/_app_styles.scss */ div.absol-descrip { position: absolute; top: 190px; @@ -27326,14 +27327,14 @@ div.absol-descrip { } /*overview-summary styling*/ -/* line 4100, ../../../scss/_app_styles.scss */ +/* line 4101, ../../../scss/_app_styles.scss */ .course-title, .course-date { color: white; padding-top: 0px; padding-bottom: 0px; } -/* line 4105, ../../../scss/_app_styles.scss */ +/* line 4106, ../../../scss/_app_styles.scss */ .course-description { color: #cccccc; padding-top: 0px; @@ -27345,48 +27346,48 @@ div.absol-descrip { overflow: hidden; } -/* line 4115, ../../../scss/_app_styles.scss */ +/* line 4116, ../../../scss/_app_styles.scss */ .course-para { padding: 0; } -/* line 4119, ../../../scss/_app_styles.scss */ +/* line 4120, ../../../scss/_app_styles.scss */ course-title { padding-left: 10px; } -/* line 4122, ../../../scss/_app_styles.scss */ +/* line 4123, ../../../scss/_app_styles.scss */ .enroll-status-margin { margin-bottom: 0; } -/* line 4126, ../../../scss/_app_styles.scss */ +/* line 4127, ../../../scss/_app_styles.scss */ .progress-summery { color: white; margin-top: 20px; } -/* line 4130, ../../../scss/_app_styles.scss */ +/* line 4131, ../../../scss/_app_styles.scss */ .course-description-thumbnails { margin: 0; padding: 0; } -/* line 4135, ../../../scss/_app_styles.scss */ +/* line 4136, ../../../scss/_app_styles.scss */ .left-shift { padding: 0; color: white !important; } /*course overview for Small screens*/ -/* line 4141, ../../../scss/_app_styles.scss */ +/* line 4142, ../../../scss/_app_styles.scss */ .course { /*position:relative;*/ border: 1px solid black; background-color: #999999; } -/* line 4147, ../../../scss/_app_styles.scss */ +/* line 4148, ../../../scss/_app_styles.scss */ .course-contents { /*position:absolute;*/ width: 100%; @@ -27394,7 +27395,7 @@ course-title { /*Medium screens*/ @media only screen and (min-width: 40.063em) { - /* line 4154, ../../../scss/_app_styles.scss */ + /* line 4155, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27402,7 +27403,7 @@ course-title { background-color: #999999; } - /* line 4160, ../../../scss/_app_styles.scss */ + /* line 4161, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27412,7 +27413,7 @@ course-title { /* min-width 641px, medium screens */ /* Large screens*/ @media only screen and (min-width: 64.063em) { - /* line 4170, ../../../scss/_app_styles.scss */ + /* line 4171, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27420,7 +27421,7 @@ course-title { background-color: #999999; } - /* line 4176, ../../../scss/_app_styles.scss */ + /* line 4177, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27429,14 +27430,14 @@ course-title { } /* min-width 1025px, large screens */ /*General config css*/ -/* line 4183, ../../../scss/_app_styles.scss */ +/* line 4184, ../../../scss/_app_styles.scss */ .alert-box.warning { background: #ffe7c0; border-color: #bf9000; color: #966000; } -/* line 4190, ../../../scss/_app_styles.scss */ +/* line 4191, ../../../scss/_app_styles.scss */ .badge { display: inline-block; line-height: 22px; @@ -27453,7 +27454,7 @@ course-title { font-size: 1.8em; } -/* line 4206, ../../../scss/_app_styles.scss */ +/* line 4207, ../../../scss/_app_styles.scss */ .badge { background: #67c1ef; border-color: #30aae9; @@ -27463,7 +27464,7 @@ course-title { background-image: linear-gradient(to bottom, #acddf6, #67c1ef); } -/* line 4215, ../../../scss/_app_styles.scss */ +/* line 4216, ../../../scss/_app_styles.scss */ .badge.green { background: #77cc51; border-color: #59ad33; @@ -27473,7 +27474,7 @@ course-title { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 4224, ../../../scss/_app_styles.scss */ +/* line 4225, ../../../scss/_app_styles.scss */ .badge.yellow { background: #faba3e; border-color: #f4a306; @@ -27483,7 +27484,7 @@ course-title { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 4234, ../../../scss/_app_styles.scss */ +/* line 4235, ../../../scss/_app_styles.scss */ .badge.red { background: #fa623f; border-color: #fa5a35; @@ -27494,12 +27495,12 @@ course-title { } /* Course/ Event Card CSS*/ -/* line 4250, ../../../scss/_app_styles.scss */ +/* line 4251, ../../../scss/_app_styles.scss */ .card-image-wrapper { position: relative; } -/* line 4254, ../../../scss/_app_styles.scss */ +/* line 4255, ../../../scss/_app_styles.scss */ .event-card { padding: 0px; min-height: 22rem; @@ -27508,12 +27509,12 @@ course-title { border-radius: 10px; background-color: #fff; } -/* line 4262, ../../../scss/_app_styles.scss */ +/* line 4263, ../../../scss/_app_styles.scss */ .event-card:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 4267, ../../../scss/_app_styles.scss */ +/* line 4268, ../../../scss/_app_styles.scss */ .event-card .event-card-status { z-index: 99; width: auto; @@ -27528,31 +27529,31 @@ course-title { border-radius: 4px; letter-spacing: 0.3px; } -/* line 4281, ../../../scss/_app_styles.scss */ +/* line 4282, ../../../scss/_app_styles.scss */ .event-card .event-card-status.open { background-color: #00b300; } -/* line 4284, ../../../scss/_app_styles.scss */ +/* line 4285, ../../../scss/_app_styles.scss */ .event-card .event-card-status.closed { background-color: red; } -/* line 4287, ../../../scss/_app_styles.scss */ +/* line 4288, ../../../scss/_app_styles.scss */ .event-card .event-card-status.in-progress { background-color: #00b300; } -/* line 4290, ../../../scss/_app_styles.scss */ +/* line 4291, ../../../scss/_app_styles.scss */ .event-card .event-card-status.forthcoming { background-color: #F2910D; } -/* line 4293, ../../../scss/_app_styles.scss */ +/* line 4294, ../../../scss/_app_styles.scss */ .event-card .event-card-status.upcoming { background-color: #F2910D; } -/* line 4297, ../../../scss/_app_styles.scss */ +/* line 4298, ../../../scss/_app_styles.scss */ .event-card .event-card-status.completed { background-color: #4d4d4d; } -/* line 4302, ../../../scss/_app_styles.scss */ +/* line 4303, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications { position: absolute; top: 2px; @@ -27561,46 +27562,46 @@ course-title { color: #F04124; font-weight: 600; } -/* line 4310, ../../../scss/_app_styles.scss */ +/* line 4311, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications .badge { padding: 0px 5px; font-size: 1.4em; font-weight: 600; } -/* line 4317, ../../../scss/_app_styles.scss */ +/* line 4318, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status { font-weight: 500; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 4322, ../../../scss/_app_styles.scss */ +/* line 4323, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.open { color: #00b300; } -/* line 4326, ../../../scss/_app_styles.scss */ +/* line 4327, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.closed { color: red; } -/* line 4330, ../../../scss/_app_styles.scss */ +/* line 4331, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.in-progress { color: #000; } -/* line 4333, ../../../scss/_app_styles.scss */ +/* line 4334, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.forthcoming { color: #F2910D; } -/* line 4337, ../../../scss/_app_styles.scss */ +/* line 4338, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.completed { color: #4d4d4d; } -/* line 4341, ../../../scss/_app_styles.scss */ +/* line 4342, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status .event-time { font-size: 0.7em; display: block; font-weight: 400; display: inline; } -/* line 4349, ../../../scss/_app_styles.scss */ +/* line 4350, ../../../scss/_app_styles.scss */ .event-card .event-card-title { color: #0d0d0d; display: inline-block; @@ -27611,19 +27612,19 @@ course-title { font-size: 2em; font-weight: 400; } -/* line 4360, ../../../scss/_app_styles.scss */ +/* line 4361, ../../../scss/_app_styles.scss */ .event-card .event-card-desc { word-wrap: break-word; font-size: 0.6em; color: #333333; padding-left: 4px; } -/* line 4366, ../../../scss/_app_styles.scss */ +/* line 4367, ../../../scss/_app_styles.scss */ .event-card p { margin: 0px; padding: 10px; } -/* line 4372, ../../../scss/_app_styles.scss */ +/* line 4373, ../../../scss/_app_styles.scss */ .event-card .event-card-image { padding: 0px; margin: 0px; @@ -27635,7 +27636,7 @@ course-title { background-color: #e5e5e5; border-radius: 10px 10px 0px 0px; } -/* line 4383, ../../../scss/_app_styles.scss */ +/* line 4384, ../../../scss/_app_styles.scss */ .event-card .event-card-image img { border-radius: 2px 2px 0 0; display: block; @@ -27644,7 +27645,7 @@ course-title { opacity: 0.25; height: 100%; } -/* line 4392, ../../../scss/_app_styles.scss */ +/* line 4393, ../../../scss/_app_styles.scss */ .event-card .event-card-image i { font-size: 7rem; opacity: 0.75; @@ -27658,51 +27659,51 @@ course-title { text-transform: none; text-decoration: inherit; } -/* line 4406, ../../../scss/_app_styles.scss */ +/* line 4407, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.file:before { content: "\f18e"; } -/* line 4409, ../../../scss/_app_styles.scss */ +/* line 4410, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.page:before { content: "\f18e"; } -/* line 4412, ../../../scss/_app_styles.scss */ +/* line 4413, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.collection:before { content: "\f18a"; } -/* line 4415, ../../../scss/_app_styles.scss */ +/* line 4416, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.documents:before { content: "\f18b"; } -/* line 4418, ../../../scss/_app_styles.scss */ +/* line 4419, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.pdf:before { content: "\f18b"; } -/* line 4421, ../../../scss/_app_styles.scss */ +/* line 4422, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.text:before { content: "\f18e"; } -/* line 4424, ../../../scss/_app_styles.scss */ +/* line 4425, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.interactives:before { content: "\f1b2"; } -/* line 4427, ../../../scss/_app_styles.scss */ +/* line 4428, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.ebooks:before { content: "\f11e"; } -/* line 4430, ../../../scss/_app_styles.scss */ +/* line 4431, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.images:before { content: "\f125"; } -/* line 4433, ../../../scss/_app_styles.scss */ +/* line 4434, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.audios:before, .event-card .event-card-image i.audio:before { content: "\f17b"; } -/* line 4436, ../../../scss/_app_styles.scss */ +/* line 4437, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.videos:before, .event-card .event-card-image i.video:before { content: "\f20e"; } -/* line 4440, ../../../scss/_app_styles.scss */ +/* line 4441, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer { padding: 0.7em 1em; border-top: 1px solid #DCDCDC; @@ -27713,7 +27714,7 @@ course-title { background-color: #F3F3F3; border-radius: 0px 0px 10px 10px; } -/* line 4450, ../../../scss/_app_styles.scss */ +/* line 4451, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .footer-label { text-transform: uppercase; font-size: 10px; @@ -27721,54 +27722,54 @@ course-title { margin-bottom: 2px; color: #ADADAD; } -/* line 4458, ../../../scss/_app_styles.scss */ +/* line 4459, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date { color: #929292; font-size: 0.85em; letter-spacing: 0.5px; } -/* line 4463, ../../../scss/_app_styles.scss */ +/* line 4464, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date i:not(.edit-course-duration, .edit-course-enrollment) { margin-right: 0.3em; } -/* line 4467, ../../../scss/_app_styles.scss */ +/* line 4468, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .row { margin: 10px 0px 0px; } -/* line 4471, ../../../scss/_app_styles.scss */ +/* line 4472, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration, .event-card .edit-course-enrollment { float: right; font-size: 1.5em; color: #DADADA; } -/* line 4475, ../../../scss/_app_styles.scss */ +/* line 4476, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration:hover, .event-card .edit-course-enrollment:hover { color: #565656; } -/* line 4479, ../../../scss/_app_styles.scss */ +/* line 4480, ../../../scss/_app_styles.scss */ .event-card .published.scard-action { background: #A6D9CB; } -/* line 4483, ../../../scss/_app_styles.scss */ +/* line 4484, ../../../scss/_app_styles.scss */ .event-card .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 4488, ../../../scss/_app_styles.scss */ +/* line 4489, ../../../scss/_app_styles.scss */ .event-card .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4493, ../../../scss/_app_styles.scss */ +/* line 4494, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action { border-color: transparent #6153ae transparent transparent; border-color: rgba(255, 255, 255, 0) #6153ae rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4497, ../../../scss/_app_styles.scss */ +/* line 4498, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 4501, ../../../scss/_app_styles.scss */ +/* line 4502, ../../../scss/_app_styles.scss */ .event-card .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -27779,17 +27780,17 @@ course-title { /* End Course/events Card CSS*/ /* Landing page */ -/* line 4513, ../../../scss/_app_styles.scss */ +/* line 4514, ../../../scss/_app_styles.scss */ .landing_page { position: relative; text-align: center; } -/* line 4517, ../../../scss/_app_styles.scss */ +/* line 4518, ../../../scss/_app_styles.scss */ .landing_page .panel { background-color: inherit; border: none; } -/* line 4522, ../../../scss/_app_styles.scss */ +/* line 4523, ../../../scss/_app_styles.scss */ .landing_page .landing_page_background { height: 100%; width: 100%; @@ -27801,24 +27802,24 @@ course-title { background: -ms-linear-gradient(left, #E9A900, #B0108D); background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 4534, ../../../scss/_app_styles.scss */ +/* line 4535, ../../../scss/_app_styles.scss */ .landing_page .clix_brief { text-align: left; padding: 20px 5%; } -/* line 4538, ../../../scss/_app_styles.scss */ +/* line 4539, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 30px 20px; height: 70px; } @media screen and (max-width: 450px) { - /* line 4538, ../../../scss/_app_styles.scss */ + /* line 4539, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 25px 10px; height: 55px; } } -/* line 4546, ../../../scss/_app_styles.scss */ +/* line 4547, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { color: #fff; font-size: 26px; @@ -27826,12 +27827,12 @@ course-title { font-family: 'ubuntu-light'; } @media screen and (max-width: 450px) { - /* line 4546, ../../../scss/_app_styles.scss */ + /* line 4547, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { font-size: 18px; } } -/* line 4557, ../../../scss/_app_styles.scss */ +/* line 4558, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { background-color: rgba(255, 255, 255, 0.92); border-radius: 10px; @@ -27842,12 +27843,12 @@ course-title { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); } @media screen and (min-width: 1025px) { - /* line 4557, ../../../scss/_app_styles.scss */ + /* line 4558, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { margin: 200px auto; } } -/* line 4569, ../../../scss/_app_styles.scss */ +/* line 4570, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix > span { font-family: 'ubuntu-bold'; color: #6658af; @@ -27858,7 +27859,7 @@ course-title { display: inline-block; vertical-align: middle; } -/* line 4579, ../../../scss/_app_styles.scss */ +/* line 4580, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix p { color: #b0108d; font-size: 21px; @@ -27866,28 +27867,28 @@ course-title { font-weight: 300; font-family: 'ubuntu-light'; } -/* line 4587, ../../../scss/_app_styles.scss */ +/* line 4588, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix img { height: 30px; } -/* line 4590, ../../../scss/_app_styles.scss */ +/* line 4591, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form { margin-top: 30px; } -/* line 4593, ../../../scss/_app_styles.scss */ +/* line 4594, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form input { font-size: 24px; height: 45px; margin: 5px 0px 24px; } -/* line 4600, ../../../scss/_app_styles.scss */ +/* line 4601, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix input.button { font-size: 15px; border-radius: 5px; font-family: 'ubuntu-bold'; text-transform: uppercase; } -/* line 4606, ../../../scss/_app_styles.scss */ +/* line 4607, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix a.grey { color: #999; /*display: inline-block; @@ -27898,7 +27899,7 @@ course-title { font-family: 'ubuntu-bold'; text-transform: uppercase;*/ } -/* line 4617, ../../../scss/_app_styles.scss */ +/* line 4618, ../../../scss/_app_styles.scss */ .landing_page .flowers { left: 50px; height: 500px; @@ -27906,18 +27907,18 @@ course-title { opacity: 0.6; } @media screen and (max-width: 450px) { - /* line 4617, ../../../scss/_app_styles.scss */ + /* line 4618, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 250px; } } @media screen and (min-width: 451px) and (max-width: 1025px) { - /* line 4617, ../../../scss/_app_styles.scss */ + /* line 4618, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 350px; } } -/* line 4629, ../../../scss/_app_styles.scss */ +/* line 4630, ../../../scss/_app_styles.scss */ .landing_page .bees { position: absolute; top: 5px; @@ -27925,40 +27926,40 @@ course-title { height: 150px; } @media screen and (max-width: 450px) { - /* line 4629, ../../../scss/_app_styles.scss */ + /* line 4630, ../../../scss/_app_styles.scss */ .landing_page .bees { right: 15px; height: 100px; } } -/* line 4639, ../../../scss/_app_styles.scss */ +/* line 4640, ../../../scss/_app_styles.scss */ .landing_page h2 { color: #A0148E; font-weight: 600; } -/* line 4643, ../../../scss/_app_styles.scss */ +/* line 4644, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text { color: #6153ae; } -/* line 4646, ../../../scss/_app_styles.scss */ +/* line 4647, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text p { font-size: 18px; } /* END of Landing page */ -/* line 4652, ../../../scss/_app_styles.scss */ +/* line 4653, ../../../scss/_app_styles.scss */ .audio-caption { cursor: pointer; } -/* line 4656, ../../../scss/_app_styles.scss */ +/* line 4657, ../../../scss/_app_styles.scss */ .gallery-image { cursor: pointer; max-height: 100px; border: 1px solid !important; } -/* line 4662, ../../../scss/_app_styles.scss */ +/* line 4663, ../../../scss/_app_styles.scss */ .show-collection { color: black !important; font-size: 1.1em; @@ -27971,25 +27972,25 @@ course-title { border: 1px solid #eee; } -/* line 4674, ../../../scss/_app_styles.scss */ +/* line 4675, ../../../scss/_app_styles.scss */ .processing-screen { background-color: #6153ae !important; } -/* line 4678, ../../../scss/_app_styles.scss */ +/* line 4679, ../../../scss/_app_styles.scss */ .processing-screen-label { width: 500px !important; font-style: normal !important; } -/* line 4682, ../../../scss/_app_styles.scss */ +/* line 4683, ../../../scss/_app_styles.scss */ h3 { font-size: 20px; color: #164A7B; font-family: 'OpenSans-Semibold'; } -/* line 4688, ../../../scss/_app_styles.scss */ +/* line 4689, ../../../scss/_app_styles.scss */ h5 { color: #99aaba; font-size: 10px; @@ -27998,7 +27999,7 @@ h5 { margin-left: 5px; } -/* line 4696, ../../../scss/_app_styles.scss */ +/* line 4697, ../../../scss/_app_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28007,12 +28008,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4703, ../../../scss/_app_styles.scss */ +/* line 4704, ../../../scss/_app_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 4707, ../../../scss/_app_styles.scss */ +/* line 4708, ../../../scss/_app_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28021,12 +28022,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4714, ../../../scss/_app_styles.scss */ +/* line 4715, ../../../scss/_app_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 4720, ../../../scss/_app_styles.scss */ +/* line 4721, ../../../scss/_app_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28038,7 +28039,7 @@ h5 { color: #6153AE; } -/* line 4731, ../../../scss/_app_styles.scss */ +/* line 4732, ../../../scss/_app_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28051,14 +28052,14 @@ h5 { display: inline-block; color: #6153AE; } -/* line 4743, ../../../scss/_app_styles.scss */ +/* line 4744, ../../../scss/_app_styles.scss */ .add-note-btn:hover { cursor: pointer; color: #6153AE; background-color: #ffffff; } -/* line 4751, ../../../scss/_app_styles.scss */ +/* line 4752, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -28070,7 +28071,7 @@ h5 { border: 2px solid #6153ae; background-color: #dbd4e1; } -/* line 4762, ../../../scss/_app_styles.scss */ +/* line 4763, ../../../scss/_app_styles.scss */ .explore-button:hover { cursor: pointer; } @@ -28078,12 +28079,12 @@ h5 { /*Blue color variable*/ /*Orange color variables*/ /* module detail settings drop */ -/* line 4793, ../../../scss/_app_styles.scss */ +/* line 4794, ../../../scss/_app_styles.scss */ .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4796, ../../../scss/_app_styles.scss */ +/* line 4797, ../../../scss/_app_styles.scss */ .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28096,17 +28097,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4807, ../../../scss/_app_styles.scss */ +/* line 4808, ../../../scss/_app_styles.scss */ .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4813, ../../../scss/_app_styles.scss */ +/* line 4814, ../../../scss/_app_styles.scss */ .explore-settings-drop a { font-size: 16px; } -/* line 4816, ../../../scss/_app_styles.scss */ +/* line 4817, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28114,12 +28115,12 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4816, ../../../scss/_app_styles.scss */ +/* line 4817, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4819, ../../../scss/_app_styles.scss */ +/* line 4820, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28132,17 +28133,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4830, ../../../scss/_app_styles.scss */ +/* line 4831, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4836, ../../../scss/_app_styles.scss */ +/* line 4837, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop a { font-size: 16px; } -/* line 4839, ../../../scss/_app_styles.scss */ +/* line 4840, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28150,33 +28151,33 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4847, ../../../scss/_app_styles.scss */ +/* line 4848, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4851, ../../../scss/_app_styles.scss */ +/* line 4852, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4864, ../../../scss/_app_styles.scss */ +/* line 4865, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4868, ../../../scss/_app_styles.scss */ +/* line 4869, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4875, ../../../scss/_app_styles.scss */ +/* line 4876, ../../../scss/_app_styles.scss */ .edit_button { color: #717171; } -/* line 4877, ../../../scss/_app_styles.scss */ +/* line 4878, ../../../scss/_app_styles.scss */ .edit_button:hover { border-left: 2px solid #ce7869; } -/* line 4883, ../../../scss/_app_styles.scss */ +/* line 4884, ../../../scss/_app_styles.scss */ .left-btn { margin-top: 0px; margin-right: 0px; @@ -28188,7 +28189,7 @@ h5 { color: #555555; font-size: 11px; } -/* line 4893, ../../../scss/_app_styles.scss */ +/* line 4894, ../../../scss/_app_styles.scss */ .left-btn:hover { display: block; padding: 0.5rem; @@ -28196,7 +28197,7 @@ h5 { border-left: 2px solid #ce7869; } -/* line 4902, ../../../scss/_app_styles.scss */ +/* line 4903, ../../../scss/_app_styles.scss */ .chnge-img:hover { display: block; padding: 0.5rem; @@ -28204,14 +28205,14 @@ h5 { border-left: 2px solid #ce7869; } -/* line 4913, ../../../scss/_app_styles.scss */ +/* line 4914, ../../../scss/_app_styles.scss */ .lms_page .lms_banner { width: 100%; height: 150px; background-size: 100% 100%; position: relative; } -/* line 4921, ../../../scss/_app_styles.scss */ +/* line 4922, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -28224,27 +28225,27 @@ h5 { bottom: 0; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 4934, ../../../scss/_app_styles.scss */ +/* line 4935, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before a { cursor: pointer; } -/* line 4939, ../../../scss/_app_styles.scss */ +/* line 4940, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .div-height { height: 150px !important; background-size: 100% 100%; position: absolute !important; } -/* line 4947, ../../../scss/_app_styles.scss */ +/* line 4948, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .enroll_unit > a { cursor: pointer; } -/* line 4951, ../../../scss/_app_styles.scss */ +/* line 4952, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 4957, ../../../scss/_app_styles.scss */ +/* line 4958, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .unit_name { font-size: 36px; font-family: OpenSans-Semibold; @@ -28255,17 +28256,17 @@ h5 { transition: border-radius .2s; text-shadow: 3px 2px #164a7b; } -/* line 4968, ../../../scss/_app_styles.scss */ +/* line 4969, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .right-margin { margin-right: 46px; } -/* line 4977, ../../../scss/_app_styles.scss */ +/* line 4978, ../../../scss/_app_styles.scss */ .border-bottom-lms-header { border-bottom: 1px solid #00000029; } -/* line 4982, ../../../scss/_app_styles.scss */ +/* line 4983, ../../../scss/_app_styles.scss */ .lms_secondary_header { width: 100%; position: relative; @@ -28273,11 +28274,11 @@ h5 { box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 4988, ../../../scss/_app_styles.scss */ +/* line 4989, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions { margin-top: 8px; } -/* line 4991, ../../../scss/_app_styles.scss */ +/* line 4992, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28289,11 +28290,11 @@ h5 { opacity: 0.8; } @media screen and (min-width: 980px) and (max-width: 1000px) { - /* line 5005, ../../../scss/_app_styles.scss */ + /* line 5006, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions { margin-top: 8px; } - /* line 5008, ../../../scss/_app_styles.scss */ + /* line 5009, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions > span { margin-left: 50px; background: #2e3f51; @@ -28307,16 +28308,16 @@ h5 { } } -/* line 5028, ../../../scss/_app_styles.scss */ +/* line 5029, ../../../scss/_app_styles.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; } -/* line 5031, ../../../scss/_app_styles.scss */ +/* line 5032, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 5034, ../../../scss/_app_styles.scss */ +/* line 5035, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a { list-style-type: none; display: inline-block; @@ -28327,23 +28328,23 @@ ul.nav_menu_1 > li > a { letter-spacing: 0.8px; border-bottom: 3px solid transparent; } -/* line 5045, ../../../scss/_app_styles.scss */ +/* line 5046, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-bottom: 3px solid #a2238d; } -/* line 5056, ../../../scss/_app_styles.scss */ +/* line 5057, ../../../scss/_app_styles.scss */ ul.authoring-tab { margin-bottom: 0px; display: inline; width: 50%; } -/* line 5060, ../../../scss/_app_styles.scss */ +/* line 5061, ../../../scss/_app_styles.scss */ ul.authoring-tab > li { display: inline-block; background-color: #164a7b; } -/* line 5063, ../../../scss/_app_styles.scss */ +/* line 5064, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a { list-style-type: none; margin-right: -4px; @@ -28356,13 +28357,13 @@ ul.authoring-tab > li > a { border-bottom: 3px solid transparent; color: #ffffff !important; } -/* line 5074, ../../../scss/_app_styles.scss */ +/* line 5075, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-bottom: 3px solid #a2238d; } /* Secondary Top Bar */ -/* line 5083, ../../../scss/_app_styles.scss */ +/* line 5084, ../../../scss/_app_styles.scss */ .secondary-header-tabs { color: #719dc7; font-weight: 400; @@ -28372,11 +28373,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -webkit-transition: color 1s ease, border-color 1s ease; display: inline-block; } -/* line 5092, ../../../scss/_app_styles.scss */ +/* line 5093, ../../../scss/_app_styles.scss */ .secondary-header-tabs:hover { color: #164A7B; } -/* line 5096, ../../../scss/_app_styles.scss */ +/* line 5097, ../../../scss/_app_styles.scss */ .secondary-header-tabs.active { color: #164A7B; border-bottom: 2px solid #164A7B; @@ -28384,7 +28385,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: 600; } -/* line 5106, ../../../scss/_app_styles.scss */ +/* line 5107, ../../../scss/_app_styles.scss */ .secondary-header-button { color: #3c556d; font-weight: 700; @@ -28397,12 +28398,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-size: 13px; letter-spacing: 1.2px; } -/* line 5118, ../../../scss/_app_styles.scss */ +/* line 5119, ../../../scss/_app_styles.scss */ .secondary-header-button:hover { opacity: 0.5; } -/* line 5125, ../../../scss/_app_styles.scss */ +/* line 5126, ../../../scss/_app_styles.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -28411,34 +28412,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: -8px; } -/* line 5136, ../../../scss/_app_styles.scss */ +/* line 5137, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 5141, ../../../scss/_app_styles.scss */ +/* line 5142, ../../../scss/_app_styles.scss */ .top-bar-second .name { text-align: center; } -/* line 5144, ../../../scss/_app_styles.scss */ +/* line 5145, ../../../scss/_app_styles.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 5154, ../../../scss/_app_styles.scss */ +/* line 5155, ../../../scss/_app_styles.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 5162, ../../../scss/_app_styles.scss */ +/* line 5163, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 5164, ../../../scss/_app_styles.scss */ +/* line 5165, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -28447,31 +28448,31 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; letter-spacing: 0.5px; } -/* line 5175, ../../../scss/_app_styles.scss */ +/* line 5176, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 5183, ../../../scss/_app_styles.scss */ +/* line 5184, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 5189, ../../../scss/_app_styles.scss */ +/* line 5190, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 5200, ../../../scss/_app_styles.scss */ + /* line 5201, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 5202, ../../../scss/_app_styles.scss */ + /* line 5203, ../../../scss/_app_styles.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 5209, ../../../scss/_app_styles.scss */ + /* line 5210, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -28479,32 +28480,32 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { line-height: 52px; border-left-width: 0px; } - /* line 5216, ../../../scss/_app_styles.scss */ + /* line 5217, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5222, ../../../scss/_app_styles.scss */ + /* line 5223, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5230, ../../../scss/_app_styles.scss */ + /* line 5231, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 5240, ../../../scss/_app_styles.scss */ + /* line 5241, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 5249, ../../../scss/_app_styles.scss */ + /* line 5250, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 5256, ../../../scss/_app_styles.scss */ + /* line 5257, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; @@ -28519,7 +28520,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { /** * Sass styles related to unit cards */ -/* line 5284, ../../../scss/_app_styles.scss */ +/* line 5285, ../../../scss/_app_styles.scss */ .unit_card { width: 300px; color: #000; @@ -28531,7 +28532,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { position: relative; height: 210px; } -/* line 5298, ../../../scss/_app_styles.scss */ +/* line 5299, ../../../scss/_app_styles.scss */ .unit_card .unit_status { position: absolute; right: 0px; @@ -28542,11 +28543,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-radius: 3px; letter-spacing: 0.6px; } -/* line 5309, ../../../scss/_app_styles.scss */ +/* line 5310, ../../../scss/_app_styles.scss */ .unit_card .unit_header { display: table; } -/* line 5311, ../../../scss/_app_styles.scss */ +/* line 5312, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_banner { display: table-cell; border-radius: 5px; @@ -28555,7 +28556,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-right: 10px; color: #333333; } -/* line 5319, ../../../scss/_app_styles.scss */ +/* line 5320, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_title { display: table-cell; font-size: 20px; @@ -28569,7 +28570,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { vertical-align: middle; color: #333333; } -/* line 5333, ../../../scss/_app_styles.scss */ +/* line 5334, ../../../scss/_app_styles.scss */ .unit_card .unit_desc { display: block; /* Fallback for non-webkit */ @@ -28586,16 +28587,16 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin: 10px 0px 20px; color: #333333; } -/* line 5349, ../../../scss/_app_styles.scss */ +/* line 5350, ../../../scss/_app_styles.scss */ .unit_card .unit_breif .unit_breif_row i { margin-right: 10px; color: #99aaba; } -/* line 5355, ../../../scss/_app_styles.scss */ +/* line 5356, ../../../scss/_app_styles.scss */ .unit_card .unit_actions { padding: 5px 0px; } -/* line 5360, ../../../scss/_app_styles.scss */ +/* line 5361, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol { background: #a2238d; height: 37px; @@ -28608,11 +28609,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5372, ../../../scss/_app_styles.scss */ +/* line 5373, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 5377, ../../../scss/_app_styles.scss */ +/* line 5378, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics { color: #a2238d; font-weight: 500; @@ -28620,7 +28621,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.3px; border-bottom: 2px solid #a2238d; } -/* line 5385, ../../../scss/_app_styles.scss */ +/* line 5386, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics-points { background: #ffffff; color: #a2238d; @@ -28631,7 +28632,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; cursor: default; } -/* line 5396, ../../../scss/_app_styles.scss */ +/* line 5397, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit { height: 37px; text-align: center; @@ -28640,13 +28641,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5404, ../../../scss/_app_styles.scss */ +/* line 5405, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit:hover { border-bottom: 2px solid #ffc14e; } /* unit cards labels */ -/* line 5414, ../../../scss/_app_styles.scss */ +/* line 5415, ../../../scss/_app_styles.scss */ .status-completed { width: auto; top: -1.15em; @@ -28663,7 +28664,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5430, ../../../scss/_app_styles.scss */ +/* line 5431, ../../../scss/_app_styles.scss */ .status-in-progress { width: auto; top: -1.15em; @@ -28680,7 +28681,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5447, ../../../scss/_app_styles.scss */ +/* line 5448, ../../../scss/_app_styles.scss */ .status-upcoming { width: auto; top: -1.15em; @@ -28697,7 +28698,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5464, ../../../scss/_app_styles.scss */ +/* line 5465, ../../../scss/_app_styles.scss */ .status-draft { width: auto; top: -1.15em; @@ -28714,7 +28715,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5482, ../../../scss/_app_styles.scss */ +/* line 5483, ../../../scss/_app_styles.scss */ .status-workspace { width: auto; top: -1.15em; @@ -28731,48 +28732,48 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5499, ../../../scss/_app_styles.scss */ +/* line 5500, ../../../scss/_app_styles.scss */ .icon-widget { font-size: 24px; } /* module detail css */ -/* line 5508, ../../../scss/_app_styles.scss */ +/* line 5509, ../../../scss/_app_styles.scss */ .thumbnail_style { margin-left: -30px; } -/* line 5512, ../../../scss/_app_styles.scss */ +/* line 5513, ../../../scss/_app_styles.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 5518, ../../../scss/_app_styles.scss */ +/* line 5519, ../../../scss/_app_styles.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); padding-left: 10px; height: auto; min-height: 143px; } -/* line 5524, ../../../scss/_app_styles.scss */ +/* line 5525, ../../../scss/_app_styles.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 5534, ../../../scss/_app_styles.scss */ +/* line 5535, ../../../scss/_app_styles.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 5539, ../../../scss/_app_styles.scss */ +/* line 5540, ../../../scss/_app_styles.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 5542, ../../../scss/_app_styles.scss */ +/* line 5543, ../../../scss/_app_styles.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28786,7 +28787,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 5559, ../../../scss/_app_styles.scss */ +/* line 5560, ../../../scss/_app_styles.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -28800,7 +28801,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* Creating and editing course Structure */ -/* line 5576, ../../../scss/_app_styles.scss */ +/* line 5577, ../../../scss/_app_styles.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -28811,34 +28812,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 5585, ../../../scss/_app_styles.scss */ +/* line 5586, ../../../scss/_app_styles.scss */ .group_tile:hover { opacity: 0.7; } -/* line 5588, ../../../scss/_app_styles.scss */ +/* line 5589, ../../../scss/_app_styles.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 5595, ../../../scss/_app_styles.scss */ +/* line 5596, ../../../scss/_app_styles.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 5602, ../../../scss/_app_styles.scss */ +/* line 5603, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 5605, ../../../scss/_app_styles.scss */ +/* line 5606, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 5608, ../../../scss/_app_styles.scss */ +/* line 5609, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -28846,15 +28847,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 5616, ../../../scss/_app_styles.scss */ +/* line 5617, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 5620, ../../../scss/_app_styles.scss */ +/* line 5621, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 5622, ../../../scss/_app_styles.scss */ +/* line 5623, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -28865,27 +28866,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 5632, ../../../scss/_app_styles.scss */ +/* line 5633, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 5637, ../../../scss/_app_styles.scss */ +/* line 5638, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 5643, ../../../scss/_app_styles.scss */ +/* line 5644, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 5650, ../../../scss/_app_styles.scss */ +/* line 5651, ../../../scss/_app_styles.scss */ .max-width { max-width: 100%; } -/* line 5656, ../../../scss/_app_styles.scss */ +/* line 5657, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28895,7 +28896,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 5665, ../../../scss/_app_styles.scss */ +/* line 5666, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -28912,7 +28913,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 5678, ../../../scss/_app_styles.scss */ +/* line 5679, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -28922,28 +28923,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 5687, ../../../scss/_app_styles.scss */ +/* line 5688, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 5692, ../../../scss/_app_styles.scss */ +/* line 5693, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background-color: #ffffff; } -/* line 5697, ../../../scss/_app_styles.scss */ +/* line 5698, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 5703, ../../../scss/_app_styles.scss */ +/* line 5704, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 5707, ../../../scss/_app_styles.scss */ +/* line 5708, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -28956,7 +28957,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 5720, ../../../scss/_app_styles.scss */ +/* line 5721, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -28971,7 +28972,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Unit_Structure styles */ -/* line 5738, ../../../scss/_app_styles.scss */ +/* line 5739, ../../../scss/_app_styles.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -28979,12 +28980,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 5746, ../../../scss/_app_styles.scss */ +/* line 5747, ../../../scss/_app_styles.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 5750, ../../../scss/_app_styles.scss */ +/* line 5751, ../../../scss/_app_styles.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -28992,17 +28993,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 5756, ../../../scss/_app_styles.scss */ +/* line 5757, ../../../scss/_app_styles.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 5762, ../../../scss/_app_styles.scss */ +/* line 5763, ../../../scss/_app_styles.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 5767, ../../../scss/_app_styles.scss */ +/* line 5768, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29012,25 +29013,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 5776, ../../../scss/_app_styles.scss */ +/* line 5777, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5780, ../../../scss/_app_styles.scss */ +/* line 5781, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 5785, ../../../scss/_app_styles.scss */ +/* line 5786, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 5794, ../../../scss/_app_styles.scss */ +/* line 5795, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29039,7 +29040,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5801, ../../../scss/_app_styles.scss */ +/* line 5802, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29048,15 +29049,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 5810, ../../../scss/_app_styles.scss */ +/* line 5811, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 5815, ../../../scss/_app_styles.scss */ +/* line 5816, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 5818, ../../../scss/_app_styles.scss */ +/* line 5819, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29064,21 +29065,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 5828, ../../../scss/_app_styles.scss */ +/* line 5829, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 5834, ../../../scss/_app_styles.scss */ +/* line 5835, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 5842, ../../../scss/_app_styles.scss */ +/* line 5843, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 5844, ../../../scss/_app_styles.scss */ +/* line 5845, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29087,7 +29088,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5851, ../../../scss/_app_styles.scss */ +/* line 5852, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29095,11 +29096,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5860, ../../../scss/_app_styles.scss */ +/* line 5861, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 5869, ../../../scss/_app_styles.scss */ +/* line 5870, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29111,49 +29112,49 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 5879, ../../../scss/_app_styles.scss */ +/* line 5880, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 5885, ../../../scss/_app_styles.scss */ +/* line 5886, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 5888, ../../../scss/_app_styles.scss */ +/* line 5889, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 5897, ../../../scss/_app_styles.scss */ +/* line 5898, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 5902, ../../../scss/_app_styles.scss */ +/* line 5903, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 5906, ../../../scss/_app_styles.scss */ +/* line 5907, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 5908, ../../../scss/_app_styles.scss */ +/* line 5909, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 5911, ../../../scss/_app_styles.scss */ +/* line 5912, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 5917, ../../../scss/_app_styles.scss */ +/* line 5918, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29161,29 +29162,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 15px 5px; cursor: pointer; } -/* line 5932, ../../../scss/_app_styles.scss */ +/* line 5933, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 5940, ../../../scss/_app_styles.scss */ +/* line 5941, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 5946, ../../../scss/_app_styles.scss */ +/* line 5947, ../../../scss/_app_styles.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 5955, ../../../scss/_app_styles.scss */ +/* line 5956, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 5960, ../../../scss/_app_styles.scss */ +/* line 5961, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29191,28 +29192,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 5967, ../../../scss/_app_styles.scss */ +/* line 5968, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5972, ../../../scss/_app_styles.scss */ +/* line 5973, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5977, ../../../scss/_app_styles.scss */ +/* line 5978, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 5979, ../../../scss/_app_styles.scss */ +/* line 5980, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 5983, ../../../scss/_app_styles.scss */ +/* line 5984, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -29224,21 +29225,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; border-radius: 3px; } -/* line 5994, ../../../scss/_app_styles.scss */ +/* line 5995, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 5999, ../../../scss/_app_styles.scss */ +/* line 6000, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 6005, ../../../scss/_app_styles.scss */ +/* line 6006, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 6011, ../../../scss/_app_styles.scss */ +/* line 6012, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -29246,19 +29247,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 6018, ../../../scss/_app_styles.scss */ +/* line 6019, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 6025, ../../../scss/_app_styles.scss */ +/* line 6026, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6036, ../../../scss/_app_styles.scss */ +/* line 6037, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -29269,7 +29270,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 6053, ../../../scss/_app_styles.scss */ +/* line 6054, ../../../scss/_app_styles.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -29284,66 +29285,66 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* lesspn listing LMS */ -/* line 6069, ../../../scss/_app_styles.scss */ +/* line 6070, ../../../scss/_app_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 6077, ../../../scss/_app_styles.scss */ +/* line 6078, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 6080, ../../../scss/_app_styles.scss */ +/* line 6081, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 6082, ../../../scss/_app_styles.scss */ +/* line 6083, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 6089, ../../../scss/_app_styles.scss */ +/* line 6090, ../../../scss/_app_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 6091, ../../../scss/_app_styles.scss */ +/* line 6092, ../../../scss/_app_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 6096, ../../../scss/_app_styles.scss */ +/* line 6097, ../../../scss/_app_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 6104, ../../../scss/_app_styles.scss */ +/* line 6105, ../../../scss/_app_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6110, ../../../scss/_app_styles.scss */ +/* line 6111, ../../../scss/_app_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6117, ../../../scss/_app_styles.scss */ +/* line 6118, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 6120, ../../../scss/_app_styles.scss */ +/* line 6121, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 6123, ../../../scss/_app_styles.scss */ +/* line 6124, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 6126, ../../../scss/_app_styles.scss */ +/* line 6127, ../../../scss/_app_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; @@ -29353,23 +29354,23 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Styling for the Secondary header 2 */ -/* line 6145, ../../../scss/_app_styles.scss */ +/* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 6148, ../../../scss/_app_styles.scss */ +/* line 6149, ../../../scss/_app_styles.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6156, ../../../scss/_app_styles.scss */ +/* line 6157, ../../../scss/_app_styles.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 6165, ../../../scss/_app_styles.scss */ +/* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { position: relative; color: #fff; @@ -29380,56 +29381,56 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: -2px; border-right: 1px solid white; } -/* line 6174, ../../../scss/_app_styles.scss */ +/* line 6175, ../../../scss/_app_styles.scss */ .activity_player_header .header_title a { color: #ffc14f; } @media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 938px); } } @media only screen and (min-device-width: 2131px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 970px); } } @media only screen and (max-device-width: 1024px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 753px); } } -/* line 6251, ../../../scss/_app_styles.scss */ +/* line 6252, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon { font-size: 16px; line-height: 45px; color: #ffc14f; } -/* line 6257, ../../../scss/_app_styles.scss */ +/* line 6258, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 6263, ../../../scss/_app_styles.scss */ +/* line 6264, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 10px; } @media screen and (min-width: 1025px) { - /* line 6263, ../../../scss/_app_styles.scss */ + /* line 6264, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 15px; } } @media screen and (min-width: 1025px) { - /* line 6270, ../../../scss/_app_styles.scss */ + /* line 6271, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { float: right; margin-right: 70px; @@ -29437,73 +29438,73 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media screen and (max-width: 1024px) { - /* line 6270, ../../../scss/_app_styles.scss */ + /* line 6271, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { background-color: rgba(107, 0, 84, 0.97); } } -/* line 6283, ../../../scss/_app_styles.scss */ +/* line 6284, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6289, ../../../scss/_app_styles.scss */ +/* line 6290, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block { padding: 0px 15px; margin-left: -2px; border-right: 1px solid white; } -/* line 6293, ../../../scss/_app_styles.scss */ +/* line 6294, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block a { color: #ffc14f; } -/* line 6299, ../../../scss/_app_styles.scss */ +/* line 6300, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 9px; } @media screen and (min-width: 1025px) { - /* line 6299, ../../../scss/_app_styles.scss */ + /* line 6300, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 15px; } } -/* line 6307, ../../../scss/_app_styles.scss */ +/* line 6308, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 7px; } @media screen and (min-width: 1025px) { - /* line 6307, ../../../scss/_app_styles.scss */ + /* line 6308, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 15px; } } -/* line 6316, ../../../scss/_app_styles.scss */ +/* line 6317, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 6319, ../../../scss/_app_styles.scss */ +/* line 6320, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button i { color: #71318b; } -/* line 6325, ../../../scss/_app_styles.scss */ +/* line 6326, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 6329, ../../../scss/_app_styles.scss */ +/* line 6330, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 6335, ../../../scss/_app_styles.scss */ +/* line 6336, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .pagination:not(i) { color: #a983b9; } -/* line 6343, ../../../scss/_app_styles.scss */ +/* line 6344, ../../../scss/_app_styles.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -29511,29 +29512,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 6350, ../../../scss/_app_styles.scss */ +/* line 6351, ../../../scss/_app_styles.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 6354, ../../../scss/_app_styles.scss */ +/* line 6355, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6360, ../../../scss/_app_styles.scss */ +/* line 6361, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6366, ../../../scss/_app_styles.scss */ +/* line 6367, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 6371, ../../../scss/_app_styles.scss */ +/* line 6372, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29543,25 +29544,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 6380, ../../../scss/_app_styles.scss */ +/* line 6381, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6384, ../../../scss/_app_styles.scss */ +/* line 6385, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6389, ../../../scss/_app_styles.scss */ +/* line 6390, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6398, ../../../scss/_app_styles.scss */ +/* line 6399, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29570,7 +29571,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6405, ../../../scss/_app_styles.scss */ +/* line 6406, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29579,15 +29580,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 6414, ../../../scss/_app_styles.scss */ +/* line 6415, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6419, ../../../scss/_app_styles.scss */ +/* line 6420, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6422, ../../../scss/_app_styles.scss */ +/* line 6423, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29595,21 +29596,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 6432, ../../../scss/_app_styles.scss */ +/* line 6433, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6438, ../../../scss/_app_styles.scss */ +/* line 6439, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6446, ../../../scss/_app_styles.scss */ +/* line 6447, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6448, ../../../scss/_app_styles.scss */ +/* line 6449, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29618,7 +29619,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6455, ../../../scss/_app_styles.scss */ +/* line 6456, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29626,11 +29627,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6464, ../../../scss/_app_styles.scss */ +/* line 6465, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6473, ../../../scss/_app_styles.scss */ +/* line 6474, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29642,48 +29643,48 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 6483, ../../../scss/_app_styles.scss */ +/* line 6484, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6488, ../../../scss/_app_styles.scss */ +/* line 6489, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6491, ../../../scss/_app_styles.scss */ +/* line 6492, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6500, ../../../scss/_app_styles.scss */ +/* line 6501, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6505, ../../../scss/_app_styles.scss */ +/* line 6506, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6509, ../../../scss/_app_styles.scss */ +/* line 6510, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6511, ../../../scss/_app_styles.scss */ +/* line 6512, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6514, ../../../scss/_app_styles.scss */ +/* line 6515, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6520, ../../../scss/_app_styles.scss */ +/* line 6521, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29692,7 +29693,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; } -/* line 6538, ../../../scss/_app_styles.scss */ +/* line 6539, ../../../scss/_app_styles.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -29700,26 +29701,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 10px; padding-right: 4px; } -/* line 6544, ../../../scss/_app_styles.scss */ +/* line 6545, ../../../scss/_app_styles.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 6549, ../../../scss/_app_styles.scss */ +/* line 6550, ../../../scss/_app_styles.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6555, ../../../scss/_app_styles.scss */ +/* line 6556, ../../../scss/_app_styles.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 6561, ../../../scss/_app_styles.scss */ +/* line 6562, ../../../scss/_app_styles.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29729,29 +29730,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 6570, ../../../scss/_app_styles.scss */ +/* line 6571, ../../../scss/_app_styles.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 6574, ../../../scss/_app_styles.scss */ +/* line 6575, ../../../scss/_app_styles.scss */ .activity-title > li > a { color: black; } -/* line 6583, ../../../scss/_app_styles.scss */ +/* line 6584, ../../../scss/_app_styles.scss */ .activity_page_rendered { margin-left: 20px; max-width: 900px; } /* Rating css */ -/* line 6591, ../../../scss/_app_styles.scss */ +/* line 6592, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 6593, ../../../scss/_app_styles.scss */ +/* line 6594, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -29759,19 +29760,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { unicode-bidi: bidi-override; direction: rtl; } -/* line 6601, ../../../scss/_app_styles.scss */ +/* line 6602, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 6603, ../../../scss/_app_styles.scss */ +/* line 6604, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 6609, ../../../scss/_app_styles.scss */ +/* line 6610, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 6611, ../../../scss/_app_styles.scss */ +/* line 6612, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -29784,7 +29785,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0; vertical-align: bottom; } -/* line 6623, ../../../scss/_app_styles.scss */ +/* line 6624, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -29792,32 +29793,32 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* WHITE STAR */ color: #888; } -/* line 6630, ../../../scss/_app_styles.scss */ +/* line 6631, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 6641, ../../../scss/_app_styles.scss */ +/* line 6642, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 6648, ../../../scss/_app_styles.scss */ +/* line 6649, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 6656, ../../../scss/_app_styles.scss */ +/* line 6657, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 6661, ../../../scss/_app_styles.scss */ +/* line 6662, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -29826,29 +29827,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-shadow: 0 0 1px #333; } -/* line 6671, ../../../scss/_app_styles.scss */ +/* line 6672, ../../../scss/_app_styles.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 6675, ../../../scss/_app_styles.scss */ +/* line 6676, ../../../scss/_app_styles.scss */ .input_links { margin-left: 10px; } -/* line 6677, ../../../scss/_app_styles.scss */ +/* line 6678, ../../../scss/_app_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 6683, ../../../scss/_app_styles.scss */ +/* line 6684, ../../../scss/_app_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 6691, ../../../scss/_app_styles.scss */ +/* line 6692, ../../../scss/_app_styles.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -29857,19 +29858,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 6700, ../../../scss/_app_styles.scss */ +/* line 6701, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 6704, ../../../scss/_app_styles.scss */ +/* line 6705, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 6710, ../../../scss/_app_styles.scss */ +/* line 6711, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -29877,12 +29878,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; margin-left: 12%; } -/* line 6718, ../../../scss/_app_styles.scss */ +/* line 6719, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 6724, ../../../scss/_app_styles.scss */ +/* line 6725, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -29891,21 +29892,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: none; color: #8E8E8E; } -/* line 6733, ../../../scss/_app_styles.scss */ +/* line 6734, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 6738, ../../../scss/_app_styles.scss */ +/* line 6739, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 6740, ../../../scss/_app_styles.scss */ +/* line 6741, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 6743, ../../../scss/_app_styles.scss */ +/* line 6744, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -29916,24 +29917,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #757575; margin-right: 20px; } -/* line 6753, ../../../scss/_app_styles.scss */ +/* line 6754, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 6757, ../../../scss/_app_styles.scss */ +/* line 6758, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 6760, ../../../scss/_app_styles.scss */ +/* line 6761, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 6765, ../../../scss/_app_styles.scss */ +/* line 6766, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 6769, ../../../scss/_app_styles.scss */ +/* line 6770, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -29945,7 +29946,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; color: #222222; } -/* line 6780, ../../../scss/_app_styles.scss */ +/* line 6781, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -29953,15 +29954,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 8px; top: 4px; } -/* line 6788, ../../../scss/_app_styles.scss */ +/* line 6789, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 6790, ../../../scss/_app_styles.scss */ +/* line 6791, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 6793, ../../../scss/_app_styles.scss */ +/* line 6794, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -29971,25 +29972,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { letter-spacing: 0.8px; color: #999999; } -/* line 6802, ../../../scss/_app_styles.scss */ +/* line 6803, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 6808, ../../../scss/_app_styles.scss */ +/* line 6809, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 6817, ../../../scss/_app_styles.scss */ +/* line 6818, ../../../scss/_app_styles.scss */ .icon-color { color: #2e3f51 !important; padding: right; } /* The asset tile */ -/* line 6827, ../../../scss/_app_styles.scss */ +/* line 6828, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29999,7 +30000,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 6836, ../../../scss/_app_styles.scss */ +/* line 6837, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -30016,7 +30017,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 6849, ../../../scss/_app_styles.scss */ +/* line 6850, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -30026,28 +30027,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 6858, ../../../scss/_app_styles.scss */ +/* line 6859, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 6863, ../../../scss/_app_styles.scss */ +/* line 6864, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 6868, ../../../scss/_app_styles.scss */ +/* line 6869, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 6874, ../../../scss/_app_styles.scss */ +/* line 6875, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 6878, ../../../scss/_app_styles.scss */ +/* line 6879, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -30060,7 +30061,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 6891, ../../../scss/_app_styles.scss */ +/* line 6892, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -30074,7 +30075,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 6906, ../../../scss/_app_styles.scss */ +/* line 6907, ../../../scss/_app_styles.scss */ .orange-button-subtitle { color: #ce7869; padding: 4px 5px; @@ -30087,13 +30088,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 6917, ../../../scss/_app_styles.scss */ +/* line 6918, ../../../scss/_app_styles.scss */ .orange-button-subtitle:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 6923, ../../../scss/_app_styles.scss */ +/* line 6924, ../../../scss/_app_styles.scss */ .transcript-toggler { display: block; width: 155px !important; @@ -30109,12 +30110,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; } -/* line 6938, ../../../scss/_app_styles.scss */ +/* line 6939, ../../../scss/_app_styles.scss */ .asset_list { margin-left: 12px; } -/* line 6942, ../../../scss/_app_styles.scss */ +/* line 6943, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -30123,22 +30124,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6951, ../../../scss/_app_styles.scss */ +/* line 6952, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6958, ../../../scss/_app_styles.scss */ +/* line 6959, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6964, ../../../scss/_app_styles.scss */ +/* line 6965, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6966, ../../../scss/_app_styles.scss */ +/* line 6967, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -30147,15 +30148,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6973, ../../../scss/_app_styles.scss */ +/* line 6974, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6977, ../../../scss/_app_styles.scss */ +/* line 6978, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6983, ../../../scss/_app_styles.scss */ +/* line 6984, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30164,7 +30165,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6994, ../../../scss/_app_styles.scss */ +/* line 6995, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -30173,24 +30174,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 7003, ../../../scss/_app_styles.scss */ +/* line 7004, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 7010, ../../../scss/_app_styles.scss */ +/* line 7011, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 7015, ../../../scss/_app_styles.scss */ +/* line 7016, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 7019, ../../../scss/_app_styles.scss */ +/* line 7020, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -30201,14 +30202,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 7029, ../../../scss/_app_styles.scss */ +/* line 7030, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 7036, ../../../scss/_app_styles.scss */ + /* line 7037, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30216,7 +30217,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7045, ../../../scss/_app_styles.scss */ + /* line 7046, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30224,7 +30225,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7052, ../../../scss/_app_styles.scss */ + /* line 7053, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30232,14 +30233,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7059, ../../../scss/_app_styles.scss */ + /* line 7060, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 7067, ../../../scss/_app_styles.scss */ +/* line 7068, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30254,14 +30255,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7083, ../../../scss/_app_styles.scss */ +/* line 7084, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 7090, ../../../scss/_app_styles.scss */ + /* line 7091, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30272,7 +30273,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7101, ../../../scss/_app_styles.scss */ + /* line 7102, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30283,7 +30284,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7112, ../../../scss/_app_styles.scss */ + /* line 7113, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30294,7 +30295,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7123, ../../../scss/_app_styles.scss */ + /* line 7124, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30304,7 +30305,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7134, ../../../scss/_app_styles.scss */ +/* line 7135, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30319,14 +30320,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7150, ../../../scss/_app_styles.scss */ +/* line 7151, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 7157, ../../../scss/_app_styles.scss */ + /* line 7158, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30337,7 +30338,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7168, ../../../scss/_app_styles.scss */ + /* line 7169, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30348,7 +30349,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7179, ../../../scss/_app_styles.scss */ + /* line 7180, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30359,7 +30360,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7190, ../../../scss/_app_styles.scss */ + /* line 7191, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30369,11 +30370,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7201, ../../../scss/_app_styles.scss */ +/* line 7202, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 7203, ../../../scss/_app_styles.scss */ +/* line 7204, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30382,11 +30383,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 7211, ../../../scss/_app_styles.scss */ +/* line 7212, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 7217, ../../../scss/_app_styles.scss */ +/* line 7218, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30395,7 +30396,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7228, ../../../scss/_app_styles.scss */ +/* line 7229, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30406,22 +30407,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7238, ../../../scss/_app_styles.scss */ +/* line 7239, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7241, ../../../scss/_app_styles.scss */ +/* line 7242, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7246, ../../../scss/_app_styles.scss */ +/* line 7247, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7257, ../../../scss/_app_styles.scss */ +/* line 7258, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30432,26 +30433,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7267, ../../../scss/_app_styles.scss */ +/* line 7268, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7270, ../../../scss/_app_styles.scss */ +/* line 7271, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7274, ../../../scss/_app_styles.scss */ +/* line 7275, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7280, ../../../scss/_app_styles.scss */ +/* line 7281, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7282, ../../../scss/_app_styles.scss */ +/* line 7283, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30460,7 +30461,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7291, ../../../scss/_app_styles.scss */ +/* line 7292, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30469,7 +30470,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7305, ../../../scss/_app_styles.scss */ +/* line 7306, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -30479,19 +30480,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Asset detail */ -/* line 7316, ../../../scss/_app_styles.scss */ +/* line 7317, ../../../scss/_app_styles.scss */ .overlay-head { height: 60px; margin-bottom: 20px; } -/* line 7322, ../../../scss/_app_styles.scss */ +/* line 7323, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7327, ../../../scss/_app_styles.scss */ +/* line 7328, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30505,13 +30506,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7339, ../../../scss/_app_styles.scss */ +/* line 7340, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7346, ../../../scss/_app_styles.scss */ +/* line 7347, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; padding: 7px 14px; @@ -30524,22 +30525,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7357, ../../../scss/_app_styles.scss */ +/* line 7358, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7362, ../../../scss/_app_styles.scss */ +/* line 7363, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; background: #fff; } -/* line 7365, ../../../scss/_app_styles.scss */ +/* line 7366, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: #fff; } -/* line 7368, ../../../scss/_app_styles.scss */ +/* line 7369, ../../../scss/_app_styles.scss */ .orange-button-template > a { color: #ce7869; padding: 7px 14px; @@ -30552,13 +30553,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7379, ../../../scss/_app_styles.scss */ +/* line 7380, ../../../scss/_app_styles.scss */ .orange-button-template > a:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7386, ../../../scss/_app_styles.scss */ +/* line 7387, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30570,7 +30571,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7397, ../../../scss/_app_styles.scss */ +/* line 7398, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30578,18 +30579,18 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7406, ../../../scss/_app_styles.scss */ +/* line 7407, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7413, ../../../scss/_app_styles.scss */ +/* line 7414, ../../../scss/_app_styles.scss */ .page-name { margin-top: 8px; } -/* line 7417, ../../../scss/_app_styles.scss */ +/* line 7418, ../../../scss/_app_styles.scss */ .tag-ele { font-weight: normal; text-align: center; @@ -30608,7 +30609,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: none; } -/* line 7435, ../../../scss/_app_styles.scss */ +/* line 7436, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30626,12 +30627,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7451, ../../../scss/_app_styles.scss */ +/* line 7452, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7456, ../../../scss/_app_styles.scss */ +/* line 7457, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30643,13 +30644,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7466, ../../../scss/_app_styles.scss */ +/* line 7467, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7474, ../../../scss/_app_styles.scss */ +/* line 7475, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30666,13 +30667,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7489, ../../../scss/_app_styles.scss */ +/* line 7490, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* line 7500, ../../../scss/_app_styles.scss */ +/* line 7501, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -30680,7 +30681,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-size: 100% 100%; position: relative; } -/* line 7507, ../../../scss/_app_styles.scss */ +/* line 7508, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -30694,13 +30695,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7521, ../../../scss/_app_styles.scss */ +/* line 7522, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 7526, ../../../scss/_app_styles.scss */ +/* line 7527, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -30709,79 +30710,79 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow: hidden; background-color: #fff; } -/* line 7534, ../../../scss/_app_styles.scss */ +/* line 7535, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 7539, ../../../scss/_app_styles.scss */ +/* line 7540, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 7544, ../../../scss/_app_styles.scss */ +/* line 7545, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 7549, ../../../scss/_app_styles.scss */ +/* line 7550, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 7557, ../../../scss/_app_styles.scss */ +/* line 7558, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 7561, ../../../scss/_app_styles.scss */ +/* line 7562, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 7570, ../../../scss/_app_styles.scss */ +/* line 7571, ../../../scss/_app_styles.scss */ .lms_explore_head_unit { width: 100%; height: 50px; background-color: #fff; color: #164A7B; } -/* line 7575, ../../../scss/_app_styles.scss */ +/* line 7576, ../../../scss/_app_styles.scss */ .lms_explore_head_unit > p { margin-left: 81px; padding: 0px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 7581, ../../../scss/_app_styles.scss */ +/* line 7582, ../../../scss/_app_styles.scss */ .lms_explore_head_unit > a { padding: 0px 85px 3px 0px; } -/* line 7587, ../../../scss/_app_styles.scss */ +/* line 7588, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -19.3px; } -/* line 7594, ../../../scss/_app_styles.scss */ +/* line 7595, ../../../scss/_app_styles.scss */ .course-students-data { margin: 2px 2px 2px 2px; border: 2px solid #164a7b; padding: 19px 14px 0px 5px; } -/* line 7601, ../../../scss/_app_styles.scss */ +/* line 7602, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 7604, ../../../scss/_app_styles.scss */ +/* line 7605, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 7612, ../../../scss/_app_styles.scss */ +/* line 7613, ../../../scss/_app_styles.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -30797,7 +30798,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7631, ../../../scss/_app_styles.scss */ +/* line 7632, ../../../scss/_app_styles.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -30807,7 +30808,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7640, ../../../scss/_app_styles.scss */ +/* line 7641, ../../../scss/_app_styles.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -30817,7 +30818,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 7649, ../../../scss/_app_styles.scss */ +/* line 7650, ../../../scss/_app_styles.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; @@ -30837,13 +30838,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #A6D7F5; } }*/ -/* line 7672, ../../../scss/_app_styles.scss */ +/* line 7673, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 7677, ../../../scss/_app_styles.scss */ +/* line 7678, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title { width: 43%; /* background-color: blue;*/ @@ -30853,7 +30854,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; color: #fff; } -/* line 7686, ../../../scss/_app_styles.scss */ +/* line 7687, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title.active { background-color: #719dc7; border: 1px solid #CCC; @@ -30861,7 +30862,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; } -/* line 7699, ../../../scss/_app_styles.scss */ +/* line 7700, ../../../scss/_app_styles.scss */ .create_unit { background: #fff; box-shadow: 0px 2px 3px #000; @@ -30869,7 +30870,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 10px; } -/* line 7707, ../../../scss/_app_styles.scss */ +/* line 7708, ../../../scss/_app_styles.scss */ .asset-unit-button { color: #ce7869; padding: 7px 14px; @@ -30881,13 +30882,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 30px; margin-bottom: 8px; } -/* line 7718, ../../../scss/_app_styles.scss */ +/* line 7719, ../../../scss/_app_styles.scss */ .asset-unit-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7724, ../../../scss/_app_styles.scss */ +/* line 7725, ../../../scss/_app_styles.scss */ .course_creator_header { width: 100%; height: 70px; @@ -30895,7 +30896,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7731, ../../../scss/_app_styles.scss */ +/* line 7732, ../../../scss/_app_styles.scss */ .course_creator_header .unit_editor { width: 100%; height: 320px; @@ -30903,13 +30904,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7740, ../../../scss/_app_styles.scss */ +/* line 7741, ../../../scss/_app_styles.scss */ .course_creator_header .back_to_group { padding: 0px 15px 0px 10px; border-right: 1px solid #ccc; margin-right: 15px; } -/* line 7746, ../../../scss/_app_styles.scss */ +/* line 7747, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit { width: 500px; height: 40px; @@ -30918,24 +30919,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7755, ../../../scss/_app_styles.scss */ +/* line 7756, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit:focus { border: 1px solid #74b3dc; } -/* line 7759, ../../../scss/_app_styles.scss */ +/* line 7760, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7767, ../../../scss/_app_styles.scss */ +/* line 7768, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit select { font-size: 14px; font-family: 'OpenSans-Regular', sans-serif; color: gray; border: 0px solid #74b3dc; } -/* line 7778, ../../../scss/_app_styles.scss */ +/* line 7779, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input { width: 500px; height: 40px; @@ -30944,31 +30945,31 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7786, ../../../scss/_app_styles.scss */ +/* line 7787, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input:focus { border: 1px solid #74b3dc; } -/* line 7790, ../../../scss/_app_styles.scss */ +/* line 7791, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7800, ../../../scss/_app_styles.scss */ +/* line 7801, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading h5 { margin-top: 15px; } -/* line 7805, ../../../scss/_app_styles.scss */ +/* line 7806, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading span { letter-spacing: 0.9px; font-weight: 600; line-height: 50px; } -/* line 7813, ../../../scss/_app_styles.scss */ +/* line 7814, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul { margin: 0px; } -/* line 7816, ../../../scss/_app_styles.scss */ +/* line 7817, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li { list-style-type: none; display: inline-block; @@ -30977,11 +30978,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; letter-spacing: 0.8px; } -/* line 7825, ../../../scss/_app_styles.scss */ +/* line 7826, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { border-bottom: 3px solid #ffc14e; } -/* line 7830, ../../../scss/_app_styles.scss */ +/* line 7831, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions span { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -30993,7 +30994,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; border-radius: 3px; } -/* line 7842, ../../../scss/_app_styles.scss */ +/* line 7843, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -31006,20 +31007,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; } -/* line 7859, ../../../scss/_app_styles.scss */ +/* line 7860, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: 2.7px; } -/* line 7864, ../../../scss/_app_styles.scss */ +/* line 7865, ../../../scss/_app_styles.scss */ .empty-dashboard-message { border: 3px solid #e4e4e4; background: #f8f8f8; padding: 40px 0; text-align: center; } -/* line 7870, ../../../scss/_app_styles.scss */ +/* line 7871, ../../../scss/_app_styles.scss */ .empty-dashboard-message > a { background-color: #164a7b; border: 1px solid #164a7b; @@ -31033,7 +31034,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 5px; padding: 15px 20px; } -/* line 7884, ../../../scss/_app_styles.scss */ +/* line 7885, ../../../scss/_app_styles.scss */ .empty-dashboard-message .button-explore-courses { font-size: 20px; font-weight: normal; @@ -31043,7 +31044,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 170px; } -/* line 7899, ../../../scss/_app_styles.scss */ +/* line 7900, ../../../scss/_app_styles.scss */ .module_card { display: table; height: 290px; @@ -31054,16 +31055,16 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); } -/* line 7909, ../../../scss/_app_styles.scss */ +/* line 7910, ../../../scss/_app_styles.scss */ .module_card:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 7913, ../../../scss/_app_styles.scss */ +/* line 7914, ../../../scss/_app_styles.scss */ .module_card > div { display: table-cell; height: 290px; } -/* line 7918, ../../../scss/_app_styles.scss */ +/* line 7919, ../../../scss/_app_styles.scss */ .module_card .card_banner { width: 250px; height: 290px; @@ -31077,14 +31078,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-radius .2s; transition: border-radius .2s; } -/* line 7931, ../../../scss/_app_styles.scss */ +/* line 7932, ../../../scss/_app_styles.scss */ .module_card .card_banner > img { height: 100%; width: 100%; border-radius: 4px; -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); } -/* line 7936, ../../../scss/_app_styles.scss */ +/* line 7937, ../../../scss/_app_styles.scss */ .module_card .card_banner > img:hover { -webkit-transform: scale(1.03); -moz-transform: scale(1.03); @@ -31093,7 +31094,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transform: scale(1.03); opacity: 0.8; } -/* line 7948, ../../../scss/_app_styles.scss */ +/* line 7949, ../../../scss/_app_styles.scss */ .module_card .card_banner > h4 { position: absolute; top: 100px; @@ -31102,7 +31103,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #ffffff !important; text-shadow: 2px 0px 8px black; } -/* line 7963, ../../../scss/_app_styles.scss */ +/* line 7964, ../../../scss/_app_styles.scss */ .module_card .card_title { display: block; width: 230px; @@ -31112,27 +31113,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px auto; letter-spacing: 1px; } -/* line 7974, ../../../scss/_app_styles.scss */ +/* line 7975, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_banner { border-radius: 8px; } -/* line 7977, ../../../scss/_app_styles.scss */ +/* line 7978, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7982, ../../../scss/_app_styles.scss */ +/* line 7983, ../../../scss/_app_styles.scss */ .module_card.animated_card.isOpen .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7986, ../../../scss/_app_styles.scss */ +/* line 7987, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_summary { left: 30px; } -/* line 7989, ../../../scss/_app_styles.scss */ +/* line 7990, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_summary { left: 5px; } -/* line 7993, ../../../scss/_app_styles.scss */ +/* line 7994, ../../../scss/_app_styles.scss */ .module_card .card_summary { width: 290px; padding: 0px 15px; @@ -31148,35 +31149,35 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Safari */ transition-property: left; } -/* line 8007, ../../../scss/_app_styles.scss */ +/* line 8008, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_label { font-weight: 500; font-size: 12.5px; letter-spacing: 1px; color: black; } -/* line 8013, ../../../scss/_app_styles.scss */ +/* line 8014, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section { margin: 5px 0px; padding: 5px 0px; } -/* line 8017, ../../../scss/_app_styles.scss */ +/* line 8018, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section:not(:last-child) { border-bottom: 1px solid #ccc; } -/* line 8020, ../../../scss/_app_styles.scss */ +/* line 8021, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section p { margin-bottom: 7px; font-size: 12.5px; } -/* line 8024, ../../../scss/_app_styles.scss */ +/* line 8025, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .ellipsis { width: 245px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -/* line 8032, ../../../scss/_app_styles.scss */ +/* line 8033, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol { background: #a2238d; height: 37px; @@ -31190,11 +31191,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 8045, ../../../scss/_app_styles.scss */ +/* line 8046, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 8051, ../../../scss/_app_styles.scss */ +/* line 8052, ../../../scss/_app_styles.scss */ .module_card .card_summary .module_brief { display: block; /* Fallback for non-webkit */ @@ -31211,12 +31212,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: black; } -/* line 8068, ../../../scss/_app_styles.scss */ +/* line 8069, ../../../scss/_app_styles.scss */ .inner { display: inline-block !important; } -/* line 8075, ../../../scss/_app_styles.scss */ +/* line 8076, ../../../scss/_app_styles.scss */ .enroll-btn { width: 90px; opacity: 1; @@ -31232,7 +31233,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #4b4852; } -/* line 8095, ../../../scss/_app_styles.scss */ +/* line 8096, ../../../scss/_app_styles.scss */ .enrollBtn { background: #a2238d; height: 37px; @@ -31247,39 +31248,119 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /*****Toolbar CSS******/ -/* line 8110, ../../../scss/_app_styles.scss */ +/* line 8111, ../../../scss/_app_styles.scss */ #toolbar { background-color: #3e3e3e; } -/* line 8113, ../../../scss/_app_styles.scss */ +/* line 8114, ../../../scss/_app_styles.scss */ .datetime { color: #eaeaea; padding: 4px 0px 2px 5px; font-size: 11px; } -/* line 8118, ../../../scss/_app_styles.scss */ +/* line 8119, ../../../scss/_app_styles.scss */ .changefont { text-align: right; padding: 2px 5px 1px 0px; } -/* line 8122, ../../../scss/_app_styles.scss */ +/* line 8123, ../../../scss/_app_styles.scss */ .changefont .minus { font-size: 60%; color: #eaeaea; } -/* line 8125, ../../../scss/_app_styles.scss */ +/* line 8126, ../../../scss/_app_styles.scss */ .changefont .normal { font-size: 80%; color: #eaeaea; } -/* line 8128, ../../../scss/_app_styles.scss */ +/* line 8129, ../../../scss/_app_styles.scss */ .changefont .plus { font-size: 100%; color: #eaeaea; } +/***********Landing page***************/ +/* line 8138, ../../../scss/_app_styles.scss */ +.about_us { + height: 300px; + background: #20ade0; +} + +/* line 8142, ../../../scss/_app_styles.scss */ +.analytics { + margin-top: 20px; +} + +/* line 8145, ../../../scss/_app_styles.scss */ +.square { + border: 4px solid #ffffff; + position: relative; + text-align: center; + width: 16%; + float: left; + height: 100%; + margin-left: 30px; +} + +/* line 8155, ../../../scss/_app_styles.scss */ +.square:after { + content: ""; + display: block; + padding-bottom: 100%; +} + +/* line 8161, ../../../scss/_app_styles.scss */ +.content { + position: absolute; + width: 100%; + height: 80%; + font-size: 2em; + padding-top: 20%; +} + +/* line 8174, ../../../scss/_app_styles.scss */ +.activity-slider { + font-family: Arial; + width: 800px; + display: block; + margin: 0 auto; +} + +/* line 8181, ../../../scss/_app_styles.scss */ +.activity-slider h3 { + background: #fff; + color: #3498db; + font-size: 36px; + line-height: 100px; + margin: 10px; + padding: 2%; + position: relative; + text-align: center; +} + +/*.action{ + display:block; + margin:100px auto; + width:100%; + text-align:center; +} +.action a { + display:inline-block; + padding:5px 10px; + background:#f30; + color:#fff; + text-decoration:none; +} +.action a:hover{ + background:#000; +}*/ +/* line 8208, ../../../scss/_app_styles.scss */ +.footer_link_cont h4 { + color: #999; +} + /* * CLIx Platform Stylesheet */ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css index 36c5ab1803..efcefc6126 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css @@ -23929,98 +23929,99 @@ body > footer .myfooter .footer_link_cont .links_show { max-height: 600px; } /* line 567, ../../../scss/_app_styles.scss */ -body > footer .myfooter .footer_link_cont h4 { +body > footer .myfooter .footer_link_cont .flinks { + font-size: 18px; color: #999; } -/* line 570, ../../../scss/_app_styles.scss */ -body > footer .myfooter .footer_link_cont .social_links { +/* line 571, ../../../scss/_app_styles.scss */ +body > footer .myfooter .footer_link_cont .social_links a { font-size: 24px; margin-right: 5px; } -/* line 575, ../../../scss/_app_styles.scss */ +/* line 576, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links { color: #777777; cursor: pointer; } -/* line 578, ../../../scss/_app_styles.scss */ +/* line 579, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links i { font-size: 24px; margin-right: 5px; } -/* line 581, ../../../scss/_app_styles.scss */ +/* line 582, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links:hover { text-decoration: underline; } -/* line 588, ../../../scss/_app_styles.scss */ +/* line 589, ../../../scss/_app_styles.scss */ body > footer hr.footerlogo-divider { border-color: #555; margin-top: 10px; } -/* line 594, ../../../scss/_app_styles.scss */ +/* line 595, ../../../scss/_app_styles.scss */ body > footer ul#footerlogo li { margin: 0px 5px; display: inline; } -/* line 600, ../../../scss/_app_styles.scss */ +/* line 601, ../../../scss/_app_styles.scss */ .no-gap ul { margin-left: 0rem; } -/* line 606, ../../../scss/_app_styles.scss */ +/* line 607, ../../../scss/_app_styles.scss */ body > footer ul#poweredlogos { margin-left: 0px; } -/* line 610, ../../../scss/_app_styles.scss */ +/* line 611, ../../../scss/_app_styles.scss */ #poweredlogos li { margin: 0px 5px; display: inline; } -/* line 616, ../../../scss/_app_styles.scss */ +/* line 617, ../../../scss/_app_styles.scss */ .no-gap ul { margin-left: 0rem; } -/* line 621, ../../../scss/_app_styles.scss */ +/* line 622, ../../../scss/_app_styles.scss */ .coll-arrows { cursor: pointer; display: block; padding: 0.5rem; } -/* line 626, ../../../scss/_app_styles.scss */ +/* line 627, ../../../scss/_app_styles.scss */ .coll-arrows:hover { background-color: #D3D3D3; } /* Sections */ -/* line 633, ../../../scss/_app_styles.scss */ +/* line 634, ../../../scss/_app_styles.scss */ main > article { padding: 0px; } -/* line 636, ../../../scss/_app_styles.scss */ +/* line 637, ../../../scss/_app_styles.scss */ main > nav { border-top: 3px solid black; position: relative; z-index: 10; } -/* line 640, ../../../scss/_app_styles.scss */ +/* line 641, ../../../scss/_app_styles.scss */ main > nav > .button-bar { background-color: #10c1cb; /* Hide icons till we can retreive custom icons from the system */ } -/* line 642, ../../../scss/_app_styles.scss */ +/* line 643, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group { margin: 0; } -/* line 644, ../../../scss/_app_styles.scss */ +/* line 645, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group.tools { padding: 5px; } -/* line 650, ../../../scss/_app_styles.scss */ +/* line 651, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button { border: none; font-size: 0.8rem; @@ -24029,135 +24030,135 @@ main > nav > .button-bar li .button { color: black; margin: 0; } -/* line 654, ../../../scss/_app_styles.scss */ +/* line 655, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.home { font-weight: bold; } -/* line 657, ../../../scss/_app_styles.scss */ +/* line 658, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings, main > nav > .button-bar li .button#toggle-help { padding: 6px 10px; color: #333; background-color: rgba(255, 255, 255, 0.3); } -/* line 662, ../../../scss/_app_styles.scss */ +/* line 663, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:hover, main > nav > .button-bar li .button#toggle-help:hover { background-color: rgba(0, 0, 0, 0.2); color: white; } -/* line 667, ../../../scss/_app_styles.scss */ +/* line 668, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button#toggle-help { background-color: inherit; } -/* line 671, ../../../scss/_app_styles.scss */ +/* line 672, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:after { border: none; } -/* line 679, ../../../scss/_app_styles.scss */ +/* line 680, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button:hover { color: white; } -/* line 685, ../../../scss/_app_styles.scss */ +/* line 686, ../../../scss/_app_styles.scss */ main > nav > .button-bar li.active .button { background-color: #0eacb5; color: white; } -/* line 693, ../../../scss/_app_styles.scss */ +/* line 694, ../../../scss/_app_styles.scss */ main > nav > .button-bar .app i { display: none !important; } -/* line 703, ../../../scss/_app_styles.scss */ +/* line 704, ../../../scss/_app_styles.scss */ main > aside > div h2 { color: #111; } -/* line 706, ../../../scss/_app_styles.scss */ +/* line 707, ../../../scss/_app_styles.scss */ main > aside > div h3 { font-size: 1.2rem; font-weight: normal; color: #222; } -/* line 711, ../../../scss/_app_styles.scss */ +/* line 712, ../../../scss/_app_styles.scss */ main > aside > div h4 { font-size: 1rem; color: #222; } -/* line 714, ../../../scss/_app_styles.scss */ +/* line 715, ../../../scss/_app_styles.scss */ main > aside > div h4 span { display: none; } -/* line 717, ../../../scss/_app_styles.scss */ +/* line 718, ../../../scss/_app_styles.scss */ main > aside > div h4:hover span { display: inline; } -/* line 721, ../../../scss/_app_styles.scss */ +/* line 722, ../../../scss/_app_styles.scss */ main > aside > div h5, main > aside > div h6 { margin: 0; } -/* line 725, ../../../scss/_app_styles.scss */ +/* line 726, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content { width: auto; padding: 0; border: 1px solid #222; } -/* line 729, ../../../scss/_app_styles.scss */ +/* line 730, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content .item { width: 70px; } -/* line 736, ../../../scss/_app_styles.scss */ +/* line 737, ../../../scss/_app_styles.scss */ main > aside > div footer { background-color: #222; min-height: 1rem; } -/* line 739, ../../../scss/_app_styles.scss */ +/* line 740, ../../../scss/_app_styles.scss */ main > aside > div footer label { font-size: 0.7rem; } -/* line 752, ../../../scss/_app_styles.scss */ +/* line 753, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection { background-color: #444; padding: 0; border-bottom: 2px solid #10c1cb; margin: 0; } -/* line 757, ../../../scss/_app_styles.scss */ +/* line 758, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li { border-bottom: 1px solid #555; } -/* line 759, ../../../scss/_app_styles.scss */ +/* line 760, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li a { border-left: 2px solid black; } -/* line 762, ../../../scss/_app_styles.scss */ +/* line 763, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li.active a, main > aside > div .side-nav.collection li a:hover { color: white !important; border-left: 2px solid #10c1cb; background-color: #10c1cb; } -/* line 775, ../../../scss/_app_styles.scss */ +/* line 776, ../../../scss/_app_styles.scss */ article { position: relative; z-index: 1; min-height: 400px; overflow-x: visible; } -/* line 780, ../../../scss/_app_styles.scss */ +/* line 781, ../../../scss/_app_styles.scss */ article > header, article form > header { padding: 15px; background-color: #f0f0f0; } -/* line 793, ../../../scss/_app_styles.scss */ +/* line 794, ../../../scss/_app_styles.scss */ article h1:not(.subheader) .tabs { display: inline-block; position: relative; bottom: -0.5rem; } -/* line 799, ../../../scss/_app_styles.scss */ +/* line 800, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div, article h1:not(.subheader) div input:not(.subheader) div { display: inline-block; position: relative; } -/* line 802, ../../../scss/_app_styles.scss */ +/* line 803, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input { height: 200%; font-style: italic; @@ -24167,13 +24168,13 @@ article h1:not(.subheader) div input { border-bottom: 2px dotted #222; background-color: inherit; } -/* line 812, ../../../scss/_app_styles.scss */ +/* line 813, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input:hover { background-color: white; } /* Card block */ -/* line 822, ../../../scss/_app_styles.scss */ +/* line 823, ../../../scss/_app_styles.scss */ .card > * { position: relative; background-color: white; @@ -24184,51 +24185,51 @@ article h1:not(.subheader) div input:hover { opacity: 0.9; overflow: hidden; } -/* line 834, ../../../scss/_app_styles.scss */ +/* line 835, ../../../scss/_app_styles.scss */ .card > * > a { color: inherit; display: block; position: relative; z-index: 200; } -/* line 845, ../../../scss/_app_styles.scss */ +/* line 846, ../../../scss/_app_styles.scss */ .card > *.published { opacity: 1; background-color: #e6f9ee; } -/* line 850, ../../../scss/_app_styles.scss */ +/* line 851, ../../../scss/_app_styles.scss */ .card > *.published hr { border-color: #7ee2a8; } -/* line 855, ../../../scss/_app_styles.scss */ +/* line 856, ../../../scss/_app_styles.scss */ .card > *.moderation { opacity: 1; background-color: #efefef; } -/* line 860, ../../../scss/_app_styles.scss */ +/* line 861, ../../../scss/_app_styles.scss */ .card > *.moderation hr { border-color: #bcbcbc; } -/* line 865, ../../../scss/_app_styles.scss */ +/* line 866, ../../../scss/_app_styles.scss */ .card > *.unapproved { opacity: 1; border-style: solid; border-color: #f04124; } -/* line 871, ../../../scss/_app_styles.scss */ +/* line 872, ../../../scss/_app_styles.scss */ .card > *:hover { border-style: solid; opacity: 1; } -/* line 877, ../../../scss/_app_styles.scss */ +/* line 878, ../../../scss/_app_styles.scss */ .card > *:hover i { opacity: 0.3; } -/* line 880, ../../../scss/_app_styles.scss */ +/* line 881, ../../../scss/_app_styles.scss */ .card > *:hover footer .age { display: block; } -/* line 885, ../../../scss/_app_styles.scss */ +/* line 886, ../../../scss/_app_styles.scss */ .card > * > i { position: absolute; top: -10px; @@ -24237,28 +24238,28 @@ article h1:not(.subheader) div input:hover { color: #0eacb5; opacity: 0.3; } -/* line 894, ../../../scss/_app_styles.scss */ +/* line 895, ../../../scss/_app_styles.scss */ .card > * .preview { float: left; padding-right: 5px; padding-top: 4px; } -/* line 899, ../../../scss/_app_styles.scss */ +/* line 900, ../../../scss/_app_styles.scss */ .card > * header { overflow: hidden; } -/* line 903, ../../../scss/_app_styles.scss */ +/* line 904, ../../../scss/_app_styles.scss */ .card > * .label, .card > * .label-list:empty:before { opacity: 0.5; } -/* line 906, ../../../scss/_app_styles.scss */ +/* line 907, ../../../scss/_app_styles.scss */ .card > * p { color: #555; height: 80px; background-repeat: no-repeat; font-size: 80%; } -/* line 912, ../../../scss/_app_styles.scss */ +/* line 913, ../../../scss/_app_styles.scss */ .card > * .th { margin: 20px auto; width: 80px; @@ -24266,23 +24267,23 @@ article h1:not(.subheader) div input:hover { overflow: hidden; display: none; } -/* line 918, ../../../scss/_app_styles.scss */ +/* line 919, ../../../scss/_app_styles.scss */ .card > * .th:hover { width: 150px; height: 150px; } -/* line 922, ../../../scss/_app_styles.scss */ +/* line 923, ../../../scss/_app_styles.scss */ .card > * .th img { width: 100%; } -/* line 926, ../../../scss/_app_styles.scss */ +/* line 927, ../../../scss/_app_styles.scss */ .card > * footer { margin-top: 1rem; font-size: 70%; clear: both; color: #e01818; } -/* line 931, ../../../scss/_app_styles.scss */ +/* line 932, ../../../scss/_app_styles.scss */ .card > * footer .age { display: none; position: absolute; @@ -24292,7 +24293,7 @@ article h1:not(.subheader) div input:hover { width: 100%; } -/* line 942, ../../../scss/_app_styles.scss */ +/* line 943, ../../../scss/_app_styles.scss */ .edit-card { position: relative; background-color: white; @@ -24301,40 +24302,40 @@ article h1:not(.subheader) div input:hover { } /* Content Tabs */ -/* line 955, ../../../scss/_app_styles.scss */ +/* line 956, ../../../scss/_app_styles.scss */ article .tabs { display: inline-block; } -/* line 957, ../../../scss/_app_styles.scss */ +/* line 958, ../../../scss/_app_styles.scss */ article .tabs dd a { border-radius: 4px; border: 1px transparent; } -/* line 961, ../../../scss/_app_styles.scss */ +/* line 962, ../../../scss/_app_styles.scss */ article .tabs dd.active a { color: #10c1cb; border: 1px solid; } -/* line 965, ../../../scss/_app_styles.scss */ +/* line 966, ../../../scss/_app_styles.scss */ article .tabs dd:hover a { color: #10c1cb; } -/* line 969, ../../../scss/_app_styles.scss */ +/* line 970, ../../../scss/_app_styles.scss */ article .tabs i { margin-right: 5px; font-size: 1.6rem; } -/* line 973, ../../../scss/_app_styles.scss */ +/* line 974, ../../../scss/_app_styles.scss */ article .tabs span { font-size: 17px; vertical-align: text-bottom; } -/* line 979, ../../../scss/_app_styles.scss */ +/* line 980, ../../../scss/_app_styles.scss */ article section.content { border: 1px solid #eee; } -/* line 986, ../../../scss/_app_styles.scss */ +/* line 987, ../../../scss/_app_styles.scss */ .card > div:hover { box-shadow: 0 0 10px lightgray; transition: 0.9s; @@ -24343,31 +24344,31 @@ article section.content { } /* Default card */ -/* line 994, ../../../scss/_app_styles.scss */ +/* line 995, ../../../scss/_app_styles.scss */ .card > :hover .label, .card > :hover .label-list:empty:before { opacity: 1; } -/* line 999, ../../../scss/_app_styles.scss */ +/* line 1000, ../../../scss/_app_styles.scss */ .gallery .card .th { display: block; } /* Inline label list */ -/* line 1007, ../../../scss/_app_styles.scss */ +/* line 1008, ../../../scss/_app_styles.scss */ .label-list { display: inline-block; text-align: left; margin-bottom: 0.1rem; } -/* line 1011, ../../../scss/_app_styles.scss */ +/* line 1012, ../../../scss/_app_styles.scss */ .label-list:empty:before { content: "UNTAGGED"; opacity: 0.2 !important; padding: 2px; background-color: transparent; } -/* line 1019, ../../../scss/_app_styles.scss */ +/* line 1020, ../../../scss/_app_styles.scss */ .label-list .label, .label-list .label-list:empty:before { background-color: transparent; padding: 2px; @@ -24375,20 +24376,20 @@ article section.content { /*************************** 2. Custom CSS overrides ***********************/ /* Content area */ -/* line 1028, ../../../scss/_app_styles.scss */ +/* line 1029, ../../../scss/_app_styles.scss */ article { padding-bottom: 1rem; } -/* line 1032, ../../../scss/_app_styles.scss */ +/* line 1033, ../../../scss/_app_styles.scss */ article > header { border-bottom: 1px solid #ddd; } -/* line 1036, ../../../scss/_app_styles.scss */ +/* line 1037, ../../../scss/_app_styles.scss */ article > footer { border-top: 1px dotted #ddd; } -/* line 1048, ../../../scss/_app_styles.scss */ +/* line 1049, ../../../scss/_app_styles.scss */ textarea { min-height: 6rem; } @@ -24409,39 +24410,39 @@ textarea { }*/ /*************************** 3. Custom CSS Below ***********************/ /*CSS fix for tables generated via orgitdown*/ -/* line 1068, ../../../scss/_app_styles.scss */ +/* line 1069, ../../../scss/_app_styles.scss */ #content table td, #content colgroup col { float: none !important; } -/* line 1073, ../../../scss/_app_styles.scss */ +/* line 1074, ../../../scss/_app_styles.scss */ .user { color: inherit; } -/* line 1077, ../../../scss/_app_styles.scss */ +/* line 1078, ../../../scss/_app_styles.scss */ .user i { margin-right: 3px; } -/* line 1080, ../../../scss/_app_styles.scss */ +/* line 1081, ../../../scss/_app_styles.scss */ .user:hover i { opacity: 1; } -/* line 1084, ../../../scss/_app_styles.scss */ +/* line 1085, ../../../scss/_app_styles.scss */ a.node { display: block; } -/* line 1088, ../../../scss/_app_styles.scss */ +/* line 1089, ../../../scss/_app_styles.scss */ .button.edit { margin-bottom: 0; } /************ Forms **************/ /* Node edit */ -/* line 1096, ../../../scss/_app_styles.scss */ +/* line 1097, ../../../scss/_app_styles.scss */ input.node-title { font-size: 3rem; height: 4rem; @@ -24449,13 +24450,13 @@ input.node-title { } /* view-graph in node_details_base.html */ -/* line 1103, ../../../scss/_app_styles.scss */ +/* line 1104, ../../../scss/_app_styles.scss */ .graph-height { height: 70%; } /*for graph and location*/ -/* line 1108, ../../../scss/_app_styles.scss */ +/* line 1109, ../../../scss/_app_styles.scss */ .graph-div { height: 90%; width: -webkit-calc(100% - 10px); @@ -24469,13 +24470,13 @@ input.node-title { } /*for graph and location*/ -/* line 1118, ../../../scss/_app_styles.scss */ +/* line 1119, ../../../scss/_app_styles.scss */ .graph-div h3 { border-bottom: 2px inset #154534; padding: 0.25em 0; } -/* line 1123, ../../../scss/_app_styles.scss */ +/* line 1124, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal, #view-map-edit-widget .close-reveal-modal { z-index: 1; background-color: captiontext; @@ -24486,7 +24487,7 @@ input.node-title { box-shadow: 0 1px 10px 2px #A9A9A9; } -/* line 1134, ../../../scss/_app_styles.scss */ +/* line 1135, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal:hover, #view-map-edit-widget .close-reveal-modal:hover { background-color: white; border-radius: 30px; @@ -24499,7 +24500,7 @@ input.node-title { /****************** CUSTOM *********************/ /* UI Button */ -/* line 1149, ../../../scss/_app_styles.scss */ +/* line 1150, ../../../scss/_app_styles.scss */ .ui.button { margin-right: 0.5rem; border: 1px solid rgba(0, 0, 0, 0.2); @@ -24509,102 +24510,102 @@ input.node-title { padding: 0.5vw 0.75vw; z-index: 500; } -/* line 1160, ../../../scss/_app_styles.scss */ +/* line 1161, ../../../scss/_app_styles.scss */ .ui.button label { color: #666; } -/* line 1163, ../../../scss/_app_styles.scss */ +/* line 1164, ../../../scss/_app_styles.scss */ .ui.button small { margin-left: 2px; display: inline; } -/* line 1167, ../../../scss/_app_styles.scss */ +/* line 1168, ../../../scss/_app_styles.scss */ .ui.button:hover, .ui.button:active { border-color: rgba(255, 255, 255, 0.2); background-color: rgba(0, 0, 0, 0.9); } -/* line 1170, ../../../scss/_app_styles.scss */ +/* line 1171, ../../../scss/_app_styles.scss */ .ui.button:hover label, .ui.button:active label { color: #ddd; } -/* line 1173, ../../../scss/_app_styles.scss */ +/* line 1174, ../../../scss/_app_styles.scss */ .ui.button:hover small, .ui.button:active small { display: inline; } -/* line 1176, ../../../scss/_app_styles.scss */ +/* line 1177, ../../../scss/_app_styles.scss */ .ui.button:hover:focus, .ui.button:active:focus { font-weight: bold; } -/* line 1185, ../../../scss/_app_styles.scss */ +/* line 1186, ../../../scss/_app_styles.scss */ aside#help h4 { color: black; } -/* line 1188, ../../../scss/_app_styles.scss */ +/* line 1189, ../../../scss/_app_styles.scss */ aside#help p, aside#help h5, aside#help h6 { color: #ddd; padding: 0.3rem 0.9375rem; } -/* line 1195, ../../../scss/_app_styles.scss */ +/* line 1196, ../../../scss/_app_styles.scss */ .align-center { margin: 0 auto; display: block; } -/* line 1201, ../../../scss/_app_styles.scss */ +/* line 1202, ../../../scss/_app_styles.scss */ #profile-img { height: 40px; margin-right: 5px; } -/* line 1209, ../../../scss/_app_styles.scss */ +/* line 1210, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin-bottom: 20px; } -/* line 1213, ../../../scss/_app_styles.scss */ +/* line 1214, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 1219, ../../../scss/_app_styles.scss */ +/* line 1220, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 1222, ../../../scss/_app_styles.scss */ +/* line 1223, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 1226, ../../../scss/_app_styles.scss */ +/* line 1227, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 1231, ../../../scss/_app_styles.scss */ +/* line 1232, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 1238, ../../../scss/_app_styles.scss */ +/* line 1239, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 1242, ../../../scss/_app_styles.scss */ +/* line 1243, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 1247, ../../../scss/_app_styles.scss */ +/* line 1248, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 1253, ../../../scss/_app_styles.scss */ +/* line 1254, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -24613,16 +24614,16 @@ aside#help p, aside#help h5, aside#help h6 { border-top: 1px solid #B1B1B1; width: 80%; } -/* line 1262, ../../../scss/_app_styles.scss */ +/* line 1263, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 1267, ../../../scss/_app_styles.scss */ +/* line 1268, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 1270, ../../../scss/_app_styles.scss */ +/* line 1271, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { color: #ffffff !important; height: 2em; @@ -24630,7 +24631,7 @@ aside#help p, aside#help h5, aside#help h6 { padding-left: 10px; line-height: 1.5em; } -/* line 1280, ../../../scss/_app_styles.scss */ +/* line 1281, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -24640,12 +24641,12 @@ aside#help p, aside#help h5, aside#help h6 { border-radius: 0px 0px 5px 5px; /*background-color: #f2f2f2;*/ } -/* line 1289, ../../../scss/_app_styles.scss */ +/* line 1290, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 1295, ../../../scss/_app_styles.scss */ +/* line 1296, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -24671,7 +24672,7 @@ aside#help p, aside#help h5, aside#help h6 { } }*/ /* Simple Card CSS*/ -/* line 1323, ../../../scss/_app_styles.scss */ +/* line 1324, ../../../scss/_app_styles.scss */ .scard { background: #FFF; border: 1px solid #AAA; @@ -24683,12 +24684,12 @@ aside#help p, aside#help h5, aside#help h6 { height: 9rem; /*float:left;*/ } -/* line 1332, ../../../scss/_app_styles.scss */ +/* line 1333, ../../../scss/_app_styles.scss */ .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1338, ../../../scss/_app_styles.scss */ +/* line 1339, ../../../scss/_app_styles.scss */ .scard .scard_header { text-align: center; position: fixed; @@ -24706,7 +24707,7 @@ aside#help p, aside#help h5, aside#help h6 { font-weight: bold; } -/* line 1355, ../../../scss/_app_styles.scss */ +/* line 1356, ../../../scss/_app_styles.scss */ .scard-content { height: 2.7em; padding: 0.5rem; @@ -24719,7 +24720,7 @@ aside#help p, aside#help h5, aside#help h6 { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 1366, ../../../scss/_app_styles.scss */ +/* line 1367, ../../../scss/_app_styles.scss */ .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; @@ -24729,7 +24730,7 @@ aside#help p, aside#help h5, aside#help h6 { text-align: center; } -/* line 1379, ../../../scss/_app_styles.scss */ +/* line 1380, ../../../scss/_app_styles.scss */ .scard-action { height: height; font-size: 0.6em; @@ -24743,7 +24744,7 @@ aside#help p, aside#help h5, aside#help h6 { background-color: #CCCCCC; } -/* line 1394, ../../../scss/_app_styles.scss */ +/* line 1395, ../../../scss/_app_styles.scss */ .scard-desc { font-size: 0.7em; color: #333333; @@ -24759,13 +24760,13 @@ aside#help p, aside#help h5, aside#help h6 { display-inline: block; } -/* line 1409, ../../../scss/_app_styles.scss */ +/* line 1410, ../../../scss/_app_styles.scss */ p { margin: 0px; padding: 10px; } -/* line 1414, ../../../scss/_app_styles.scss */ +/* line 1415, ../../../scss/_app_styles.scss */ .scard-image { padding: 0px; margin: 0px; @@ -24776,7 +24777,7 @@ p { overflow: hidden; background-color: #f2f2f2; } -/* line 1423, ../../../scss/_app_styles.scss */ +/* line 1424, ../../../scss/_app_styles.scss */ .scard-image img { border-radius: 2px 2px 0 0; display: block; @@ -24784,7 +24785,7 @@ p { opacity: 0.9; height: 100%; } -/* line 1432, ../../../scss/_app_styles.scss */ +/* line 1433, ../../../scss/_app_styles.scss */ .scard-image i { font-size: 7rem; opacity: 0.75; @@ -24798,83 +24799,83 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1446, ../../../scss/_app_styles.scss */ +/* line 1447, ../../../scss/_app_styles.scss */ .scard-image i.common-icon:before { content: "\f1fb"; } -/* line 1449, ../../../scss/_app_styles.scss */ +/* line 1450, ../../../scss/_app_styles.scss */ .scard-image i.file:before { content: "\f18e"; } -/* line 1452, ../../../scss/_app_styles.scss */ +/* line 1453, ../../../scss/_app_styles.scss */ .scard-image i.page:before { content: "\f18e"; } -/* line 1455, ../../../scss/_app_styles.scss */ +/* line 1456, ../../../scss/_app_styles.scss */ .scard-image i.collection:before { content: "\f18a"; } -/* line 1458, ../../../scss/_app_styles.scss */ +/* line 1459, ../../../scss/_app_styles.scss */ .scard-image i.documents:before { content: "\f18b"; } -/* line 1461, ../../../scss/_app_styles.scss */ +/* line 1462, ../../../scss/_app_styles.scss */ .scard-image i.pdf:before { content: "\f18b"; } -/* line 1464, ../../../scss/_app_styles.scss */ +/* line 1465, ../../../scss/_app_styles.scss */ .scard-image i.text:before { content: "\f18e"; } -/* line 1467, ../../../scss/_app_styles.scss */ +/* line 1468, ../../../scss/_app_styles.scss */ .scard-image i.interactives:before { content: "\f1b2"; } -/* line 1470, ../../../scss/_app_styles.scss */ +/* line 1471, ../../../scss/_app_styles.scss */ .scard-image i.ebooks:before { content: "\f11e"; } -/* line 1473, ../../../scss/_app_styles.scss */ +/* line 1474, ../../../scss/_app_styles.scss */ .scard-image i.images:before { content: "\f125"; } -/* line 1476, ../../../scss/_app_styles.scss */ +/* line 1477, ../../../scss/_app_styles.scss */ .scard-image i.audios:before, .scard-image i.audio:before { content: "\f17b"; } -/* line 1479, ../../../scss/_app_styles.scss */ +/* line 1480, ../../../scss/_app_styles.scss */ .scard-image i.videos:before, .scard-image i.video:before { content: "\f20e"; } -/* line 1485, ../../../scss/_app_styles.scss */ +/* line 1486, ../../../scss/_app_styles.scss */ .published.scard-action { background: #A6D9CB; } -/* line 1489, ../../../scss/_app_styles.scss */ +/* line 1490, ../../../scss/_app_styles.scss */ .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 1495, ../../../scss/_app_styles.scss */ +/* line 1496, ../../../scss/_app_styles.scss */ .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1500, ../../../scss/_app_styles.scss */ +/* line 1501, ../../../scss/_app_styles.scss */ .moderation.scard-action { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1504, ../../../scss/_app_styles.scss */ +/* line 1505, ../../../scss/_app_styles.scss */ .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 1508, ../../../scss/_app_styles.scss */ +/* line 1509, ../../../scss/_app_styles.scss */ .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -24885,7 +24886,7 @@ p { /* End Simple Card CSS*/ /* Customized Off-Canvas */ -/* line 1646, ../../../scss/_app_styles.scss */ +/* line 1647, ../../../scss/_app_styles.scss */ #help-canvas-menu { position: fixed; top: 52px; @@ -24898,26 +24899,26 @@ p { height: 100%; } -/* line 1657, ../../../scss/_app_styles.scss */ +/* line 1658, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded { left: 0 !important; z-index: 100000000; left: 150px; } -/* line 1662, ../../../scss/_app_styles.scss */ +/* line 1663, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded .help-button { right: 80px; z-index: -1; } -/* line 1667, ../../../scss/_app_styles.scss */ +/* line 1668, ../../../scss/_app_styles.scss */ #help-canvas-menu.animating .help-button { -webkit-animation: shake 400ms; animation: shake 400ms; } -/* line 1671, ../../../scss/_app_styles.scss */ +/* line 1672, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button { position: absolute; -webkit-transform: rotate(-90deg); @@ -24944,12 +24945,12 @@ p { border-top-right-radius: 5px; } -/* line 1697, ../../../scss/_app_styles.scss */ +/* line 1698, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button-text { font-size: 18px; } -/* line 1700, ../../../scss/_app_styles.scss */ +/* line 1701, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button .text { color: #f9f9f9; letter-spacing: .1em; @@ -24958,7 +24959,7 @@ p { text-shadow: 0 0 1px rgba(0, 0, 0, 0.35); } -/* line 1709, ../../../scss/_app_styles.scss */ +/* line 1710, ../../../scss/_app_styles.scss */ #help-canvas-menu .mainContainer { background: #fff; /*-webkit-box-shadow:3px 3px 17px -1px #7b7b7b; @@ -24972,7 +24973,7 @@ p { } /* End of Customized Off-Canvas */ -/* line 1727, ../../../scss/_app_styles.scss */ +/* line 1728, ../../../scss/_app_styles.scss */ .rcard { overflow: hidden; color: #272727; @@ -24980,56 +24981,56 @@ p { background-color: #f5f5f5; margin: 5px; } -/* line 1738, ../../../scss/_app_styles.scss */ +/* line 1739, ../../../scss/_app_styles.scss */ .rcard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1743, ../../../scss/_app_styles.scss */ +/* line 1744, ../../../scss/_app_styles.scss */ .rcard .title { font-size: 1.1rem; font-weight: bold; } -/* line 1749, ../../../scss/_app_styles.scss */ +/* line 1750, ../../../scss/_app_styles.scss */ .rcard .content { padding: 0.5rem 2rem; border-radius: 0 0 2px 2px; overflow: hidden; height: 7.25rem; } -/* line 1756, ../../../scss/_app_styles.scss */ +/* line 1757, ../../../scss/_app_styles.scss */ .rcard .content .slick-slider { margin-bottom: 0; } -/* line 1760, ../../../scss/_app_styles.scss */ +/* line 1761, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev { left: 0.25rem; } -/* line 1763, ../../../scss/_app_styles.scss */ +/* line 1764, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev:before { color: #ccc; } -/* line 1769, ../../../scss/_app_styles.scss */ +/* line 1770, ../../../scss/_app_styles.scss */ .rcard .content .slick-next { right: 0.25rem; } -/* line 1772, ../../../scss/_app_styles.scss */ +/* line 1773, ../../../scss/_app_styles.scss */ .rcard .content .slick-next:before { color: #ccc; } -/* line 1778, ../../../scss/_app_styles.scss */ +/* line 1779, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title { width: 100%; border-bottom: 1px solid #808080; line-height: 0.25em; margin: 10px 0 20px; } -/* line 1784, ../../../scss/_app_styles.scss */ +/* line 1785, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title small { padding: 0 10px; background-color: #f5f5f5; } -/* line 1791, ../../../scss/_app_styles.scss */ +/* line 1792, ../../../scss/_app_styles.scss */ .rcard .action { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -25037,15 +25038,15 @@ p { font-size: small; height: 2rem; } -/* line 1798, ../../../scss/_app_styles.scss */ +/* line 1799, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection { opacity: 0.5; } -/* line 1801, ../../../scss/_app_styles.scss */ +/* line 1802, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection:hover { opacity: 1; } -/* line 1815, ../../../scss/_app_styles.scss */ +/* line 1816, ../../../scss/_app_styles.scss */ .rcard .image { position: relative; background-color: #ccc; @@ -25053,7 +25054,7 @@ p { height: 8em; overflow: hidden; } -/* line 1825, ../../../scss/_app_styles.scss */ +/* line 1826, ../../../scss/_app_styles.scss */ .rcard .image .title { position: absolute; bottom: 0; @@ -25065,7 +25066,7 @@ p { text-transform: uppercase; text-shadow: 0px 0px 0.5px rgba(0, 0, 0, 0.5); } -/* line 1838, ../../../scss/_app_styles.scss */ +/* line 1839, ../../../scss/_app_styles.scss */ .rcard .image img { border-radius: 2px 2px 0 0; display: block; @@ -25075,14 +25076,14 @@ p { filter: brightness(0.75); -webkit-filter: brightness(0.75); } -/* line 1850, ../../../scss/_app_styles.scss */ +/* line 1851, ../../../scss/_app_styles.scss */ .rcard .image img:hover { filter: brightness(1); -webkit-filter: brightness(1); transform: translate3d(0, 0, 0); transition: all 1.5s ease; } -/* line 1859, ../../../scss/_app_styles.scss */ +/* line 1860, ../../../scss/_app_styles.scss */ .rcard .image i { font-size: 7rem; opacity: 0.75; @@ -25096,51 +25097,51 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1876, ../../../scss/_app_styles.scss */ +/* line 1877, ../../../scss/_app_styles.scss */ .rcard .image i.file:before { content: "\f18e"; } -/* line 1877, ../../../scss/_app_styles.scss */ +/* line 1878, ../../../scss/_app_styles.scss */ .rcard .image i.page:before { content: "\f18e"; } -/* line 1878, ../../../scss/_app_styles.scss */ +/* line 1879, ../../../scss/_app_styles.scss */ .rcard .image i.collection:before { content: "\f18a"; } -/* line 1880, ../../../scss/_app_styles.scss */ +/* line 1881, ../../../scss/_app_styles.scss */ .rcard .image i.documents:before { content: "\f18b"; } -/* line 1881, ../../../scss/_app_styles.scss */ +/* line 1882, ../../../scss/_app_styles.scss */ .rcard .image i.pdf:before { content: "\f18b"; } -/* line 1882, ../../../scss/_app_styles.scss */ +/* line 1883, ../../../scss/_app_styles.scss */ .rcard .image i.text:before { content: "\f18e"; } -/* line 1883, ../../../scss/_app_styles.scss */ +/* line 1884, ../../../scss/_app_styles.scss */ .rcard .image i.interactives:before { content: "\f1b2"; } -/* line 1884, ../../../scss/_app_styles.scss */ +/* line 1885, ../../../scss/_app_styles.scss */ .rcard .image i.ebooks:before { content: "\f11e"; } -/* line 1885, ../../../scss/_app_styles.scss */ +/* line 1886, ../../../scss/_app_styles.scss */ .rcard .image i.images:before { content: "\f125"; } -/* line 1886, ../../../scss/_app_styles.scss */ +/* line 1887, ../../../scss/_app_styles.scss */ .rcard .image i.audios:before, .rcard .image i.audio:before { content: "\f17b"; } -/* line 1887, ../../../scss/_app_styles.scss */ +/* line 1888, ../../../scss/_app_styles.scss */ .rcard .image i.videos:before, .rcard .image i.video:before { content: "\f20e"; } -/* line 1890, ../../../scss/_app_styles.scss */ +/* line 1891, ../../../scss/_app_styles.scss */ .rcard .card-label { border-style: solid; border-width: 0 70px 40px 0; @@ -25153,59 +25154,59 @@ p { z-index: 1; opacity: 0.75; } -/* line 1903, ../../../scss/_app_styles.scss */ +/* line 1904, ../../../scss/_app_styles.scss */ .rcard .card-label { border-color: transparent #333 transparent transparent; border-color: rgba(255, 255, 255, 0) #333 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1908, ../../../scss/_app_styles.scss */ +/* line 1909, ../../../scss/_app_styles.scss */ .rcard .published.card-label { border-color: transparent #43AC6A transparent transparent; border-color: rgba(255, 255, 255, 0) #43AC6A rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1912, ../../../scss/_app_styles.scss */ +/* line 1913, ../../../scss/_app_styles.scss */ .rcard .published.card-label .label-text:before { content: "\221A"; margin-left: 5px; font-size: larger; } -/* line 1920, ../../../scss/_app_styles.scss */ +/* line 1921, ../../../scss/_app_styles.scss */ .rcard .draft.card-label { border-color: transparent #a9b2b3 transparent transparent; border-color: rgba(255, 255, 255, 0) #a9b2b3 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1924, ../../../scss/_app_styles.scss */ +/* line 1925, ../../../scss/_app_styles.scss */ .rcard .draft.card-label .label-text:before { content: "Draft"; } -/* line 1929, ../../../scss/_app_styles.scss */ +/* line 1930, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1933, ../../../scss/_app_styles.scss */ +/* line 1934, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label .label-text:before { content: "Deleted"; } -/* line 1938, ../../../scss/_app_styles.scss */ +/* line 1939, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1942, ../../../scss/_app_styles.scss */ +/* line 1943, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label .label-text:before { content: "Mod"; } -/* line 1945, ../../../scss/_app_styles.scss */ +/* line 1946, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label { border-color: transparent #000 transparent transparent; border-color: rgba(255, 255, 255, 0) #000 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1949, ../../../scss/_app_styles.scss */ +/* line 1950, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label .label-text:before { content: "hidden"; } -/* line 1952, ../../../scss/_app_styles.scss */ +/* line 1953, ../../../scss/_app_styles.scss */ .rcard .label-text { color: #fff; font-size: 0.75rem; @@ -25216,7 +25217,7 @@ p { transform: rotate(30deg); } -/* line 1966, ../../../scss/_app_styles.scss */ +/* line 1967, ../../../scss/_app_styles.scss */ .compulsory:after { content: '*'; color: red; @@ -25224,19 +25225,19 @@ p { } /* Watermark background for node_ajax_content */ -/* line 1974, ../../../scss/_app_styles.scss */ +/* line 1975, ../../../scss/_app_styles.scss */ .allow.draft { background-size: 10%; background-repeat: repeat; background-image: url("/static/ndf/images/draft-watermark.png"); } -/* line 1982, ../../../scss/_app_styles.scss */ +/* line 1983, ../../../scss/_app_styles.scss */ .text-gray { color: gray; } -/* line 1987, ../../../scss/_app_styles.scss */ +/* line 1988, ../../../scss/_app_styles.scss */ .repository-title { color: #D7D7D7; font-size: 1.1em; @@ -25249,7 +25250,7 @@ p { text-align: center; } -/* line 1999, ../../../scss/_app_styles.scss */ +/* line 2000, ../../../scss/_app_styles.scss */ .repository-desc { font-size: 1.1em; width: auto; @@ -25261,12 +25262,12 @@ p { margin-left: 4px; } -/* line 2010, ../../../scss/_app_styles.scss */ +/* line 2011, ../../../scss/_app_styles.scss */ .card-holder { padding-left: 2%; } -/* line 2014, ../../../scss/_app_styles.scss */ +/* line 2015, ../../../scss/_app_styles.scss */ .app-card-wrapper { position: relative; margin: auto; @@ -25276,14 +25277,14 @@ p { max-width: calc(70rem + 70px); } -/* line 2023, ../../../scss/_app_styles.scss */ +/* line 2024, ../../../scss/_app_styles.scss */ .app-card-container { display: inline-block; vertical-align: top; margin: 15px; } -/* line 2029, ../../../scss/_app_styles.scss */ +/* line 2030, ../../../scss/_app_styles.scss */ .app-card { width: 19rem; margin: 15px 20px; @@ -25294,7 +25295,7 @@ p { border: thin solid #D3D3D3; } -/* line 2039, ../../../scss/_app_styles.scss */ +/* line 2040, ../../../scss/_app_styles.scss */ .app-card:hover { box-shadow: 0px 0px 15px #808080; border: thin solid #D3D3D3; @@ -25302,26 +25303,26 @@ p { transition: all 0.6s ease 0s; } -/* line 2046, ../../../scss/_app_styles.scss */ +/* line 2047, ../../../scss/_app_styles.scss */ .app-card-icon { color: #4c4c4c; position: relative; font-size: 6em; } -/* line 2052, ../../../scss/_app_styles.scss */ +/* line 2053, ../../../scss/_app_styles.scss */ .app-card-title { padding-bottom: -1em; } -/* line 2056, ../../../scss/_app_styles.scss */ +/* line 2057, ../../../scss/_app_styles.scss */ .app-card-content { color: #4c4c4c; text-align: center; margin-top: 0.5cm; } -/* line 2063, ../../../scss/_app_styles.scss */ +/* line 2064, ../../../scss/_app_styles.scss */ .fullscreen-icon { display: none; } @@ -25337,58 +25338,58 @@ div.show-image:hover div.fullscreen-icon{ font-size:2em; }*/ -/* line 2082, ../../../scss/_app_styles.scss */ +/* line 2083, ../../../scss/_app_styles.scss */ .cke .cke_toolbox .cke_toolbar:last-child { float: right; } -/* line 2088, ../../../scss/_app_styles.scss */ +/* line 2089, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin: 0px 1em; } -/* line 2092, ../../../scss/_app_styles.scss */ +/* line 2093, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 2098, ../../../scss/_app_styles.scss */ +/* line 2099, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 2101, ../../../scss/_app_styles.scss */ +/* line 2102, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 2105, ../../../scss/_app_styles.scss */ +/* line 2106, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 2110, ../../../scss/_app_styles.scss */ +/* line 2111, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 2117, ../../../scss/_app_styles.scss */ +/* line 2118, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 2121, ../../../scss/_app_styles.scss */ +/* line 2122, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 2126, ../../../scss/_app_styles.scss */ +/* line 2127, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 2132, ../../../scss/_app_styles.scss */ +/* line 2133, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -25396,16 +25397,16 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 0em; border-top: 1px solid #B1B1B1; } -/* line 2140, ../../../scss/_app_styles.scss */ +/* line 2141, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 2145, ../../../scss/_app_styles.scss */ +/* line 2146, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 2148, ../../../scss/_app_styles.scss */ +/* line 2149, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { /*background-color: #3e3e3e;*/ color: #ececec !important; @@ -25415,7 +25416,7 @@ div.show-image:hover div.fullscreen-icon{ line-height: 1.5em; border-radius: 5px 5px 0px 0px; } -/* line 2158, ../../../scss/_app_styles.scss */ +/* line 2159, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -25424,12 +25425,12 @@ div.show-image:hover div.fullscreen-icon{ padding-left: 10px; border-radius: 0px 0px 5px 5px; } -/* line 2166, ../../../scss/_app_styles.scss */ +/* line 2167, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 2172, ../../../scss/_app_styles.scss */ +/* line 2173, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -25437,7 +25438,7 @@ div.show-image:hover div.fullscreen-icon{ /* Large desktop */ @media (min-width: 34em) { - /* line 2180, ../../../scss/_app_styles.scss */ + /* line 2181, ../../../scss/_app_styles.scss */ .container { max-width: 34rem; margin: 0px auto; @@ -25445,7 +25446,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 48em) { - /* line 2188, ../../../scss/_app_styles.scss */ + /* line 2189, ../../../scss/_app_styles.scss */ .container { max-width: 45rem; margin: 0px auto; @@ -25453,7 +25454,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 62em) { - /* line 2196, ../../../scss/_app_styles.scss */ + /* line 2197, ../../../scss/_app_styles.scss */ .container { max-width: 60rem; margin: 0px auto; @@ -25461,20 +25462,20 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 75em) { - /* line 2204, ../../../scss/_app_styles.scss */ + /* line 2205, ../../../scss/_app_styles.scss */ .container { max-width: 72.25rem; margin: 0px auto; } } -/* line 2210, ../../../scss/_app_styles.scss */ +/* line 2211, ../../../scss/_app_styles.scss */ .course-page { position: relative; background-size: 100% 100%; height: 100%; margin-top: 10px; } -/* line 2216, ../../../scss/_app_styles.scss */ +/* line 2217, ../../../scss/_app_styles.scss */ .course-page > .container { background-color: #fff; padding: 0px 0px; @@ -25482,7 +25483,7 @@ div.show-image:hover div.fullscreen-icon{ box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3); } -/* line 2224, ../../../scss/_app_styles.scss */ +/* line 2225, ../../../scss/_app_styles.scss */ .course-page-opacity { height: 100%; width: 100%; @@ -25496,12 +25497,12 @@ div.show-image:hover div.fullscreen-icon{ background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 2238, ../../../scss/_app_styles.scss */ +/* line 2239, ../../../scss/_app_styles.scss */ #envelop-cover { /*background: #A0148E;*/ height: 250px; } -/* line 2242, ../../../scss/_app_styles.scss */ +/* line 2243, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header { font-size: 35px; font-weight: 500; @@ -25511,11 +25512,11 @@ div.show-image:hover div.fullscreen-icon{ height: 250px; color: #fff; } -/* line 2251, ../../../scss/_app_styles.scss */ +/* line 2252, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header label { color: #fff; } -/* line 2255, ../../../scss/_app_styles.scss */ +/* line 2256, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background, #envelop-cover .course-page-header .course-header-background-layer { position: absolute; left: 0px; @@ -25524,17 +25525,17 @@ div.show-image:hover div.fullscreen-icon{ bottom: 0px; height: 250px; } -/* line 2262, ../../../scss/_app_styles.scss */ +/* line 2263, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background img, #envelop-cover .course-page-header .course-header-background-layer img { width: auto; height: 250px; } -/* line 2268, ../../../scss/_app_styles.scss */ +/* line 2269, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background-layer { background-color: rgba(0, 0, 0, 0.5); opacity: 0; } -/* line 2273, ../../../scss/_app_styles.scss */ +/* line 2274, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings { margin-left: 15px; position: absolute; @@ -25542,20 +25543,20 @@ div.show-image:hover div.fullscreen-icon{ bottom: 55px; /*width: 170px;*/ } -/* line 2279, ../../../scss/_app_styles.scss */ +/* line 2280, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul { box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); } -/* line 2281, ../../../scss/_app_styles.scss */ +/* line 2282, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul > li:hover { background: rgba(0, 0, 0, 0.9); } -/* line 2285, ../../../scss/_app_styles.scss */ +/* line 2286, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a { font-size: 15px; color: #737373; } -/* line 2286, ../../../scss/_app_styles.scss */ +/* line 2287, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child { background: rgba(50, 50, 50, 0.8); padding: 9px 12px 9px 10px; @@ -25563,11 +25564,11 @@ div.show-image:hover div.fullscreen-icon{ font-size: 12px; margin: 0px; } -/* line 2292, ../../../scss/_app_styles.scss */ +/* line 2293, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child > i { margin-right: 5px; } -/* line 2299, ../../../scss/_app_styles.scss */ +/* line 2300, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span { background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.7); @@ -25578,30 +25579,30 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; border-radius: 3px; } -/* line 2309, ../../../scss/_app_styles.scss */ +/* line 2310, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span i { font-size: 20px; } -/* line 2316, ../../../scss/_app_styles.scss */ +/* line 2317, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a { font-size: 15px; color: #737373; } -/* line 2319, ../../../scss/_app_styles.scss */ +/* line 2320, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a i { font-size: 18px; } -/* line 2326, ../../../scss/_app_styles.scss */ +/* line 2327, ../../../scss/_app_styles.scss */ #envelop-cover .heading { letter-spacing: -1.2px; font-weight: 400; } -/* line 2331, ../../../scss/_app_styles.scss */ +/* line 2332, ../../../scss/_app_styles.scss */ #envelop-cover .meta { line-height: 2.1em; padding-left: 14px; } -/* line 2335, ../../../scss/_app_styles.scss */ +/* line 2336, ../../../scss/_app_styles.scss */ #envelop-cover .meta .key { color: #A7A4A4; font-weight: 500; @@ -25611,27 +25612,27 @@ div.show-image:hover div.fullscreen-icon{ vertical-align: top; margin-right: 10px; } -/* line 2345, ../../../scss/_app_styles.scss */ +/* line 2346, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value { display: inline-block; } -/* line 2348, ../../../scss/_app_styles.scss */ +/* line 2349, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .name { color: #000; } -/* line 2352, ../../../scss/_app_styles.scss */ +/* line 2353, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .time { font-size: 13px; font-weight: 300; color: #000; } -/* line 2359, ../../../scss/_app_styles.scss */ +/* line 2360, ../../../scss/_app_styles.scss */ #envelop-cover .course-title { position: absolute; bottom: 50px; left: 5px; } -/* line 2364, ../../../scss/_app_styles.scss */ +/* line 2365, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs { border: 0 solid silver; border-width: 0px 0px 0px 0px; @@ -25643,7 +25644,7 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; background-color: rgba(255, 255, 255, 0.8); } -/* line 2375, ../../../scss/_app_styles.scss */ +/* line 2376, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title { border: 0 solid silver; border-width: 0 0 0px 0px; @@ -25653,7 +25654,7 @@ div.show-image:hover div.fullscreen-icon{ display: inline-block; border-top: 5px solid transparent; } -/* line 2384, ../../../scss/_app_styles.scss */ +/* line 2385, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title a { color: #6F669E; font-weight: 600; @@ -25661,25 +25662,25 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: -0.3px; padding: 0rem 0.8rem 0.4rem; } -/* line 2392, ../../../scss/_app_styles.scss */ +/* line 2393, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active { border-width: 0px 0px 0px 0px; background: #FFFFFF; border-top: 5px solid #F11FD0; } -/* line 2396, ../../../scss/_app_styles.scss */ +/* line 2397, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active a { color: #6153AE; } -/* line 2409, ../../../scss/_app_styles.scss */ +/* line 2410, ../../../scss/_app_styles.scss */ .note-tags a { background: #ffebb2; padding: 0.2em 0.7em; display: inline-block; } -/* line 2416, ../../../scss/_app_styles.scss */ +/* line 2417, ../../../scss/_app_styles.scss */ .toggleButtons a { padding: 0.5em 1em; margin: 0px; @@ -25688,69 +25689,69 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid #B7B7B7; display: inline; } -/* line 2424, ../../../scss/_app_styles.scss */ +/* line 2425, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { margin-right: -3px; border-right: 0px solid #000; } -/* line 2428, ../../../scss/_app_styles.scss */ +/* line 2429, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { border-radius: 10px 0px 0px 10px; } -/* line 2431, ../../../scss/_app_styles.scss */ +/* line 2432, ../../../scss/_app_styles.scss */ .toggleButtons a:last-child { border-radius: 0px 10px 10px 0px; } -/* line 2434, ../../../scss/_app_styles.scss */ +/* line 2435, ../../../scss/_app_styles.scss */ .toggleButtons a.active { background-color: #908F8F; color: #fff; } -/* line 2441, ../../../scss/_app_styles.scss */ +/* line 2442, ../../../scss/_app_styles.scss */ .explore-header { line-height: 3em; } -/* line 2444, ../../../scss/_app_styles.scss */ +/* line 2445, ../../../scss/_app_styles.scss */ .explore-header > div { vertical-align: middle; display: inline-block; } -/* line 2448, ../../../scss/_app_styles.scss */ +/* line 2449, ../../../scss/_app_styles.scss */ .explore-header .heading { font-size: 2em; } -/* line 2461, ../../../scss/_app_styles.scss */ +/* line 2462, ../../../scss/_app_styles.scss */ #envelop-content { /*background-color: #fff;*/ padding: 0px 10px; overflow-x: hidden; /* For accordian in the mobile view*/ } -/* line 2467, ../../../scss/_app_styles.scss */ +/* line 2468, ../../../scss/_app_styles.scss */ #envelop-content .accordion { margin-left: 0px; } -/* line 2471, ../../../scss/_app_styles.scss */ +/* line 2472, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation a { background-color: #DEDEDE; } -/* line 2474, ../../../scss/_app_styles.scss */ +/* line 2475, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation.active a { background-color: #fff; } -/* line 2481, ../../../scss/_app_styles.scss */ +/* line 2482, ../../../scss/_app_styles.scss */ #envelop-content > div > .tabs-content > .content { background: #FFFFFF; padding: 1em; } -/* line 2488, ../../../scss/_app_styles.scss */ +/* line 2489, ../../../scss/_app_styles.scss */ #envelop-content .course-book #course-dashboard { padding: 0px; } -/* line 2496, ../../../scss/_app_styles.scss */ +/* line 2497, ../../../scss/_app_styles.scss */ .course-overview-container { /*.about-course-heading { display: block; @@ -25785,23 +25786,23 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; }*/ } -/* line 2497, ../../../scss/_app_styles.scss */ +/* line 2498, ../../../scss/_app_styles.scss */ .course-overview-container .course-overview > .columns { padding: 0px 10px; } -/* line 2500, ../../../scss/_app_styles.scss */ +/* line 2501, ../../../scss/_app_styles.scss */ .course-overview-container h5 { text-transform: uppercase; } -/* line 2503, ../../../scss/_app_styles.scss */ +/* line 2504, ../../../scss/_app_styles.scss */ .course-overview-container .correct-count { color: #367714; } -/* line 2506, ../../../scss/_app_styles.scss */ +/* line 2507, ../../../scss/_app_styles.scss */ .course-overview-container .incorrect-count { color: #9b0000; } -/* line 2509, ../../../scss/_app_styles.scss */ +/* line 2510, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-heading { text-transform: uppercase; font-size: 12px; @@ -25810,45 +25811,45 @@ div.show-image:hover div.fullscreen-icon{ color: #8E8E8E; display: block; } -/* line 2517, ../../../scss/_app_styles.scss */ +/* line 2518, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-count { font-size: 30px; font-weight: 500; letter-spacing: 0.5px; display: block; } -/* line 2523, ../../../scss/_app_styles.scss */ +/* line 2524, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session { border-bottom: 1px solid #ccc; margin-bottom: 12px; padding-bottom: 15px; } -/* line 2528, ../../../scss/_app_styles.scss */ +/* line 2529, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session h5, .course-overview-container .ongoing-session h3 { color: #2b78e4; } -/* line 2531, ../../../scss/_app_styles.scss */ +/* line 2532, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session button { font-size: 14px; padding: 7px; margin: 0px; background-color: #2B78E4; } -/* line 2539, ../../../scss/_app_styles.scss */ +/* line 2540, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > h5 { color: #888; } -/* line 2542, ../../../scss/_app_styles.scss */ +/* line 2543, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > .row { margin: 10px 0px; } -/* line 2545, ../../../scss/_app_styles.scss */ +/* line 2546, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2550, ../../../scss/_app_styles.scss */ +/* line 2551, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -25857,17 +25858,17 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2558, ../../../scss/_app_styles.scss */ +/* line 2559, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2568, ../../../scss/_app_styles.scss */ +/* line 2569, ../../../scss/_app_styles.scss */ .course-overview-container .course-notif-logs ul { list-style: none; } -/* line 2572, ../../../scss/_app_styles.scss */ +/* line 2573, ../../../scss/_app_styles.scss */ .course-overview-container .course-section { border: 1px solid #ccc; padding: 10px; @@ -25875,11 +25876,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 40px 0px; position: relative; } -/* line 2579, ../../../scss/_app_styles.scss */ +/* line 2580, ../../../scss/_app_styles.scss */ .course-overview-container .course-section > .row { margin: 20px 0px; } -/* line 2583, ../../../scss/_app_styles.scss */ +/* line 2584, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-heading { text-transform: uppercase; font-weight: 600; @@ -25889,7 +25890,7 @@ div.show-image:hover div.fullscreen-icon{ margin: 2px 0px 15px; color: #888; } -/* line 2593, ../../../scss/_app_styles.scss */ +/* line 2594, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-icon { position: absolute; font-size: 40px; @@ -25898,58 +25899,58 @@ div.show-image:hover div.fullscreen-icon{ color: #aaa; background: #fff; } -/* line 2617, ../../../scss/_app_styles.scss */ +/* line 2618, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning { background-color: #fffdd7; } -/* line 2619, ../../../scss/_app_styles.scss */ +/* line 2620, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning > h5 { color: #c09100; } -/* line 2622, ../../../scss/_app_styles.scss */ +/* line 2623, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning i { padding: 10px; margin-right: 5px; color: #c09100; } -/* line 2627, ../../../scss/_app_styles.scss */ +/* line 2628, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning a { text-decoration: underline; } -/* line 2631, ../../../scss/_app_styles.scss */ +/* line 2632, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data { margin: 20px 0px; } -/* line 2635, ../../../scss/_app_styles.scss */ +/* line 2636, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 2638, ../../../scss/_app_styles.scss */ +/* line 2639, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 2645, ../../../scss/_app_styles.scss */ +/* line 2646, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table { width: 100%; margin: 15px 0px; } -/* line 2649, ../../../scss/_app_styles.scss */ +/* line 2650, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table tr { border: none; } -/* line 2653, ../../../scss/_app_styles.scss */ +/* line 2654, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table .progress .merter-val { margin-left: 5px; } -/* line 2691, ../../../scss/_app_styles.scss */ +/* line 2692, ../../../scss/_app_styles.scss */ .about-course { background-color: #fff; padding: 10px 23px; } -/* line 2694, ../../../scss/_app_styles.scss */ +/* line 2695, ../../../scss/_app_styles.scss */ .about-course > h5 { text-transform: uppercase; font-weight: 600; @@ -25960,7 +25961,7 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 5px; } -/* line 2705, ../../../scss/_app_styles.scss */ +/* line 2706, ../../../scss/_app_styles.scss */ .course-desc { letter-spacing: 0.7px; font-weight: 400; @@ -25970,7 +25971,7 @@ div.show-image:hover div.fullscreen-icon{ margin-top: 5px; } -/* line 2713, ../../../scss/_app_styles.scss */ +/* line 2714, ../../../scss/_app_styles.scss */ .course-highlight { letter-spacing: 0.7px; font-weight: 400; @@ -25981,25 +25982,25 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 4px; margin-bottom: 5px; } -/* line 2723, ../../../scss/_app_styles.scss */ +/* line 2724, ../../../scss/_app_styles.scss */ .course-highlight > span { color: #ce7869; } -/* line 2729, ../../../scss/_app_styles.scss */ +/* line 2730, ../../../scss/_app_styles.scss */ .icon-wid { font-size: 34px !important; color: #a2b1be; margin-right: 10px; } -/* line 2738, ../../../scss/_app_styles.scss */ +/* line 2739, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2743, ../../../scss/_app_styles.scss */ +/* line 2744, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26008,96 +26009,96 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2751, ../../../scss/_app_styles.scss */ +/* line 2752, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2760, ../../../scss/_app_styles.scss */ +/* line 2761, ../../../scss/_app_styles.scss */ .student-dashboard-header-container { background-color: #90F; padding: 10px 10px; height: 110px; width: 100%; } -/* line 2768, ../../../scss/_app_styles.scss */ +/* line 2769, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header img { height: 75px; width: 75px; vertical-align: top; margin: 0px 10px; } -/* line 2774, ../../../scss/_app_styles.scss */ +/* line 2775, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info { display: inline-block; } -/* line 2776, ../../../scss/_app_styles.scss */ +/* line 2777, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info > span { display: block; color: #fff; } -/* line 2780, ../../../scss/_app_styles.scss */ +/* line 2781, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-name { color: #fff; font-weight: 600; font-size: 22px; letter-spacing: 0.5px; } -/* line 2786, ../../../scss/_app_styles.scss */ +/* line 2787, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-overall-points { font-size: 26px; color: #ffff00; } -/* line 2799, ../../../scss/_app_styles.scss */ +/* line 2800, ../../../scss/_app_styles.scss */ .student-dashboard { background-color: #fff; padding: 10px; } -/* line 2804, ../../../scss/_app_styles.scss */ +/* line 2805, ../../../scss/_app_styles.scss */ .student-dashboard #course-act-logs > span { display: inline-block; vertical-align: top; } -/* line 2813, ../../../scss/_app_styles.scss */ +/* line 2814, ../../../scss/_app_styles.scss */ .rating-star-number { position: relative; display: inline-block; } -/* line 2816, ../../../scss/_app_styles.scss */ +/* line 2817, ../../../scss/_app_styles.scss */ .rating-star-number > span { position: absolute; top: 11px; left: 14px; font-size: 13px; } -/* line 2822, ../../../scss/_app_styles.scss */ +/* line 2823, ../../../scss/_app_styles.scss */ .rating-star-number i { font-size: 40px; color: gold; } -/* line 2829, ../../../scss/_app_styles.scss */ +/* line 2830, ../../../scss/_app_styles.scss */ .course-notif .notif-type img { height: 35px; width: 75%; } -/* line 2833, ../../../scss/_app_styles.scss */ +/* line 2834, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating { position: absolute; right: 15%; top: 0; } -/* line 2837, ../../../scss/_app_styles.scss */ +/* line 2838, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating i { font-size: 40px; right: 10%; color: #f1c233; } -/* line 2842, ../../../scss/_app_styles.scss */ +/* line 2843, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating span { position: absolute; left: 50%; @@ -26106,12 +26107,12 @@ div.show-image:hover div.fullscreen-icon{ font-size: 11px; } -/* line 2856, ../../../scss/_app_styles.scss */ +/* line 2857, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > ul, .course-dashboard .course-notifications > ul, .course-dashboard .course-performance > ul { list-style: none; } -/* line 2860, ../../../scss/_app_styles.scss */ +/* line 2861, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > .row, .course-dashboard .course-notifications > .row, .course-dashboard .course-performance > .row { padding: 0px; @@ -26123,45 +26124,45 @@ div.show-image:hover div.fullscreen-icon{ margin: 0em 0em; border-radius: 10px; } -/* line 2872, ../../../scss/_app_styles.scss */ +/* line 2873, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-heading { padding: 0.2em 0.7em; border-bottom: 1px solid #DADADA; font-weight: 500; font-size: 1.3em; } -/* line 2878, ../../../scss/_app_styles.scss */ +/* line 2879, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row { padding: 1em; } -/* line 2881, ../../../scss/_app_styles.scss */ +/* line 2882, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row:nth-child(n+3) { border-top: 1px solid #DCDCDC; } -/* line 2887, ../../../scss/_app_styles.scss */ +/* line 2888, ../../../scss/_app_styles.scss */ .course-dashboard .course-status .course-update .course-current-state { color: #000; font-weight: bold; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 2897, ../../../scss/_app_styles.scss */ +/* line 2898, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications { position: relative; } -/* line 2902, ../../../scss/_app_styles.scss */ +/* line 2903, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .notification-text { font-size: 0.85em; letter-spacing: 0em; word-spacing: 0.2em; } -/* line 2907, ../../../scss/_app_styles.scss */ +/* line 2908, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .time-elapsed { font-size: 0.6em; color: #424242; cursor: pointer; } -/* line 2914, ../../../scss/_app_styles.scss */ +/* line 2915, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-count { font-size: 1em; position: absolute; @@ -26169,42 +26170,42 @@ div.show-image:hover div.fullscreen-icon{ top: 0.3em; } -/* line 2924, ../../../scss/_app_styles.scss */ +/* line 2925, ../../../scss/_app_styles.scss */ .notebook .notebook-header { border-color: black; border-style: solid; border-width: 1px 0px; padding-top: 1em; } -/* line 2930, ../../../scss/_app_styles.scss */ +/* line 2931, ../../../scss/_app_styles.scss */ .notebook .notebook-header a, .notebook .notebook-header input { margin: 0px; } -/* line 2933, ../../../scss/_app_styles.scss */ +/* line 2934, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count { text-align: center; } -/* line 2938, ../../../scss/_app_styles.scss */ +/* line 2939, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:first-child { font-size: 21px; font-weight: 600; padding: 15px; } -/* line 2943, ../../../scss/_app_styles.scss */ +/* line 2944, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:last-child { background: lightgrey; padding: 2px 5px; vertical-align: text-bottom; } -/* line 2953, ../../../scss/_app_styles.scss */ +/* line 2954, ../../../scss/_app_styles.scss */ .notebook .notebook-body { padding: 0px 0px; } -/* line 2957, ../../../scss/_app_styles.scss */ +/* line 2958, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .row { margin: 30px 0px; } -/* line 2960, ../../../scss/_app_styles.scss */ +/* line 2961, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card, .notebook .notebook-body .note-cards .note-details { border: 1px solid #ccc; padding: 10px 15px; @@ -26214,12 +26215,12 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; position: relative; } -/* line 2969, ../../../scss/_app_styles.scss */ +/* line 2970, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-heading, .notebook .notebook-body .note-cards .note-details .note-heading { font-weight: 800; font-size: 20px; } -/* line 2973, ../../../scss/_app_styles.scss */ +/* line 2974, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-close, .notebook .notebook-body .note-cards .note-details .note-close { position: absolute; right: 7px; @@ -26228,22 +26229,22 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 700; color: #929292; } -/* line 2981, ../../../scss/_app_styles.scss */ +/* line 2982, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-summary, .notebook .notebook-body .note-cards .note-details .note-summary { margin: 15px 0px; } -/* line 2984, ../../../scss/_app_styles.scss */ +/* line 2985, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info, .notebook .notebook-body .note-cards .note-card .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data { color: #989898; font-size: 13px; letter-spacing: 0.9px; font-weight: 500; } -/* line 2990, ../../../scss/_app_styles.scss */ +/* line 2991, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info > span, .notebook .notebook-body .note-cards .note-card .note-extra-data > span, .notebook .notebook-body .note-cards .note-details .note-info > span, .notebook .notebook-body .note-cards .note-details .note-extra-data > span { margin-right: 5px; } -/* line 2995, ../../../scss/_app_styles.scss */ +/* line 2996, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-tags > span, .notebook .notebook-body .note-cards .note-details .note-tags > span { display: inline-block; margin: 10px; @@ -26251,53 +26252,53 @@ div.show-image:hover div.fullscreen-icon{ color: #cba552; padding: 2px 5px; } -/* line 3003, ../../../scss/_app_styles.scss */ +/* line 3004, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions, .notebook .notebook-body .note-cards .note-details .note-actions { color: #989898; cursor: pointer; } -/* line 3007, ../../../scss/_app_styles.scss */ +/* line 3008, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions span, .notebook .notebook-body .note-cards .note-details .note-actions span { margin-right: 10px 5px; } -/* line 3013, ../../../scss/_app_styles.scss */ +/* line 3014, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-tags, .notebook .notebook-body .note-cards .note-details .note-actions { display: inline-block; margin-right: 10px; } -/* line 3020, ../../../scss/_app_styles.scss */ +/* line 3021, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags { float: right; } -/* line 3022, ../../../scss/_app_styles.scss */ +/* line 3023, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags > span { margin: 0px; } -/* line 3031, ../../../scss/_app_styles.scss */ +/* line 3032, ../../../scss/_app_styles.scss */ .notebook .notebook-body > div { padding: 0px; } -/* line 3037, ../../../scss/_app_styles.scss */ +/* line 3038, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index { border-right: 1px solid #AFAEAE; padding: 4px 0px; background-color: #F1F1F1; } -/* line 3042, ../../../scss/_app_styles.scss */ +/* line 3043, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content { padding: 0px; } -/* line 3045, ../../../scss/_app_styles.scss */ +/* line 3046, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content .active { padding: 0px; } -/* line 3049, ../../../scss/_app_styles.scss */ +/* line 3050, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3054, ../../../scss/_app_styles.scss */ +/* line 3055, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title { width: 50%; /*background-color: #DEDEDE;*/ @@ -26305,114 +26306,114 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3061, ../../../scss/_app_styles.scss */ +/* line 3062, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title a { border-radius: inherit; font-size: 0.9rem; text-align: center; color: #989898; } -/* line 3068, ../../../scss/_app_styles.scss */ +/* line 3069, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3072, ../../../scss/_app_styles.scss */ +/* line 3073, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active a { color: #3a3169; } -/* line 3079, ../../../scss/_app_styles.scss */ +/* line 3080, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tab-content { padding: 0px; } -/* line 3084, ../../../scss/_app_styles.scss */ +/* line 3085, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date { font-size: 12px; font-weight: bold; background: #EFEFEF; padding: 7px 10px; } -/* line 3090, ../../../scss/_app_styles.scss */ +/* line 3091, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date .note-count { font-size: 11px; line-height: 2em; } -/* line 3095, ../../../scss/_app_styles.scss */ +/* line 3096, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes > div { border-bottom: 1px solid #AFAEAE; } -/* line 3098, ../../../scss/_app_styles.scss */ +/* line 3099, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note { padding: 5px 15px; background: #FFF; cursor: pointer; color: #A2A2A2; } -/* line 3104, ../../../scss/_app_styles.scss */ +/* line 3105, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-heading { font-weight: 400; font-size: 17px; } -/* line 3109, ../../../scss/_app_styles.scss */ +/* line 3110, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta { font-size: 13px; } -/* line 3112, ../../../scss/_app_styles.scss */ +/* line 3113, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta > span:not(:first-child) { font-size: 11px; font-weight: 600; color: #717171; } -/* line 3119, ../../../scss/_app_styles.scss */ +/* line 3120, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer { color: #888888; } -/* line 3122, ../../../scss/_app_styles.scss */ +/* line 3123, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer span { margin-right: 10px; } -/* line 3127, ../../../scss/_app_styles.scss */ +/* line 3128, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active { border-left: 5px solid #6153AE; background: #F4E7FF; font-weight: 800; color: #6153AE; } -/* line 3133, ../../../scss/_app_styles.scss */ +/* line 3134, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-heading { font-weight: 500; font-size: 17px; } -/* line 3137, ../../../scss/_app_styles.scss */ +/* line 3138, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-meta > span:not(:first-child) { color: #6153AE; } -/* line 3145, ../../../scss/_app_styles.scss */ +/* line 3146, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page { background-color: #fff; padding-bottom: 30px; } -/* line 3152, ../../../scss/_app_styles.scss */ +/* line 3153, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .group_content { margin-top: 5px; margin-left: 0px; } -/* line 3157, ../../../scss/_app_styles.scss */ +/* line 3158, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page > div { background-color: #fff; } -/* line 3161, ../../../scss/_app_styles.scss */ +/* line 3162, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar { padding: 1.8em 1.2em 0em; margin: 0em; background-color: #FFF; } -/* line 3166, ../../../scss/_app_styles.scss */ +/* line 3167, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .note-creator { font-weight: bold; } -/* line 3169, ../../../scss/_app_styles.scss */ +/* line 3170, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-title { text-align: left; color: #C3C3C3; @@ -26420,102 +26421,102 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.3px; margin-top: 5px; } -/* line 3176, ../../../scss/_app_styles.scss */ +/* line 3177, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating { text-align: right; } -/* line 3178, ../../../scss/_app_styles.scss */ +/* line 3179, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating > div { display: inline-block; } -/* line 3183, ../../../scss/_app_styles.scss */ +/* line 3184, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-title { font-size: 2.3em; font-weight: 500; margin-right: 1em; } -/* line 3188, ../../../scss/_app_styles.scss */ +/* line 3189, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content { padding: 2em 2em 1em; background: #fff; margin: 0em; } -/* line 3195, ../../../scss/_app_styles.scss */ +/* line 3196, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-header > div { display: inline-block; } -/* line 3200, ../../../scss/_app_styles.scss */ +/* line 3201, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text { font-size: 19px; letter-spacing: 0.7px; } -/* line 3203, ../../../scss/_app_styles.scss */ +/* line 3204, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text p { padding: 0px; } -/* line 3209, ../../../scss/_app_styles.scss */ +/* line 3210, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections { padding: 0em 1em 0em; } -/* line 3213, ../../../scss/_app_styles.scss */ +/* line 3214, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header span { font-weight: bold; } -/* line 3216, ../../../scss/_app_styles.scss */ +/* line 3217, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { margin-left: 15px; } -/* line 3221, ../../../scss/_app_styles.scss */ +/* line 3222, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment { border-top: 1px solid grey; padding: 15px 10px; margin-top: 5px; } -/* line 3226, ../../../scss/_app_styles.scss */ +/* line 3227, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { min-height: 200px; margin-top: 0px; } -/* line 3232, ../../../scss/_app_styles.scss */ +/* line 3233, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { font-size: 90px; line-height: 0em; } -/* line 3242, ../../../scss/_app_styles.scss */ +/* line 3243, ../../../scss/_app_styles.scss */ #newNoteModal { width: 40%; } -/* line 3245, ../../../scss/_app_styles.scss */ +/* line 3246, ../../../scss/_app_styles.scss */ #newNoteModal > div { margin-bottom: 1em; } -/* line 3249, ../../../scss/_app_styles.scss */ +/* line 3250, ../../../scss/_app_styles.scss */ #newNoteModal input { width: 100%; } -/* line 3252, ../../../scss/_app_styles.scss */ +/* line 3253, ../../../scss/_app_styles.scss */ #newNoteModal .heading { margin-right: 1em; } -/* line 3256, ../../../scss/_app_styles.scss */ +/* line 3257, ../../../scss/_app_styles.scss */ #newNoteModal .note-tags { padding: 1em; border: 1px solid black; } -/* line 3262, ../../../scss/_app_styles.scss */ +/* line 3263, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button { float: left; margin-left: 1em; margin-bottom: 0px; } -/* line 3267, ../../../scss/_app_styles.scss */ +/* line 3268, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button:last-child { float: right; } -/* line 3275, ../../../scss/_app_styles.scss */ +/* line 3276, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header { line-height: 2em; border-top: 1px solid #797979; @@ -26523,33 +26524,33 @@ div.show-image:hover div.fullscreen-icon{ text-align: center; padding: 0.7em 1em; } -/* line 3282, ../../../scss/_app_styles.scss */ +/* line 3283, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input, .gallery-page .gallery-header select, .gallery-page .gallery-header a { border-radius: 4px; margin-bottom: 0em; } -/* line 3286, ../../../scss/_app_styles.scss */ +/* line 3287, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input.prefix, .gallery-page .gallery-header select.prefix, .gallery-page .gallery-header a.prefix { border-radius: 0px; } -/* line 3291, ../../../scss/_app_styles.scss */ +/* line 3292, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header i { font-size: 1em; color: #A29E9E; } -/* line 3297, ../../../scss/_app_styles.scss */ +/* line 3298, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .filters .columns { padding-left: 5px; } -/* line 3303, ../../../scss/_app_styles.scss */ +/* line 3304, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .columns { padding-left: 5px; } -/* line 3307, ../../../scss/_app_styles.scss */ +/* line 3308, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags { text-align: left; } -/* line 3310, ../../../scss/_app_styles.scss */ +/* line 3311, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag { padding: 0px 10px; background: #cccccc; @@ -26559,73 +26560,73 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.8em; color: #757575; } -/* line 3319, ../../../scss/_app_styles.scss */ +/* line 3320, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag span { margin: 0px 2px 0px 6px; cursor: pointer; } -/* line 3324, ../../../scss/_app_styles.scss */ +/* line 3325, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags > div { display: inline-block; } -/* line 3331, ../../../scss/_app_styles.scss */ +/* line 3332, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading { font-size: 19px; } -/* line 3334, ../../../scss/_app_styles.scss */ +/* line 3335, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading a { background: #e7e7e7; border-width: 1px 0px 1px 1px; border-color: #cccccc; border-style: solid; } -/* line 3341, ../../../scss/_app_styles.scss */ +/* line 3342, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading input { border-radius: 0px; box-shadow: none; border-left: 0px; } -/* line 3348, ../../../scss/_app_styles.scss */ +/* line 3349, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel { background: #FFF; } -/* line 3351, ../../../scss/_app_styles.scss */ +/* line 3352, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content { min-height: 250px; } -/* line 3354, ../../../scss/_app_styles.scss */ +/* line 3355, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader { line-height: 3em; padding: 10px 0px; } -/* line 3358, ../../../scss/_app_styles.scss */ +/* line 3359, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader upload-file { margin: 0px; font-size: 1em; } -/* line 3363, ../../../scss/_app_styles.scss */ +/* line 3364, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions { font-size: 1.2em; color: #2a79e4; } -/* line 3367, ../../../scss/_app_styles.scss */ +/* line 3368, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions > div { display: inline-block; margin-right: 10px; } -/* line 3374, ../../../scss/_app_styles.scss */ +/* line 3375, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel { background: #fff; } -/* line 3377, ../../../scss/_app_styles.scss */ +/* line 3378, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row { margin: 10px 0px; } -/* line 3380, ../../../scss/_app_styles.scss */ +/* line 3381, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row > div:first-child { font-weight: 500; } -/* line 3385, ../../../scss/_app_styles.scss */ +/* line 3386, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .file-name { font-size: 20px; font-weight: bold; @@ -26633,11 +26634,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 10px 0px 20px; } -/* line 3396, ../../../scss/_app_styles.scss */ +/* line 3397, ../../../scss/_app_styles.scss */ .gallery-card .select-file { vertical-align: top; } -/* line 3400, ../../../scss/_app_styles.scss */ +/* line 3401, ../../../scss/_app_styles.scss */ .gallery-card .file-item { width: 80%; color: #fff; @@ -26648,17 +26649,17 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid black; overflow: hidden; } -/* line 3410, ../../../scss/_app_styles.scss */ +/* line 3411, ../../../scss/_app_styles.scss */ .gallery-card .file-item .item-thumbnail-image { height: 100%; padding: 1em; } -/* line 3415, ../../../scss/_app_styles.scss */ +/* line 3416, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-details { margin-top: 10%; display: none; } -/* line 3420, ../../../scss/_app_styles.scss */ +/* line 3421, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions { display: none; position: absolute; @@ -26667,11 +26668,11 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; font-size: 25px; } -/* line 3428, ../../../scss/_app_styles.scss */ +/* line 3429, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions i { margin: 0px 10px; } -/* line 3433, ../../../scss/_app_styles.scss */ +/* line 3434, ../../../scss/_app_styles.scss */ .gallery-card .file-item .filename-footer { position: absolute; bottom: 0px; @@ -26682,24 +26683,24 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 600; background: #999999; } -/* line 3444, ../../../scss/_app_styles.scss */ +/* line 3445, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover { background: #999999; } -/* line 3447, ../../../scss/_app_styles.scss */ +/* line 3448, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .item-thumbnail-image { opacity: 0.2; } -/* line 3451, ../../../scss/_app_styles.scss */ +/* line 3452, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .file-details, .gallery-card .file-item:hover .file-actions { display: block; } -/* line 3454, ../../../scss/_app_styles.scss */ +/* line 3455, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .filename-footer { display: none; } -/* line 3462, ../../../scss/_app_styles.scss */ +/* line 3463, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'], dialog[id^='reveal-'] { width: 100vw; height: 100vh; @@ -26763,49 +26764,49 @@ div.show-image:hover div.fullscreen-icon{ } }*/ } -/* line 3526, ../../../scss/_app_styles.scss */ +/* line 3527, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body, dialog[id^='reveal-'] .gmodal-body { position: relative; height: 100%; } -/* line 3529, ../../../scss/_app_styles.scss */ +/* line 3530, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel { background-color: #fff; height: 100%; } -/* line 3531, ../../../scss/_app_styles.scss */ +/* line 3532, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray { display: none; } -/* line 3535, ../../../scss/_app_styles.scss */ +/* line 3536, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe { height: 550px !important; width: 130% !important; } -/* line 3540, ../../../scss/_app_styles.scss */ +/* line 3541, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page { margin-top: -10px !important; } -/* line 3544, ../../../scss/_app_styles.scss */ +/* line 3545, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel span, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel span { display: none !important; } -/* line 3548, ../../../scss/_app_styles.scss */ +/* line 3549, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .button, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .button { display: none !important; } -/* line 3555, ../../../scss/_app_styles.scss */ +/* line 3556, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder { height: 100%; } -/* line 3558, ../../../scss/_app_styles.scss */ +/* line 3559, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item { height: 100%; width: 100%; background: transparent; padding: 0px; } -/* line 3564, ../../../scss/_app_styles.scss */ +/* line 3565, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image { width: auto; margin: 0px auto; @@ -26813,7 +26814,7 @@ div.show-image:hover div.fullscreen-icon{ padding: 1em 0em; height: 100%; } -/* line 3573, ../../../scss/_app_styles.scss */ +/* line 3574, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer { height: 2em; line-height: 2em; @@ -26825,32 +26826,32 @@ div.show-image:hover div.fullscreen-icon{ opacity: 0; background-color: rgba(0, 0, 0, 0.9); } -/* line 3584, ../../../scss/_app_styles.scss */ +/* line 3585, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details), dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details) { cursor: pointer; } -/* line 3588, ../../../scss/_app_styles.scss */ +/* line 3589, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details { text-align: center; width: 100%; } -/* line 3592, ../../../scss/_app_styles.scss */ +/* line 3593, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i { margin-left: 1em; margin-right: 0.5em; cursor: pointer; } -/* line 3600, ../../../scss/_app_styles.scss */ +/* line 3601, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer { opacity: 0.8; transition: opacity 1s; } -/* line 3605, ../../../scss/_app_styles.scss */ +/* line 3606, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel { height: 100%; padding: 0px 25px; } -/* line 3609, ../../../scss/_app_styles.scss */ +/* line 3610, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side { background: #fff; height: 100%; @@ -26871,31 +26872,31 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.9em; }*/ } -/* line 3613, ../../../scss/_app_styles.scss */ +/* line 3614, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div { width: 100%; display: block; margin: 12px 0px; padding: 0px 10px; } -/* line 3620, ../../../scss/_app_styles.scss */ +/* line 3621, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal { font-size: 20px; top: 6px; right: 26px; } -/* line 3627, ../../../scss/_app_styles.scss */ +/* line 3628, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span { vertical-align: top; margin-right: 5px; line-height: 35px; } -/* line 3632, ../../../scss/_app_styles.scss */ +/* line 3633, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating { background: #ccc; padding: 2px 5px; } -/* line 3638, ../../../scss/_app_styles.scss */ +/* line 3639, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a { padding: 3px 7px; background: #fff; @@ -26905,13 +26906,13 @@ div.show-image:hover div.fullscreen-icon{ margin-right: 10px; display: inline-block; } -/* line 3649, ../../../scss/_app_styles.scss */ +/* line 3650, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3654, ../../../scss/_app_styles.scss */ +/* line 3655, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26920,17 +26921,17 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3662, ../../../scss/_app_styles.scss */ +/* line 3663, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a { border-radius: inherit; } -/* line 3666, ../../../scss/_app_styles.scss */ +/* line 3667, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3674, ../../../scss/_app_styles.scss */ +/* line 3675, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span { font-weight: 500; font-size: 16px; @@ -26938,20 +26939,20 @@ div.show-image:hover div.fullscreen-icon{ line-height: 35px; } -/* line 3704, ../../../scss/_app_styles.scss */ +/* line 3705, ../../../scss/_app_styles.scss */ .user-comment { display: inline-flex; width: 100%; } -/* line 3708, ../../../scss/_app_styles.scss */ +/* line 3709, ../../../scss/_app_styles.scss */ .user-comment > div { display: inline-block; } -/* line 3711, ../../../scss/_app_styles.scss */ +/* line 3712, ../../../scss/_app_styles.scss */ .user-comment > div:last-child { width: 100%; } -/* line 3716, ../../../scss/_app_styles.scss */ +/* line 3717, ../../../scss/_app_styles.scss */ .user-comment .comment-heading { color: #9C9C9C; border-bottom: 1px solid grey; @@ -26959,71 +26960,71 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 10px; margin-top: 10px; } -/* line 3724, ../../../scss/_app_styles.scss */ +/* line 3725, ../../../scss/_app_styles.scss */ .user-comment .comment-heading > div { display: inline-block; } -/* line 3728, ../../../scss/_app_styles.scss */ +/* line 3729, ../../../scss/_app_styles.scss */ .user-comment .comment-heading .commentor-name span { font-weight: bold; color: #333333; } -/* line 3733, ../../../scss/_app_styles.scss */ +/* line 3734, ../../../scss/_app_styles.scss */ .user-comment .comment-footer { font-size: 0.9em; font-weight: 400; border: 1px solid #9E9E9E; background: #CCCCCC; } -/* line 3739, ../../../scss/_app_styles.scss */ +/* line 3740, ../../../scss/_app_styles.scss */ .user-comment .comment-footer > div { cursor: pointer; } -/* line 3742, ../../../scss/_app_styles.scss */ +/* line 3743, ../../../scss/_app_styles.scss */ .user-comment .comment-footer i { margin-right: 1em; } -/* line 3748, ../../../scss/_app_styles.scss */ +/* line 3749, ../../../scss/_app_styles.scss */ .user-comment .comment-container .comment-add { margin-top: 0.4em; } -/* line 3752, ../../../scss/_app_styles.scss */ +/* line 3753, ../../../scss/_app_styles.scss */ .user-comment .user-avatar { font-size: 10em; font-size: 5em; line-height: 1em; } -/* line 3759, ../../../scss/_app_styles.scss */ +/* line 3760, ../../../scss/_app_styles.scss */ .course-content { /*border-top: 1px solid #000;*/ } -/* line 3761, ../../../scss/_app_styles.scss */ +/* line 3762, ../../../scss/_app_styles.scss */ .course-content .alert-box { padding: 5px; font-size: 1em; } -/* line 3765, ../../../scss/_app_styles.scss */ +/* line 3766, ../../../scss/_app_styles.scss */ .course-content .alert-box > div { display: inline-block; vertical-align: top; } -/* line 3769, ../../../scss/_app_styles.scss */ +/* line 3770, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note { width: 96%; } -/* line 3772, ../../../scss/_app_styles.scss */ +/* line 3773, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note > div:nth-child(2) { color: #000; margin-top: 5px; padding-top: 5px; border-top: 1px solid #000; } -/* line 3779, ../../../scss/_app_styles.scss */ +/* line 3780, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-icon { margin: 0px 5px; } -/* line 3782, ../../../scss/_app_styles.scss */ +/* line 3783, ../../../scss/_app_styles.scss */ .course-content .alert-box .close { position: relative; top: 0px; @@ -27033,17 +27034,17 @@ div.show-image:hover div.fullscreen-icon{ text-decoration: underline; color: #085394 !important; } -/* line 3793, ../../../scss/_app_styles.scss */ +/* line 3794, ../../../scss/_app_styles.scss */ .course-content .collection { overflow: visible; } -/* line 3796, ../../../scss/_app_styles.scss */ +/* line 3797, ../../../scss/_app_styles.scss */ .course-content .collection .course-module { position: relative; border-bottom: 1px solid #CCC; padding: 1em 0em; } -/* line 3803, ../../../scss/_app_styles.scss */ +/* line 3804, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-header .fa { position: absolute; left: -1.1em; @@ -27052,58 +27053,58 @@ div.show-image:hover div.fullscreen-icon{ background: #EAEAEA; font-size: 1.4em; } -/* line 3821, ../../../scss/_app_styles.scss */ +/* line 3822, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-page:hover span { text-decoration: underline; color: #9900ff !important; } -/* line 3826, ../../../scss/_app_styles.scss */ +/* line 3827, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .jqtree-tree .jqtree-title { cursor: pointer; } -/* line 3830, ../../../scss/_app_styles.scss */ +/* line 3831, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part { margin-left: 1em; } -/* line 3833, ../../../scss/_app_styles.scss */ +/* line 3834, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler { color: #585858; } -/* line 3836, ../../../scss/_app_styles.scss */ +/* line 3837, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler.jqtree-closed { color: #CCC; } -/* line 3840, ../../../scss/_app_styles.scss */ +/* line 3841, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part span { vertical-align: top; } -/* line 3843, ../../../scss/_app_styles.scss */ +/* line 3844, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .fa { display: inline; margin-right: 5px; } -/* line 3853, ../../../scss/_app_styles.scss */ +/* line 3854, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header { font-weight: 400; font-size: 1.3em; border-bottom: 1px solid #707070; color: #797979; } -/* line 3859, ../../../scss/_app_styles.scss */ +/* line 3860, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header > div { padding: 0.3em 0em; } -/* line 3863, ../../../scss/_app_styles.scss */ +/* line 3864, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header a { color: #797979; } -/* line 3867, ../../../scss/_app_styles.scss */ +/* line 3868, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous { cursor: pointer; padding: 0px; } -/* line 3871, ../../../scss/_app_styles.scss */ +/* line 3872, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous a:first-child { border-right: 1px solid grey; padding-right: 5px; @@ -27111,27 +27112,27 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3880, ../../../scss/_app_styles.scss */ +/* line 3881, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header i { margin-right: 0.1em; } -/* line 3884, ../../../scss/_app_styles.scss */ +/* line 3885, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .unit-title { text-align: center; color: #999999; } -/* line 3888, ../../../scss/_app_styles.scss */ +/* line 3889, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-title { text-align: center; color: #000; } -/* line 3892, ../../../scss/_app_styles.scss */ +/* line 3893, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note { color: #2a78e3; cursor: pointer; padding: 0px; } -/* line 3897, ../../../scss/_app_styles.scss */ +/* line 3898, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note a:last-child { border-left: 1px solid grey; padding-left: 5px; @@ -27139,11 +27140,11 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3905, ../../../scss/_app_styles.scss */ +/* line 3906, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note > div { float: right; } -/* line 3910, ../../../scss/_app_styles.scss */ +/* line 3911, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container { border: 1px solid black; height: 100%; @@ -27151,18 +27152,18 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 2em; padding: 0em 1em; } -/* line 3917, ../../../scss/_app_styles.scss */ +/* line 3918, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides { height: 100%; } -/* line 3921, ../../../scss/_app_styles.scss */ +/* line 3922, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 3929, ../../../scss/_app_styles.scss */ +/* line 3930, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -27170,12 +27171,12 @@ div.show-image:hover div.fullscreen-icon{ color: #999999; margin-left: 12%; } -/* line 3937, ../../../scss/_app_styles.scss */ +/* line 3938, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 3943, ../../../scss/_app_styles.scss */ +/* line 3944, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -27184,21 +27185,21 @@ div.show-image:hover div.fullscreen-icon{ display: none; color: #8E8E8E; } -/* line 3952, ../../../scss/_app_styles.scss */ +/* line 3953, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 3957, ../../../scss/_app_styles.scss */ +/* line 3958, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 3959, ../../../scss/_app_styles.scss */ +/* line 3960, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 3962, ../../../scss/_app_styles.scss */ +/* line 3963, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -27209,24 +27210,24 @@ div.show-image:hover div.fullscreen-icon{ color: #757575; margin-right: 20px; } -/* line 3972, ../../../scss/_app_styles.scss */ +/* line 3973, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 3976, ../../../scss/_app_styles.scss */ +/* line 3977, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 3979, ../../../scss/_app_styles.scss */ +/* line 3980, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 3984, ../../../scss/_app_styles.scss */ +/* line 3985, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 3988, ../../../scss/_app_styles.scss */ +/* line 3989, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content { width: 75%; margin: 0px auto; @@ -27237,7 +27238,7 @@ div.show-image:hover div.fullscreen-icon{ min-height: 50px; position: relative; } -/* line 3998, ../../../scss/_app_styles.scss */ +/* line 3999, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -27245,15 +27246,15 @@ div.show-image:hover div.fullscreen-icon{ left: 8px; top: 4px; } -/* line 4006, ../../../scss/_app_styles.scss */ +/* line 4007, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 4008, ../../../scss/_app_styles.scss */ +/* line 4009, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 4011, ../../../scss/_app_styles.scss */ +/* line 4012, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -27263,27 +27264,27 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.8px; color: #999999; } -/* line 4020, ../../../scss/_app_styles.scss */ +/* line 4021, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 4026, ../../../scss/_app_styles.scss */ +/* line 4027, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 4033, ../../../scss/_app_styles.scss */ +/* line 4034, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section { width: 75%; margin: 0px auto; } -/* line 4037, ../../../scss/_app_styles.scss */ +/* line 4038, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section .user-prof-image { font-size: 7em; text-align: center; } -/* line 4042, ../../../scss/_app_styles.scss */ +/* line 4043, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section #postCommentBtn { padding: 2em 3em; } @@ -27304,28 +27305,28 @@ div.show-image:hover div.fullscreen-icon{ position: absolute; } */ -/* line 4063, ../../../scss/_app_styles.scss */ +/* line 4064, ../../../scss/_app_styles.scss */ .rate-scale { cursor: pointer; } -/* line 4066, ../../../scss/_app_styles.scss */ +/* line 4067, ../../../scss/_app_styles.scss */ .rate-scale i { margin-right: 0em !important; padding-right: 0.5em; } -/* line 4070, ../../../scss/_app_styles.scss */ +/* line 4071, ../../../scss/_app_styles.scss */ .rate-scale .hover-rating, .rate-scale .rated { color: yellow; } -/* line 4076, ../../../scss/_app_styles.scss */ +/* line 4077, ../../../scss/_app_styles.scss */ #left-tab { position: absolute; left: 0px; bottom: 0px; } -/* line 4081, ../../../scss/_app_styles.scss */ +/* line 4082, ../../../scss/_app_styles.scss */ #right-tab { position: absolute; right: 0px; @@ -27333,12 +27334,12 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 6px; } -/* line 4087, ../../../scss/_app_styles.scss */ +/* line 4088, ../../../scss/_app_styles.scss */ #enrolled-btn { margin-bottom: 0px; } -/* line 4090, ../../../scss/_app_styles.scss */ +/* line 4091, ../../../scss/_app_styles.scss */ div.absol-descrip { position: absolute; top: 190px; @@ -27349,14 +27350,14 @@ div.absol-descrip { } /*overview-summary styling*/ -/* line 4100, ../../../scss/_app_styles.scss */ +/* line 4101, ../../../scss/_app_styles.scss */ .course-title, .course-date { color: white; padding-top: 0px; padding-bottom: 0px; } -/* line 4105, ../../../scss/_app_styles.scss */ +/* line 4106, ../../../scss/_app_styles.scss */ .course-description { color: #cccccc; padding-top: 0px; @@ -27368,48 +27369,48 @@ div.absol-descrip { overflow: hidden; } -/* line 4115, ../../../scss/_app_styles.scss */ +/* line 4116, ../../../scss/_app_styles.scss */ .course-para { padding: 0; } -/* line 4119, ../../../scss/_app_styles.scss */ +/* line 4120, ../../../scss/_app_styles.scss */ course-title { padding-left: 10px; } -/* line 4122, ../../../scss/_app_styles.scss */ +/* line 4123, ../../../scss/_app_styles.scss */ .enroll-status-margin { margin-bottom: 0; } -/* line 4126, ../../../scss/_app_styles.scss */ +/* line 4127, ../../../scss/_app_styles.scss */ .progress-summery { color: white; margin-top: 20px; } -/* line 4130, ../../../scss/_app_styles.scss */ +/* line 4131, ../../../scss/_app_styles.scss */ .course-description-thumbnails { margin: 0; padding: 0; } -/* line 4135, ../../../scss/_app_styles.scss */ +/* line 4136, ../../../scss/_app_styles.scss */ .left-shift { padding: 0; color: white !important; } /*course overview for Small screens*/ -/* line 4141, ../../../scss/_app_styles.scss */ +/* line 4142, ../../../scss/_app_styles.scss */ .course { /*position:relative;*/ border: 1px solid black; background-color: #999999; } -/* line 4147, ../../../scss/_app_styles.scss */ +/* line 4148, ../../../scss/_app_styles.scss */ .course-contents { /*position:absolute;*/ width: 100%; @@ -27417,7 +27418,7 @@ course-title { /*Medium screens*/ @media only screen and (min-width: 40.063em) { - /* line 4154, ../../../scss/_app_styles.scss */ + /* line 4155, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27425,7 +27426,7 @@ course-title { background-color: #999999; } - /* line 4160, ../../../scss/_app_styles.scss */ + /* line 4161, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27435,7 +27436,7 @@ course-title { /* min-width 641px, medium screens */ /* Large screens*/ @media only screen and (min-width: 64.063em) { - /* line 4170, ../../../scss/_app_styles.scss */ + /* line 4171, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27443,7 +27444,7 @@ course-title { background-color: #999999; } - /* line 4176, ../../../scss/_app_styles.scss */ + /* line 4177, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27452,14 +27453,14 @@ course-title { } /* min-width 1025px, large screens */ /*General config css*/ -/* line 4183, ../../../scss/_app_styles.scss */ +/* line 4184, ../../../scss/_app_styles.scss */ .alert-box.warning { background: #ffe7c0; border-color: #bf9000; color: #966000; } -/* line 4190, ../../../scss/_app_styles.scss */ +/* line 4191, ../../../scss/_app_styles.scss */ .badge { display: inline-block; line-height: 22px; @@ -27476,7 +27477,7 @@ course-title { font-size: 1.8em; } -/* line 4206, ../../../scss/_app_styles.scss */ +/* line 4207, ../../../scss/_app_styles.scss */ .badge { background: #67c1ef; border-color: #30aae9; @@ -27486,7 +27487,7 @@ course-title { background-image: linear-gradient(to bottom, #acddf6, #67c1ef); } -/* line 4215, ../../../scss/_app_styles.scss */ +/* line 4216, ../../../scss/_app_styles.scss */ .badge.green { background: #77cc51; border-color: #59ad33; @@ -27496,7 +27497,7 @@ course-title { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 4224, ../../../scss/_app_styles.scss */ +/* line 4225, ../../../scss/_app_styles.scss */ .badge.yellow { background: #faba3e; border-color: #f4a306; @@ -27506,7 +27507,7 @@ course-title { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 4234, ../../../scss/_app_styles.scss */ +/* line 4235, ../../../scss/_app_styles.scss */ .badge.red { background: #fa623f; border-color: #fa5a35; @@ -27517,12 +27518,12 @@ course-title { } /* Course/ Event Card CSS*/ -/* line 4250, ../../../scss/_app_styles.scss */ +/* line 4251, ../../../scss/_app_styles.scss */ .card-image-wrapper { position: relative; } -/* line 4254, ../../../scss/_app_styles.scss */ +/* line 4255, ../../../scss/_app_styles.scss */ .event-card { padding: 0px; min-height: 22rem; @@ -27531,12 +27532,12 @@ course-title { border-radius: 10px; background-color: #fff; } -/* line 4262, ../../../scss/_app_styles.scss */ +/* line 4263, ../../../scss/_app_styles.scss */ .event-card:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 4267, ../../../scss/_app_styles.scss */ +/* line 4268, ../../../scss/_app_styles.scss */ .event-card .event-card-status { z-index: 99; width: auto; @@ -27551,31 +27552,31 @@ course-title { border-radius: 4px; letter-spacing: 0.3px; } -/* line 4281, ../../../scss/_app_styles.scss */ +/* line 4282, ../../../scss/_app_styles.scss */ .event-card .event-card-status.open { background-color: #00b300; } -/* line 4284, ../../../scss/_app_styles.scss */ +/* line 4285, ../../../scss/_app_styles.scss */ .event-card .event-card-status.closed { background-color: red; } -/* line 4287, ../../../scss/_app_styles.scss */ +/* line 4288, ../../../scss/_app_styles.scss */ .event-card .event-card-status.in-progress { background-color: #00b300; } -/* line 4290, ../../../scss/_app_styles.scss */ +/* line 4291, ../../../scss/_app_styles.scss */ .event-card .event-card-status.forthcoming { background-color: #F2910D; } -/* line 4293, ../../../scss/_app_styles.scss */ +/* line 4294, ../../../scss/_app_styles.scss */ .event-card .event-card-status.upcoming { background-color: #F2910D; } -/* line 4297, ../../../scss/_app_styles.scss */ +/* line 4298, ../../../scss/_app_styles.scss */ .event-card .event-card-status.completed { background-color: #4d4d4d; } -/* line 4302, ../../../scss/_app_styles.scss */ +/* line 4303, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications { position: absolute; top: 2px; @@ -27584,46 +27585,46 @@ course-title { color: #F04124; font-weight: 600; } -/* line 4310, ../../../scss/_app_styles.scss */ +/* line 4311, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications .badge { padding: 0px 5px; font-size: 1.4em; font-weight: 600; } -/* line 4317, ../../../scss/_app_styles.scss */ +/* line 4318, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status { font-weight: 500; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 4322, ../../../scss/_app_styles.scss */ +/* line 4323, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.open { color: #00b300; } -/* line 4326, ../../../scss/_app_styles.scss */ +/* line 4327, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.closed { color: red; } -/* line 4330, ../../../scss/_app_styles.scss */ +/* line 4331, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.in-progress { color: #000; } -/* line 4333, ../../../scss/_app_styles.scss */ +/* line 4334, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.forthcoming { color: #F2910D; } -/* line 4337, ../../../scss/_app_styles.scss */ +/* line 4338, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.completed { color: #4d4d4d; } -/* line 4341, ../../../scss/_app_styles.scss */ +/* line 4342, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status .event-time { font-size: 0.7em; display: block; font-weight: 400; display: inline; } -/* line 4349, ../../../scss/_app_styles.scss */ +/* line 4350, ../../../scss/_app_styles.scss */ .event-card .event-card-title { color: #0d0d0d; display: inline-block; @@ -27634,19 +27635,19 @@ course-title { font-size: 2em; font-weight: 400; } -/* line 4360, ../../../scss/_app_styles.scss */ +/* line 4361, ../../../scss/_app_styles.scss */ .event-card .event-card-desc { word-wrap: break-word; font-size: 0.6em; color: #333333; padding-left: 4px; } -/* line 4366, ../../../scss/_app_styles.scss */ +/* line 4367, ../../../scss/_app_styles.scss */ .event-card p { margin: 0px; padding: 10px; } -/* line 4372, ../../../scss/_app_styles.scss */ +/* line 4373, ../../../scss/_app_styles.scss */ .event-card .event-card-image { padding: 0px; margin: 0px; @@ -27658,7 +27659,7 @@ course-title { background-color: #e5e5e5; border-radius: 10px 10px 0px 0px; } -/* line 4383, ../../../scss/_app_styles.scss */ +/* line 4384, ../../../scss/_app_styles.scss */ .event-card .event-card-image img { border-radius: 2px 2px 0 0; display: block; @@ -27667,7 +27668,7 @@ course-title { opacity: 0.25; height: 100%; } -/* line 4392, ../../../scss/_app_styles.scss */ +/* line 4393, ../../../scss/_app_styles.scss */ .event-card .event-card-image i { font-size: 7rem; opacity: 0.75; @@ -27681,51 +27682,51 @@ course-title { text-transform: none; text-decoration: inherit; } -/* line 4406, ../../../scss/_app_styles.scss */ +/* line 4407, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.file:before { content: "\f18e"; } -/* line 4409, ../../../scss/_app_styles.scss */ +/* line 4410, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.page:before { content: "\f18e"; } -/* line 4412, ../../../scss/_app_styles.scss */ +/* line 4413, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.collection:before { content: "\f18a"; } -/* line 4415, ../../../scss/_app_styles.scss */ +/* line 4416, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.documents:before { content: "\f18b"; } -/* line 4418, ../../../scss/_app_styles.scss */ +/* line 4419, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.pdf:before { content: "\f18b"; } -/* line 4421, ../../../scss/_app_styles.scss */ +/* line 4422, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.text:before { content: "\f18e"; } -/* line 4424, ../../../scss/_app_styles.scss */ +/* line 4425, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.interactives:before { content: "\f1b2"; } -/* line 4427, ../../../scss/_app_styles.scss */ +/* line 4428, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.ebooks:before { content: "\f11e"; } -/* line 4430, ../../../scss/_app_styles.scss */ +/* line 4431, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.images:before { content: "\f125"; } -/* line 4433, ../../../scss/_app_styles.scss */ +/* line 4434, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.audios:before, .event-card .event-card-image i.audio:before { content: "\f17b"; } -/* line 4436, ../../../scss/_app_styles.scss */ +/* line 4437, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.videos:before, .event-card .event-card-image i.video:before { content: "\f20e"; } -/* line 4440, ../../../scss/_app_styles.scss */ +/* line 4441, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer { padding: 0.7em 1em; border-top: 1px solid #DCDCDC; @@ -27736,7 +27737,7 @@ course-title { background-color: #F3F3F3; border-radius: 0px 0px 10px 10px; } -/* line 4450, ../../../scss/_app_styles.scss */ +/* line 4451, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .footer-label { text-transform: uppercase; font-size: 10px; @@ -27744,54 +27745,54 @@ course-title { margin-bottom: 2px; color: #ADADAD; } -/* line 4458, ../../../scss/_app_styles.scss */ +/* line 4459, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date { color: #929292; font-size: 0.85em; letter-spacing: 0.5px; } -/* line 4463, ../../../scss/_app_styles.scss */ +/* line 4464, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date i:not(.edit-course-duration, .edit-course-enrollment) { margin-right: 0.3em; } -/* line 4467, ../../../scss/_app_styles.scss */ +/* line 4468, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .row { margin: 10px 0px 0px; } -/* line 4471, ../../../scss/_app_styles.scss */ +/* line 4472, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration, .event-card .edit-course-enrollment { float: right; font-size: 1.5em; color: #DADADA; } -/* line 4475, ../../../scss/_app_styles.scss */ +/* line 4476, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration:hover, .event-card .edit-course-enrollment:hover { color: #565656; } -/* line 4479, ../../../scss/_app_styles.scss */ +/* line 4480, ../../../scss/_app_styles.scss */ .event-card .published.scard-action { background: #A6D9CB; } -/* line 4483, ../../../scss/_app_styles.scss */ +/* line 4484, ../../../scss/_app_styles.scss */ .event-card .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 4488, ../../../scss/_app_styles.scss */ +/* line 4489, ../../../scss/_app_styles.scss */ .event-card .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4493, ../../../scss/_app_styles.scss */ +/* line 4494, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4497, ../../../scss/_app_styles.scss */ +/* line 4498, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 4501, ../../../scss/_app_styles.scss */ +/* line 4502, ../../../scss/_app_styles.scss */ .event-card .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -27802,17 +27803,17 @@ course-title { /* End Course/events Card CSS*/ /* Landing page */ -/* line 4513, ../../../scss/_app_styles.scss */ +/* line 4514, ../../../scss/_app_styles.scss */ .landing_page { position: relative; text-align: center; } -/* line 4517, ../../../scss/_app_styles.scss */ +/* line 4518, ../../../scss/_app_styles.scss */ .landing_page .panel { background-color: inherit; border: none; } -/* line 4522, ../../../scss/_app_styles.scss */ +/* line 4523, ../../../scss/_app_styles.scss */ .landing_page .landing_page_background { height: 100%; width: 100%; @@ -27824,24 +27825,24 @@ course-title { background: -ms-linear-gradient(left, #E9A900, #B0108D); background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 4534, ../../../scss/_app_styles.scss */ +/* line 4535, ../../../scss/_app_styles.scss */ .landing_page .clix_brief { text-align: left; padding: 20px 5%; } -/* line 4538, ../../../scss/_app_styles.scss */ +/* line 4539, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 30px 20px; height: 70px; } @media screen and (max-width: 450px) { - /* line 4538, ../../../scss/_app_styles.scss */ + /* line 4539, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 25px 10px; height: 55px; } } -/* line 4546, ../../../scss/_app_styles.scss */ +/* line 4547, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { color: #fff; font-size: 26px; @@ -27849,12 +27850,12 @@ course-title { font-family: 'ubuntu-light'; } @media screen and (max-width: 450px) { - /* line 4546, ../../../scss/_app_styles.scss */ + /* line 4547, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { font-size: 18px; } } -/* line 4557, ../../../scss/_app_styles.scss */ +/* line 4558, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { background-color: rgba(255, 255, 255, 0.92); border-radius: 10px; @@ -27865,12 +27866,12 @@ course-title { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); } @media screen and (min-width: 1025px) { - /* line 4557, ../../../scss/_app_styles.scss */ + /* line 4558, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { margin: 200px auto; } } -/* line 4569, ../../../scss/_app_styles.scss */ +/* line 4570, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix > span { font-family: 'ubuntu-bold'; color: #6658af; @@ -27881,7 +27882,7 @@ course-title { display: inline-block; vertical-align: middle; } -/* line 4579, ../../../scss/_app_styles.scss */ +/* line 4580, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix p { color: #b0108d; font-size: 21px; @@ -27889,28 +27890,28 @@ course-title { font-weight: 300; font-family: 'ubuntu-light'; } -/* line 4587, ../../../scss/_app_styles.scss */ +/* line 4588, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix img { height: 30px; } -/* line 4590, ../../../scss/_app_styles.scss */ +/* line 4591, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form { margin-top: 30px; } -/* line 4593, ../../../scss/_app_styles.scss */ +/* line 4594, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form input { font-size: 24px; height: 45px; margin: 5px 0px 24px; } -/* line 4600, ../../../scss/_app_styles.scss */ +/* line 4601, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix input.button { font-size: 15px; border-radius: 5px; font-family: 'ubuntu-bold'; text-transform: uppercase; } -/* line 4606, ../../../scss/_app_styles.scss */ +/* line 4607, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix a.grey { color: #999; /*display: inline-block; @@ -27921,7 +27922,7 @@ course-title { font-family: 'ubuntu-bold'; text-transform: uppercase;*/ } -/* line 4617, ../../../scss/_app_styles.scss */ +/* line 4618, ../../../scss/_app_styles.scss */ .landing_page .flowers { left: 50px; height: 500px; @@ -27929,18 +27930,18 @@ course-title { opacity: 0.6; } @media screen and (max-width: 450px) { - /* line 4617, ../../../scss/_app_styles.scss */ + /* line 4618, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 250px; } } @media screen and (min-width: 451px) and (max-width: 1025px) { - /* line 4617, ../../../scss/_app_styles.scss */ + /* line 4618, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 350px; } } -/* line 4629, ../../../scss/_app_styles.scss */ +/* line 4630, ../../../scss/_app_styles.scss */ .landing_page .bees { position: absolute; top: 5px; @@ -27948,40 +27949,40 @@ course-title { height: 150px; } @media screen and (max-width: 450px) { - /* line 4629, ../../../scss/_app_styles.scss */ + /* line 4630, ../../../scss/_app_styles.scss */ .landing_page .bees { right: 15px; height: 100px; } } -/* line 4639, ../../../scss/_app_styles.scss */ +/* line 4640, ../../../scss/_app_styles.scss */ .landing_page h2 { color: #A0148E; font-weight: 600; } -/* line 4643, ../../../scss/_app_styles.scss */ +/* line 4644, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text { color: #6153ae; } -/* line 4646, ../../../scss/_app_styles.scss */ +/* line 4647, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text p { font-size: 18px; } /* END of Landing page */ -/* line 4652, ../../../scss/_app_styles.scss */ +/* line 4653, ../../../scss/_app_styles.scss */ .audio-caption { cursor: pointer; } -/* line 4656, ../../../scss/_app_styles.scss */ +/* line 4657, ../../../scss/_app_styles.scss */ .gallery-image { cursor: pointer; max-height: 100px; border: 1px solid !important; } -/* line 4662, ../../../scss/_app_styles.scss */ +/* line 4663, ../../../scss/_app_styles.scss */ .show-collection { color: black !important; font-size: 1.1em; @@ -27994,25 +27995,25 @@ course-title { border: 1px solid #eee; } -/* line 4674, ../../../scss/_app_styles.scss */ +/* line 4675, ../../../scss/_app_styles.scss */ .processing-screen { background-color: #0eacb5 !important; } -/* line 4678, ../../../scss/_app_styles.scss */ +/* line 4679, ../../../scss/_app_styles.scss */ .processing-screen-label { width: 500px !important; font-style: normal !important; } -/* line 4682, ../../../scss/_app_styles.scss */ +/* line 4683, ../../../scss/_app_styles.scss */ h3 { font-size: 20px; color: #164A7B; font-family: 'OpenSans-Semibold'; } -/* line 4688, ../../../scss/_app_styles.scss */ +/* line 4689, ../../../scss/_app_styles.scss */ h5 { color: #99aaba; font-size: 10px; @@ -28021,7 +28022,7 @@ h5 { margin-left: 5px; } -/* line 4696, ../../../scss/_app_styles.scss */ +/* line 4697, ../../../scss/_app_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28030,12 +28031,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4703, ../../../scss/_app_styles.scss */ +/* line 4704, ../../../scss/_app_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 4707, ../../../scss/_app_styles.scss */ +/* line 4708, ../../../scss/_app_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28044,12 +28045,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4714, ../../../scss/_app_styles.scss */ +/* line 4715, ../../../scss/_app_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 4720, ../../../scss/_app_styles.scss */ +/* line 4721, ../../../scss/_app_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28061,7 +28062,7 @@ h5 { color: #6153AE; } -/* line 4731, ../../../scss/_app_styles.scss */ +/* line 4732, ../../../scss/_app_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28074,14 +28075,14 @@ h5 { display: inline-block; color: #6153AE; } -/* line 4743, ../../../scss/_app_styles.scss */ +/* line 4744, ../../../scss/_app_styles.scss */ .add-note-btn:hover { cursor: pointer; color: #6153AE; background-color: #ffffff; } -/* line 4751, ../../../scss/_app_styles.scss */ +/* line 4752, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -28093,7 +28094,7 @@ h5 { border: 2px solid #6153ae; background-color: #dbd4e1; } -/* line 4762, ../../../scss/_app_styles.scss */ +/* line 4763, ../../../scss/_app_styles.scss */ .explore-button:hover { cursor: pointer; } @@ -28101,12 +28102,12 @@ h5 { /*Blue color variable*/ /*Orange color variables*/ /* module detail settings drop */ -/* line 4793, ../../../scss/_app_styles.scss */ +/* line 4794, ../../../scss/_app_styles.scss */ .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4796, ../../../scss/_app_styles.scss */ +/* line 4797, ../../../scss/_app_styles.scss */ .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28119,17 +28120,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4807, ../../../scss/_app_styles.scss */ +/* line 4808, ../../../scss/_app_styles.scss */ .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4813, ../../../scss/_app_styles.scss */ +/* line 4814, ../../../scss/_app_styles.scss */ .explore-settings-drop a { font-size: 16px; } -/* line 4816, ../../../scss/_app_styles.scss */ +/* line 4817, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28137,12 +28138,12 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4816, ../../../scss/_app_styles.scss */ +/* line 4817, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4819, ../../../scss/_app_styles.scss */ +/* line 4820, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28155,17 +28156,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4830, ../../../scss/_app_styles.scss */ +/* line 4831, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4836, ../../../scss/_app_styles.scss */ +/* line 4837, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop a { font-size: 16px; } -/* line 4839, ../../../scss/_app_styles.scss */ +/* line 4840, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28173,33 +28174,33 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4847, ../../../scss/_app_styles.scss */ +/* line 4848, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4851, ../../../scss/_app_styles.scss */ +/* line 4852, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4864, ../../../scss/_app_styles.scss */ +/* line 4865, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4868, ../../../scss/_app_styles.scss */ +/* line 4869, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4875, ../../../scss/_app_styles.scss */ +/* line 4876, ../../../scss/_app_styles.scss */ .edit_button { color: #717171; } -/* line 4877, ../../../scss/_app_styles.scss */ +/* line 4878, ../../../scss/_app_styles.scss */ .edit_button:hover { border-left: 2px solid #ce7869; } -/* line 4883, ../../../scss/_app_styles.scss */ +/* line 4884, ../../../scss/_app_styles.scss */ .left-btn { margin-top: 0px; margin-right: 0px; @@ -28211,7 +28212,7 @@ h5 { color: #555555; font-size: 11px; } -/* line 4893, ../../../scss/_app_styles.scss */ +/* line 4894, ../../../scss/_app_styles.scss */ .left-btn:hover { display: block; padding: 0.5rem; @@ -28219,7 +28220,7 @@ h5 { border-left: 2px solid #ce7869; } -/* line 4902, ../../../scss/_app_styles.scss */ +/* line 4903, ../../../scss/_app_styles.scss */ .chnge-img:hover { display: block; padding: 0.5rem; @@ -28227,14 +28228,14 @@ h5 { border-left: 2px solid #ce7869; } -/* line 4913, ../../../scss/_app_styles.scss */ +/* line 4914, ../../../scss/_app_styles.scss */ .lms_page .lms_banner { width: 100%; height: 150px; background-size: 100% 100%; position: relative; } -/* line 4921, ../../../scss/_app_styles.scss */ +/* line 4922, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -28247,27 +28248,27 @@ h5 { bottom: 0; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 4934, ../../../scss/_app_styles.scss */ +/* line 4935, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before a { cursor: pointer; } -/* line 4939, ../../../scss/_app_styles.scss */ +/* line 4940, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .div-height { height: 150px !important; background-size: 100% 100%; position: absolute !important; } -/* line 4947, ../../../scss/_app_styles.scss */ +/* line 4948, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .enroll_unit > a { cursor: pointer; } -/* line 4951, ../../../scss/_app_styles.scss */ +/* line 4952, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 4957, ../../../scss/_app_styles.scss */ +/* line 4958, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .unit_name { font-size: 36px; font-family: OpenSans-Semibold; @@ -28278,17 +28279,17 @@ h5 { transition: border-radius .2s; text-shadow: 3px 2px #164a7b; } -/* line 4968, ../../../scss/_app_styles.scss */ +/* line 4969, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .right-margin { margin-right: 46px; } -/* line 4977, ../../../scss/_app_styles.scss */ +/* line 4978, ../../../scss/_app_styles.scss */ .border-bottom-lms-header { border-bottom: 1px solid #00000029; } -/* line 4982, ../../../scss/_app_styles.scss */ +/* line 4983, ../../../scss/_app_styles.scss */ .lms_secondary_header { width: 100%; position: relative; @@ -28296,11 +28297,11 @@ h5 { box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 4988, ../../../scss/_app_styles.scss */ +/* line 4989, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions { margin-top: 8px; } -/* line 4991, ../../../scss/_app_styles.scss */ +/* line 4992, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28312,11 +28313,11 @@ h5 { opacity: 0.8; } @media screen and (min-width: 980px) and (max-width: 1000px) { - /* line 5005, ../../../scss/_app_styles.scss */ + /* line 5006, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions { margin-top: 8px; } - /* line 5008, ../../../scss/_app_styles.scss */ + /* line 5009, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions > span { margin-left: 50px; background: #2e3f51; @@ -28330,16 +28331,16 @@ h5 { } } -/* line 5028, ../../../scss/_app_styles.scss */ +/* line 5029, ../../../scss/_app_styles.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; } -/* line 5031, ../../../scss/_app_styles.scss */ +/* line 5032, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 5034, ../../../scss/_app_styles.scss */ +/* line 5035, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a { list-style-type: none; display: inline-block; @@ -28350,23 +28351,23 @@ ul.nav_menu_1 > li > a { letter-spacing: 0.8px; border-bottom: 3px solid transparent; } -/* line 5045, ../../../scss/_app_styles.scss */ +/* line 5046, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-bottom: 3px solid #a2238d; } -/* line 5056, ../../../scss/_app_styles.scss */ +/* line 5057, ../../../scss/_app_styles.scss */ ul.authoring-tab { margin-bottom: 0px; display: inline; width: 50%; } -/* line 5060, ../../../scss/_app_styles.scss */ +/* line 5061, ../../../scss/_app_styles.scss */ ul.authoring-tab > li { display: inline-block; background-color: #164a7b; } -/* line 5063, ../../../scss/_app_styles.scss */ +/* line 5064, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a { list-style-type: none; margin-right: -4px; @@ -28379,13 +28380,13 @@ ul.authoring-tab > li > a { border-bottom: 3px solid transparent; color: #ffffff !important; } -/* line 5074, ../../../scss/_app_styles.scss */ +/* line 5075, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-bottom: 3px solid #a2238d; } /* Secondary Top Bar */ -/* line 5083, ../../../scss/_app_styles.scss */ +/* line 5084, ../../../scss/_app_styles.scss */ .secondary-header-tabs { color: #719dc7; font-weight: 400; @@ -28395,11 +28396,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -webkit-transition: color 1s ease, border-color 1s ease; display: inline-block; } -/* line 5092, ../../../scss/_app_styles.scss */ +/* line 5093, ../../../scss/_app_styles.scss */ .secondary-header-tabs:hover { color: #164A7B; } -/* line 5096, ../../../scss/_app_styles.scss */ +/* line 5097, ../../../scss/_app_styles.scss */ .secondary-header-tabs.active { color: #164A7B; border-bottom: 2px solid #164A7B; @@ -28407,7 +28408,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: 600; } -/* line 5106, ../../../scss/_app_styles.scss */ +/* line 5107, ../../../scss/_app_styles.scss */ .secondary-header-button { color: #3c556d; font-weight: 700; @@ -28420,12 +28421,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-size: 13px; letter-spacing: 1.2px; } -/* line 5118, ../../../scss/_app_styles.scss */ +/* line 5119, ../../../scss/_app_styles.scss */ .secondary-header-button:hover { opacity: 0.5; } -/* line 5125, ../../../scss/_app_styles.scss */ +/* line 5126, ../../../scss/_app_styles.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -28434,34 +28435,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: -8px; } -/* line 5136, ../../../scss/_app_styles.scss */ +/* line 5137, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 5141, ../../../scss/_app_styles.scss */ +/* line 5142, ../../../scss/_app_styles.scss */ .top-bar-second .name { text-align: center; } -/* line 5144, ../../../scss/_app_styles.scss */ +/* line 5145, ../../../scss/_app_styles.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 5154, ../../../scss/_app_styles.scss */ +/* line 5155, ../../../scss/_app_styles.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 5162, ../../../scss/_app_styles.scss */ +/* line 5163, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 5164, ../../../scss/_app_styles.scss */ +/* line 5165, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -28470,31 +28471,31 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; letter-spacing: 0.5px; } -/* line 5175, ../../../scss/_app_styles.scss */ +/* line 5176, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 5183, ../../../scss/_app_styles.scss */ +/* line 5184, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 5189, ../../../scss/_app_styles.scss */ +/* line 5190, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 5200, ../../../scss/_app_styles.scss */ + /* line 5201, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 5202, ../../../scss/_app_styles.scss */ + /* line 5203, ../../../scss/_app_styles.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 5209, ../../../scss/_app_styles.scss */ + /* line 5210, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -28502,32 +28503,32 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { line-height: 52px; border-left-width: 0px; } - /* line 5216, ../../../scss/_app_styles.scss */ + /* line 5217, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5222, ../../../scss/_app_styles.scss */ + /* line 5223, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5230, ../../../scss/_app_styles.scss */ + /* line 5231, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 5240, ../../../scss/_app_styles.scss */ + /* line 5241, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 5249, ../../../scss/_app_styles.scss */ + /* line 5250, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 5256, ../../../scss/_app_styles.scss */ + /* line 5257, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; @@ -28542,7 +28543,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { /** * Sass styles related to unit cards */ -/* line 5284, ../../../scss/_app_styles.scss */ +/* line 5285, ../../../scss/_app_styles.scss */ .unit_card { width: 300px; color: #000; @@ -28554,7 +28555,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { position: relative; height: 210px; } -/* line 5298, ../../../scss/_app_styles.scss */ +/* line 5299, ../../../scss/_app_styles.scss */ .unit_card .unit_status { position: absolute; right: 0px; @@ -28565,11 +28566,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-radius: 3px; letter-spacing: 0.6px; } -/* line 5309, ../../../scss/_app_styles.scss */ +/* line 5310, ../../../scss/_app_styles.scss */ .unit_card .unit_header { display: table; } -/* line 5311, ../../../scss/_app_styles.scss */ +/* line 5312, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_banner { display: table-cell; border-radius: 5px; @@ -28578,7 +28579,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-right: 10px; color: #333333; } -/* line 5319, ../../../scss/_app_styles.scss */ +/* line 5320, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_title { display: table-cell; font-size: 20px; @@ -28592,7 +28593,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { vertical-align: middle; color: #333333; } -/* line 5333, ../../../scss/_app_styles.scss */ +/* line 5334, ../../../scss/_app_styles.scss */ .unit_card .unit_desc { display: block; /* Fallback for non-webkit */ @@ -28609,16 +28610,16 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin: 10px 0px 20px; color: #333333; } -/* line 5349, ../../../scss/_app_styles.scss */ +/* line 5350, ../../../scss/_app_styles.scss */ .unit_card .unit_breif .unit_breif_row i { margin-right: 10px; color: #99aaba; } -/* line 5355, ../../../scss/_app_styles.scss */ +/* line 5356, ../../../scss/_app_styles.scss */ .unit_card .unit_actions { padding: 5px 0px; } -/* line 5360, ../../../scss/_app_styles.scss */ +/* line 5361, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol { background: #a2238d; height: 37px; @@ -28631,11 +28632,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5372, ../../../scss/_app_styles.scss */ +/* line 5373, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 5377, ../../../scss/_app_styles.scss */ +/* line 5378, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics { color: #a2238d; font-weight: 500; @@ -28643,7 +28644,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.3px; border-bottom: 2px solid #a2238d; } -/* line 5385, ../../../scss/_app_styles.scss */ +/* line 5386, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics-points { background: #ffffff; color: #a2238d; @@ -28654,7 +28655,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; cursor: default; } -/* line 5396, ../../../scss/_app_styles.scss */ +/* line 5397, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit { height: 37px; text-align: center; @@ -28663,13 +28664,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5404, ../../../scss/_app_styles.scss */ +/* line 5405, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit:hover { border-bottom: 2px solid #ffc14e; } /* unit cards labels */ -/* line 5414, ../../../scss/_app_styles.scss */ +/* line 5415, ../../../scss/_app_styles.scss */ .status-completed { width: auto; top: -1.15em; @@ -28686,7 +28687,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5430, ../../../scss/_app_styles.scss */ +/* line 5431, ../../../scss/_app_styles.scss */ .status-in-progress { width: auto; top: -1.15em; @@ -28703,7 +28704,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5447, ../../../scss/_app_styles.scss */ +/* line 5448, ../../../scss/_app_styles.scss */ .status-upcoming { width: auto; top: -1.15em; @@ -28720,7 +28721,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5464, ../../../scss/_app_styles.scss */ +/* line 5465, ../../../scss/_app_styles.scss */ .status-draft { width: auto; top: -1.15em; @@ -28737,7 +28738,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5482, ../../../scss/_app_styles.scss */ +/* line 5483, ../../../scss/_app_styles.scss */ .status-workspace { width: auto; top: -1.15em; @@ -28754,48 +28755,48 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5499, ../../../scss/_app_styles.scss */ +/* line 5500, ../../../scss/_app_styles.scss */ .icon-widget { font-size: 24px; } /* module detail css */ -/* line 5508, ../../../scss/_app_styles.scss */ +/* line 5509, ../../../scss/_app_styles.scss */ .thumbnail_style { margin-left: -30px; } -/* line 5512, ../../../scss/_app_styles.scss */ +/* line 5513, ../../../scss/_app_styles.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 5518, ../../../scss/_app_styles.scss */ +/* line 5519, ../../../scss/_app_styles.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); padding-left: 10px; height: auto; min-height: 143px; } -/* line 5524, ../../../scss/_app_styles.scss */ +/* line 5525, ../../../scss/_app_styles.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 5534, ../../../scss/_app_styles.scss */ +/* line 5535, ../../../scss/_app_styles.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 5539, ../../../scss/_app_styles.scss */ +/* line 5540, ../../../scss/_app_styles.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 5542, ../../../scss/_app_styles.scss */ +/* line 5543, ../../../scss/_app_styles.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28809,7 +28810,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 5559, ../../../scss/_app_styles.scss */ +/* line 5560, ../../../scss/_app_styles.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -28823,7 +28824,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* Creating and editing course Structure */ -/* line 5576, ../../../scss/_app_styles.scss */ +/* line 5577, ../../../scss/_app_styles.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -28834,34 +28835,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 5585, ../../../scss/_app_styles.scss */ +/* line 5586, ../../../scss/_app_styles.scss */ .group_tile:hover { opacity: 0.7; } -/* line 5588, ../../../scss/_app_styles.scss */ +/* line 5589, ../../../scss/_app_styles.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 5595, ../../../scss/_app_styles.scss */ +/* line 5596, ../../../scss/_app_styles.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 5602, ../../../scss/_app_styles.scss */ +/* line 5603, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 5605, ../../../scss/_app_styles.scss */ +/* line 5606, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 5608, ../../../scss/_app_styles.scss */ +/* line 5609, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -28869,15 +28870,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 5616, ../../../scss/_app_styles.scss */ +/* line 5617, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 5620, ../../../scss/_app_styles.scss */ +/* line 5621, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 5622, ../../../scss/_app_styles.scss */ +/* line 5623, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -28888,27 +28889,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 5632, ../../../scss/_app_styles.scss */ +/* line 5633, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 5637, ../../../scss/_app_styles.scss */ +/* line 5638, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 5643, ../../../scss/_app_styles.scss */ +/* line 5644, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 5650, ../../../scss/_app_styles.scss */ +/* line 5651, ../../../scss/_app_styles.scss */ .max-width { max-width: 100%; } -/* line 5656, ../../../scss/_app_styles.scss */ +/* line 5657, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28918,7 +28919,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 5665, ../../../scss/_app_styles.scss */ +/* line 5666, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -28935,7 +28936,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 5678, ../../../scss/_app_styles.scss */ +/* line 5679, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -28945,28 +28946,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 5687, ../../../scss/_app_styles.scss */ +/* line 5688, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 5692, ../../../scss/_app_styles.scss */ +/* line 5693, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background-color: #ffffff; } -/* line 5697, ../../../scss/_app_styles.scss */ +/* line 5698, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 5703, ../../../scss/_app_styles.scss */ +/* line 5704, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 5707, ../../../scss/_app_styles.scss */ +/* line 5708, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -28979,7 +28980,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 5720, ../../../scss/_app_styles.scss */ +/* line 5721, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -28994,7 +28995,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Unit_Structure styles */ -/* line 5738, ../../../scss/_app_styles.scss */ +/* line 5739, ../../../scss/_app_styles.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -29002,12 +29003,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 5746, ../../../scss/_app_styles.scss */ +/* line 5747, ../../../scss/_app_styles.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 5750, ../../../scss/_app_styles.scss */ +/* line 5751, ../../../scss/_app_styles.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -29015,17 +29016,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 5756, ../../../scss/_app_styles.scss */ +/* line 5757, ../../../scss/_app_styles.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 5762, ../../../scss/_app_styles.scss */ +/* line 5763, ../../../scss/_app_styles.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 5767, ../../../scss/_app_styles.scss */ +/* line 5768, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29035,25 +29036,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 5776, ../../../scss/_app_styles.scss */ +/* line 5777, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5780, ../../../scss/_app_styles.scss */ +/* line 5781, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 5785, ../../../scss/_app_styles.scss */ +/* line 5786, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 5794, ../../../scss/_app_styles.scss */ +/* line 5795, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29062,7 +29063,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5801, ../../../scss/_app_styles.scss */ +/* line 5802, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29071,15 +29072,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 5810, ../../../scss/_app_styles.scss */ +/* line 5811, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 5815, ../../../scss/_app_styles.scss */ +/* line 5816, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 5818, ../../../scss/_app_styles.scss */ +/* line 5819, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29087,21 +29088,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 5828, ../../../scss/_app_styles.scss */ +/* line 5829, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 5834, ../../../scss/_app_styles.scss */ +/* line 5835, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 5842, ../../../scss/_app_styles.scss */ +/* line 5843, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 5844, ../../../scss/_app_styles.scss */ +/* line 5845, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29110,7 +29111,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5851, ../../../scss/_app_styles.scss */ +/* line 5852, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29118,11 +29119,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5860, ../../../scss/_app_styles.scss */ +/* line 5861, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 5869, ../../../scss/_app_styles.scss */ +/* line 5870, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29134,49 +29135,49 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 5879, ../../../scss/_app_styles.scss */ +/* line 5880, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 5885, ../../../scss/_app_styles.scss */ +/* line 5886, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 5888, ../../../scss/_app_styles.scss */ +/* line 5889, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 5897, ../../../scss/_app_styles.scss */ +/* line 5898, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 5902, ../../../scss/_app_styles.scss */ +/* line 5903, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 5906, ../../../scss/_app_styles.scss */ +/* line 5907, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 5908, ../../../scss/_app_styles.scss */ +/* line 5909, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 5911, ../../../scss/_app_styles.scss */ +/* line 5912, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 5917, ../../../scss/_app_styles.scss */ +/* line 5918, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29184,29 +29185,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 15px 5px; cursor: pointer; } -/* line 5932, ../../../scss/_app_styles.scss */ +/* line 5933, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 5940, ../../../scss/_app_styles.scss */ +/* line 5941, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 5946, ../../../scss/_app_styles.scss */ +/* line 5947, ../../../scss/_app_styles.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 5955, ../../../scss/_app_styles.scss */ +/* line 5956, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 5960, ../../../scss/_app_styles.scss */ +/* line 5961, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29214,28 +29215,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 5967, ../../../scss/_app_styles.scss */ +/* line 5968, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5972, ../../../scss/_app_styles.scss */ +/* line 5973, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5977, ../../../scss/_app_styles.scss */ +/* line 5978, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 5979, ../../../scss/_app_styles.scss */ +/* line 5980, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 5983, ../../../scss/_app_styles.scss */ +/* line 5984, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -29247,21 +29248,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; border-radius: 3px; } -/* line 5994, ../../../scss/_app_styles.scss */ +/* line 5995, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 5999, ../../../scss/_app_styles.scss */ +/* line 6000, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 6005, ../../../scss/_app_styles.scss */ +/* line 6006, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 6011, ../../../scss/_app_styles.scss */ +/* line 6012, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -29269,19 +29270,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 6018, ../../../scss/_app_styles.scss */ +/* line 6019, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 6025, ../../../scss/_app_styles.scss */ +/* line 6026, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6036, ../../../scss/_app_styles.scss */ +/* line 6037, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -29292,7 +29293,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 6053, ../../../scss/_app_styles.scss */ +/* line 6054, ../../../scss/_app_styles.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -29307,66 +29308,66 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* lesspn listing LMS */ -/* line 6069, ../../../scss/_app_styles.scss */ +/* line 6070, ../../../scss/_app_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 6077, ../../../scss/_app_styles.scss */ +/* line 6078, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 6080, ../../../scss/_app_styles.scss */ +/* line 6081, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 6082, ../../../scss/_app_styles.scss */ +/* line 6083, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 6089, ../../../scss/_app_styles.scss */ +/* line 6090, ../../../scss/_app_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 6091, ../../../scss/_app_styles.scss */ +/* line 6092, ../../../scss/_app_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 6096, ../../../scss/_app_styles.scss */ +/* line 6097, ../../../scss/_app_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 6104, ../../../scss/_app_styles.scss */ +/* line 6105, ../../../scss/_app_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6110, ../../../scss/_app_styles.scss */ +/* line 6111, ../../../scss/_app_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6117, ../../../scss/_app_styles.scss */ +/* line 6118, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 6120, ../../../scss/_app_styles.scss */ +/* line 6121, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 6123, ../../../scss/_app_styles.scss */ +/* line 6124, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 6126, ../../../scss/_app_styles.scss */ +/* line 6127, ../../../scss/_app_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; @@ -29376,23 +29377,23 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Styling for the Secondary header 2 */ -/* line 6145, ../../../scss/_app_styles.scss */ +/* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 6148, ../../../scss/_app_styles.scss */ +/* line 6149, ../../../scss/_app_styles.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6156, ../../../scss/_app_styles.scss */ +/* line 6157, ../../../scss/_app_styles.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 6165, ../../../scss/_app_styles.scss */ +/* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { position: relative; color: #fff; @@ -29403,56 +29404,56 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: -2px; border-right: 1px solid white; } -/* line 6174, ../../../scss/_app_styles.scss */ +/* line 6175, ../../../scss/_app_styles.scss */ .activity_player_header .header_title a { color: #ffc14f; } @media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 938px); } } @media only screen and (min-device-width: 2131px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 970px); } } @media only screen and (max-device-width: 1024px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 753px); } } -/* line 6251, ../../../scss/_app_styles.scss */ +/* line 6252, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon { font-size: 16px; line-height: 45px; color: #ffc14f; } -/* line 6257, ../../../scss/_app_styles.scss */ +/* line 6258, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 6263, ../../../scss/_app_styles.scss */ +/* line 6264, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 10px; } @media screen and (min-width: 1025px) { - /* line 6263, ../../../scss/_app_styles.scss */ + /* line 6264, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 15px; } } @media screen and (min-width: 1025px) { - /* line 6270, ../../../scss/_app_styles.scss */ + /* line 6271, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { float: right; margin-right: 70px; @@ -29460,73 +29461,73 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media screen and (max-width: 1024px) { - /* line 6270, ../../../scss/_app_styles.scss */ + /* line 6271, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { background-color: rgba(107, 0, 84, 0.97); } } -/* line 6283, ../../../scss/_app_styles.scss */ +/* line 6284, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6289, ../../../scss/_app_styles.scss */ +/* line 6290, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block { padding: 0px 15px; margin-left: -2px; border-right: 1px solid white; } -/* line 6293, ../../../scss/_app_styles.scss */ +/* line 6294, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block a { color: #ffc14f; } -/* line 6299, ../../../scss/_app_styles.scss */ +/* line 6300, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 9px; } @media screen and (min-width: 1025px) { - /* line 6299, ../../../scss/_app_styles.scss */ + /* line 6300, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 15px; } } -/* line 6307, ../../../scss/_app_styles.scss */ +/* line 6308, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 7px; } @media screen and (min-width: 1025px) { - /* line 6307, ../../../scss/_app_styles.scss */ + /* line 6308, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 15px; } } -/* line 6316, ../../../scss/_app_styles.scss */ +/* line 6317, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 6319, ../../../scss/_app_styles.scss */ +/* line 6320, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button i { color: #71318b; } -/* line 6325, ../../../scss/_app_styles.scss */ +/* line 6326, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 6329, ../../../scss/_app_styles.scss */ +/* line 6330, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 6335, ../../../scss/_app_styles.scss */ +/* line 6336, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .pagination:not(i) { color: #a983b9; } -/* line 6343, ../../../scss/_app_styles.scss */ +/* line 6344, ../../../scss/_app_styles.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -29534,29 +29535,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 6350, ../../../scss/_app_styles.scss */ +/* line 6351, ../../../scss/_app_styles.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 6354, ../../../scss/_app_styles.scss */ +/* line 6355, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6360, ../../../scss/_app_styles.scss */ +/* line 6361, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6366, ../../../scss/_app_styles.scss */ +/* line 6367, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 6371, ../../../scss/_app_styles.scss */ +/* line 6372, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29566,25 +29567,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 6380, ../../../scss/_app_styles.scss */ +/* line 6381, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6384, ../../../scss/_app_styles.scss */ +/* line 6385, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6389, ../../../scss/_app_styles.scss */ +/* line 6390, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6398, ../../../scss/_app_styles.scss */ +/* line 6399, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29593,7 +29594,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6405, ../../../scss/_app_styles.scss */ +/* line 6406, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29602,15 +29603,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 6414, ../../../scss/_app_styles.scss */ +/* line 6415, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6419, ../../../scss/_app_styles.scss */ +/* line 6420, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6422, ../../../scss/_app_styles.scss */ +/* line 6423, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29618,21 +29619,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 6432, ../../../scss/_app_styles.scss */ +/* line 6433, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6438, ../../../scss/_app_styles.scss */ +/* line 6439, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6446, ../../../scss/_app_styles.scss */ +/* line 6447, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6448, ../../../scss/_app_styles.scss */ +/* line 6449, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29641,7 +29642,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6455, ../../../scss/_app_styles.scss */ +/* line 6456, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29649,11 +29650,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6464, ../../../scss/_app_styles.scss */ +/* line 6465, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6473, ../../../scss/_app_styles.scss */ +/* line 6474, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29665,48 +29666,48 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 6483, ../../../scss/_app_styles.scss */ +/* line 6484, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6488, ../../../scss/_app_styles.scss */ +/* line 6489, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6491, ../../../scss/_app_styles.scss */ +/* line 6492, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6500, ../../../scss/_app_styles.scss */ +/* line 6501, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6505, ../../../scss/_app_styles.scss */ +/* line 6506, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6509, ../../../scss/_app_styles.scss */ +/* line 6510, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6511, ../../../scss/_app_styles.scss */ +/* line 6512, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6514, ../../../scss/_app_styles.scss */ +/* line 6515, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6520, ../../../scss/_app_styles.scss */ +/* line 6521, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29715,7 +29716,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; } -/* line 6538, ../../../scss/_app_styles.scss */ +/* line 6539, ../../../scss/_app_styles.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -29723,26 +29724,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 10px; padding-right: 4px; } -/* line 6544, ../../../scss/_app_styles.scss */ +/* line 6545, ../../../scss/_app_styles.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 6549, ../../../scss/_app_styles.scss */ +/* line 6550, ../../../scss/_app_styles.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6555, ../../../scss/_app_styles.scss */ +/* line 6556, ../../../scss/_app_styles.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 6561, ../../../scss/_app_styles.scss */ +/* line 6562, ../../../scss/_app_styles.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29752,29 +29753,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 6570, ../../../scss/_app_styles.scss */ +/* line 6571, ../../../scss/_app_styles.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 6574, ../../../scss/_app_styles.scss */ +/* line 6575, ../../../scss/_app_styles.scss */ .activity-title > li > a { color: black; } -/* line 6583, ../../../scss/_app_styles.scss */ +/* line 6584, ../../../scss/_app_styles.scss */ .activity_page_rendered { margin-left: 20px; max-width: 900px; } /* Rating css */ -/* line 6591, ../../../scss/_app_styles.scss */ +/* line 6592, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 6593, ../../../scss/_app_styles.scss */ +/* line 6594, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -29782,19 +29783,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { unicode-bidi: bidi-override; direction: rtl; } -/* line 6601, ../../../scss/_app_styles.scss */ +/* line 6602, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 6603, ../../../scss/_app_styles.scss */ +/* line 6604, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 6609, ../../../scss/_app_styles.scss */ +/* line 6610, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 6611, ../../../scss/_app_styles.scss */ +/* line 6612, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -29807,7 +29808,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0; vertical-align: bottom; } -/* line 6623, ../../../scss/_app_styles.scss */ +/* line 6624, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -29815,32 +29816,32 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* WHITE STAR */ color: #888; } -/* line 6630, ../../../scss/_app_styles.scss */ +/* line 6631, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 6641, ../../../scss/_app_styles.scss */ +/* line 6642, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 6648, ../../../scss/_app_styles.scss */ +/* line 6649, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 6656, ../../../scss/_app_styles.scss */ +/* line 6657, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 6661, ../../../scss/_app_styles.scss */ +/* line 6662, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -29849,29 +29850,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-shadow: 0 0 1px #333; } -/* line 6671, ../../../scss/_app_styles.scss */ +/* line 6672, ../../../scss/_app_styles.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 6675, ../../../scss/_app_styles.scss */ +/* line 6676, ../../../scss/_app_styles.scss */ .input_links { margin-left: 10px; } -/* line 6677, ../../../scss/_app_styles.scss */ +/* line 6678, ../../../scss/_app_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 6683, ../../../scss/_app_styles.scss */ +/* line 6684, ../../../scss/_app_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 6691, ../../../scss/_app_styles.scss */ +/* line 6692, ../../../scss/_app_styles.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -29880,19 +29881,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 6700, ../../../scss/_app_styles.scss */ +/* line 6701, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 6704, ../../../scss/_app_styles.scss */ +/* line 6705, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 6710, ../../../scss/_app_styles.scss */ +/* line 6711, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -29900,12 +29901,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; margin-left: 12%; } -/* line 6718, ../../../scss/_app_styles.scss */ +/* line 6719, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 6724, ../../../scss/_app_styles.scss */ +/* line 6725, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -29914,21 +29915,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: none; color: #8E8E8E; } -/* line 6733, ../../../scss/_app_styles.scss */ +/* line 6734, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 6738, ../../../scss/_app_styles.scss */ +/* line 6739, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 6740, ../../../scss/_app_styles.scss */ +/* line 6741, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 6743, ../../../scss/_app_styles.scss */ +/* line 6744, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -29939,24 +29940,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #757575; margin-right: 20px; } -/* line 6753, ../../../scss/_app_styles.scss */ +/* line 6754, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 6757, ../../../scss/_app_styles.scss */ +/* line 6758, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 6760, ../../../scss/_app_styles.scss */ +/* line 6761, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 6765, ../../../scss/_app_styles.scss */ +/* line 6766, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 6769, ../../../scss/_app_styles.scss */ +/* line 6770, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -29968,7 +29969,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; color: #222222; } -/* line 6780, ../../../scss/_app_styles.scss */ +/* line 6781, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -29976,15 +29977,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 8px; top: 4px; } -/* line 6788, ../../../scss/_app_styles.scss */ +/* line 6789, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 6790, ../../../scss/_app_styles.scss */ +/* line 6791, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 6793, ../../../scss/_app_styles.scss */ +/* line 6794, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -29994,25 +29995,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { letter-spacing: 0.8px; color: #999999; } -/* line 6802, ../../../scss/_app_styles.scss */ +/* line 6803, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 6808, ../../../scss/_app_styles.scss */ +/* line 6809, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 6817, ../../../scss/_app_styles.scss */ +/* line 6818, ../../../scss/_app_styles.scss */ .icon-color { color: #2e3f51 !important; padding: right; } /* The asset tile */ -/* line 6827, ../../../scss/_app_styles.scss */ +/* line 6828, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -30022,7 +30023,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 6836, ../../../scss/_app_styles.scss */ +/* line 6837, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -30039,7 +30040,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 6849, ../../../scss/_app_styles.scss */ +/* line 6850, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -30049,28 +30050,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 6858, ../../../scss/_app_styles.scss */ +/* line 6859, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 6863, ../../../scss/_app_styles.scss */ +/* line 6864, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 6868, ../../../scss/_app_styles.scss */ +/* line 6869, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 6874, ../../../scss/_app_styles.scss */ +/* line 6875, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 6878, ../../../scss/_app_styles.scss */ +/* line 6879, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -30083,7 +30084,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 6891, ../../../scss/_app_styles.scss */ +/* line 6892, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -30097,7 +30098,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 6906, ../../../scss/_app_styles.scss */ +/* line 6907, ../../../scss/_app_styles.scss */ .orange-button-subtitle { color: #ce7869; padding: 4px 5px; @@ -30110,13 +30111,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 6917, ../../../scss/_app_styles.scss */ +/* line 6918, ../../../scss/_app_styles.scss */ .orange-button-subtitle:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 6923, ../../../scss/_app_styles.scss */ +/* line 6924, ../../../scss/_app_styles.scss */ .transcript-toggler { display: block; width: 155px !important; @@ -30132,12 +30133,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; } -/* line 6938, ../../../scss/_app_styles.scss */ +/* line 6939, ../../../scss/_app_styles.scss */ .asset_list { margin-left: 12px; } -/* line 6942, ../../../scss/_app_styles.scss */ +/* line 6943, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -30146,22 +30147,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6951, ../../../scss/_app_styles.scss */ +/* line 6952, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6958, ../../../scss/_app_styles.scss */ +/* line 6959, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6964, ../../../scss/_app_styles.scss */ +/* line 6965, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6966, ../../../scss/_app_styles.scss */ +/* line 6967, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -30170,15 +30171,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6973, ../../../scss/_app_styles.scss */ +/* line 6974, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6977, ../../../scss/_app_styles.scss */ +/* line 6978, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6983, ../../../scss/_app_styles.scss */ +/* line 6984, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30187,7 +30188,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6994, ../../../scss/_app_styles.scss */ +/* line 6995, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -30196,24 +30197,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 7003, ../../../scss/_app_styles.scss */ +/* line 7004, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 7010, ../../../scss/_app_styles.scss */ +/* line 7011, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 7015, ../../../scss/_app_styles.scss */ +/* line 7016, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 7019, ../../../scss/_app_styles.scss */ +/* line 7020, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -30224,14 +30225,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 7029, ../../../scss/_app_styles.scss */ +/* line 7030, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 7036, ../../../scss/_app_styles.scss */ + /* line 7037, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30239,7 +30240,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7045, ../../../scss/_app_styles.scss */ + /* line 7046, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30247,7 +30248,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7052, ../../../scss/_app_styles.scss */ + /* line 7053, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30255,14 +30256,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7059, ../../../scss/_app_styles.scss */ + /* line 7060, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 7067, ../../../scss/_app_styles.scss */ +/* line 7068, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30277,14 +30278,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7083, ../../../scss/_app_styles.scss */ +/* line 7084, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 7090, ../../../scss/_app_styles.scss */ + /* line 7091, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30295,7 +30296,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7101, ../../../scss/_app_styles.scss */ + /* line 7102, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30306,7 +30307,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7112, ../../../scss/_app_styles.scss */ + /* line 7113, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30317,7 +30318,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7123, ../../../scss/_app_styles.scss */ + /* line 7124, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30327,7 +30328,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7134, ../../../scss/_app_styles.scss */ +/* line 7135, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30342,14 +30343,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7150, ../../../scss/_app_styles.scss */ +/* line 7151, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 7157, ../../../scss/_app_styles.scss */ + /* line 7158, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30360,7 +30361,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7168, ../../../scss/_app_styles.scss */ + /* line 7169, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30371,7 +30372,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7179, ../../../scss/_app_styles.scss */ + /* line 7180, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30382,7 +30383,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7190, ../../../scss/_app_styles.scss */ + /* line 7191, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30392,11 +30393,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7201, ../../../scss/_app_styles.scss */ +/* line 7202, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 7203, ../../../scss/_app_styles.scss */ +/* line 7204, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30405,11 +30406,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 7211, ../../../scss/_app_styles.scss */ +/* line 7212, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 7217, ../../../scss/_app_styles.scss */ +/* line 7218, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30418,7 +30419,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7228, ../../../scss/_app_styles.scss */ +/* line 7229, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30429,22 +30430,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7238, ../../../scss/_app_styles.scss */ +/* line 7239, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7241, ../../../scss/_app_styles.scss */ +/* line 7242, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7246, ../../../scss/_app_styles.scss */ +/* line 7247, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7257, ../../../scss/_app_styles.scss */ +/* line 7258, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30455,26 +30456,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7267, ../../../scss/_app_styles.scss */ +/* line 7268, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7270, ../../../scss/_app_styles.scss */ +/* line 7271, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7274, ../../../scss/_app_styles.scss */ +/* line 7275, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7280, ../../../scss/_app_styles.scss */ +/* line 7281, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7282, ../../../scss/_app_styles.scss */ +/* line 7283, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30483,7 +30484,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7291, ../../../scss/_app_styles.scss */ +/* line 7292, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30492,7 +30493,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7305, ../../../scss/_app_styles.scss */ +/* line 7306, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -30502,19 +30503,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Asset detail */ -/* line 7316, ../../../scss/_app_styles.scss */ +/* line 7317, ../../../scss/_app_styles.scss */ .overlay-head { height: 60px; margin-bottom: 20px; } -/* line 7322, ../../../scss/_app_styles.scss */ +/* line 7323, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7327, ../../../scss/_app_styles.scss */ +/* line 7328, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30528,13 +30529,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7339, ../../../scss/_app_styles.scss */ +/* line 7340, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7346, ../../../scss/_app_styles.scss */ +/* line 7347, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; padding: 7px 14px; @@ -30547,22 +30548,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7357, ../../../scss/_app_styles.scss */ +/* line 7358, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7362, ../../../scss/_app_styles.scss */ +/* line 7363, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; background: #fff; } -/* line 7365, ../../../scss/_app_styles.scss */ +/* line 7366, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: #fff; } -/* line 7368, ../../../scss/_app_styles.scss */ +/* line 7369, ../../../scss/_app_styles.scss */ .orange-button-template > a { color: #ce7869; padding: 7px 14px; @@ -30575,13 +30576,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7379, ../../../scss/_app_styles.scss */ +/* line 7380, ../../../scss/_app_styles.scss */ .orange-button-template > a:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7386, ../../../scss/_app_styles.scss */ +/* line 7387, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30593,7 +30594,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7397, ../../../scss/_app_styles.scss */ +/* line 7398, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30601,18 +30602,18 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7406, ../../../scss/_app_styles.scss */ +/* line 7407, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7413, ../../../scss/_app_styles.scss */ +/* line 7414, ../../../scss/_app_styles.scss */ .page-name { margin-top: 8px; } -/* line 7417, ../../../scss/_app_styles.scss */ +/* line 7418, ../../../scss/_app_styles.scss */ .tag-ele { font-weight: normal; text-align: center; @@ -30631,7 +30632,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: none; } -/* line 7435, ../../../scss/_app_styles.scss */ +/* line 7436, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30649,12 +30650,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7451, ../../../scss/_app_styles.scss */ +/* line 7452, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7456, ../../../scss/_app_styles.scss */ +/* line 7457, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30666,13 +30667,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7466, ../../../scss/_app_styles.scss */ +/* line 7467, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7474, ../../../scss/_app_styles.scss */ +/* line 7475, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30689,13 +30690,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7489, ../../../scss/_app_styles.scss */ +/* line 7490, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* line 7500, ../../../scss/_app_styles.scss */ +/* line 7501, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -30703,7 +30704,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-size: 100% 100%; position: relative; } -/* line 7507, ../../../scss/_app_styles.scss */ +/* line 7508, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -30717,13 +30718,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7521, ../../../scss/_app_styles.scss */ +/* line 7522, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 7526, ../../../scss/_app_styles.scss */ +/* line 7527, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -30732,79 +30733,79 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow: hidden; background-color: #fff; } -/* line 7534, ../../../scss/_app_styles.scss */ +/* line 7535, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 7539, ../../../scss/_app_styles.scss */ +/* line 7540, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 7544, ../../../scss/_app_styles.scss */ +/* line 7545, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 7549, ../../../scss/_app_styles.scss */ +/* line 7550, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 7557, ../../../scss/_app_styles.scss */ +/* line 7558, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 7561, ../../../scss/_app_styles.scss */ +/* line 7562, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 7570, ../../../scss/_app_styles.scss */ +/* line 7571, ../../../scss/_app_styles.scss */ .lms_explore_head_unit { width: 100%; height: 50px; background-color: #fff; color: #164A7B; } -/* line 7575, ../../../scss/_app_styles.scss */ +/* line 7576, ../../../scss/_app_styles.scss */ .lms_explore_head_unit > p { margin-left: 81px; padding: 0px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 7581, ../../../scss/_app_styles.scss */ +/* line 7582, ../../../scss/_app_styles.scss */ .lms_explore_head_unit > a { padding: 0px 85px 3px 0px; } -/* line 7587, ../../../scss/_app_styles.scss */ +/* line 7588, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -19.3px; } -/* line 7594, ../../../scss/_app_styles.scss */ +/* line 7595, ../../../scss/_app_styles.scss */ .course-students-data { margin: 2px 2px 2px 2px; border: 2px solid #164a7b; padding: 19px 14px 0px 5px; } -/* line 7601, ../../../scss/_app_styles.scss */ +/* line 7602, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 7604, ../../../scss/_app_styles.scss */ +/* line 7605, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 7612, ../../../scss/_app_styles.scss */ +/* line 7613, ../../../scss/_app_styles.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -30820,7 +30821,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7631, ../../../scss/_app_styles.scss */ +/* line 7632, ../../../scss/_app_styles.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -30830,7 +30831,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7640, ../../../scss/_app_styles.scss */ +/* line 7641, ../../../scss/_app_styles.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -30840,7 +30841,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 7649, ../../../scss/_app_styles.scss */ +/* line 7650, ../../../scss/_app_styles.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; @@ -30860,13 +30861,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #A6D7F5; } }*/ -/* line 7672, ../../../scss/_app_styles.scss */ +/* line 7673, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 7677, ../../../scss/_app_styles.scss */ +/* line 7678, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title { width: 43%; /* background-color: blue;*/ @@ -30876,7 +30877,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; color: #fff; } -/* line 7686, ../../../scss/_app_styles.scss */ +/* line 7687, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title.active { background-color: #719dc7; border: 1px solid #CCC; @@ -30884,7 +30885,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; } -/* line 7699, ../../../scss/_app_styles.scss */ +/* line 7700, ../../../scss/_app_styles.scss */ .create_unit { background: #fff; box-shadow: 0px 2px 3px #000; @@ -30892,7 +30893,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 10px; } -/* line 7707, ../../../scss/_app_styles.scss */ +/* line 7708, ../../../scss/_app_styles.scss */ .asset-unit-button { color: #ce7869; padding: 7px 14px; @@ -30904,13 +30905,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 30px; margin-bottom: 8px; } -/* line 7718, ../../../scss/_app_styles.scss */ +/* line 7719, ../../../scss/_app_styles.scss */ .asset-unit-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7724, ../../../scss/_app_styles.scss */ +/* line 7725, ../../../scss/_app_styles.scss */ .course_creator_header { width: 100%; height: 70px; @@ -30918,7 +30919,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7731, ../../../scss/_app_styles.scss */ +/* line 7732, ../../../scss/_app_styles.scss */ .course_creator_header .unit_editor { width: 100%; height: 320px; @@ -30926,13 +30927,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7740, ../../../scss/_app_styles.scss */ +/* line 7741, ../../../scss/_app_styles.scss */ .course_creator_header .back_to_group { padding: 0px 15px 0px 10px; border-right: 1px solid #ccc; margin-right: 15px; } -/* line 7746, ../../../scss/_app_styles.scss */ +/* line 7747, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit { width: 500px; height: 40px; @@ -30941,24 +30942,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7755, ../../../scss/_app_styles.scss */ +/* line 7756, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit:focus { border: 1px solid #74b3dc; } -/* line 7759, ../../../scss/_app_styles.scss */ +/* line 7760, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7767, ../../../scss/_app_styles.scss */ +/* line 7768, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit select { font-size: 14px; font-family: 'OpenSans-Regular', sans-serif; color: gray; border: 0px solid #74b3dc; } -/* line 7778, ../../../scss/_app_styles.scss */ +/* line 7779, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input { width: 500px; height: 40px; @@ -30967,31 +30968,31 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7786, ../../../scss/_app_styles.scss */ +/* line 7787, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input:focus { border: 1px solid #74b3dc; } -/* line 7790, ../../../scss/_app_styles.scss */ +/* line 7791, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7800, ../../../scss/_app_styles.scss */ +/* line 7801, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading h5 { margin-top: 15px; } -/* line 7805, ../../../scss/_app_styles.scss */ +/* line 7806, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading span { letter-spacing: 0.9px; font-weight: 600; line-height: 50px; } -/* line 7813, ../../../scss/_app_styles.scss */ +/* line 7814, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul { margin: 0px; } -/* line 7816, ../../../scss/_app_styles.scss */ +/* line 7817, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li { list-style-type: none; display: inline-block; @@ -31000,11 +31001,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; letter-spacing: 0.8px; } -/* line 7825, ../../../scss/_app_styles.scss */ +/* line 7826, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { border-bottom: 3px solid #ffc14e; } -/* line 7830, ../../../scss/_app_styles.scss */ +/* line 7831, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions span { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -31016,7 +31017,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; border-radius: 3px; } -/* line 7842, ../../../scss/_app_styles.scss */ +/* line 7843, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -31029,20 +31030,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; } -/* line 7859, ../../../scss/_app_styles.scss */ +/* line 7860, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: 2.7px; } -/* line 7864, ../../../scss/_app_styles.scss */ +/* line 7865, ../../../scss/_app_styles.scss */ .empty-dashboard-message { border: 3px solid #e4e4e4; background: #f8f8f8; padding: 40px 0; text-align: center; } -/* line 7870, ../../../scss/_app_styles.scss */ +/* line 7871, ../../../scss/_app_styles.scss */ .empty-dashboard-message > a { background-color: #164a7b; border: 1px solid #164a7b; @@ -31056,7 +31057,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 5px; padding: 15px 20px; } -/* line 7884, ../../../scss/_app_styles.scss */ +/* line 7885, ../../../scss/_app_styles.scss */ .empty-dashboard-message .button-explore-courses { font-size: 20px; font-weight: normal; @@ -31066,7 +31067,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 170px; } -/* line 7899, ../../../scss/_app_styles.scss */ +/* line 7900, ../../../scss/_app_styles.scss */ .module_card { display: table; height: 290px; @@ -31077,16 +31078,16 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); } -/* line 7909, ../../../scss/_app_styles.scss */ +/* line 7910, ../../../scss/_app_styles.scss */ .module_card:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 7913, ../../../scss/_app_styles.scss */ +/* line 7914, ../../../scss/_app_styles.scss */ .module_card > div { display: table-cell; height: 290px; } -/* line 7918, ../../../scss/_app_styles.scss */ +/* line 7919, ../../../scss/_app_styles.scss */ .module_card .card_banner { width: 250px; height: 290px; @@ -31100,14 +31101,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-radius .2s; transition: border-radius .2s; } -/* line 7931, ../../../scss/_app_styles.scss */ +/* line 7932, ../../../scss/_app_styles.scss */ .module_card .card_banner > img { height: 100%; width: 100%; border-radius: 4px; -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); } -/* line 7936, ../../../scss/_app_styles.scss */ +/* line 7937, ../../../scss/_app_styles.scss */ .module_card .card_banner > img:hover { -webkit-transform: scale(1.03); -moz-transform: scale(1.03); @@ -31116,7 +31117,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transform: scale(1.03); opacity: 0.8; } -/* line 7948, ../../../scss/_app_styles.scss */ +/* line 7949, ../../../scss/_app_styles.scss */ .module_card .card_banner > h4 { position: absolute; top: 100px; @@ -31125,7 +31126,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #ffffff !important; text-shadow: 2px 0px 8px black; } -/* line 7963, ../../../scss/_app_styles.scss */ +/* line 7964, ../../../scss/_app_styles.scss */ .module_card .card_title { display: block; width: 230px; @@ -31135,27 +31136,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px auto; letter-spacing: 1px; } -/* line 7974, ../../../scss/_app_styles.scss */ +/* line 7975, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_banner { border-radius: 8px; } -/* line 7977, ../../../scss/_app_styles.scss */ +/* line 7978, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7982, ../../../scss/_app_styles.scss */ +/* line 7983, ../../../scss/_app_styles.scss */ .module_card.animated_card.isOpen .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7986, ../../../scss/_app_styles.scss */ +/* line 7987, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_summary { left: 30px; } -/* line 7989, ../../../scss/_app_styles.scss */ +/* line 7990, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_summary { left: 5px; } -/* line 7993, ../../../scss/_app_styles.scss */ +/* line 7994, ../../../scss/_app_styles.scss */ .module_card .card_summary { width: 290px; padding: 0px 15px; @@ -31171,35 +31172,35 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Safari */ transition-property: left; } -/* line 8007, ../../../scss/_app_styles.scss */ +/* line 8008, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_label { font-weight: 500; font-size: 12.5px; letter-spacing: 1px; color: black; } -/* line 8013, ../../../scss/_app_styles.scss */ +/* line 8014, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section { margin: 5px 0px; padding: 5px 0px; } -/* line 8017, ../../../scss/_app_styles.scss */ +/* line 8018, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section:not(:last-child) { border-bottom: 1px solid #ccc; } -/* line 8020, ../../../scss/_app_styles.scss */ +/* line 8021, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section p { margin-bottom: 7px; font-size: 12.5px; } -/* line 8024, ../../../scss/_app_styles.scss */ +/* line 8025, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .ellipsis { width: 245px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -/* line 8032, ../../../scss/_app_styles.scss */ +/* line 8033, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol { background: #a2238d; height: 37px; @@ -31213,11 +31214,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 8045, ../../../scss/_app_styles.scss */ +/* line 8046, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 8051, ../../../scss/_app_styles.scss */ +/* line 8052, ../../../scss/_app_styles.scss */ .module_card .card_summary .module_brief { display: block; /* Fallback for non-webkit */ @@ -31234,12 +31235,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: black; } -/* line 8068, ../../../scss/_app_styles.scss */ +/* line 8069, ../../../scss/_app_styles.scss */ .inner { display: inline-block !important; } -/* line 8075, ../../../scss/_app_styles.scss */ +/* line 8076, ../../../scss/_app_styles.scss */ .enroll-btn { width: 90px; opacity: 1; @@ -31255,7 +31256,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #4b4852; } -/* line 8095, ../../../scss/_app_styles.scss */ +/* line 8096, ../../../scss/_app_styles.scss */ .enrollBtn { background: #a2238d; height: 37px; @@ -31270,35 +31271,115 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /*****Toolbar CSS******/ -/* line 8110, ../../../scss/_app_styles.scss */ +/* line 8111, ../../../scss/_app_styles.scss */ #toolbar { background-color: #3e3e3e; } -/* line 8113, ../../../scss/_app_styles.scss */ +/* line 8114, ../../../scss/_app_styles.scss */ .datetime { color: #eaeaea; padding: 4px 0px 2px 5px; font-size: 11px; } -/* line 8118, ../../../scss/_app_styles.scss */ +/* line 8119, ../../../scss/_app_styles.scss */ .changefont { text-align: right; padding: 2px 5px 1px 0px; } -/* line 8122, ../../../scss/_app_styles.scss */ +/* line 8123, ../../../scss/_app_styles.scss */ .changefont .minus { font-size: 60%; color: #eaeaea; } -/* line 8125, ../../../scss/_app_styles.scss */ +/* line 8126, ../../../scss/_app_styles.scss */ .changefont .normal { font-size: 80%; color: #eaeaea; } -/* line 8128, ../../../scss/_app_styles.scss */ +/* line 8129, ../../../scss/_app_styles.scss */ .changefont .plus { font-size: 100%; color: #eaeaea; } + +/***********Landing page***************/ +/* line 8138, ../../../scss/_app_styles.scss */ +.about_us { + height: 300px; + background: #20ade0; +} + +/* line 8142, ../../../scss/_app_styles.scss */ +.analytics { + margin-top: 20px; +} + +/* line 8145, ../../../scss/_app_styles.scss */ +.square { + border: 4px solid #ffffff; + position: relative; + text-align: center; + width: 16%; + float: left; + height: 100%; + margin-left: 30px; +} + +/* line 8155, ../../../scss/_app_styles.scss */ +.square:after { + content: ""; + display: block; + padding-bottom: 100%; +} + +/* line 8161, ../../../scss/_app_styles.scss */ +.content { + position: absolute; + width: 100%; + height: 80%; + font-size: 2em; + padding-top: 20%; +} + +/* line 8174, ../../../scss/_app_styles.scss */ +.activity-slider { + font-family: Arial; + width: 800px; + display: block; + margin: 0 auto; +} + +/* line 8181, ../../../scss/_app_styles.scss */ +.activity-slider h3 { + background: #fff; + color: #3498db; + font-size: 36px; + line-height: 100px; + margin: 10px; + padding: 2%; + position: relative; + text-align: center; +} + +/*.action{ + display:block; + margin:100px auto; + width:100%; + text-align:center; +} +.action a { + display:inline-block; + padding:5px 10px; + background:#f30; + color:#fff; + text-decoration:none; +} +.action a:hover{ + background:#000; +}*/ +/* line 8208, ../../../scss/_app_styles.scss */ +.footer_link_cont h4 { + color: #999; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css index 6f8e88f3f5..f794f98d6f 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css @@ -24230,98 +24230,99 @@ body > footer .myfooter .footer_link_cont .links_show { max-height: 600px; } /* line 567, ../../../scss/_app_styles.scss */ -body > footer .myfooter .footer_link_cont h4 { +body > footer .myfooter .footer_link_cont .flinks { + font-size: 18px; color: #999; } -/* line 570, ../../../scss/_app_styles.scss */ -body > footer .myfooter .footer_link_cont .social_links { +/* line 571, ../../../scss/_app_styles.scss */ +body > footer .myfooter .footer_link_cont .social_links a { font-size: 24px; margin-right: 5px; } -/* line 575, ../../../scss/_app_styles.scss */ +/* line 576, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links { color: #777777; cursor: pointer; } -/* line 578, ../../../scss/_app_styles.scss */ +/* line 579, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links i { font-size: 24px; margin-right: 5px; } -/* line 581, ../../../scss/_app_styles.scss */ +/* line 582, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links:hover { text-decoration: underline; } -/* line 588, ../../../scss/_app_styles.scss */ +/* line 589, ../../../scss/_app_styles.scss */ body > footer hr.footerlogo-divider { border-color: #555; margin-top: 10px; } -/* line 594, ../../../scss/_app_styles.scss */ +/* line 595, ../../../scss/_app_styles.scss */ body > footer ul#footerlogo li { margin: 0px 5px; display: inline; } -/* line 600, ../../../scss/_app_styles.scss */ +/* line 601, ../../../scss/_app_styles.scss */ .no-gap ul { margin-left: 0rem; } -/* line 606, ../../../scss/_app_styles.scss */ +/* line 607, ../../../scss/_app_styles.scss */ body > footer ul#poweredlogos { margin-left: 0px; } -/* line 610, ../../../scss/_app_styles.scss */ +/* line 611, ../../../scss/_app_styles.scss */ #poweredlogos li { margin: 0px 5px; display: inline; } -/* line 616, ../../../scss/_app_styles.scss */ +/* line 617, ../../../scss/_app_styles.scss */ .no-gap ul { margin-left: 0rem; } -/* line 621, ../../../scss/_app_styles.scss */ +/* line 622, ../../../scss/_app_styles.scss */ .coll-arrows { cursor: pointer; display: block; padding: 0.5rem; } -/* line 626, ../../../scss/_app_styles.scss */ +/* line 627, ../../../scss/_app_styles.scss */ .coll-arrows:hover { background-color: #D3D3D3; } /* Sections */ -/* line 633, ../../../scss/_app_styles.scss */ +/* line 634, ../../../scss/_app_styles.scss */ main > article { padding: 0px; } -/* line 636, ../../../scss/_app_styles.scss */ +/* line 637, ../../../scss/_app_styles.scss */ main > nav { border-top: 3px solid black; position: relative; z-index: 10; } -/* line 640, ../../../scss/_app_styles.scss */ +/* line 641, ../../../scss/_app_styles.scss */ main > nav > .button-bar { background-color: #03abf7; /* Hide icons till we can retreive custom icons from the system */ } -/* line 642, ../../../scss/_app_styles.scss */ +/* line 643, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group { margin: 0; } -/* line 644, ../../../scss/_app_styles.scss */ +/* line 645, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group.tools { padding: 5px; } -/* line 650, ../../../scss/_app_styles.scss */ +/* line 651, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button { border: none; font-size: 0.8rem; @@ -24330,135 +24331,135 @@ main > nav > .button-bar li .button { color: black; margin: 0; } -/* line 654, ../../../scss/_app_styles.scss */ +/* line 655, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.home { font-weight: bold; } -/* line 657, ../../../scss/_app_styles.scss */ +/* line 658, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings, main > nav > .button-bar li .button#toggle-help { padding: 6px 10px; color: #333; background-color: rgba(255, 255, 255, 0.3); } -/* line 662, ../../../scss/_app_styles.scss */ +/* line 663, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:hover, main > nav > .button-bar li .button#toggle-help:hover { background-color: rgba(0, 0, 0, 0.2); color: white; } -/* line 667, ../../../scss/_app_styles.scss */ +/* line 668, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button#toggle-help { background-color: inherit; } -/* line 671, ../../../scss/_app_styles.scss */ +/* line 672, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:after { border: none; } -/* line 679, ../../../scss/_app_styles.scss */ +/* line 680, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button:hover { color: white; } -/* line 685, ../../../scss/_app_styles.scss */ +/* line 686, ../../../scss/_app_styles.scss */ main > nav > .button-bar li.active .button { background-color: #03a9f4; color: white; } -/* line 693, ../../../scss/_app_styles.scss */ +/* line 694, ../../../scss/_app_styles.scss */ main > nav > .button-bar .app i { display: none !important; } -/* line 703, ../../../scss/_app_styles.scss */ +/* line 704, ../../../scss/_app_styles.scss */ main > aside > div h2 { color: #111; } -/* line 706, ../../../scss/_app_styles.scss */ +/* line 707, ../../../scss/_app_styles.scss */ main > aside > div h3 { font-size: 1.2rem; font-weight: normal; color: #222; } -/* line 711, ../../../scss/_app_styles.scss */ +/* line 712, ../../../scss/_app_styles.scss */ main > aside > div h4 { font-size: 1rem; color: #222; } -/* line 714, ../../../scss/_app_styles.scss */ +/* line 715, ../../../scss/_app_styles.scss */ main > aside > div h4 span { display: none; } -/* line 717, ../../../scss/_app_styles.scss */ +/* line 718, ../../../scss/_app_styles.scss */ main > aside > div h4:hover span { display: inline; } -/* line 721, ../../../scss/_app_styles.scss */ +/* line 722, ../../../scss/_app_styles.scss */ main > aside > div h5, main > aside > div h6 { margin: 0; } -/* line 725, ../../../scss/_app_styles.scss */ +/* line 726, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content { width: auto; padding: 0; border: 1px solid #222; } -/* line 729, ../../../scss/_app_styles.scss */ +/* line 730, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content .item { width: 70px; } -/* line 736, ../../../scss/_app_styles.scss */ +/* line 737, ../../../scss/_app_styles.scss */ main > aside > div footer { background-color: #222; min-height: 1rem; } -/* line 739, ../../../scss/_app_styles.scss */ +/* line 740, ../../../scss/_app_styles.scss */ main > aside > div footer label { font-size: 0.7rem; } -/* line 752, ../../../scss/_app_styles.scss */ +/* line 753, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection { background-color: #444; padding: 0; border-bottom: 2px solid #03abf7; margin: 0; } -/* line 757, ../../../scss/_app_styles.scss */ +/* line 758, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li { border-bottom: 1px solid #555; } -/* line 759, ../../../scss/_app_styles.scss */ +/* line 760, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li a { border-left: 2px solid black; } -/* line 762, ../../../scss/_app_styles.scss */ +/* line 763, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li.active a, main > aside > div .side-nav.collection li a:hover { color: white !important; border-left: 2px solid #03abf7; background-color: #03abf7; } -/* line 775, ../../../scss/_app_styles.scss */ +/* line 776, ../../../scss/_app_styles.scss */ article { position: relative; z-index: 1; min-height: 400px; overflow-x: visible; } -/* line 780, ../../../scss/_app_styles.scss */ +/* line 781, ../../../scss/_app_styles.scss */ article > header, article form > header { padding: 15px; background-color: #f0f0f0; } -/* line 793, ../../../scss/_app_styles.scss */ +/* line 794, ../../../scss/_app_styles.scss */ article h1:not(.subheader) .tabs { display: inline-block; position: relative; bottom: -0.5rem; } -/* line 799, ../../../scss/_app_styles.scss */ +/* line 800, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div, article h1:not(.subheader) div input:not(.subheader) div { display: inline-block; position: relative; } -/* line 802, ../../../scss/_app_styles.scss */ +/* line 803, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input { height: 200%; font-style: italic; @@ -24468,13 +24469,13 @@ article h1:not(.subheader) div input { border-bottom: 2px dotted #222; background-color: inherit; } -/* line 812, ../../../scss/_app_styles.scss */ +/* line 813, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input:hover { background-color: white; } /* Card block */ -/* line 822, ../../../scss/_app_styles.scss */ +/* line 823, ../../../scss/_app_styles.scss */ .card > * { position: relative; background-color: white; @@ -24485,51 +24486,51 @@ article h1:not(.subheader) div input:hover { opacity: 0.9; overflow: hidden; } -/* line 834, ../../../scss/_app_styles.scss */ +/* line 835, ../../../scss/_app_styles.scss */ .card > * > a { color: inherit; display: block; position: relative; z-index: 200; } -/* line 845, ../../../scss/_app_styles.scss */ +/* line 846, ../../../scss/_app_styles.scss */ .card > *.published { opacity: 1; background-color: #e6f9ee; } -/* line 850, ../../../scss/_app_styles.scss */ +/* line 851, ../../../scss/_app_styles.scss */ .card > *.published hr { border-color: #7ee2a8; } -/* line 855, ../../../scss/_app_styles.scss */ +/* line 856, ../../../scss/_app_styles.scss */ .card > *.moderation { opacity: 1; background-color: #efefef; } -/* line 860, ../../../scss/_app_styles.scss */ +/* line 861, ../../../scss/_app_styles.scss */ .card > *.moderation hr { border-color: #bcbcbc; } -/* line 865, ../../../scss/_app_styles.scss */ +/* line 866, ../../../scss/_app_styles.scss */ .card > *.unapproved { opacity: 1; border-style: solid; border-color: #f04124; } -/* line 871, ../../../scss/_app_styles.scss */ +/* line 872, ../../../scss/_app_styles.scss */ .card > *:hover { border-style: solid; opacity: 1; } -/* line 877, ../../../scss/_app_styles.scss */ +/* line 878, ../../../scss/_app_styles.scss */ .card > *:hover i { opacity: 0.3; } -/* line 880, ../../../scss/_app_styles.scss */ +/* line 881, ../../../scss/_app_styles.scss */ .card > *:hover footer .age { display: block; } -/* line 885, ../../../scss/_app_styles.scss */ +/* line 886, ../../../scss/_app_styles.scss */ .card > * > i { position: absolute; top: -10px; @@ -24538,28 +24539,28 @@ article h1:not(.subheader) div input:hover { color: #03a9f4; opacity: 0.3; } -/* line 894, ../../../scss/_app_styles.scss */ +/* line 895, ../../../scss/_app_styles.scss */ .card > * .preview { float: left; padding-right: 5px; padding-top: 4px; } -/* line 899, ../../../scss/_app_styles.scss */ +/* line 900, ../../../scss/_app_styles.scss */ .card > * header { overflow: hidden; } -/* line 903, ../../../scss/_app_styles.scss */ +/* line 904, ../../../scss/_app_styles.scss */ .card > * .label, .card > * .label-list:empty:before { opacity: 0.5; } -/* line 906, ../../../scss/_app_styles.scss */ +/* line 907, ../../../scss/_app_styles.scss */ .card > * p { color: #555; height: 80px; background-repeat: no-repeat; font-size: 80%; } -/* line 912, ../../../scss/_app_styles.scss */ +/* line 913, ../../../scss/_app_styles.scss */ .card > * .th { margin: 20px auto; width: 80px; @@ -24567,23 +24568,23 @@ article h1:not(.subheader) div input:hover { overflow: hidden; display: none; } -/* line 918, ../../../scss/_app_styles.scss */ +/* line 919, ../../../scss/_app_styles.scss */ .card > * .th:hover { width: 150px; height: 150px; } -/* line 922, ../../../scss/_app_styles.scss */ +/* line 923, ../../../scss/_app_styles.scss */ .card > * .th img { width: 100%; } -/* line 926, ../../../scss/_app_styles.scss */ +/* line 927, ../../../scss/_app_styles.scss */ .card > * footer { margin-top: 1rem; font-size: 70%; clear: both; color: #e01818; } -/* line 931, ../../../scss/_app_styles.scss */ +/* line 932, ../../../scss/_app_styles.scss */ .card > * footer .age { display: none; position: absolute; @@ -24593,7 +24594,7 @@ article h1:not(.subheader) div input:hover { width: 100%; } -/* line 942, ../../../scss/_app_styles.scss */ +/* line 943, ../../../scss/_app_styles.scss */ .edit-card { position: relative; background-color: white; @@ -24602,40 +24603,40 @@ article h1:not(.subheader) div input:hover { } /* Content Tabs */ -/* line 955, ../../../scss/_app_styles.scss */ +/* line 956, ../../../scss/_app_styles.scss */ article .tabs { display: inline-block; } -/* line 957, ../../../scss/_app_styles.scss */ +/* line 958, ../../../scss/_app_styles.scss */ article .tabs dd a { border-radius: 4px; border: 1px transparent; } -/* line 961, ../../../scss/_app_styles.scss */ +/* line 962, ../../../scss/_app_styles.scss */ article .tabs dd.active a { color: #03abf7; border: 1px solid; } -/* line 965, ../../../scss/_app_styles.scss */ +/* line 966, ../../../scss/_app_styles.scss */ article .tabs dd:hover a { color: #03abf7; } -/* line 969, ../../../scss/_app_styles.scss */ +/* line 970, ../../../scss/_app_styles.scss */ article .tabs i { margin-right: 5px; font-size: 1.6rem; } -/* line 973, ../../../scss/_app_styles.scss */ +/* line 974, ../../../scss/_app_styles.scss */ article .tabs span { font-size: 17px; vertical-align: text-bottom; } -/* line 979, ../../../scss/_app_styles.scss */ +/* line 980, ../../../scss/_app_styles.scss */ article section.content { border: 1px solid #eee; } -/* line 986, ../../../scss/_app_styles.scss */ +/* line 987, ../../../scss/_app_styles.scss */ .card > div:hover { box-shadow: 0 0 10px lightgray; transition: 0.9s; @@ -24644,31 +24645,31 @@ article section.content { } /* Default card */ -/* line 994, ../../../scss/_app_styles.scss */ +/* line 995, ../../../scss/_app_styles.scss */ .card > :hover .label, .card > :hover .label-list:empty:before { opacity: 1; } -/* line 999, ../../../scss/_app_styles.scss */ +/* line 1000, ../../../scss/_app_styles.scss */ .gallery .card .th { display: block; } /* Inline label list */ -/* line 1007, ../../../scss/_app_styles.scss */ +/* line 1008, ../../../scss/_app_styles.scss */ .label-list { display: inline-block; text-align: left; margin-bottom: 0.1rem; } -/* line 1011, ../../../scss/_app_styles.scss */ +/* line 1012, ../../../scss/_app_styles.scss */ .label-list:empty:before { content: "UNTAGGED"; opacity: 0.2 !important; padding: 2px; background-color: transparent; } -/* line 1019, ../../../scss/_app_styles.scss */ +/* line 1020, ../../../scss/_app_styles.scss */ .label-list .label, .label-list .label-list:empty:before { background-color: transparent; padding: 2px; @@ -24676,20 +24677,20 @@ article section.content { /*************************** 2. Custom CSS overrides ***********************/ /* Content area */ -/* line 1028, ../../../scss/_app_styles.scss */ +/* line 1029, ../../../scss/_app_styles.scss */ article { padding-bottom: 1rem; } -/* line 1032, ../../../scss/_app_styles.scss */ +/* line 1033, ../../../scss/_app_styles.scss */ article > header { border-bottom: 1px solid #ddd; } -/* line 1036, ../../../scss/_app_styles.scss */ +/* line 1037, ../../../scss/_app_styles.scss */ article > footer { border-top: 1px dotted #ddd; } -/* line 1048, ../../../scss/_app_styles.scss */ +/* line 1049, ../../../scss/_app_styles.scss */ textarea { min-height: 6rem; } @@ -24710,39 +24711,39 @@ textarea { }*/ /*************************** 3. Custom CSS Below ***********************/ /*CSS fix for tables generated via orgitdown*/ -/* line 1068, ../../../scss/_app_styles.scss */ +/* line 1069, ../../../scss/_app_styles.scss */ #content table td, #content colgroup col { float: none !important; } -/* line 1073, ../../../scss/_app_styles.scss */ +/* line 1074, ../../../scss/_app_styles.scss */ .user { color: inherit; } -/* line 1077, ../../../scss/_app_styles.scss */ +/* line 1078, ../../../scss/_app_styles.scss */ .user i { margin-right: 3px; } -/* line 1080, ../../../scss/_app_styles.scss */ +/* line 1081, ../../../scss/_app_styles.scss */ .user:hover i { opacity: 1; } -/* line 1084, ../../../scss/_app_styles.scss */ +/* line 1085, ../../../scss/_app_styles.scss */ a.node { display: block; } -/* line 1088, ../../../scss/_app_styles.scss */ +/* line 1089, ../../../scss/_app_styles.scss */ .button.edit { margin-bottom: 0; } /************ Forms **************/ /* Node edit */ -/* line 1096, ../../../scss/_app_styles.scss */ +/* line 1097, ../../../scss/_app_styles.scss */ input.node-title { font-size: 3rem; height: 4rem; @@ -24750,13 +24751,13 @@ input.node-title { } /* view-graph in node_details_base.html */ -/* line 1103, ../../../scss/_app_styles.scss */ +/* line 1104, ../../../scss/_app_styles.scss */ .graph-height { height: 70%; } /*for graph and location*/ -/* line 1108, ../../../scss/_app_styles.scss */ +/* line 1109, ../../../scss/_app_styles.scss */ .graph-div { height: 90%; width: -webkit-calc(100% - 10px); @@ -24770,13 +24771,13 @@ input.node-title { } /*for graph and location*/ -/* line 1118, ../../../scss/_app_styles.scss */ +/* line 1119, ../../../scss/_app_styles.scss */ .graph-div h3 { border-bottom: 2px inset #154534; padding: 0.25em 0; } -/* line 1123, ../../../scss/_app_styles.scss */ +/* line 1124, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal, #view-map-edit-widget .close-reveal-modal { z-index: 1; background-color: captiontext; @@ -24787,7 +24788,7 @@ input.node-title { box-shadow: 0 1px 10px 2px #A9A9A9; } -/* line 1134, ../../../scss/_app_styles.scss */ +/* line 1135, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal:hover, #view-map-edit-widget .close-reveal-modal:hover { background-color: white; border-radius: 30px; @@ -24800,7 +24801,7 @@ input.node-title { /****************** CUSTOM *********************/ /* UI Button */ -/* line 1149, ../../../scss/_app_styles.scss */ +/* line 1150, ../../../scss/_app_styles.scss */ .ui.button { margin-right: 0.5rem; border: 1px solid rgba(0, 0, 0, 0.2); @@ -24810,102 +24811,102 @@ input.node-title { padding: 0.5vw 0.75vw; z-index: 500; } -/* line 1160, ../../../scss/_app_styles.scss */ +/* line 1161, ../../../scss/_app_styles.scss */ .ui.button label { color: #666; } -/* line 1163, ../../../scss/_app_styles.scss */ +/* line 1164, ../../../scss/_app_styles.scss */ .ui.button small { margin-left: 2px; display: inline; } -/* line 1167, ../../../scss/_app_styles.scss */ +/* line 1168, ../../../scss/_app_styles.scss */ .ui.button:hover, .ui.button:active { border-color: rgba(255, 255, 255, 0.2); background-color: rgba(0, 0, 0, 0.9); } -/* line 1170, ../../../scss/_app_styles.scss */ +/* line 1171, ../../../scss/_app_styles.scss */ .ui.button:hover label, .ui.button:active label { color: #ddd; } -/* line 1173, ../../../scss/_app_styles.scss */ +/* line 1174, ../../../scss/_app_styles.scss */ .ui.button:hover small, .ui.button:active small { display: inline; } -/* line 1176, ../../../scss/_app_styles.scss */ +/* line 1177, ../../../scss/_app_styles.scss */ .ui.button:hover:focus, .ui.button:active:focus { font-weight: bold; } -/* line 1185, ../../../scss/_app_styles.scss */ +/* line 1186, ../../../scss/_app_styles.scss */ aside#help h4 { color: black; } -/* line 1188, ../../../scss/_app_styles.scss */ +/* line 1189, ../../../scss/_app_styles.scss */ aside#help p, aside#help h5, aside#help h6 { color: #ddd; padding: 0.3rem 0.9375rem; } -/* line 1195, ../../../scss/_app_styles.scss */ +/* line 1196, ../../../scss/_app_styles.scss */ .align-center { margin: 0 auto; display: block; } -/* line 1201, ../../../scss/_app_styles.scss */ +/* line 1202, ../../../scss/_app_styles.scss */ #profile-img { height: 40px; margin-right: 5px; } -/* line 1209, ../../../scss/_app_styles.scss */ +/* line 1210, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin-bottom: 20px; } -/* line 1213, ../../../scss/_app_styles.scss */ +/* line 1214, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 1219, ../../../scss/_app_styles.scss */ +/* line 1220, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 1222, ../../../scss/_app_styles.scss */ +/* line 1223, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 1226, ../../../scss/_app_styles.scss */ +/* line 1227, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 1231, ../../../scss/_app_styles.scss */ +/* line 1232, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 1238, ../../../scss/_app_styles.scss */ +/* line 1239, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 1242, ../../../scss/_app_styles.scss */ +/* line 1243, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 1247, ../../../scss/_app_styles.scss */ +/* line 1248, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 1253, ../../../scss/_app_styles.scss */ +/* line 1254, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -24914,16 +24915,16 @@ aside#help p, aside#help h5, aside#help h6 { border-top: 1px solid #B1B1B1; width: 80%; } -/* line 1262, ../../../scss/_app_styles.scss */ +/* line 1263, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 1267, ../../../scss/_app_styles.scss */ +/* line 1268, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 1270, ../../../scss/_app_styles.scss */ +/* line 1271, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { color: #ffffff !important; height: 2em; @@ -24931,7 +24932,7 @@ aside#help p, aside#help h5, aside#help h6 { padding-left: 10px; line-height: 1.5em; } -/* line 1280, ../../../scss/_app_styles.scss */ +/* line 1281, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -24941,12 +24942,12 @@ aside#help p, aside#help h5, aside#help h6 { border-radius: 0px 0px 5px 5px; /*background-color: #f2f2f2;*/ } -/* line 1289, ../../../scss/_app_styles.scss */ +/* line 1290, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 1295, ../../../scss/_app_styles.scss */ +/* line 1296, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -24972,7 +24973,7 @@ aside#help p, aside#help h5, aside#help h6 { } }*/ /* Simple Card CSS*/ -/* line 1323, ../../../scss/_app_styles.scss */ +/* line 1324, ../../../scss/_app_styles.scss */ .scard { background: #FFF; border: 1px solid #AAA; @@ -24984,12 +24985,12 @@ aside#help p, aside#help h5, aside#help h6 { height: 9rem; /*float:left;*/ } -/* line 1332, ../../../scss/_app_styles.scss */ +/* line 1333, ../../../scss/_app_styles.scss */ .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1338, ../../../scss/_app_styles.scss */ +/* line 1339, ../../../scss/_app_styles.scss */ .scard .scard_header { text-align: center; position: fixed; @@ -25007,7 +25008,7 @@ aside#help p, aside#help h5, aside#help h6 { font-weight: bold; } -/* line 1355, ../../../scss/_app_styles.scss */ +/* line 1356, ../../../scss/_app_styles.scss */ .scard-content { height: 2.7em; padding: 0.5rem; @@ -25020,7 +25021,7 @@ aside#help p, aside#help h5, aside#help h6 { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 1366, ../../../scss/_app_styles.scss */ +/* line 1367, ../../../scss/_app_styles.scss */ .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; @@ -25030,7 +25031,7 @@ aside#help p, aside#help h5, aside#help h6 { text-align: center; } -/* line 1379, ../../../scss/_app_styles.scss */ +/* line 1380, ../../../scss/_app_styles.scss */ .scard-action { height: height; font-size: 0.6em; @@ -25044,7 +25045,7 @@ aside#help p, aside#help h5, aside#help h6 { background-color: #CCCCCC; } -/* line 1394, ../../../scss/_app_styles.scss */ +/* line 1395, ../../../scss/_app_styles.scss */ .scard-desc { font-size: 0.7em; color: #333333; @@ -25060,13 +25061,13 @@ aside#help p, aside#help h5, aside#help h6 { display-inline: block; } -/* line 1409, ../../../scss/_app_styles.scss */ +/* line 1410, ../../../scss/_app_styles.scss */ p { margin: 0px; padding: 10px; } -/* line 1414, ../../../scss/_app_styles.scss */ +/* line 1415, ../../../scss/_app_styles.scss */ .scard-image { padding: 0px; margin: 0px; @@ -25077,7 +25078,7 @@ p { overflow: hidden; background-color: #f2f2f2; } -/* line 1423, ../../../scss/_app_styles.scss */ +/* line 1424, ../../../scss/_app_styles.scss */ .scard-image img { border-radius: 2px 2px 0 0; display: block; @@ -25085,7 +25086,7 @@ p { opacity: 0.9; height: 100%; } -/* line 1432, ../../../scss/_app_styles.scss */ +/* line 1433, ../../../scss/_app_styles.scss */ .scard-image i { font-size: 7rem; opacity: 0.75; @@ -25099,83 +25100,83 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1446, ../../../scss/_app_styles.scss */ +/* line 1447, ../../../scss/_app_styles.scss */ .scard-image i.common-icon:before { content: "\f1fb"; } -/* line 1449, ../../../scss/_app_styles.scss */ +/* line 1450, ../../../scss/_app_styles.scss */ .scard-image i.file:before { content: "\f18e"; } -/* line 1452, ../../../scss/_app_styles.scss */ +/* line 1453, ../../../scss/_app_styles.scss */ .scard-image i.page:before { content: "\f18e"; } -/* line 1455, ../../../scss/_app_styles.scss */ +/* line 1456, ../../../scss/_app_styles.scss */ .scard-image i.collection:before { content: "\f18a"; } -/* line 1458, ../../../scss/_app_styles.scss */ +/* line 1459, ../../../scss/_app_styles.scss */ .scard-image i.documents:before { content: "\f18b"; } -/* line 1461, ../../../scss/_app_styles.scss */ +/* line 1462, ../../../scss/_app_styles.scss */ .scard-image i.pdf:before { content: "\f18b"; } -/* line 1464, ../../../scss/_app_styles.scss */ +/* line 1465, ../../../scss/_app_styles.scss */ .scard-image i.text:before { content: "\f18e"; } -/* line 1467, ../../../scss/_app_styles.scss */ +/* line 1468, ../../../scss/_app_styles.scss */ .scard-image i.interactives:before { content: "\f1b2"; } -/* line 1470, ../../../scss/_app_styles.scss */ +/* line 1471, ../../../scss/_app_styles.scss */ .scard-image i.ebooks:before { content: "\f11e"; } -/* line 1473, ../../../scss/_app_styles.scss */ +/* line 1474, ../../../scss/_app_styles.scss */ .scard-image i.images:before { content: "\f125"; } -/* line 1476, ../../../scss/_app_styles.scss */ +/* line 1477, ../../../scss/_app_styles.scss */ .scard-image i.audios:before, .scard-image i.audio:before { content: "\f17b"; } -/* line 1479, ../../../scss/_app_styles.scss */ +/* line 1480, ../../../scss/_app_styles.scss */ .scard-image i.videos:before, .scard-image i.video:before { content: "\f20e"; } -/* line 1485, ../../../scss/_app_styles.scss */ +/* line 1486, ../../../scss/_app_styles.scss */ .published.scard-action { background: #A6D9CB; } -/* line 1489, ../../../scss/_app_styles.scss */ +/* line 1490, ../../../scss/_app_styles.scss */ .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 1495, ../../../scss/_app_styles.scss */ +/* line 1496, ../../../scss/_app_styles.scss */ .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1500, ../../../scss/_app_styles.scss */ +/* line 1501, ../../../scss/_app_styles.scss */ .moderation.scard-action { border-color: transparent #03a9f4 transparent transparent; border-color: rgba(255, 255, 255, 0) #03a9f4 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1504, ../../../scss/_app_styles.scss */ +/* line 1505, ../../../scss/_app_styles.scss */ .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 1508, ../../../scss/_app_styles.scss */ +/* line 1509, ../../../scss/_app_styles.scss */ .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -25186,7 +25187,7 @@ p { /* End Simple Card CSS*/ /* Customized Off-Canvas */ -/* line 1646, ../../../scss/_app_styles.scss */ +/* line 1647, ../../../scss/_app_styles.scss */ #help-canvas-menu { position: fixed; top: 52px; @@ -25199,26 +25200,26 @@ p { height: 100%; } -/* line 1657, ../../../scss/_app_styles.scss */ +/* line 1658, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded { left: 0 !important; z-index: 100000000; left: 150px; } -/* line 1662, ../../../scss/_app_styles.scss */ +/* line 1663, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded .help-button { right: 80px; z-index: -1; } -/* line 1667, ../../../scss/_app_styles.scss */ +/* line 1668, ../../../scss/_app_styles.scss */ #help-canvas-menu.animating .help-button { -webkit-animation: shake 400ms; animation: shake 400ms; } -/* line 1671, ../../../scss/_app_styles.scss */ +/* line 1672, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button { position: absolute; -webkit-transform: rotate(-90deg); @@ -25245,12 +25246,12 @@ p { border-top-right-radius: 5px; } -/* line 1697, ../../../scss/_app_styles.scss */ +/* line 1698, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button-text { font-size: 18px; } -/* line 1700, ../../../scss/_app_styles.scss */ +/* line 1701, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button .text { color: #f9f9f9; letter-spacing: .1em; @@ -25259,7 +25260,7 @@ p { text-shadow: 0 0 1px rgba(0, 0, 0, 0.35); } -/* line 1709, ../../../scss/_app_styles.scss */ +/* line 1710, ../../../scss/_app_styles.scss */ #help-canvas-menu .mainContainer { background: #fff; /*-webkit-box-shadow:3px 3px 17px -1px #7b7b7b; @@ -25273,7 +25274,7 @@ p { } /* End of Customized Off-Canvas */ -/* line 1727, ../../../scss/_app_styles.scss */ +/* line 1728, ../../../scss/_app_styles.scss */ .rcard { overflow: hidden; color: #272727; @@ -25281,56 +25282,56 @@ p { background-color: #f5f5f5; margin: 5px; } -/* line 1738, ../../../scss/_app_styles.scss */ +/* line 1739, ../../../scss/_app_styles.scss */ .rcard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1743, ../../../scss/_app_styles.scss */ +/* line 1744, ../../../scss/_app_styles.scss */ .rcard .title { font-size: 1.1rem; font-weight: bold; } -/* line 1749, ../../../scss/_app_styles.scss */ +/* line 1750, ../../../scss/_app_styles.scss */ .rcard .content { padding: 0.5rem 2rem; border-radius: 0 0 2px 2px; overflow: hidden; height: 7.25rem; } -/* line 1756, ../../../scss/_app_styles.scss */ +/* line 1757, ../../../scss/_app_styles.scss */ .rcard .content .slick-slider { margin-bottom: 0; } -/* line 1760, ../../../scss/_app_styles.scss */ +/* line 1761, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev { left: 0.25rem; } -/* line 1763, ../../../scss/_app_styles.scss */ +/* line 1764, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev:before { color: #ccc; } -/* line 1769, ../../../scss/_app_styles.scss */ +/* line 1770, ../../../scss/_app_styles.scss */ .rcard .content .slick-next { right: 0.25rem; } -/* line 1772, ../../../scss/_app_styles.scss */ +/* line 1773, ../../../scss/_app_styles.scss */ .rcard .content .slick-next:before { color: #ccc; } -/* line 1778, ../../../scss/_app_styles.scss */ +/* line 1779, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title { width: 100%; border-bottom: 1px solid #808080; line-height: 0.25em; margin: 10px 0 20px; } -/* line 1784, ../../../scss/_app_styles.scss */ +/* line 1785, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title small { padding: 0 10px; background-color: #f5f5f5; } -/* line 1791, ../../../scss/_app_styles.scss */ +/* line 1792, ../../../scss/_app_styles.scss */ .rcard .action { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -25338,15 +25339,15 @@ p { font-size: small; height: 2rem; } -/* line 1798, ../../../scss/_app_styles.scss */ +/* line 1799, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection { opacity: 0.5; } -/* line 1801, ../../../scss/_app_styles.scss */ +/* line 1802, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection:hover { opacity: 1; } -/* line 1815, ../../../scss/_app_styles.scss */ +/* line 1816, ../../../scss/_app_styles.scss */ .rcard .image { position: relative; background-color: #ccc; @@ -25354,7 +25355,7 @@ p { height: 8em; overflow: hidden; } -/* line 1825, ../../../scss/_app_styles.scss */ +/* line 1826, ../../../scss/_app_styles.scss */ .rcard .image .title { position: absolute; bottom: 0; @@ -25366,7 +25367,7 @@ p { text-transform: uppercase; text-shadow: 0px 0px 0.5px rgba(0, 0, 0, 0.5); } -/* line 1838, ../../../scss/_app_styles.scss */ +/* line 1839, ../../../scss/_app_styles.scss */ .rcard .image img { border-radius: 2px 2px 0 0; display: block; @@ -25376,14 +25377,14 @@ p { filter: brightness(0.75); -webkit-filter: brightness(0.75); } -/* line 1850, ../../../scss/_app_styles.scss */ +/* line 1851, ../../../scss/_app_styles.scss */ .rcard .image img:hover { filter: brightness(1); -webkit-filter: brightness(1); transform: translate3d(0, 0, 0); transition: all 1.5s ease; } -/* line 1859, ../../../scss/_app_styles.scss */ +/* line 1860, ../../../scss/_app_styles.scss */ .rcard .image i { font-size: 7rem; opacity: 0.75; @@ -25397,51 +25398,51 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1876, ../../../scss/_app_styles.scss */ +/* line 1877, ../../../scss/_app_styles.scss */ .rcard .image i.file:before { content: "\f18e"; } -/* line 1877, ../../../scss/_app_styles.scss */ +/* line 1878, ../../../scss/_app_styles.scss */ .rcard .image i.page:before { content: "\f18e"; } -/* line 1878, ../../../scss/_app_styles.scss */ +/* line 1879, ../../../scss/_app_styles.scss */ .rcard .image i.collection:before { content: "\f18a"; } -/* line 1880, ../../../scss/_app_styles.scss */ +/* line 1881, ../../../scss/_app_styles.scss */ .rcard .image i.documents:before { content: "\f18b"; } -/* line 1881, ../../../scss/_app_styles.scss */ +/* line 1882, ../../../scss/_app_styles.scss */ .rcard .image i.pdf:before { content: "\f18b"; } -/* line 1882, ../../../scss/_app_styles.scss */ +/* line 1883, ../../../scss/_app_styles.scss */ .rcard .image i.text:before { content: "\f18e"; } -/* line 1883, ../../../scss/_app_styles.scss */ +/* line 1884, ../../../scss/_app_styles.scss */ .rcard .image i.interactives:before { content: "\f1b2"; } -/* line 1884, ../../../scss/_app_styles.scss */ +/* line 1885, ../../../scss/_app_styles.scss */ .rcard .image i.ebooks:before { content: "\f11e"; } -/* line 1885, ../../../scss/_app_styles.scss */ +/* line 1886, ../../../scss/_app_styles.scss */ .rcard .image i.images:before { content: "\f125"; } -/* line 1886, ../../../scss/_app_styles.scss */ +/* line 1887, ../../../scss/_app_styles.scss */ .rcard .image i.audios:before, .rcard .image i.audio:before { content: "\f17b"; } -/* line 1887, ../../../scss/_app_styles.scss */ +/* line 1888, ../../../scss/_app_styles.scss */ .rcard .image i.videos:before, .rcard .image i.video:before { content: "\f20e"; } -/* line 1890, ../../../scss/_app_styles.scss */ +/* line 1891, ../../../scss/_app_styles.scss */ .rcard .card-label { border-style: solid; border-width: 0 70px 40px 0; @@ -25454,59 +25455,59 @@ p { z-index: 1; opacity: 0.75; } -/* line 1903, ../../../scss/_app_styles.scss */ +/* line 1904, ../../../scss/_app_styles.scss */ .rcard .card-label { border-color: transparent #333 transparent transparent; border-color: rgba(255, 255, 255, 0) #333 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1908, ../../../scss/_app_styles.scss */ +/* line 1909, ../../../scss/_app_styles.scss */ .rcard .published.card-label { border-color: transparent #43AC6A transparent transparent; border-color: rgba(255, 255, 255, 0) #43AC6A rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1912, ../../../scss/_app_styles.scss */ +/* line 1913, ../../../scss/_app_styles.scss */ .rcard .published.card-label .label-text:before { content: "\221A"; margin-left: 5px; font-size: larger; } -/* line 1920, ../../../scss/_app_styles.scss */ +/* line 1921, ../../../scss/_app_styles.scss */ .rcard .draft.card-label { border-color: transparent #beccd2 transparent transparent; border-color: rgba(255, 255, 255, 0) #beccd2 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1924, ../../../scss/_app_styles.scss */ +/* line 1925, ../../../scss/_app_styles.scss */ .rcard .draft.card-label .label-text:before { content: "Draft"; } -/* line 1929, ../../../scss/_app_styles.scss */ +/* line 1930, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1933, ../../../scss/_app_styles.scss */ +/* line 1934, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label .label-text:before { content: "Deleted"; } -/* line 1938, ../../../scss/_app_styles.scss */ +/* line 1939, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label { border-color: transparent #03a9f4 transparent transparent; border-color: rgba(255, 255, 255, 0) #03a9f4 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1942, ../../../scss/_app_styles.scss */ +/* line 1943, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label .label-text:before { content: "Mod"; } -/* line 1945, ../../../scss/_app_styles.scss */ +/* line 1946, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label { border-color: transparent #000 transparent transparent; border-color: rgba(255, 255, 255, 0) #000 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1949, ../../../scss/_app_styles.scss */ +/* line 1950, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label .label-text:before { content: "hidden"; } -/* line 1952, ../../../scss/_app_styles.scss */ +/* line 1953, ../../../scss/_app_styles.scss */ .rcard .label-text { color: #fff; font-size: 0.75rem; @@ -25517,7 +25518,7 @@ p { transform: rotate(30deg); } -/* line 1966, ../../../scss/_app_styles.scss */ +/* line 1967, ../../../scss/_app_styles.scss */ .compulsory:after { content: '*'; color: red; @@ -25525,19 +25526,19 @@ p { } /* Watermark background for node_ajax_content */ -/* line 1974, ../../../scss/_app_styles.scss */ +/* line 1975, ../../../scss/_app_styles.scss */ .allow.draft { background-size: 10%; background-repeat: repeat; background-image: url("/static/ndf/images/draft-watermark.png"); } -/* line 1982, ../../../scss/_app_styles.scss */ +/* line 1983, ../../../scss/_app_styles.scss */ .text-gray { color: gray; } -/* line 1987, ../../../scss/_app_styles.scss */ +/* line 1988, ../../../scss/_app_styles.scss */ .repository-title { color: #D7D7D7; font-size: 1.1em; @@ -25550,7 +25551,7 @@ p { text-align: center; } -/* line 1999, ../../../scss/_app_styles.scss */ +/* line 2000, ../../../scss/_app_styles.scss */ .repository-desc { font-size: 1.1em; width: auto; @@ -25562,12 +25563,12 @@ p { margin-left: 4px; } -/* line 2010, ../../../scss/_app_styles.scss */ +/* line 2011, ../../../scss/_app_styles.scss */ .card-holder { padding-left: 2%; } -/* line 2014, ../../../scss/_app_styles.scss */ +/* line 2015, ../../../scss/_app_styles.scss */ .app-card-wrapper { position: relative; margin: auto; @@ -25577,14 +25578,14 @@ p { max-width: calc(70rem + 70px); } -/* line 2023, ../../../scss/_app_styles.scss */ +/* line 2024, ../../../scss/_app_styles.scss */ .app-card-container { display: inline-block; vertical-align: top; margin: 15px; } -/* line 2029, ../../../scss/_app_styles.scss */ +/* line 2030, ../../../scss/_app_styles.scss */ .app-card { width: 19rem; margin: 15px 20px; @@ -25595,7 +25596,7 @@ p { border: thin solid #D3D3D3; } -/* line 2039, ../../../scss/_app_styles.scss */ +/* line 2040, ../../../scss/_app_styles.scss */ .app-card:hover { box-shadow: 0px 0px 15px #808080; border: thin solid #D3D3D3; @@ -25603,26 +25604,26 @@ p { transition: all 0.6s ease 0s; } -/* line 2046, ../../../scss/_app_styles.scss */ +/* line 2047, ../../../scss/_app_styles.scss */ .app-card-icon { color: #4c4c4c; position: relative; font-size: 6em; } -/* line 2052, ../../../scss/_app_styles.scss */ +/* line 2053, ../../../scss/_app_styles.scss */ .app-card-title { padding-bottom: -1em; } -/* line 2056, ../../../scss/_app_styles.scss */ +/* line 2057, ../../../scss/_app_styles.scss */ .app-card-content { color: #4c4c4c; text-align: center; margin-top: 0.5cm; } -/* line 2063, ../../../scss/_app_styles.scss */ +/* line 2064, ../../../scss/_app_styles.scss */ .fullscreen-icon { display: none; } @@ -25638,58 +25639,58 @@ div.show-image:hover div.fullscreen-icon{ font-size:2em; }*/ -/* line 2082, ../../../scss/_app_styles.scss */ +/* line 2083, ../../../scss/_app_styles.scss */ .cke .cke_toolbox .cke_toolbar:last-child { float: right; } -/* line 2088, ../../../scss/_app_styles.scss */ +/* line 2089, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin: 0px 1em; } -/* line 2092, ../../../scss/_app_styles.scss */ +/* line 2093, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 2098, ../../../scss/_app_styles.scss */ +/* line 2099, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 2101, ../../../scss/_app_styles.scss */ +/* line 2102, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 2105, ../../../scss/_app_styles.scss */ +/* line 2106, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 2110, ../../../scss/_app_styles.scss */ +/* line 2111, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 2117, ../../../scss/_app_styles.scss */ +/* line 2118, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 2121, ../../../scss/_app_styles.scss */ +/* line 2122, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 2126, ../../../scss/_app_styles.scss */ +/* line 2127, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 2132, ../../../scss/_app_styles.scss */ +/* line 2133, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -25697,16 +25698,16 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 0em; border-top: 1px solid #B1B1B1; } -/* line 2140, ../../../scss/_app_styles.scss */ +/* line 2141, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 2145, ../../../scss/_app_styles.scss */ +/* line 2146, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 2148, ../../../scss/_app_styles.scss */ +/* line 2149, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { /*background-color: #3e3e3e;*/ color: #ececec !important; @@ -25716,7 +25717,7 @@ div.show-image:hover div.fullscreen-icon{ line-height: 1.5em; border-radius: 5px 5px 0px 0px; } -/* line 2158, ../../../scss/_app_styles.scss */ +/* line 2159, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -25725,12 +25726,12 @@ div.show-image:hover div.fullscreen-icon{ padding-left: 10px; border-radius: 0px 0px 5px 5px; } -/* line 2166, ../../../scss/_app_styles.scss */ +/* line 2167, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 2172, ../../../scss/_app_styles.scss */ +/* line 2173, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -25738,7 +25739,7 @@ div.show-image:hover div.fullscreen-icon{ /* Large desktop */ @media (min-width: 34em) { - /* line 2180, ../../../scss/_app_styles.scss */ + /* line 2181, ../../../scss/_app_styles.scss */ .container { max-width: 34rem; margin: 0px auto; @@ -25746,7 +25747,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 48em) { - /* line 2188, ../../../scss/_app_styles.scss */ + /* line 2189, ../../../scss/_app_styles.scss */ .container { max-width: 45rem; margin: 0px auto; @@ -25754,7 +25755,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 62em) { - /* line 2196, ../../../scss/_app_styles.scss */ + /* line 2197, ../../../scss/_app_styles.scss */ .container { max-width: 60rem; margin: 0px auto; @@ -25762,20 +25763,20 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 75em) { - /* line 2204, ../../../scss/_app_styles.scss */ + /* line 2205, ../../../scss/_app_styles.scss */ .container { max-width: 72.25rem; margin: 0px auto; } } -/* line 2210, ../../../scss/_app_styles.scss */ +/* line 2211, ../../../scss/_app_styles.scss */ .course-page { position: relative; background-size: 100% 100%; height: 100%; margin-top: 10px; } -/* line 2216, ../../../scss/_app_styles.scss */ +/* line 2217, ../../../scss/_app_styles.scss */ .course-page > .container { background-color: #fff; padding: 0px 0px; @@ -25783,7 +25784,7 @@ div.show-image:hover div.fullscreen-icon{ box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3); } -/* line 2224, ../../../scss/_app_styles.scss */ +/* line 2225, ../../../scss/_app_styles.scss */ .course-page-opacity { height: 100%; width: 100%; @@ -25797,12 +25798,12 @@ div.show-image:hover div.fullscreen-icon{ background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 2238, ../../../scss/_app_styles.scss */ +/* line 2239, ../../../scss/_app_styles.scss */ #envelop-cover { /*background: #A0148E;*/ height: 250px; } -/* line 2242, ../../../scss/_app_styles.scss */ +/* line 2243, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header { font-size: 35px; font-weight: 500; @@ -25812,11 +25813,11 @@ div.show-image:hover div.fullscreen-icon{ height: 250px; color: #fff; } -/* line 2251, ../../../scss/_app_styles.scss */ +/* line 2252, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header label { color: #fff; } -/* line 2255, ../../../scss/_app_styles.scss */ +/* line 2256, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background, #envelop-cover .course-page-header .course-header-background-layer { position: absolute; left: 0px; @@ -25825,17 +25826,17 @@ div.show-image:hover div.fullscreen-icon{ bottom: 0px; height: 250px; } -/* line 2262, ../../../scss/_app_styles.scss */ +/* line 2263, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background img, #envelop-cover .course-page-header .course-header-background-layer img { width: auto; height: 250px; } -/* line 2268, ../../../scss/_app_styles.scss */ +/* line 2269, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background-layer { background-color: rgba(0, 0, 0, 0.5); opacity: 0; } -/* line 2273, ../../../scss/_app_styles.scss */ +/* line 2274, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings { margin-left: 15px; position: absolute; @@ -25843,20 +25844,20 @@ div.show-image:hover div.fullscreen-icon{ bottom: 55px; /*width: 170px;*/ } -/* line 2279, ../../../scss/_app_styles.scss */ +/* line 2280, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul { box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); } -/* line 2281, ../../../scss/_app_styles.scss */ +/* line 2282, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul > li:hover { background: rgba(0, 0, 0, 0.9); } -/* line 2285, ../../../scss/_app_styles.scss */ +/* line 2286, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a { font-size: 15px; color: #737373; } -/* line 2286, ../../../scss/_app_styles.scss */ +/* line 2287, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child { background: rgba(50, 50, 50, 0.8); padding: 9px 12px 9px 10px; @@ -25864,11 +25865,11 @@ div.show-image:hover div.fullscreen-icon{ font-size: 12px; margin: 0px; } -/* line 2292, ../../../scss/_app_styles.scss */ +/* line 2293, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child > i { margin-right: 5px; } -/* line 2299, ../../../scss/_app_styles.scss */ +/* line 2300, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span { background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.7); @@ -25879,30 +25880,30 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; border-radius: 3px; } -/* line 2309, ../../../scss/_app_styles.scss */ +/* line 2310, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span i { font-size: 20px; } -/* line 2316, ../../../scss/_app_styles.scss */ +/* line 2317, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a { font-size: 15px; color: #737373; } -/* line 2319, ../../../scss/_app_styles.scss */ +/* line 2320, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a i { font-size: 18px; } -/* line 2326, ../../../scss/_app_styles.scss */ +/* line 2327, ../../../scss/_app_styles.scss */ #envelop-cover .heading { letter-spacing: -1.2px; font-weight: 400; } -/* line 2331, ../../../scss/_app_styles.scss */ +/* line 2332, ../../../scss/_app_styles.scss */ #envelop-cover .meta { line-height: 2.1em; padding-left: 14px; } -/* line 2335, ../../../scss/_app_styles.scss */ +/* line 2336, ../../../scss/_app_styles.scss */ #envelop-cover .meta .key { color: #A7A4A4; font-weight: 500; @@ -25912,27 +25913,27 @@ div.show-image:hover div.fullscreen-icon{ vertical-align: top; margin-right: 10px; } -/* line 2345, ../../../scss/_app_styles.scss */ +/* line 2346, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value { display: inline-block; } -/* line 2348, ../../../scss/_app_styles.scss */ +/* line 2349, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .name { color: #000; } -/* line 2352, ../../../scss/_app_styles.scss */ +/* line 2353, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .time { font-size: 13px; font-weight: 300; color: #000; } -/* line 2359, ../../../scss/_app_styles.scss */ +/* line 2360, ../../../scss/_app_styles.scss */ #envelop-cover .course-title { position: absolute; bottom: 50px; left: 5px; } -/* line 2364, ../../../scss/_app_styles.scss */ +/* line 2365, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs { border: 0 solid silver; border-width: 0px 0px 0px 0px; @@ -25944,7 +25945,7 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; background-color: rgba(255, 255, 255, 0.8); } -/* line 2375, ../../../scss/_app_styles.scss */ +/* line 2376, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title { border: 0 solid silver; border-width: 0 0 0px 0px; @@ -25954,7 +25955,7 @@ div.show-image:hover div.fullscreen-icon{ display: inline-block; border-top: 5px solid transparent; } -/* line 2384, ../../../scss/_app_styles.scss */ +/* line 2385, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title a { color: #6F669E; font-weight: 600; @@ -25962,25 +25963,25 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: -0.3px; padding: 0rem 0.8rem 0.4rem; } -/* line 2392, ../../../scss/_app_styles.scss */ +/* line 2393, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active { border-width: 0px 0px 0px 0px; background: #FFFFFF; border-top: 5px solid #F11FD0; } -/* line 2396, ../../../scss/_app_styles.scss */ +/* line 2397, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active a { color: #6153AE; } -/* line 2409, ../../../scss/_app_styles.scss */ +/* line 2410, ../../../scss/_app_styles.scss */ .note-tags a { background: #ffebb2; padding: 0.2em 0.7em; display: inline-block; } -/* line 2416, ../../../scss/_app_styles.scss */ +/* line 2417, ../../../scss/_app_styles.scss */ .toggleButtons a { padding: 0.5em 1em; margin: 0px; @@ -25989,69 +25990,69 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid #B7B7B7; display: inline; } -/* line 2424, ../../../scss/_app_styles.scss */ +/* line 2425, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { margin-right: -3px; border-right: 0px solid #000; } -/* line 2428, ../../../scss/_app_styles.scss */ +/* line 2429, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { border-radius: 10px 0px 0px 10px; } -/* line 2431, ../../../scss/_app_styles.scss */ +/* line 2432, ../../../scss/_app_styles.scss */ .toggleButtons a:last-child { border-radius: 0px 10px 10px 0px; } -/* line 2434, ../../../scss/_app_styles.scss */ +/* line 2435, ../../../scss/_app_styles.scss */ .toggleButtons a.active { background-color: #908F8F; color: #fff; } -/* line 2441, ../../../scss/_app_styles.scss */ +/* line 2442, ../../../scss/_app_styles.scss */ .explore-header { line-height: 3em; } -/* line 2444, ../../../scss/_app_styles.scss */ +/* line 2445, ../../../scss/_app_styles.scss */ .explore-header > div { vertical-align: middle; display: inline-block; } -/* line 2448, ../../../scss/_app_styles.scss */ +/* line 2449, ../../../scss/_app_styles.scss */ .explore-header .heading { font-size: 2em; } -/* line 2461, ../../../scss/_app_styles.scss */ +/* line 2462, ../../../scss/_app_styles.scss */ #envelop-content { /*background-color: #fff;*/ padding: 0px 10px; overflow-x: hidden; /* For accordian in the mobile view*/ } -/* line 2467, ../../../scss/_app_styles.scss */ +/* line 2468, ../../../scss/_app_styles.scss */ #envelop-content .accordion { margin-left: 0px; } -/* line 2471, ../../../scss/_app_styles.scss */ +/* line 2472, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation a { background-color: #DEDEDE; } -/* line 2474, ../../../scss/_app_styles.scss */ +/* line 2475, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation.active a { background-color: #fff; } -/* line 2481, ../../../scss/_app_styles.scss */ +/* line 2482, ../../../scss/_app_styles.scss */ #envelop-content > div > .tabs-content > .content { background: #FFFFFF; padding: 1em; } -/* line 2488, ../../../scss/_app_styles.scss */ +/* line 2489, ../../../scss/_app_styles.scss */ #envelop-content .course-book #course-dashboard { padding: 0px; } -/* line 2496, ../../../scss/_app_styles.scss */ +/* line 2497, ../../../scss/_app_styles.scss */ .course-overview-container { /*.about-course-heading { display: block; @@ -26086,23 +26087,23 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; }*/ } -/* line 2497, ../../../scss/_app_styles.scss */ +/* line 2498, ../../../scss/_app_styles.scss */ .course-overview-container .course-overview > .columns { padding: 0px 10px; } -/* line 2500, ../../../scss/_app_styles.scss */ +/* line 2501, ../../../scss/_app_styles.scss */ .course-overview-container h5 { text-transform: uppercase; } -/* line 2503, ../../../scss/_app_styles.scss */ +/* line 2504, ../../../scss/_app_styles.scss */ .course-overview-container .correct-count { color: #367714; } -/* line 2506, ../../../scss/_app_styles.scss */ +/* line 2507, ../../../scss/_app_styles.scss */ .course-overview-container .incorrect-count { color: #9b0000; } -/* line 2509, ../../../scss/_app_styles.scss */ +/* line 2510, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-heading { text-transform: uppercase; font-size: 12px; @@ -26111,45 +26112,45 @@ div.show-image:hover div.fullscreen-icon{ color: #8E8E8E; display: block; } -/* line 2517, ../../../scss/_app_styles.scss */ +/* line 2518, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-count { font-size: 30px; font-weight: 500; letter-spacing: 0.5px; display: block; } -/* line 2523, ../../../scss/_app_styles.scss */ +/* line 2524, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session { border-bottom: 1px solid #ccc; margin-bottom: 12px; padding-bottom: 15px; } -/* line 2528, ../../../scss/_app_styles.scss */ +/* line 2529, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session h5, .course-overview-container .ongoing-session h3 { color: #2b78e4; } -/* line 2531, ../../../scss/_app_styles.scss */ +/* line 2532, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session button { font-size: 14px; padding: 7px; margin: 0px; background-color: #2B78E4; } -/* line 2539, ../../../scss/_app_styles.scss */ +/* line 2540, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > h5 { color: #888; } -/* line 2542, ../../../scss/_app_styles.scss */ +/* line 2543, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > .row { margin: 10px 0px; } -/* line 2545, ../../../scss/_app_styles.scss */ +/* line 2546, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2550, ../../../scss/_app_styles.scss */ +/* line 2551, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26158,17 +26159,17 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2558, ../../../scss/_app_styles.scss */ +/* line 2559, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2568, ../../../scss/_app_styles.scss */ +/* line 2569, ../../../scss/_app_styles.scss */ .course-overview-container .course-notif-logs ul { list-style: none; } -/* line 2572, ../../../scss/_app_styles.scss */ +/* line 2573, ../../../scss/_app_styles.scss */ .course-overview-container .course-section { border: 1px solid #ccc; padding: 10px; @@ -26176,11 +26177,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 40px 0px; position: relative; } -/* line 2579, ../../../scss/_app_styles.scss */ +/* line 2580, ../../../scss/_app_styles.scss */ .course-overview-container .course-section > .row { margin: 20px 0px; } -/* line 2583, ../../../scss/_app_styles.scss */ +/* line 2584, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-heading { text-transform: uppercase; font-weight: 600; @@ -26190,7 +26191,7 @@ div.show-image:hover div.fullscreen-icon{ margin: 2px 0px 15px; color: #888; } -/* line 2593, ../../../scss/_app_styles.scss */ +/* line 2594, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-icon { position: absolute; font-size: 40px; @@ -26199,58 +26200,58 @@ div.show-image:hover div.fullscreen-icon{ color: #aaa; background: #fff; } -/* line 2617, ../../../scss/_app_styles.scss */ +/* line 2618, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning { background-color: #fffdd7; } -/* line 2619, ../../../scss/_app_styles.scss */ +/* line 2620, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning > h5 { color: #c09100; } -/* line 2622, ../../../scss/_app_styles.scss */ +/* line 2623, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning i { padding: 10px; margin-right: 5px; color: #c09100; } -/* line 2627, ../../../scss/_app_styles.scss */ +/* line 2628, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning a { text-decoration: underline; } -/* line 2631, ../../../scss/_app_styles.scss */ +/* line 2632, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data { margin: 20px 0px; } -/* line 2635, ../../../scss/_app_styles.scss */ +/* line 2636, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 2638, ../../../scss/_app_styles.scss */ +/* line 2639, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 2645, ../../../scss/_app_styles.scss */ +/* line 2646, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table { width: 100%; margin: 15px 0px; } -/* line 2649, ../../../scss/_app_styles.scss */ +/* line 2650, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table tr { border: none; } -/* line 2653, ../../../scss/_app_styles.scss */ +/* line 2654, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table .progress .merter-val { margin-left: 5px; } -/* line 2691, ../../../scss/_app_styles.scss */ +/* line 2692, ../../../scss/_app_styles.scss */ .about-course { background-color: #fff; padding: 10px 23px; } -/* line 2694, ../../../scss/_app_styles.scss */ +/* line 2695, ../../../scss/_app_styles.scss */ .about-course > h5 { text-transform: uppercase; font-weight: 600; @@ -26261,7 +26262,7 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 5px; } -/* line 2705, ../../../scss/_app_styles.scss */ +/* line 2706, ../../../scss/_app_styles.scss */ .course-desc { letter-spacing: 0.7px; font-weight: 400; @@ -26271,7 +26272,7 @@ div.show-image:hover div.fullscreen-icon{ margin-top: 5px; } -/* line 2713, ../../../scss/_app_styles.scss */ +/* line 2714, ../../../scss/_app_styles.scss */ .course-highlight { letter-spacing: 0.7px; font-weight: 400; @@ -26282,25 +26283,25 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 4px; margin-bottom: 5px; } -/* line 2723, ../../../scss/_app_styles.scss */ +/* line 2724, ../../../scss/_app_styles.scss */ .course-highlight > span { color: #ce7869; } -/* line 2729, ../../../scss/_app_styles.scss */ +/* line 2730, ../../../scss/_app_styles.scss */ .icon-wid { font-size: 34px !important; color: #a2b1be; margin-right: 10px; } -/* line 2738, ../../../scss/_app_styles.scss */ +/* line 2739, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2743, ../../../scss/_app_styles.scss */ +/* line 2744, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26309,96 +26310,96 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2751, ../../../scss/_app_styles.scss */ +/* line 2752, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2760, ../../../scss/_app_styles.scss */ +/* line 2761, ../../../scss/_app_styles.scss */ .student-dashboard-header-container { background-color: #90F; padding: 10px 10px; height: 110px; width: 100%; } -/* line 2768, ../../../scss/_app_styles.scss */ +/* line 2769, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header img { height: 75px; width: 75px; vertical-align: top; margin: 0px 10px; } -/* line 2774, ../../../scss/_app_styles.scss */ +/* line 2775, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info { display: inline-block; } -/* line 2776, ../../../scss/_app_styles.scss */ +/* line 2777, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info > span { display: block; color: #fff; } -/* line 2780, ../../../scss/_app_styles.scss */ +/* line 2781, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-name { color: #fff; font-weight: 600; font-size: 22px; letter-spacing: 0.5px; } -/* line 2786, ../../../scss/_app_styles.scss */ +/* line 2787, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-overall-points { font-size: 26px; color: #ffff00; } -/* line 2799, ../../../scss/_app_styles.scss */ +/* line 2800, ../../../scss/_app_styles.scss */ .student-dashboard { background-color: #fff; padding: 10px; } -/* line 2804, ../../../scss/_app_styles.scss */ +/* line 2805, ../../../scss/_app_styles.scss */ .student-dashboard #course-act-logs > span { display: inline-block; vertical-align: top; } -/* line 2813, ../../../scss/_app_styles.scss */ +/* line 2814, ../../../scss/_app_styles.scss */ .rating-star-number { position: relative; display: inline-block; } -/* line 2816, ../../../scss/_app_styles.scss */ +/* line 2817, ../../../scss/_app_styles.scss */ .rating-star-number > span { position: absolute; top: 11px; left: 14px; font-size: 13px; } -/* line 2822, ../../../scss/_app_styles.scss */ +/* line 2823, ../../../scss/_app_styles.scss */ .rating-star-number i { font-size: 40px; color: gold; } -/* line 2829, ../../../scss/_app_styles.scss */ +/* line 2830, ../../../scss/_app_styles.scss */ .course-notif .notif-type img { height: 35px; width: 75%; } -/* line 2833, ../../../scss/_app_styles.scss */ +/* line 2834, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating { position: absolute; right: 15%; top: 0; } -/* line 2837, ../../../scss/_app_styles.scss */ +/* line 2838, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating i { font-size: 40px; right: 10%; color: #f1c233; } -/* line 2842, ../../../scss/_app_styles.scss */ +/* line 2843, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating span { position: absolute; left: 50%; @@ -26407,12 +26408,12 @@ div.show-image:hover div.fullscreen-icon{ font-size: 11px; } -/* line 2856, ../../../scss/_app_styles.scss */ +/* line 2857, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > ul, .course-dashboard .course-notifications > ul, .course-dashboard .course-performance > ul { list-style: none; } -/* line 2860, ../../../scss/_app_styles.scss */ +/* line 2861, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > .row, .course-dashboard .course-notifications > .row, .course-dashboard .course-performance > .row { padding: 0px; @@ -26424,45 +26425,45 @@ div.show-image:hover div.fullscreen-icon{ margin: 0em 0em; border-radius: 10px; } -/* line 2872, ../../../scss/_app_styles.scss */ +/* line 2873, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-heading { padding: 0.2em 0.7em; border-bottom: 1px solid #DADADA; font-weight: 500; font-size: 1.3em; } -/* line 2878, ../../../scss/_app_styles.scss */ +/* line 2879, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row { padding: 1em; } -/* line 2881, ../../../scss/_app_styles.scss */ +/* line 2882, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row:nth-child(n+3) { border-top: 1px solid #DCDCDC; } -/* line 2887, ../../../scss/_app_styles.scss */ +/* line 2888, ../../../scss/_app_styles.scss */ .course-dashboard .course-status .course-update .course-current-state { color: #000; font-weight: bold; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 2897, ../../../scss/_app_styles.scss */ +/* line 2898, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications { position: relative; } -/* line 2902, ../../../scss/_app_styles.scss */ +/* line 2903, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .notification-text { font-size: 0.85em; letter-spacing: 0em; word-spacing: 0.2em; } -/* line 2907, ../../../scss/_app_styles.scss */ +/* line 2908, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .time-elapsed { font-size: 0.6em; color: #424242; cursor: pointer; } -/* line 2914, ../../../scss/_app_styles.scss */ +/* line 2915, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-count { font-size: 1em; position: absolute; @@ -26470,42 +26471,42 @@ div.show-image:hover div.fullscreen-icon{ top: 0.3em; } -/* line 2924, ../../../scss/_app_styles.scss */ +/* line 2925, ../../../scss/_app_styles.scss */ .notebook .notebook-header { border-color: black; border-style: solid; border-width: 1px 0px; padding-top: 1em; } -/* line 2930, ../../../scss/_app_styles.scss */ +/* line 2931, ../../../scss/_app_styles.scss */ .notebook .notebook-header a, .notebook .notebook-header input { margin: 0px; } -/* line 2933, ../../../scss/_app_styles.scss */ +/* line 2934, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count { text-align: center; } -/* line 2938, ../../../scss/_app_styles.scss */ +/* line 2939, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:first-child { font-size: 21px; font-weight: 600; padding: 15px; } -/* line 2943, ../../../scss/_app_styles.scss */ +/* line 2944, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:last-child { background: lightgrey; padding: 2px 5px; vertical-align: text-bottom; } -/* line 2953, ../../../scss/_app_styles.scss */ +/* line 2954, ../../../scss/_app_styles.scss */ .notebook .notebook-body { padding: 0px 0px; } -/* line 2957, ../../../scss/_app_styles.scss */ +/* line 2958, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .row { margin: 30px 0px; } -/* line 2960, ../../../scss/_app_styles.scss */ +/* line 2961, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card, .notebook .notebook-body .note-cards .note-details { border: 1px solid #ccc; padding: 10px 15px; @@ -26515,12 +26516,12 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; position: relative; } -/* line 2969, ../../../scss/_app_styles.scss */ +/* line 2970, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-heading, .notebook .notebook-body .note-cards .note-details .note-heading { font-weight: 800; font-size: 20px; } -/* line 2973, ../../../scss/_app_styles.scss */ +/* line 2974, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-close, .notebook .notebook-body .note-cards .note-details .note-close { position: absolute; right: 7px; @@ -26529,22 +26530,22 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 700; color: #929292; } -/* line 2981, ../../../scss/_app_styles.scss */ +/* line 2982, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-summary, .notebook .notebook-body .note-cards .note-details .note-summary { margin: 15px 0px; } -/* line 2984, ../../../scss/_app_styles.scss */ +/* line 2985, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info, .notebook .notebook-body .note-cards .note-card .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data { color: #989898; font-size: 13px; letter-spacing: 0.9px; font-weight: 500; } -/* line 2990, ../../../scss/_app_styles.scss */ +/* line 2991, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info > span, .notebook .notebook-body .note-cards .note-card .note-extra-data > span, .notebook .notebook-body .note-cards .note-details .note-info > span, .notebook .notebook-body .note-cards .note-details .note-extra-data > span { margin-right: 5px; } -/* line 2995, ../../../scss/_app_styles.scss */ +/* line 2996, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-tags > span, .notebook .notebook-body .note-cards .note-details .note-tags > span { display: inline-block; margin: 10px; @@ -26552,53 +26553,53 @@ div.show-image:hover div.fullscreen-icon{ color: #cba552; padding: 2px 5px; } -/* line 3003, ../../../scss/_app_styles.scss */ +/* line 3004, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions, .notebook .notebook-body .note-cards .note-details .note-actions { color: #989898; cursor: pointer; } -/* line 3007, ../../../scss/_app_styles.scss */ +/* line 3008, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions span, .notebook .notebook-body .note-cards .note-details .note-actions span { margin-right: 10px 5px; } -/* line 3013, ../../../scss/_app_styles.scss */ +/* line 3014, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-tags, .notebook .notebook-body .note-cards .note-details .note-actions { display: inline-block; margin-right: 10px; } -/* line 3020, ../../../scss/_app_styles.scss */ +/* line 3021, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags { float: right; } -/* line 3022, ../../../scss/_app_styles.scss */ +/* line 3023, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags > span { margin: 0px; } -/* line 3031, ../../../scss/_app_styles.scss */ +/* line 3032, ../../../scss/_app_styles.scss */ .notebook .notebook-body > div { padding: 0px; } -/* line 3037, ../../../scss/_app_styles.scss */ +/* line 3038, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index { border-right: 1px solid #AFAEAE; padding: 4px 0px; background-color: #F1F1F1; } -/* line 3042, ../../../scss/_app_styles.scss */ +/* line 3043, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content { padding: 0px; } -/* line 3045, ../../../scss/_app_styles.scss */ +/* line 3046, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content .active { padding: 0px; } -/* line 3049, ../../../scss/_app_styles.scss */ +/* line 3050, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3054, ../../../scss/_app_styles.scss */ +/* line 3055, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title { width: 50%; /*background-color: #DEDEDE;*/ @@ -26606,114 +26607,114 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3061, ../../../scss/_app_styles.scss */ +/* line 3062, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title a { border-radius: inherit; font-size: 0.9rem; text-align: center; color: #989898; } -/* line 3068, ../../../scss/_app_styles.scss */ +/* line 3069, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3072, ../../../scss/_app_styles.scss */ +/* line 3073, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active a { color: #3a3169; } -/* line 3079, ../../../scss/_app_styles.scss */ +/* line 3080, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tab-content { padding: 0px; } -/* line 3084, ../../../scss/_app_styles.scss */ +/* line 3085, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date { font-size: 12px; font-weight: bold; background: #EFEFEF; padding: 7px 10px; } -/* line 3090, ../../../scss/_app_styles.scss */ +/* line 3091, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date .note-count { font-size: 11px; line-height: 2em; } -/* line 3095, ../../../scss/_app_styles.scss */ +/* line 3096, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes > div { border-bottom: 1px solid #AFAEAE; } -/* line 3098, ../../../scss/_app_styles.scss */ +/* line 3099, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note { padding: 5px 15px; background: #FFF; cursor: pointer; color: #A2A2A2; } -/* line 3104, ../../../scss/_app_styles.scss */ +/* line 3105, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-heading { font-weight: 400; font-size: 17px; } -/* line 3109, ../../../scss/_app_styles.scss */ +/* line 3110, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta { font-size: 13px; } -/* line 3112, ../../../scss/_app_styles.scss */ +/* line 3113, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta > span:not(:first-child) { font-size: 11px; font-weight: 600; color: #717171; } -/* line 3119, ../../../scss/_app_styles.scss */ +/* line 3120, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer { color: #888888; } -/* line 3122, ../../../scss/_app_styles.scss */ +/* line 3123, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer span { margin-right: 10px; } -/* line 3127, ../../../scss/_app_styles.scss */ +/* line 3128, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active { border-left: 5px solid #6153AE; background: #F4E7FF; font-weight: 800; color: #6153AE; } -/* line 3133, ../../../scss/_app_styles.scss */ +/* line 3134, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-heading { font-weight: 500; font-size: 17px; } -/* line 3137, ../../../scss/_app_styles.scss */ +/* line 3138, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-meta > span:not(:first-child) { color: #6153AE; } -/* line 3145, ../../../scss/_app_styles.scss */ +/* line 3146, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page { background-color: #fff; padding-bottom: 30px; } -/* line 3152, ../../../scss/_app_styles.scss */ +/* line 3153, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .group_content { margin-top: 5px; margin-left: 0px; } -/* line 3157, ../../../scss/_app_styles.scss */ +/* line 3158, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page > div { background-color: #fff; } -/* line 3161, ../../../scss/_app_styles.scss */ +/* line 3162, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar { padding: 1.8em 1.2em 0em; margin: 0em; background-color: #FFF; } -/* line 3166, ../../../scss/_app_styles.scss */ +/* line 3167, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .note-creator { font-weight: bold; } -/* line 3169, ../../../scss/_app_styles.scss */ +/* line 3170, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-title { text-align: left; color: #C3C3C3; @@ -26721,102 +26722,102 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.3px; margin-top: 5px; } -/* line 3176, ../../../scss/_app_styles.scss */ +/* line 3177, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating { text-align: right; } -/* line 3178, ../../../scss/_app_styles.scss */ +/* line 3179, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating > div { display: inline-block; } -/* line 3183, ../../../scss/_app_styles.scss */ +/* line 3184, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-title { font-size: 2.3em; font-weight: 500; margin-right: 1em; } -/* line 3188, ../../../scss/_app_styles.scss */ +/* line 3189, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content { padding: 2em 2em 1em; background: #fff; margin: 0em; } -/* line 3195, ../../../scss/_app_styles.scss */ +/* line 3196, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-header > div { display: inline-block; } -/* line 3200, ../../../scss/_app_styles.scss */ +/* line 3201, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text { font-size: 19px; letter-spacing: 0.7px; } -/* line 3203, ../../../scss/_app_styles.scss */ +/* line 3204, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text p { padding: 0px; } -/* line 3209, ../../../scss/_app_styles.scss */ +/* line 3210, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections { padding: 0em 1em 0em; } -/* line 3213, ../../../scss/_app_styles.scss */ +/* line 3214, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header span { font-weight: bold; } -/* line 3216, ../../../scss/_app_styles.scss */ +/* line 3217, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { margin-left: 15px; } -/* line 3221, ../../../scss/_app_styles.scss */ +/* line 3222, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment { border-top: 1px solid grey; padding: 15px 10px; margin-top: 5px; } -/* line 3226, ../../../scss/_app_styles.scss */ +/* line 3227, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { min-height: 200px; margin-top: 0px; } -/* line 3232, ../../../scss/_app_styles.scss */ +/* line 3233, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { font-size: 90px; line-height: 0em; } -/* line 3242, ../../../scss/_app_styles.scss */ +/* line 3243, ../../../scss/_app_styles.scss */ #newNoteModal { width: 40%; } -/* line 3245, ../../../scss/_app_styles.scss */ +/* line 3246, ../../../scss/_app_styles.scss */ #newNoteModal > div { margin-bottom: 1em; } -/* line 3249, ../../../scss/_app_styles.scss */ +/* line 3250, ../../../scss/_app_styles.scss */ #newNoteModal input { width: 100%; } -/* line 3252, ../../../scss/_app_styles.scss */ +/* line 3253, ../../../scss/_app_styles.scss */ #newNoteModal .heading { margin-right: 1em; } -/* line 3256, ../../../scss/_app_styles.scss */ +/* line 3257, ../../../scss/_app_styles.scss */ #newNoteModal .note-tags { padding: 1em; border: 1px solid black; } -/* line 3262, ../../../scss/_app_styles.scss */ +/* line 3263, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button { float: left; margin-left: 1em; margin-bottom: 0px; } -/* line 3267, ../../../scss/_app_styles.scss */ +/* line 3268, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button:last-child { float: right; } -/* line 3275, ../../../scss/_app_styles.scss */ +/* line 3276, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header { line-height: 2em; border-top: 1px solid #797979; @@ -26824,33 +26825,33 @@ div.show-image:hover div.fullscreen-icon{ text-align: center; padding: 0.7em 1em; } -/* line 3282, ../../../scss/_app_styles.scss */ +/* line 3283, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input, .gallery-page .gallery-header select, .gallery-page .gallery-header a { border-radius: 4px; margin-bottom: 0em; } -/* line 3286, ../../../scss/_app_styles.scss */ +/* line 3287, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input.prefix, .gallery-page .gallery-header select.prefix, .gallery-page .gallery-header a.prefix { border-radius: 0px; } -/* line 3291, ../../../scss/_app_styles.scss */ +/* line 3292, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header i { font-size: 1em; color: #A29E9E; } -/* line 3297, ../../../scss/_app_styles.scss */ +/* line 3298, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .filters .columns { padding-left: 5px; } -/* line 3303, ../../../scss/_app_styles.scss */ +/* line 3304, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .columns { padding-left: 5px; } -/* line 3307, ../../../scss/_app_styles.scss */ +/* line 3308, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags { text-align: left; } -/* line 3310, ../../../scss/_app_styles.scss */ +/* line 3311, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag { padding: 0px 10px; background: #cccccc; @@ -26860,73 +26861,73 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.8em; color: #757575; } -/* line 3319, ../../../scss/_app_styles.scss */ +/* line 3320, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag span { margin: 0px 2px 0px 6px; cursor: pointer; } -/* line 3324, ../../../scss/_app_styles.scss */ +/* line 3325, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags > div { display: inline-block; } -/* line 3331, ../../../scss/_app_styles.scss */ +/* line 3332, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading { font-size: 19px; } -/* line 3334, ../../../scss/_app_styles.scss */ +/* line 3335, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading a { background: #e7e7e7; border-width: 1px 0px 1px 1px; border-color: #cccccc; border-style: solid; } -/* line 3341, ../../../scss/_app_styles.scss */ +/* line 3342, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading input { border-radius: 0px; box-shadow: none; border-left: 0px; } -/* line 3348, ../../../scss/_app_styles.scss */ +/* line 3349, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel { background: #FFF; } -/* line 3351, ../../../scss/_app_styles.scss */ +/* line 3352, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content { min-height: 250px; } -/* line 3354, ../../../scss/_app_styles.scss */ +/* line 3355, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader { line-height: 3em; padding: 10px 0px; } -/* line 3358, ../../../scss/_app_styles.scss */ +/* line 3359, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader upload-file { margin: 0px; font-size: 1em; } -/* line 3363, ../../../scss/_app_styles.scss */ +/* line 3364, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions { font-size: 1.2em; color: #2a79e4; } -/* line 3367, ../../../scss/_app_styles.scss */ +/* line 3368, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions > div { display: inline-block; margin-right: 10px; } -/* line 3374, ../../../scss/_app_styles.scss */ +/* line 3375, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel { background: #fff; } -/* line 3377, ../../../scss/_app_styles.scss */ +/* line 3378, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row { margin: 10px 0px; } -/* line 3380, ../../../scss/_app_styles.scss */ +/* line 3381, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row > div:first-child { font-weight: 500; } -/* line 3385, ../../../scss/_app_styles.scss */ +/* line 3386, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .file-name { font-size: 20px; font-weight: bold; @@ -26934,11 +26935,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 10px 0px 20px; } -/* line 3396, ../../../scss/_app_styles.scss */ +/* line 3397, ../../../scss/_app_styles.scss */ .gallery-card .select-file { vertical-align: top; } -/* line 3400, ../../../scss/_app_styles.scss */ +/* line 3401, ../../../scss/_app_styles.scss */ .gallery-card .file-item { width: 80%; color: #fff; @@ -26949,17 +26950,17 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid black; overflow: hidden; } -/* line 3410, ../../../scss/_app_styles.scss */ +/* line 3411, ../../../scss/_app_styles.scss */ .gallery-card .file-item .item-thumbnail-image { height: 100%; padding: 1em; } -/* line 3415, ../../../scss/_app_styles.scss */ +/* line 3416, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-details { margin-top: 10%; display: none; } -/* line 3420, ../../../scss/_app_styles.scss */ +/* line 3421, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions { display: none; position: absolute; @@ -26968,11 +26969,11 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; font-size: 25px; } -/* line 3428, ../../../scss/_app_styles.scss */ +/* line 3429, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions i { margin: 0px 10px; } -/* line 3433, ../../../scss/_app_styles.scss */ +/* line 3434, ../../../scss/_app_styles.scss */ .gallery-card .file-item .filename-footer { position: absolute; bottom: 0px; @@ -26983,24 +26984,24 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 600; background: #999999; } -/* line 3444, ../../../scss/_app_styles.scss */ +/* line 3445, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover { background: #999999; } -/* line 3447, ../../../scss/_app_styles.scss */ +/* line 3448, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .item-thumbnail-image { opacity: 0.2; } -/* line 3451, ../../../scss/_app_styles.scss */ +/* line 3452, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .file-details, .gallery-card .file-item:hover .file-actions { display: block; } -/* line 3454, ../../../scss/_app_styles.scss */ +/* line 3455, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .filename-footer { display: none; } -/* line 3462, ../../../scss/_app_styles.scss */ +/* line 3463, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'], dialog[id^='reveal-'] { width: 100vw; height: 100vh; @@ -27064,49 +27065,49 @@ div.show-image:hover div.fullscreen-icon{ } }*/ } -/* line 3526, ../../../scss/_app_styles.scss */ +/* line 3527, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body, dialog[id^='reveal-'] .gmodal-body { position: relative; height: 100%; } -/* line 3529, ../../../scss/_app_styles.scss */ +/* line 3530, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel { background-color: #fff; height: 100%; } -/* line 3531, ../../../scss/_app_styles.scss */ +/* line 3532, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray { display: none; } -/* line 3535, ../../../scss/_app_styles.scss */ +/* line 3536, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe { height: 550px !important; width: 130% !important; } -/* line 3540, ../../../scss/_app_styles.scss */ +/* line 3541, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page { margin-top: -10px !important; } -/* line 3544, ../../../scss/_app_styles.scss */ +/* line 3545, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel span, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel span { display: none !important; } -/* line 3548, ../../../scss/_app_styles.scss */ +/* line 3549, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .button, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .button { display: none !important; } -/* line 3555, ../../../scss/_app_styles.scss */ +/* line 3556, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder { height: 100%; } -/* line 3558, ../../../scss/_app_styles.scss */ +/* line 3559, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item { height: 100%; width: 100%; background: transparent; padding: 0px; } -/* line 3564, ../../../scss/_app_styles.scss */ +/* line 3565, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image { width: auto; margin: 0px auto; @@ -27114,7 +27115,7 @@ div.show-image:hover div.fullscreen-icon{ padding: 1em 0em; height: 100%; } -/* line 3573, ../../../scss/_app_styles.scss */ +/* line 3574, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer { height: 2em; line-height: 2em; @@ -27126,32 +27127,32 @@ div.show-image:hover div.fullscreen-icon{ opacity: 0; background-color: rgba(0, 0, 0, 0.9); } -/* line 3584, ../../../scss/_app_styles.scss */ +/* line 3585, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details), dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details) { cursor: pointer; } -/* line 3588, ../../../scss/_app_styles.scss */ +/* line 3589, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details { text-align: center; width: 100%; } -/* line 3592, ../../../scss/_app_styles.scss */ +/* line 3593, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i { margin-left: 1em; margin-right: 0.5em; cursor: pointer; } -/* line 3600, ../../../scss/_app_styles.scss */ +/* line 3601, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer { opacity: 0.8; transition: opacity 1s; } -/* line 3605, ../../../scss/_app_styles.scss */ +/* line 3606, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel { height: 100%; padding: 0px 25px; } -/* line 3609, ../../../scss/_app_styles.scss */ +/* line 3610, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side { background: #fff; height: 100%; @@ -27172,31 +27173,31 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.9em; }*/ } -/* line 3613, ../../../scss/_app_styles.scss */ +/* line 3614, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div { width: 100%; display: block; margin: 12px 0px; padding: 0px 10px; } -/* line 3620, ../../../scss/_app_styles.scss */ +/* line 3621, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal { font-size: 20px; top: 6px; right: 26px; } -/* line 3627, ../../../scss/_app_styles.scss */ +/* line 3628, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span { vertical-align: top; margin-right: 5px; line-height: 35px; } -/* line 3632, ../../../scss/_app_styles.scss */ +/* line 3633, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating { background: #ccc; padding: 2px 5px; } -/* line 3638, ../../../scss/_app_styles.scss */ +/* line 3639, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a { padding: 3px 7px; background: #fff; @@ -27206,13 +27207,13 @@ div.show-image:hover div.fullscreen-icon{ margin-right: 10px; display: inline-block; } -/* line 3649, ../../../scss/_app_styles.scss */ +/* line 3650, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3654, ../../../scss/_app_styles.scss */ +/* line 3655, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -27221,17 +27222,17 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3662, ../../../scss/_app_styles.scss */ +/* line 3663, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a { border-radius: inherit; } -/* line 3666, ../../../scss/_app_styles.scss */ +/* line 3667, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3674, ../../../scss/_app_styles.scss */ +/* line 3675, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span { font-weight: 500; font-size: 16px; @@ -27239,20 +27240,20 @@ div.show-image:hover div.fullscreen-icon{ line-height: 35px; } -/* line 3704, ../../../scss/_app_styles.scss */ +/* line 3705, ../../../scss/_app_styles.scss */ .user-comment { display: inline-flex; width: 100%; } -/* line 3708, ../../../scss/_app_styles.scss */ +/* line 3709, ../../../scss/_app_styles.scss */ .user-comment > div { display: inline-block; } -/* line 3711, ../../../scss/_app_styles.scss */ +/* line 3712, ../../../scss/_app_styles.scss */ .user-comment > div:last-child { width: 100%; } -/* line 3716, ../../../scss/_app_styles.scss */ +/* line 3717, ../../../scss/_app_styles.scss */ .user-comment .comment-heading { color: #9C9C9C; border-bottom: 1px solid grey; @@ -27260,71 +27261,71 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 10px; margin-top: 10px; } -/* line 3724, ../../../scss/_app_styles.scss */ +/* line 3725, ../../../scss/_app_styles.scss */ .user-comment .comment-heading > div { display: inline-block; } -/* line 3728, ../../../scss/_app_styles.scss */ +/* line 3729, ../../../scss/_app_styles.scss */ .user-comment .comment-heading .commentor-name span { font-weight: bold; color: #333333; } -/* line 3733, ../../../scss/_app_styles.scss */ +/* line 3734, ../../../scss/_app_styles.scss */ .user-comment .comment-footer { font-size: 0.9em; font-weight: 400; border: 1px solid #9E9E9E; background: #CCCCCC; } -/* line 3739, ../../../scss/_app_styles.scss */ +/* line 3740, ../../../scss/_app_styles.scss */ .user-comment .comment-footer > div { cursor: pointer; } -/* line 3742, ../../../scss/_app_styles.scss */ +/* line 3743, ../../../scss/_app_styles.scss */ .user-comment .comment-footer i { margin-right: 1em; } -/* line 3748, ../../../scss/_app_styles.scss */ +/* line 3749, ../../../scss/_app_styles.scss */ .user-comment .comment-container .comment-add { margin-top: 0.4em; } -/* line 3752, ../../../scss/_app_styles.scss */ +/* line 3753, ../../../scss/_app_styles.scss */ .user-comment .user-avatar { font-size: 10em; font-size: 5em; line-height: 1em; } -/* line 3759, ../../../scss/_app_styles.scss */ +/* line 3760, ../../../scss/_app_styles.scss */ .course-content { /*border-top: 1px solid #000;*/ } -/* line 3761, ../../../scss/_app_styles.scss */ +/* line 3762, ../../../scss/_app_styles.scss */ .course-content .alert-box { padding: 5px; font-size: 1em; } -/* line 3765, ../../../scss/_app_styles.scss */ +/* line 3766, ../../../scss/_app_styles.scss */ .course-content .alert-box > div { display: inline-block; vertical-align: top; } -/* line 3769, ../../../scss/_app_styles.scss */ +/* line 3770, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note { width: 96%; } -/* line 3772, ../../../scss/_app_styles.scss */ +/* line 3773, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note > div:nth-child(2) { color: #000; margin-top: 5px; padding-top: 5px; border-top: 1px solid #000; } -/* line 3779, ../../../scss/_app_styles.scss */ +/* line 3780, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-icon { margin: 0px 5px; } -/* line 3782, ../../../scss/_app_styles.scss */ +/* line 3783, ../../../scss/_app_styles.scss */ .course-content .alert-box .close { position: relative; top: 0px; @@ -27334,17 +27335,17 @@ div.show-image:hover div.fullscreen-icon{ text-decoration: underline; color: #085394 !important; } -/* line 3793, ../../../scss/_app_styles.scss */ +/* line 3794, ../../../scss/_app_styles.scss */ .course-content .collection { overflow: visible; } -/* line 3796, ../../../scss/_app_styles.scss */ +/* line 3797, ../../../scss/_app_styles.scss */ .course-content .collection .course-module { position: relative; border-bottom: 1px solid #CCC; padding: 1em 0em; } -/* line 3803, ../../../scss/_app_styles.scss */ +/* line 3804, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-header .fa { position: absolute; left: -1.1em; @@ -27353,58 +27354,58 @@ div.show-image:hover div.fullscreen-icon{ background: #EAEAEA; font-size: 1.4em; } -/* line 3821, ../../../scss/_app_styles.scss */ +/* line 3822, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-page:hover span { text-decoration: underline; color: #9900ff !important; } -/* line 3826, ../../../scss/_app_styles.scss */ +/* line 3827, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .jqtree-tree .jqtree-title { cursor: pointer; } -/* line 3830, ../../../scss/_app_styles.scss */ +/* line 3831, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part { margin-left: 1em; } -/* line 3833, ../../../scss/_app_styles.scss */ +/* line 3834, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler { color: #585858; } -/* line 3836, ../../../scss/_app_styles.scss */ +/* line 3837, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler.jqtree-closed { color: #CCC; } -/* line 3840, ../../../scss/_app_styles.scss */ +/* line 3841, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part span { vertical-align: top; } -/* line 3843, ../../../scss/_app_styles.scss */ +/* line 3844, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .fa { display: inline; margin-right: 5px; } -/* line 3853, ../../../scss/_app_styles.scss */ +/* line 3854, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header { font-weight: 400; font-size: 1.3em; border-bottom: 1px solid #707070; color: #797979; } -/* line 3859, ../../../scss/_app_styles.scss */ +/* line 3860, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header > div { padding: 0.3em 0em; } -/* line 3863, ../../../scss/_app_styles.scss */ +/* line 3864, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header a { color: #797979; } -/* line 3867, ../../../scss/_app_styles.scss */ +/* line 3868, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous { cursor: pointer; padding: 0px; } -/* line 3871, ../../../scss/_app_styles.scss */ +/* line 3872, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous a:first-child { border-right: 1px solid grey; padding-right: 5px; @@ -27412,27 +27413,27 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3880, ../../../scss/_app_styles.scss */ +/* line 3881, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header i { margin-right: 0.1em; } -/* line 3884, ../../../scss/_app_styles.scss */ +/* line 3885, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .unit-title { text-align: center; color: #999999; } -/* line 3888, ../../../scss/_app_styles.scss */ +/* line 3889, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-title { text-align: center; color: #000; } -/* line 3892, ../../../scss/_app_styles.scss */ +/* line 3893, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note { color: #2a78e3; cursor: pointer; padding: 0px; } -/* line 3897, ../../../scss/_app_styles.scss */ +/* line 3898, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note a:last-child { border-left: 1px solid grey; padding-left: 5px; @@ -27440,11 +27441,11 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3905, ../../../scss/_app_styles.scss */ +/* line 3906, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note > div { float: right; } -/* line 3910, ../../../scss/_app_styles.scss */ +/* line 3911, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container { border: 1px solid black; height: 100%; @@ -27452,18 +27453,18 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 2em; padding: 0em 1em; } -/* line 3917, ../../../scss/_app_styles.scss */ +/* line 3918, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides { height: 100%; } -/* line 3921, ../../../scss/_app_styles.scss */ +/* line 3922, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 3929, ../../../scss/_app_styles.scss */ +/* line 3930, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -27471,12 +27472,12 @@ div.show-image:hover div.fullscreen-icon{ color: #999999; margin-left: 12%; } -/* line 3937, ../../../scss/_app_styles.scss */ +/* line 3938, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 3943, ../../../scss/_app_styles.scss */ +/* line 3944, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -27485,21 +27486,21 @@ div.show-image:hover div.fullscreen-icon{ display: none; color: #8E8E8E; } -/* line 3952, ../../../scss/_app_styles.scss */ +/* line 3953, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 3957, ../../../scss/_app_styles.scss */ +/* line 3958, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 3959, ../../../scss/_app_styles.scss */ +/* line 3960, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 3962, ../../../scss/_app_styles.scss */ +/* line 3963, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -27510,24 +27511,24 @@ div.show-image:hover div.fullscreen-icon{ color: #757575; margin-right: 20px; } -/* line 3972, ../../../scss/_app_styles.scss */ +/* line 3973, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 3976, ../../../scss/_app_styles.scss */ +/* line 3977, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 3979, ../../../scss/_app_styles.scss */ +/* line 3980, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 3984, ../../../scss/_app_styles.scss */ +/* line 3985, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 3988, ../../../scss/_app_styles.scss */ +/* line 3989, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content { width: 75%; margin: 0px auto; @@ -27538,7 +27539,7 @@ div.show-image:hover div.fullscreen-icon{ min-height: 50px; position: relative; } -/* line 3998, ../../../scss/_app_styles.scss */ +/* line 3999, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -27546,15 +27547,15 @@ div.show-image:hover div.fullscreen-icon{ left: 8px; top: 4px; } -/* line 4006, ../../../scss/_app_styles.scss */ +/* line 4007, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 4008, ../../../scss/_app_styles.scss */ +/* line 4009, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 4011, ../../../scss/_app_styles.scss */ +/* line 4012, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -27564,27 +27565,27 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.8px; color: #999999; } -/* line 4020, ../../../scss/_app_styles.scss */ +/* line 4021, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 4026, ../../../scss/_app_styles.scss */ +/* line 4027, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 4033, ../../../scss/_app_styles.scss */ +/* line 4034, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section { width: 75%; margin: 0px auto; } -/* line 4037, ../../../scss/_app_styles.scss */ +/* line 4038, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section .user-prof-image { font-size: 7em; text-align: center; } -/* line 4042, ../../../scss/_app_styles.scss */ +/* line 4043, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section #postCommentBtn { padding: 2em 3em; } @@ -27605,28 +27606,28 @@ div.show-image:hover div.fullscreen-icon{ position: absolute; } */ -/* line 4063, ../../../scss/_app_styles.scss */ +/* line 4064, ../../../scss/_app_styles.scss */ .rate-scale { cursor: pointer; } -/* line 4066, ../../../scss/_app_styles.scss */ +/* line 4067, ../../../scss/_app_styles.scss */ .rate-scale i { margin-right: 0em !important; padding-right: 0.5em; } -/* line 4070, ../../../scss/_app_styles.scss */ +/* line 4071, ../../../scss/_app_styles.scss */ .rate-scale .hover-rating, .rate-scale .rated { color: yellow; } -/* line 4076, ../../../scss/_app_styles.scss */ +/* line 4077, ../../../scss/_app_styles.scss */ #left-tab { position: absolute; left: 0px; bottom: 0px; } -/* line 4081, ../../../scss/_app_styles.scss */ +/* line 4082, ../../../scss/_app_styles.scss */ #right-tab { position: absolute; right: 0px; @@ -27634,12 +27635,12 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 6px; } -/* line 4087, ../../../scss/_app_styles.scss */ +/* line 4088, ../../../scss/_app_styles.scss */ #enrolled-btn { margin-bottom: 0px; } -/* line 4090, ../../../scss/_app_styles.scss */ +/* line 4091, ../../../scss/_app_styles.scss */ div.absol-descrip { position: absolute; top: 190px; @@ -27650,14 +27651,14 @@ div.absol-descrip { } /*overview-summary styling*/ -/* line 4100, ../../../scss/_app_styles.scss */ +/* line 4101, ../../../scss/_app_styles.scss */ .course-title, .course-date { color: white; padding-top: 0px; padding-bottom: 0px; } -/* line 4105, ../../../scss/_app_styles.scss */ +/* line 4106, ../../../scss/_app_styles.scss */ .course-description { color: #cccccc; padding-top: 0px; @@ -27669,48 +27670,48 @@ div.absol-descrip { overflow: hidden; } -/* line 4115, ../../../scss/_app_styles.scss */ +/* line 4116, ../../../scss/_app_styles.scss */ .course-para { padding: 0; } -/* line 4119, ../../../scss/_app_styles.scss */ +/* line 4120, ../../../scss/_app_styles.scss */ course-title { padding-left: 10px; } -/* line 4122, ../../../scss/_app_styles.scss */ +/* line 4123, ../../../scss/_app_styles.scss */ .enroll-status-margin { margin-bottom: 0; } -/* line 4126, ../../../scss/_app_styles.scss */ +/* line 4127, ../../../scss/_app_styles.scss */ .progress-summery { color: white; margin-top: 20px; } -/* line 4130, ../../../scss/_app_styles.scss */ +/* line 4131, ../../../scss/_app_styles.scss */ .course-description-thumbnails { margin: 0; padding: 0; } -/* line 4135, ../../../scss/_app_styles.scss */ +/* line 4136, ../../../scss/_app_styles.scss */ .left-shift { padding: 0; color: white !important; } /*course overview for Small screens*/ -/* line 4141, ../../../scss/_app_styles.scss */ +/* line 4142, ../../../scss/_app_styles.scss */ .course { /*position:relative;*/ border: 1px solid black; background-color: #999999; } -/* line 4147, ../../../scss/_app_styles.scss */ +/* line 4148, ../../../scss/_app_styles.scss */ .course-contents { /*position:absolute;*/ width: 100%; @@ -27718,7 +27719,7 @@ course-title { /*Medium screens*/ @media only screen and (min-width: 40.063em) { - /* line 4154, ../../../scss/_app_styles.scss */ + /* line 4155, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27726,7 +27727,7 @@ course-title { background-color: #999999; } - /* line 4160, ../../../scss/_app_styles.scss */ + /* line 4161, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27736,7 +27737,7 @@ course-title { /* min-width 641px, medium screens */ /* Large screens*/ @media only screen and (min-width: 64.063em) { - /* line 4170, ../../../scss/_app_styles.scss */ + /* line 4171, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27744,7 +27745,7 @@ course-title { background-color: #999999; } - /* line 4176, ../../../scss/_app_styles.scss */ + /* line 4177, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27753,14 +27754,14 @@ course-title { } /* min-width 1025px, large screens */ /*General config css*/ -/* line 4183, ../../../scss/_app_styles.scss */ +/* line 4184, ../../../scss/_app_styles.scss */ .alert-box.warning { background: #ffe7c0; border-color: #bf9000; color: #966000; } -/* line 4190, ../../../scss/_app_styles.scss */ +/* line 4191, ../../../scss/_app_styles.scss */ .badge { display: inline-block; line-height: 22px; @@ -27777,7 +27778,7 @@ course-title { font-size: 1.8em; } -/* line 4206, ../../../scss/_app_styles.scss */ +/* line 4207, ../../../scss/_app_styles.scss */ .badge { background: #67c1ef; border-color: #30aae9; @@ -27787,7 +27788,7 @@ course-title { background-image: linear-gradient(to bottom, #acddf6, #67c1ef); } -/* line 4215, ../../../scss/_app_styles.scss */ +/* line 4216, ../../../scss/_app_styles.scss */ .badge.green { background: #77cc51; border-color: #59ad33; @@ -27797,7 +27798,7 @@ course-title { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 4224, ../../../scss/_app_styles.scss */ +/* line 4225, ../../../scss/_app_styles.scss */ .badge.yellow { background: #faba3e; border-color: #f4a306; @@ -27807,7 +27808,7 @@ course-title { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 4234, ../../../scss/_app_styles.scss */ +/* line 4235, ../../../scss/_app_styles.scss */ .badge.red { background: #fa623f; border-color: #fa5a35; @@ -27818,12 +27819,12 @@ course-title { } /* Course/ Event Card CSS*/ -/* line 4250, ../../../scss/_app_styles.scss */ +/* line 4251, ../../../scss/_app_styles.scss */ .card-image-wrapper { position: relative; } -/* line 4254, ../../../scss/_app_styles.scss */ +/* line 4255, ../../../scss/_app_styles.scss */ .event-card { padding: 0px; min-height: 22rem; @@ -27832,12 +27833,12 @@ course-title { border-radius: 10px; background-color: #fff; } -/* line 4262, ../../../scss/_app_styles.scss */ +/* line 4263, ../../../scss/_app_styles.scss */ .event-card:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 4267, ../../../scss/_app_styles.scss */ +/* line 4268, ../../../scss/_app_styles.scss */ .event-card .event-card-status { z-index: 99; width: auto; @@ -27852,31 +27853,31 @@ course-title { border-radius: 4px; letter-spacing: 0.3px; } -/* line 4281, ../../../scss/_app_styles.scss */ +/* line 4282, ../../../scss/_app_styles.scss */ .event-card .event-card-status.open { background-color: #00b300; } -/* line 4284, ../../../scss/_app_styles.scss */ +/* line 4285, ../../../scss/_app_styles.scss */ .event-card .event-card-status.closed { background-color: red; } -/* line 4287, ../../../scss/_app_styles.scss */ +/* line 4288, ../../../scss/_app_styles.scss */ .event-card .event-card-status.in-progress { background-color: #00b300; } -/* line 4290, ../../../scss/_app_styles.scss */ +/* line 4291, ../../../scss/_app_styles.scss */ .event-card .event-card-status.forthcoming { background-color: #F2910D; } -/* line 4293, ../../../scss/_app_styles.scss */ +/* line 4294, ../../../scss/_app_styles.scss */ .event-card .event-card-status.upcoming { background-color: #F2910D; } -/* line 4297, ../../../scss/_app_styles.scss */ +/* line 4298, ../../../scss/_app_styles.scss */ .event-card .event-card-status.completed { background-color: #4d4d4d; } -/* line 4302, ../../../scss/_app_styles.scss */ +/* line 4303, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications { position: absolute; top: 2px; @@ -27885,46 +27886,46 @@ course-title { color: #F04124; font-weight: 600; } -/* line 4310, ../../../scss/_app_styles.scss */ +/* line 4311, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications .badge { padding: 0px 5px; font-size: 1.4em; font-weight: 600; } -/* line 4317, ../../../scss/_app_styles.scss */ +/* line 4318, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status { font-weight: 500; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 4322, ../../../scss/_app_styles.scss */ +/* line 4323, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.open { color: #00b300; } -/* line 4326, ../../../scss/_app_styles.scss */ +/* line 4327, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.closed { color: red; } -/* line 4330, ../../../scss/_app_styles.scss */ +/* line 4331, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.in-progress { color: #000; } -/* line 4333, ../../../scss/_app_styles.scss */ +/* line 4334, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.forthcoming { color: #F2910D; } -/* line 4337, ../../../scss/_app_styles.scss */ +/* line 4338, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.completed { color: #4d4d4d; } -/* line 4341, ../../../scss/_app_styles.scss */ +/* line 4342, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status .event-time { font-size: 0.7em; display: block; font-weight: 400; display: inline; } -/* line 4349, ../../../scss/_app_styles.scss */ +/* line 4350, ../../../scss/_app_styles.scss */ .event-card .event-card-title { color: #0d0d0d; display: inline-block; @@ -27935,19 +27936,19 @@ course-title { font-size: 2em; font-weight: 400; } -/* line 4360, ../../../scss/_app_styles.scss */ +/* line 4361, ../../../scss/_app_styles.scss */ .event-card .event-card-desc { word-wrap: break-word; font-size: 0.6em; color: #333333; padding-left: 4px; } -/* line 4366, ../../../scss/_app_styles.scss */ +/* line 4367, ../../../scss/_app_styles.scss */ .event-card p { margin: 0px; padding: 10px; } -/* line 4372, ../../../scss/_app_styles.scss */ +/* line 4373, ../../../scss/_app_styles.scss */ .event-card .event-card-image { padding: 0px; margin: 0px; @@ -27959,7 +27960,7 @@ course-title { background-color: #e5e5e5; border-radius: 10px 10px 0px 0px; } -/* line 4383, ../../../scss/_app_styles.scss */ +/* line 4384, ../../../scss/_app_styles.scss */ .event-card .event-card-image img { border-radius: 2px 2px 0 0; display: block; @@ -27968,7 +27969,7 @@ course-title { opacity: 0.25; height: 100%; } -/* line 4392, ../../../scss/_app_styles.scss */ +/* line 4393, ../../../scss/_app_styles.scss */ .event-card .event-card-image i { font-size: 7rem; opacity: 0.75; @@ -27982,51 +27983,51 @@ course-title { text-transform: none; text-decoration: inherit; } -/* line 4406, ../../../scss/_app_styles.scss */ +/* line 4407, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.file:before { content: "\f18e"; } -/* line 4409, ../../../scss/_app_styles.scss */ +/* line 4410, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.page:before { content: "\f18e"; } -/* line 4412, ../../../scss/_app_styles.scss */ +/* line 4413, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.collection:before { content: "\f18a"; } -/* line 4415, ../../../scss/_app_styles.scss */ +/* line 4416, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.documents:before { content: "\f18b"; } -/* line 4418, ../../../scss/_app_styles.scss */ +/* line 4419, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.pdf:before { content: "\f18b"; } -/* line 4421, ../../../scss/_app_styles.scss */ +/* line 4422, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.text:before { content: "\f18e"; } -/* line 4424, ../../../scss/_app_styles.scss */ +/* line 4425, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.interactives:before { content: "\f1b2"; } -/* line 4427, ../../../scss/_app_styles.scss */ +/* line 4428, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.ebooks:before { content: "\f11e"; } -/* line 4430, ../../../scss/_app_styles.scss */ +/* line 4431, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.images:before { content: "\f125"; } -/* line 4433, ../../../scss/_app_styles.scss */ +/* line 4434, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.audios:before, .event-card .event-card-image i.audio:before { content: "\f17b"; } -/* line 4436, ../../../scss/_app_styles.scss */ +/* line 4437, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.videos:before, .event-card .event-card-image i.video:before { content: "\f20e"; } -/* line 4440, ../../../scss/_app_styles.scss */ +/* line 4441, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer { padding: 0.7em 1em; border-top: 1px solid #DCDCDC; @@ -28037,7 +28038,7 @@ course-title { background-color: #F3F3F3; border-radius: 0px 0px 10px 10px; } -/* line 4450, ../../../scss/_app_styles.scss */ +/* line 4451, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .footer-label { text-transform: uppercase; font-size: 10px; @@ -28045,54 +28046,54 @@ course-title { margin-bottom: 2px; color: #ADADAD; } -/* line 4458, ../../../scss/_app_styles.scss */ +/* line 4459, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date { color: #929292; font-size: 0.85em; letter-spacing: 0.5px; } -/* line 4463, ../../../scss/_app_styles.scss */ +/* line 4464, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date i:not(.edit-course-duration, .edit-course-enrollment) { margin-right: 0.3em; } -/* line 4467, ../../../scss/_app_styles.scss */ +/* line 4468, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .row { margin: 10px 0px 0px; } -/* line 4471, ../../../scss/_app_styles.scss */ +/* line 4472, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration, .event-card .edit-course-enrollment { float: right; font-size: 1.5em; color: #DADADA; } -/* line 4475, ../../../scss/_app_styles.scss */ +/* line 4476, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration:hover, .event-card .edit-course-enrollment:hover { color: #565656; } -/* line 4479, ../../../scss/_app_styles.scss */ +/* line 4480, ../../../scss/_app_styles.scss */ .event-card .published.scard-action { background: #A6D9CB; } -/* line 4483, ../../../scss/_app_styles.scss */ +/* line 4484, ../../../scss/_app_styles.scss */ .event-card .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 4488, ../../../scss/_app_styles.scss */ +/* line 4489, ../../../scss/_app_styles.scss */ .event-card .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4493, ../../../scss/_app_styles.scss */ +/* line 4494, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action { border-color: transparent #03a9f4 transparent transparent; border-color: rgba(255, 255, 255, 0) #03a9f4 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4497, ../../../scss/_app_styles.scss */ +/* line 4498, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 4501, ../../../scss/_app_styles.scss */ +/* line 4502, ../../../scss/_app_styles.scss */ .event-card .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -28103,17 +28104,17 @@ course-title { /* End Course/events Card CSS*/ /* Landing page */ -/* line 4513, ../../../scss/_app_styles.scss */ +/* line 4514, ../../../scss/_app_styles.scss */ .landing_page { position: relative; text-align: center; } -/* line 4517, ../../../scss/_app_styles.scss */ +/* line 4518, ../../../scss/_app_styles.scss */ .landing_page .panel { background-color: inherit; border: none; } -/* line 4522, ../../../scss/_app_styles.scss */ +/* line 4523, ../../../scss/_app_styles.scss */ .landing_page .landing_page_background { height: 100%; width: 100%; @@ -28125,24 +28126,24 @@ course-title { background: -ms-linear-gradient(left, #E9A900, #B0108D); background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 4534, ../../../scss/_app_styles.scss */ +/* line 4535, ../../../scss/_app_styles.scss */ .landing_page .clix_brief { text-align: left; padding: 20px 5%; } -/* line 4538, ../../../scss/_app_styles.scss */ +/* line 4539, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 30px 20px; height: 70px; } @media screen and (max-width: 450px) { - /* line 4538, ../../../scss/_app_styles.scss */ + /* line 4539, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 25px 10px; height: 55px; } } -/* line 4546, ../../../scss/_app_styles.scss */ +/* line 4547, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { color: #fff; font-size: 26px; @@ -28150,12 +28151,12 @@ course-title { font-family: 'ubuntu-light'; } @media screen and (max-width: 450px) { - /* line 4546, ../../../scss/_app_styles.scss */ + /* line 4547, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { font-size: 18px; } } -/* line 4557, ../../../scss/_app_styles.scss */ +/* line 4558, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { background-color: rgba(255, 255, 255, 0.92); border-radius: 10px; @@ -28166,12 +28167,12 @@ course-title { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); } @media screen and (min-width: 1025px) { - /* line 4557, ../../../scss/_app_styles.scss */ + /* line 4558, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { margin: 200px auto; } } -/* line 4569, ../../../scss/_app_styles.scss */ +/* line 4570, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix > span { font-family: 'ubuntu-bold'; color: #6658af; @@ -28182,7 +28183,7 @@ course-title { display: inline-block; vertical-align: middle; } -/* line 4579, ../../../scss/_app_styles.scss */ +/* line 4580, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix p { color: #b0108d; font-size: 21px; @@ -28190,28 +28191,28 @@ course-title { font-weight: 300; font-family: 'ubuntu-light'; } -/* line 4587, ../../../scss/_app_styles.scss */ +/* line 4588, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix img { height: 30px; } -/* line 4590, ../../../scss/_app_styles.scss */ +/* line 4591, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form { margin-top: 30px; } -/* line 4593, ../../../scss/_app_styles.scss */ +/* line 4594, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form input { font-size: 24px; height: 45px; margin: 5px 0px 24px; } -/* line 4600, ../../../scss/_app_styles.scss */ +/* line 4601, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix input.button { font-size: 15px; border-radius: 5px; font-family: 'ubuntu-bold'; text-transform: uppercase; } -/* line 4606, ../../../scss/_app_styles.scss */ +/* line 4607, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix a.grey { color: #999; /*display: inline-block; @@ -28222,7 +28223,7 @@ course-title { font-family: 'ubuntu-bold'; text-transform: uppercase;*/ } -/* line 4617, ../../../scss/_app_styles.scss */ +/* line 4618, ../../../scss/_app_styles.scss */ .landing_page .flowers { left: 50px; height: 500px; @@ -28230,18 +28231,18 @@ course-title { opacity: 0.6; } @media screen and (max-width: 450px) { - /* line 4617, ../../../scss/_app_styles.scss */ + /* line 4618, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 250px; } } @media screen and (min-width: 451px) and (max-width: 1025px) { - /* line 4617, ../../../scss/_app_styles.scss */ + /* line 4618, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 350px; } } -/* line 4629, ../../../scss/_app_styles.scss */ +/* line 4630, ../../../scss/_app_styles.scss */ .landing_page .bees { position: absolute; top: 5px; @@ -28249,40 +28250,40 @@ course-title { height: 150px; } @media screen and (max-width: 450px) { - /* line 4629, ../../../scss/_app_styles.scss */ + /* line 4630, ../../../scss/_app_styles.scss */ .landing_page .bees { right: 15px; height: 100px; } } -/* line 4639, ../../../scss/_app_styles.scss */ +/* line 4640, ../../../scss/_app_styles.scss */ .landing_page h2 { color: #A0148E; font-weight: 600; } -/* line 4643, ../../../scss/_app_styles.scss */ +/* line 4644, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text { color: #6153ae; } -/* line 4646, ../../../scss/_app_styles.scss */ +/* line 4647, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text p { font-size: 18px; } /* END of Landing page */ -/* line 4652, ../../../scss/_app_styles.scss */ +/* line 4653, ../../../scss/_app_styles.scss */ .audio-caption { cursor: pointer; } -/* line 4656, ../../../scss/_app_styles.scss */ +/* line 4657, ../../../scss/_app_styles.scss */ .gallery-image { cursor: pointer; max-height: 100px; border: 1px solid !important; } -/* line 4662, ../../../scss/_app_styles.scss */ +/* line 4663, ../../../scss/_app_styles.scss */ .show-collection { color: black !important; font-size: 1.1em; @@ -28295,25 +28296,25 @@ course-title { border: 1px solid #eee; } -/* line 4674, ../../../scss/_app_styles.scss */ +/* line 4675, ../../../scss/_app_styles.scss */ .processing-screen { background-color: #03a9f4 !important; } -/* line 4678, ../../../scss/_app_styles.scss */ +/* line 4679, ../../../scss/_app_styles.scss */ .processing-screen-label { width: 500px !important; font-style: normal !important; } -/* line 4682, ../../../scss/_app_styles.scss */ +/* line 4683, ../../../scss/_app_styles.scss */ h3 { font-size: 20px; color: #164A7B; font-family: 'OpenSans-Semibold'; } -/* line 4688, ../../../scss/_app_styles.scss */ +/* line 4689, ../../../scss/_app_styles.scss */ h5 { color: #99aaba; font-size: 10px; @@ -28322,7 +28323,7 @@ h5 { margin-left: 5px; } -/* line 4696, ../../../scss/_app_styles.scss */ +/* line 4697, ../../../scss/_app_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28331,12 +28332,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4703, ../../../scss/_app_styles.scss */ +/* line 4704, ../../../scss/_app_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 4707, ../../../scss/_app_styles.scss */ +/* line 4708, ../../../scss/_app_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28345,12 +28346,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4714, ../../../scss/_app_styles.scss */ +/* line 4715, ../../../scss/_app_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 4720, ../../../scss/_app_styles.scss */ +/* line 4721, ../../../scss/_app_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28362,7 +28363,7 @@ h5 { color: #6153AE; } -/* line 4731, ../../../scss/_app_styles.scss */ +/* line 4732, ../../../scss/_app_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28375,14 +28376,14 @@ h5 { display: inline-block; color: #6153AE; } -/* line 4743, ../../../scss/_app_styles.scss */ +/* line 4744, ../../../scss/_app_styles.scss */ .add-note-btn:hover { cursor: pointer; color: #6153AE; background-color: #ffffff; } -/* line 4751, ../../../scss/_app_styles.scss */ +/* line 4752, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -28394,7 +28395,7 @@ h5 { border: 2px solid #6153ae; background-color: #dbd4e1; } -/* line 4762, ../../../scss/_app_styles.scss */ +/* line 4763, ../../../scss/_app_styles.scss */ .explore-button:hover { cursor: pointer; } @@ -28402,12 +28403,12 @@ h5 { /*Blue color variable*/ /*Orange color variables*/ /* module detail settings drop */ -/* line 4793, ../../../scss/_app_styles.scss */ +/* line 4794, ../../../scss/_app_styles.scss */ .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4796, ../../../scss/_app_styles.scss */ +/* line 4797, ../../../scss/_app_styles.scss */ .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28420,17 +28421,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4807, ../../../scss/_app_styles.scss */ +/* line 4808, ../../../scss/_app_styles.scss */ .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4813, ../../../scss/_app_styles.scss */ +/* line 4814, ../../../scss/_app_styles.scss */ .explore-settings-drop a { font-size: 16px; } -/* line 4816, ../../../scss/_app_styles.scss */ +/* line 4817, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28438,12 +28439,12 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4816, ../../../scss/_app_styles.scss */ +/* line 4817, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4819, ../../../scss/_app_styles.scss */ +/* line 4820, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28456,17 +28457,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4830, ../../../scss/_app_styles.scss */ +/* line 4831, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4836, ../../../scss/_app_styles.scss */ +/* line 4837, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop a { font-size: 16px; } -/* line 4839, ../../../scss/_app_styles.scss */ +/* line 4840, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28474,33 +28475,33 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4847, ../../../scss/_app_styles.scss */ +/* line 4848, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4851, ../../../scss/_app_styles.scss */ +/* line 4852, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4864, ../../../scss/_app_styles.scss */ +/* line 4865, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4868, ../../../scss/_app_styles.scss */ +/* line 4869, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4875, ../../../scss/_app_styles.scss */ +/* line 4876, ../../../scss/_app_styles.scss */ .edit_button { color: #717171; } -/* line 4877, ../../../scss/_app_styles.scss */ +/* line 4878, ../../../scss/_app_styles.scss */ .edit_button:hover { border-left: 2px solid #ce7869; } -/* line 4883, ../../../scss/_app_styles.scss */ +/* line 4884, ../../../scss/_app_styles.scss */ .left-btn { margin-top: 0px; margin-right: 0px; @@ -28512,7 +28513,7 @@ h5 { color: #555555; font-size: 11px; } -/* line 4893, ../../../scss/_app_styles.scss */ +/* line 4894, ../../../scss/_app_styles.scss */ .left-btn:hover { display: block; padding: 0.5rem; @@ -28520,7 +28521,7 @@ h5 { border-left: 2px solid #ce7869; } -/* line 4902, ../../../scss/_app_styles.scss */ +/* line 4903, ../../../scss/_app_styles.scss */ .chnge-img:hover { display: block; padding: 0.5rem; @@ -28528,14 +28529,14 @@ h5 { border-left: 2px solid #ce7869; } -/* line 4913, ../../../scss/_app_styles.scss */ +/* line 4914, ../../../scss/_app_styles.scss */ .lms_page .lms_banner { width: 100%; height: 150px; background-size: 100% 100%; position: relative; } -/* line 4921, ../../../scss/_app_styles.scss */ +/* line 4922, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -28548,27 +28549,27 @@ h5 { bottom: 0; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 4934, ../../../scss/_app_styles.scss */ +/* line 4935, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before a { cursor: pointer; } -/* line 4939, ../../../scss/_app_styles.scss */ +/* line 4940, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .div-height { height: 150px !important; background-size: 100% 100%; position: absolute !important; } -/* line 4947, ../../../scss/_app_styles.scss */ +/* line 4948, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .enroll_unit > a { cursor: pointer; } -/* line 4951, ../../../scss/_app_styles.scss */ +/* line 4952, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 4957, ../../../scss/_app_styles.scss */ +/* line 4958, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .unit_name { font-size: 36px; font-family: OpenSans-Semibold; @@ -28579,17 +28580,17 @@ h5 { transition: border-radius .2s; text-shadow: 3px 2px #164a7b; } -/* line 4968, ../../../scss/_app_styles.scss */ +/* line 4969, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .right-margin { margin-right: 46px; } -/* line 4977, ../../../scss/_app_styles.scss */ +/* line 4978, ../../../scss/_app_styles.scss */ .border-bottom-lms-header { border-bottom: 1px solid #00000029; } -/* line 4982, ../../../scss/_app_styles.scss */ +/* line 4983, ../../../scss/_app_styles.scss */ .lms_secondary_header { width: 100%; position: relative; @@ -28597,11 +28598,11 @@ h5 { box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 4988, ../../../scss/_app_styles.scss */ +/* line 4989, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions { margin-top: 8px; } -/* line 4991, ../../../scss/_app_styles.scss */ +/* line 4992, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28613,11 +28614,11 @@ h5 { opacity: 0.8; } @media screen and (min-width: 980px) and (max-width: 1000px) { - /* line 5005, ../../../scss/_app_styles.scss */ + /* line 5006, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions { margin-top: 8px; } - /* line 5008, ../../../scss/_app_styles.scss */ + /* line 5009, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions > span { margin-left: 50px; background: #2e3f51; @@ -28631,16 +28632,16 @@ h5 { } } -/* line 5028, ../../../scss/_app_styles.scss */ +/* line 5029, ../../../scss/_app_styles.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; } -/* line 5031, ../../../scss/_app_styles.scss */ +/* line 5032, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 5034, ../../../scss/_app_styles.scss */ +/* line 5035, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a { list-style-type: none; display: inline-block; @@ -28651,23 +28652,23 @@ ul.nav_menu_1 > li > a { letter-spacing: 0.8px; border-bottom: 3px solid transparent; } -/* line 5045, ../../../scss/_app_styles.scss */ +/* line 5046, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-bottom: 3px solid #a2238d; } -/* line 5056, ../../../scss/_app_styles.scss */ +/* line 5057, ../../../scss/_app_styles.scss */ ul.authoring-tab { margin-bottom: 0px; display: inline; width: 50%; } -/* line 5060, ../../../scss/_app_styles.scss */ +/* line 5061, ../../../scss/_app_styles.scss */ ul.authoring-tab > li { display: inline-block; background-color: #164a7b; } -/* line 5063, ../../../scss/_app_styles.scss */ +/* line 5064, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a { list-style-type: none; margin-right: -4px; @@ -28680,13 +28681,13 @@ ul.authoring-tab > li > a { border-bottom: 3px solid transparent; color: #ffffff !important; } -/* line 5074, ../../../scss/_app_styles.scss */ +/* line 5075, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-bottom: 3px solid #a2238d; } /* Secondary Top Bar */ -/* line 5083, ../../../scss/_app_styles.scss */ +/* line 5084, ../../../scss/_app_styles.scss */ .secondary-header-tabs { color: #719dc7; font-weight: 400; @@ -28696,11 +28697,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -webkit-transition: color 1s ease, border-color 1s ease; display: inline-block; } -/* line 5092, ../../../scss/_app_styles.scss */ +/* line 5093, ../../../scss/_app_styles.scss */ .secondary-header-tabs:hover { color: #164A7B; } -/* line 5096, ../../../scss/_app_styles.scss */ +/* line 5097, ../../../scss/_app_styles.scss */ .secondary-header-tabs.active { color: #164A7B; border-bottom: 2px solid #164A7B; @@ -28708,7 +28709,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: 600; } -/* line 5106, ../../../scss/_app_styles.scss */ +/* line 5107, ../../../scss/_app_styles.scss */ .secondary-header-button { color: #3c556d; font-weight: 700; @@ -28721,12 +28722,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-size: 13px; letter-spacing: 1.2px; } -/* line 5118, ../../../scss/_app_styles.scss */ +/* line 5119, ../../../scss/_app_styles.scss */ .secondary-header-button:hover { opacity: 0.5; } -/* line 5125, ../../../scss/_app_styles.scss */ +/* line 5126, ../../../scss/_app_styles.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -28735,34 +28736,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: -8px; } -/* line 5136, ../../../scss/_app_styles.scss */ +/* line 5137, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 5141, ../../../scss/_app_styles.scss */ +/* line 5142, ../../../scss/_app_styles.scss */ .top-bar-second .name { text-align: center; } -/* line 5144, ../../../scss/_app_styles.scss */ +/* line 5145, ../../../scss/_app_styles.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 5154, ../../../scss/_app_styles.scss */ +/* line 5155, ../../../scss/_app_styles.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 5162, ../../../scss/_app_styles.scss */ +/* line 5163, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 5164, ../../../scss/_app_styles.scss */ +/* line 5165, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -28771,31 +28772,31 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; letter-spacing: 0.5px; } -/* line 5175, ../../../scss/_app_styles.scss */ +/* line 5176, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 5183, ../../../scss/_app_styles.scss */ +/* line 5184, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 5189, ../../../scss/_app_styles.scss */ +/* line 5190, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 5200, ../../../scss/_app_styles.scss */ + /* line 5201, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 5202, ../../../scss/_app_styles.scss */ + /* line 5203, ../../../scss/_app_styles.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 5209, ../../../scss/_app_styles.scss */ + /* line 5210, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -28803,32 +28804,32 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { line-height: 52px; border-left-width: 0px; } - /* line 5216, ../../../scss/_app_styles.scss */ + /* line 5217, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5222, ../../../scss/_app_styles.scss */ + /* line 5223, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5230, ../../../scss/_app_styles.scss */ + /* line 5231, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 5240, ../../../scss/_app_styles.scss */ + /* line 5241, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 5249, ../../../scss/_app_styles.scss */ + /* line 5250, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 5256, ../../../scss/_app_styles.scss */ + /* line 5257, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; @@ -28843,7 +28844,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { /** * Sass styles related to unit cards */ -/* line 5284, ../../../scss/_app_styles.scss */ +/* line 5285, ../../../scss/_app_styles.scss */ .unit_card { width: 300px; color: #000; @@ -28855,7 +28856,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { position: relative; height: 210px; } -/* line 5298, ../../../scss/_app_styles.scss */ +/* line 5299, ../../../scss/_app_styles.scss */ .unit_card .unit_status { position: absolute; right: 0px; @@ -28866,11 +28867,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-radius: 3px; letter-spacing: 0.6px; } -/* line 5309, ../../../scss/_app_styles.scss */ +/* line 5310, ../../../scss/_app_styles.scss */ .unit_card .unit_header { display: table; } -/* line 5311, ../../../scss/_app_styles.scss */ +/* line 5312, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_banner { display: table-cell; border-radius: 5px; @@ -28879,7 +28880,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-right: 10px; color: #333333; } -/* line 5319, ../../../scss/_app_styles.scss */ +/* line 5320, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_title { display: table-cell; font-size: 20px; @@ -28893,7 +28894,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { vertical-align: middle; color: #333333; } -/* line 5333, ../../../scss/_app_styles.scss */ +/* line 5334, ../../../scss/_app_styles.scss */ .unit_card .unit_desc { display: block; /* Fallback for non-webkit */ @@ -28910,16 +28911,16 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin: 10px 0px 20px; color: #333333; } -/* line 5349, ../../../scss/_app_styles.scss */ +/* line 5350, ../../../scss/_app_styles.scss */ .unit_card .unit_breif .unit_breif_row i { margin-right: 10px; color: #99aaba; } -/* line 5355, ../../../scss/_app_styles.scss */ +/* line 5356, ../../../scss/_app_styles.scss */ .unit_card .unit_actions { padding: 5px 0px; } -/* line 5360, ../../../scss/_app_styles.scss */ +/* line 5361, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol { background: #a2238d; height: 37px; @@ -28932,11 +28933,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5372, ../../../scss/_app_styles.scss */ +/* line 5373, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 5377, ../../../scss/_app_styles.scss */ +/* line 5378, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics { color: #a2238d; font-weight: 500; @@ -28944,7 +28945,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.3px; border-bottom: 2px solid #a2238d; } -/* line 5385, ../../../scss/_app_styles.scss */ +/* line 5386, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics-points { background: #ffffff; color: #a2238d; @@ -28955,7 +28956,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; cursor: default; } -/* line 5396, ../../../scss/_app_styles.scss */ +/* line 5397, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit { height: 37px; text-align: center; @@ -28964,13 +28965,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5404, ../../../scss/_app_styles.scss */ +/* line 5405, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit:hover { border-bottom: 2px solid #ffc14e; } /* unit cards labels */ -/* line 5414, ../../../scss/_app_styles.scss */ +/* line 5415, ../../../scss/_app_styles.scss */ .status-completed { width: auto; top: -1.15em; @@ -28987,7 +28988,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5430, ../../../scss/_app_styles.scss */ +/* line 5431, ../../../scss/_app_styles.scss */ .status-in-progress { width: auto; top: -1.15em; @@ -29004,7 +29005,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5447, ../../../scss/_app_styles.scss */ +/* line 5448, ../../../scss/_app_styles.scss */ .status-upcoming { width: auto; top: -1.15em; @@ -29021,7 +29022,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5464, ../../../scss/_app_styles.scss */ +/* line 5465, ../../../scss/_app_styles.scss */ .status-draft { width: auto; top: -1.15em; @@ -29038,7 +29039,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5482, ../../../scss/_app_styles.scss */ +/* line 5483, ../../../scss/_app_styles.scss */ .status-workspace { width: auto; top: -1.15em; @@ -29055,48 +29056,48 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5499, ../../../scss/_app_styles.scss */ +/* line 5500, ../../../scss/_app_styles.scss */ .icon-widget { font-size: 24px; } /* module detail css */ -/* line 5508, ../../../scss/_app_styles.scss */ +/* line 5509, ../../../scss/_app_styles.scss */ .thumbnail_style { margin-left: -30px; } -/* line 5512, ../../../scss/_app_styles.scss */ +/* line 5513, ../../../scss/_app_styles.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 5518, ../../../scss/_app_styles.scss */ +/* line 5519, ../../../scss/_app_styles.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); padding-left: 10px; height: auto; min-height: 143px; } -/* line 5524, ../../../scss/_app_styles.scss */ +/* line 5525, ../../../scss/_app_styles.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 5534, ../../../scss/_app_styles.scss */ +/* line 5535, ../../../scss/_app_styles.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 5539, ../../../scss/_app_styles.scss */ +/* line 5540, ../../../scss/_app_styles.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 5542, ../../../scss/_app_styles.scss */ +/* line 5543, ../../../scss/_app_styles.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -29110,7 +29111,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 5559, ../../../scss/_app_styles.scss */ +/* line 5560, ../../../scss/_app_styles.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -29124,7 +29125,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* Creating and editing course Structure */ -/* line 5576, ../../../scss/_app_styles.scss */ +/* line 5577, ../../../scss/_app_styles.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -29135,34 +29136,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 5585, ../../../scss/_app_styles.scss */ +/* line 5586, ../../../scss/_app_styles.scss */ .group_tile:hover { opacity: 0.7; } -/* line 5588, ../../../scss/_app_styles.scss */ +/* line 5589, ../../../scss/_app_styles.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 5595, ../../../scss/_app_styles.scss */ +/* line 5596, ../../../scss/_app_styles.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 5602, ../../../scss/_app_styles.scss */ +/* line 5603, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 5605, ../../../scss/_app_styles.scss */ +/* line 5606, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 5608, ../../../scss/_app_styles.scss */ +/* line 5609, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -29170,15 +29171,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 5616, ../../../scss/_app_styles.scss */ +/* line 5617, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 5620, ../../../scss/_app_styles.scss */ +/* line 5621, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 5622, ../../../scss/_app_styles.scss */ +/* line 5623, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -29189,27 +29190,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 5632, ../../../scss/_app_styles.scss */ +/* line 5633, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 5637, ../../../scss/_app_styles.scss */ +/* line 5638, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 5643, ../../../scss/_app_styles.scss */ +/* line 5644, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 5650, ../../../scss/_app_styles.scss */ +/* line 5651, ../../../scss/_app_styles.scss */ .max-width { max-width: 100%; } -/* line 5656, ../../../scss/_app_styles.scss */ +/* line 5657, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29219,7 +29220,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 5665, ../../../scss/_app_styles.scss */ +/* line 5666, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -29236,7 +29237,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 5678, ../../../scss/_app_styles.scss */ +/* line 5679, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -29246,28 +29247,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 5687, ../../../scss/_app_styles.scss */ +/* line 5688, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 5692, ../../../scss/_app_styles.scss */ +/* line 5693, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background-color: #ffffff; } -/* line 5697, ../../../scss/_app_styles.scss */ +/* line 5698, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 5703, ../../../scss/_app_styles.scss */ +/* line 5704, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 5707, ../../../scss/_app_styles.scss */ +/* line 5708, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -29280,7 +29281,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 5720, ../../../scss/_app_styles.scss */ +/* line 5721, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -29295,7 +29296,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Unit_Structure styles */ -/* line 5738, ../../../scss/_app_styles.scss */ +/* line 5739, ../../../scss/_app_styles.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -29303,12 +29304,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 5746, ../../../scss/_app_styles.scss */ +/* line 5747, ../../../scss/_app_styles.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 5750, ../../../scss/_app_styles.scss */ +/* line 5751, ../../../scss/_app_styles.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -29316,17 +29317,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 5756, ../../../scss/_app_styles.scss */ +/* line 5757, ../../../scss/_app_styles.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 5762, ../../../scss/_app_styles.scss */ +/* line 5763, ../../../scss/_app_styles.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 5767, ../../../scss/_app_styles.scss */ +/* line 5768, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29336,25 +29337,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 5776, ../../../scss/_app_styles.scss */ +/* line 5777, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5780, ../../../scss/_app_styles.scss */ +/* line 5781, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 5785, ../../../scss/_app_styles.scss */ +/* line 5786, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 5794, ../../../scss/_app_styles.scss */ +/* line 5795, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29363,7 +29364,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5801, ../../../scss/_app_styles.scss */ +/* line 5802, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29372,15 +29373,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 5810, ../../../scss/_app_styles.scss */ +/* line 5811, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 5815, ../../../scss/_app_styles.scss */ +/* line 5816, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 5818, ../../../scss/_app_styles.scss */ +/* line 5819, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29388,21 +29389,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 5828, ../../../scss/_app_styles.scss */ +/* line 5829, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 5834, ../../../scss/_app_styles.scss */ +/* line 5835, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 5842, ../../../scss/_app_styles.scss */ +/* line 5843, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 5844, ../../../scss/_app_styles.scss */ +/* line 5845, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29411,7 +29412,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5851, ../../../scss/_app_styles.scss */ +/* line 5852, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29419,11 +29420,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5860, ../../../scss/_app_styles.scss */ +/* line 5861, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 5869, ../../../scss/_app_styles.scss */ +/* line 5870, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29435,49 +29436,49 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 5879, ../../../scss/_app_styles.scss */ +/* line 5880, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 5885, ../../../scss/_app_styles.scss */ +/* line 5886, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 5888, ../../../scss/_app_styles.scss */ +/* line 5889, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 5897, ../../../scss/_app_styles.scss */ +/* line 5898, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 5902, ../../../scss/_app_styles.scss */ +/* line 5903, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 5906, ../../../scss/_app_styles.scss */ +/* line 5907, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 5908, ../../../scss/_app_styles.scss */ +/* line 5909, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 5911, ../../../scss/_app_styles.scss */ +/* line 5912, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 5917, ../../../scss/_app_styles.scss */ +/* line 5918, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29485,29 +29486,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 15px 5px; cursor: pointer; } -/* line 5932, ../../../scss/_app_styles.scss */ +/* line 5933, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 5940, ../../../scss/_app_styles.scss */ +/* line 5941, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 5946, ../../../scss/_app_styles.scss */ +/* line 5947, ../../../scss/_app_styles.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 5955, ../../../scss/_app_styles.scss */ +/* line 5956, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 5960, ../../../scss/_app_styles.scss */ +/* line 5961, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29515,28 +29516,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 5967, ../../../scss/_app_styles.scss */ +/* line 5968, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5972, ../../../scss/_app_styles.scss */ +/* line 5973, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5977, ../../../scss/_app_styles.scss */ +/* line 5978, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 5979, ../../../scss/_app_styles.scss */ +/* line 5980, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 5983, ../../../scss/_app_styles.scss */ +/* line 5984, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -29548,21 +29549,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; border-radius: 3px; } -/* line 5994, ../../../scss/_app_styles.scss */ +/* line 5995, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 5999, ../../../scss/_app_styles.scss */ +/* line 6000, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 6005, ../../../scss/_app_styles.scss */ +/* line 6006, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 6011, ../../../scss/_app_styles.scss */ +/* line 6012, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -29570,19 +29571,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 6018, ../../../scss/_app_styles.scss */ +/* line 6019, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 6025, ../../../scss/_app_styles.scss */ +/* line 6026, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6036, ../../../scss/_app_styles.scss */ +/* line 6037, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -29593,7 +29594,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 6053, ../../../scss/_app_styles.scss */ +/* line 6054, ../../../scss/_app_styles.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -29608,66 +29609,66 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* lesspn listing LMS */ -/* line 6069, ../../../scss/_app_styles.scss */ +/* line 6070, ../../../scss/_app_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 6077, ../../../scss/_app_styles.scss */ +/* line 6078, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 6080, ../../../scss/_app_styles.scss */ +/* line 6081, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 6082, ../../../scss/_app_styles.scss */ +/* line 6083, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 6089, ../../../scss/_app_styles.scss */ +/* line 6090, ../../../scss/_app_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 6091, ../../../scss/_app_styles.scss */ +/* line 6092, ../../../scss/_app_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 6096, ../../../scss/_app_styles.scss */ +/* line 6097, ../../../scss/_app_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 6104, ../../../scss/_app_styles.scss */ +/* line 6105, ../../../scss/_app_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6110, ../../../scss/_app_styles.scss */ +/* line 6111, ../../../scss/_app_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6117, ../../../scss/_app_styles.scss */ +/* line 6118, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 6120, ../../../scss/_app_styles.scss */ +/* line 6121, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 6123, ../../../scss/_app_styles.scss */ +/* line 6124, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 6126, ../../../scss/_app_styles.scss */ +/* line 6127, ../../../scss/_app_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; @@ -29677,23 +29678,23 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Styling for the Secondary header 2 */ -/* line 6145, ../../../scss/_app_styles.scss */ +/* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 6148, ../../../scss/_app_styles.scss */ +/* line 6149, ../../../scss/_app_styles.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6156, ../../../scss/_app_styles.scss */ +/* line 6157, ../../../scss/_app_styles.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 6165, ../../../scss/_app_styles.scss */ +/* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { position: relative; color: #fff; @@ -29704,56 +29705,56 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: -2px; border-right: 1px solid white; } -/* line 6174, ../../../scss/_app_styles.scss */ +/* line 6175, ../../../scss/_app_styles.scss */ .activity_player_header .header_title a { color: #ffc14f; } @media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 938px); } } @media only screen and (min-device-width: 2131px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 970px); } } @media only screen and (max-device-width: 1024px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 753px); } } -/* line 6251, ../../../scss/_app_styles.scss */ +/* line 6252, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon { font-size: 16px; line-height: 45px; color: #ffc14f; } -/* line 6257, ../../../scss/_app_styles.scss */ +/* line 6258, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 6263, ../../../scss/_app_styles.scss */ +/* line 6264, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 10px; } @media screen and (min-width: 1025px) { - /* line 6263, ../../../scss/_app_styles.scss */ + /* line 6264, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 15px; } } @media screen and (min-width: 1025px) { - /* line 6270, ../../../scss/_app_styles.scss */ + /* line 6271, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { float: right; margin-right: 70px; @@ -29761,73 +29762,73 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media screen and (max-width: 1024px) { - /* line 6270, ../../../scss/_app_styles.scss */ + /* line 6271, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { background-color: rgba(107, 0, 84, 0.97); } } -/* line 6283, ../../../scss/_app_styles.scss */ +/* line 6284, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6289, ../../../scss/_app_styles.scss */ +/* line 6290, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block { padding: 0px 15px; margin-left: -2px; border-right: 1px solid white; } -/* line 6293, ../../../scss/_app_styles.scss */ +/* line 6294, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block a { color: #ffc14f; } -/* line 6299, ../../../scss/_app_styles.scss */ +/* line 6300, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 9px; } @media screen and (min-width: 1025px) { - /* line 6299, ../../../scss/_app_styles.scss */ + /* line 6300, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 15px; } } -/* line 6307, ../../../scss/_app_styles.scss */ +/* line 6308, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 7px; } @media screen and (min-width: 1025px) { - /* line 6307, ../../../scss/_app_styles.scss */ + /* line 6308, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 15px; } } -/* line 6316, ../../../scss/_app_styles.scss */ +/* line 6317, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 6319, ../../../scss/_app_styles.scss */ +/* line 6320, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button i { color: #71318b; } -/* line 6325, ../../../scss/_app_styles.scss */ +/* line 6326, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 6329, ../../../scss/_app_styles.scss */ +/* line 6330, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 6335, ../../../scss/_app_styles.scss */ +/* line 6336, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .pagination:not(i) { color: #a983b9; } -/* line 6343, ../../../scss/_app_styles.scss */ +/* line 6344, ../../../scss/_app_styles.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -29835,29 +29836,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 6350, ../../../scss/_app_styles.scss */ +/* line 6351, ../../../scss/_app_styles.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 6354, ../../../scss/_app_styles.scss */ +/* line 6355, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6360, ../../../scss/_app_styles.scss */ +/* line 6361, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6366, ../../../scss/_app_styles.scss */ +/* line 6367, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 6371, ../../../scss/_app_styles.scss */ +/* line 6372, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29867,25 +29868,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 6380, ../../../scss/_app_styles.scss */ +/* line 6381, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6384, ../../../scss/_app_styles.scss */ +/* line 6385, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6389, ../../../scss/_app_styles.scss */ +/* line 6390, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6398, ../../../scss/_app_styles.scss */ +/* line 6399, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29894,7 +29895,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6405, ../../../scss/_app_styles.scss */ +/* line 6406, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29903,15 +29904,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 6414, ../../../scss/_app_styles.scss */ +/* line 6415, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6419, ../../../scss/_app_styles.scss */ +/* line 6420, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6422, ../../../scss/_app_styles.scss */ +/* line 6423, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29919,21 +29920,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 6432, ../../../scss/_app_styles.scss */ +/* line 6433, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6438, ../../../scss/_app_styles.scss */ +/* line 6439, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6446, ../../../scss/_app_styles.scss */ +/* line 6447, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6448, ../../../scss/_app_styles.scss */ +/* line 6449, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29942,7 +29943,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6455, ../../../scss/_app_styles.scss */ +/* line 6456, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29950,11 +29951,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6464, ../../../scss/_app_styles.scss */ +/* line 6465, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6473, ../../../scss/_app_styles.scss */ +/* line 6474, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29966,48 +29967,48 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 6483, ../../../scss/_app_styles.scss */ +/* line 6484, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6488, ../../../scss/_app_styles.scss */ +/* line 6489, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6491, ../../../scss/_app_styles.scss */ +/* line 6492, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6500, ../../../scss/_app_styles.scss */ +/* line 6501, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6505, ../../../scss/_app_styles.scss */ +/* line 6506, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6509, ../../../scss/_app_styles.scss */ +/* line 6510, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6511, ../../../scss/_app_styles.scss */ +/* line 6512, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6514, ../../../scss/_app_styles.scss */ +/* line 6515, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6520, ../../../scss/_app_styles.scss */ +/* line 6521, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -30016,7 +30017,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; } -/* line 6538, ../../../scss/_app_styles.scss */ +/* line 6539, ../../../scss/_app_styles.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -30024,26 +30025,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 10px; padding-right: 4px; } -/* line 6544, ../../../scss/_app_styles.scss */ +/* line 6545, ../../../scss/_app_styles.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 6549, ../../../scss/_app_styles.scss */ +/* line 6550, ../../../scss/_app_styles.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6555, ../../../scss/_app_styles.scss */ +/* line 6556, ../../../scss/_app_styles.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 6561, ../../../scss/_app_styles.scss */ +/* line 6562, ../../../scss/_app_styles.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -30053,29 +30054,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 6570, ../../../scss/_app_styles.scss */ +/* line 6571, ../../../scss/_app_styles.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 6574, ../../../scss/_app_styles.scss */ +/* line 6575, ../../../scss/_app_styles.scss */ .activity-title > li > a { color: black; } -/* line 6583, ../../../scss/_app_styles.scss */ +/* line 6584, ../../../scss/_app_styles.scss */ .activity_page_rendered { margin-left: 20px; max-width: 900px; } /* Rating css */ -/* line 6591, ../../../scss/_app_styles.scss */ +/* line 6592, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 6593, ../../../scss/_app_styles.scss */ +/* line 6594, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -30083,19 +30084,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { unicode-bidi: bidi-override; direction: rtl; } -/* line 6601, ../../../scss/_app_styles.scss */ +/* line 6602, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 6603, ../../../scss/_app_styles.scss */ +/* line 6604, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 6609, ../../../scss/_app_styles.scss */ +/* line 6610, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 6611, ../../../scss/_app_styles.scss */ +/* line 6612, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -30108,7 +30109,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0; vertical-align: bottom; } -/* line 6623, ../../../scss/_app_styles.scss */ +/* line 6624, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -30116,32 +30117,32 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* WHITE STAR */ color: #888; } -/* line 6630, ../../../scss/_app_styles.scss */ +/* line 6631, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 6641, ../../../scss/_app_styles.scss */ +/* line 6642, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 6648, ../../../scss/_app_styles.scss */ +/* line 6649, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 6656, ../../../scss/_app_styles.scss */ +/* line 6657, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 6661, ../../../scss/_app_styles.scss */ +/* line 6662, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -30150,29 +30151,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-shadow: 0 0 1px #333; } -/* line 6671, ../../../scss/_app_styles.scss */ +/* line 6672, ../../../scss/_app_styles.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 6675, ../../../scss/_app_styles.scss */ +/* line 6676, ../../../scss/_app_styles.scss */ .input_links { margin-left: 10px; } -/* line 6677, ../../../scss/_app_styles.scss */ +/* line 6678, ../../../scss/_app_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 6683, ../../../scss/_app_styles.scss */ +/* line 6684, ../../../scss/_app_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 6691, ../../../scss/_app_styles.scss */ +/* line 6692, ../../../scss/_app_styles.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -30181,19 +30182,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 6700, ../../../scss/_app_styles.scss */ +/* line 6701, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 6704, ../../../scss/_app_styles.scss */ +/* line 6705, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 6710, ../../../scss/_app_styles.scss */ +/* line 6711, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -30201,12 +30202,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; margin-left: 12%; } -/* line 6718, ../../../scss/_app_styles.scss */ +/* line 6719, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 6724, ../../../scss/_app_styles.scss */ +/* line 6725, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -30215,21 +30216,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: none; color: #8E8E8E; } -/* line 6733, ../../../scss/_app_styles.scss */ +/* line 6734, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 6738, ../../../scss/_app_styles.scss */ +/* line 6739, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 6740, ../../../scss/_app_styles.scss */ +/* line 6741, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 6743, ../../../scss/_app_styles.scss */ +/* line 6744, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -30240,24 +30241,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #757575; margin-right: 20px; } -/* line 6753, ../../../scss/_app_styles.scss */ +/* line 6754, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 6757, ../../../scss/_app_styles.scss */ +/* line 6758, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 6760, ../../../scss/_app_styles.scss */ +/* line 6761, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 6765, ../../../scss/_app_styles.scss */ +/* line 6766, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 6769, ../../../scss/_app_styles.scss */ +/* line 6770, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -30269,7 +30270,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; color: #222222; } -/* line 6780, ../../../scss/_app_styles.scss */ +/* line 6781, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -30277,15 +30278,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 8px; top: 4px; } -/* line 6788, ../../../scss/_app_styles.scss */ +/* line 6789, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 6790, ../../../scss/_app_styles.scss */ +/* line 6791, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 6793, ../../../scss/_app_styles.scss */ +/* line 6794, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -30295,25 +30296,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { letter-spacing: 0.8px; color: #999999; } -/* line 6802, ../../../scss/_app_styles.scss */ +/* line 6803, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 6808, ../../../scss/_app_styles.scss */ +/* line 6809, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 6817, ../../../scss/_app_styles.scss */ +/* line 6818, ../../../scss/_app_styles.scss */ .icon-color { color: #2e3f51 !important; padding: right; } /* The asset tile */ -/* line 6827, ../../../scss/_app_styles.scss */ +/* line 6828, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -30323,7 +30324,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 6836, ../../../scss/_app_styles.scss */ +/* line 6837, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -30340,7 +30341,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 6849, ../../../scss/_app_styles.scss */ +/* line 6850, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -30350,28 +30351,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 6858, ../../../scss/_app_styles.scss */ +/* line 6859, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 6863, ../../../scss/_app_styles.scss */ +/* line 6864, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 6868, ../../../scss/_app_styles.scss */ +/* line 6869, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 6874, ../../../scss/_app_styles.scss */ +/* line 6875, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 6878, ../../../scss/_app_styles.scss */ +/* line 6879, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -30384,7 +30385,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 6891, ../../../scss/_app_styles.scss */ +/* line 6892, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -30398,7 +30399,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 6906, ../../../scss/_app_styles.scss */ +/* line 6907, ../../../scss/_app_styles.scss */ .orange-button-subtitle { color: #ce7869; padding: 4px 5px; @@ -30411,13 +30412,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 6917, ../../../scss/_app_styles.scss */ +/* line 6918, ../../../scss/_app_styles.scss */ .orange-button-subtitle:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 6923, ../../../scss/_app_styles.scss */ +/* line 6924, ../../../scss/_app_styles.scss */ .transcript-toggler { display: block; width: 155px !important; @@ -30433,12 +30434,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; } -/* line 6938, ../../../scss/_app_styles.scss */ +/* line 6939, ../../../scss/_app_styles.scss */ .asset_list { margin-left: 12px; } -/* line 6942, ../../../scss/_app_styles.scss */ +/* line 6943, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -30447,22 +30448,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6951, ../../../scss/_app_styles.scss */ +/* line 6952, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6958, ../../../scss/_app_styles.scss */ +/* line 6959, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6964, ../../../scss/_app_styles.scss */ +/* line 6965, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6966, ../../../scss/_app_styles.scss */ +/* line 6967, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -30471,15 +30472,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6973, ../../../scss/_app_styles.scss */ +/* line 6974, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6977, ../../../scss/_app_styles.scss */ +/* line 6978, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6983, ../../../scss/_app_styles.scss */ +/* line 6984, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30488,7 +30489,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6994, ../../../scss/_app_styles.scss */ +/* line 6995, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -30497,24 +30498,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 7003, ../../../scss/_app_styles.scss */ +/* line 7004, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 7010, ../../../scss/_app_styles.scss */ +/* line 7011, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 7015, ../../../scss/_app_styles.scss */ +/* line 7016, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 7019, ../../../scss/_app_styles.scss */ +/* line 7020, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -30525,14 +30526,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 7029, ../../../scss/_app_styles.scss */ +/* line 7030, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 7036, ../../../scss/_app_styles.scss */ + /* line 7037, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30540,7 +30541,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7045, ../../../scss/_app_styles.scss */ + /* line 7046, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30548,7 +30549,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7052, ../../../scss/_app_styles.scss */ + /* line 7053, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30556,14 +30557,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7059, ../../../scss/_app_styles.scss */ + /* line 7060, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 7067, ../../../scss/_app_styles.scss */ +/* line 7068, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30578,14 +30579,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7083, ../../../scss/_app_styles.scss */ +/* line 7084, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 7090, ../../../scss/_app_styles.scss */ + /* line 7091, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30596,7 +30597,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7101, ../../../scss/_app_styles.scss */ + /* line 7102, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30607,7 +30608,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7112, ../../../scss/_app_styles.scss */ + /* line 7113, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30618,7 +30619,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7123, ../../../scss/_app_styles.scss */ + /* line 7124, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30628,7 +30629,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7134, ../../../scss/_app_styles.scss */ +/* line 7135, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30643,14 +30644,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7150, ../../../scss/_app_styles.scss */ +/* line 7151, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 7157, ../../../scss/_app_styles.scss */ + /* line 7158, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30661,7 +30662,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7168, ../../../scss/_app_styles.scss */ + /* line 7169, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30672,7 +30673,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7179, ../../../scss/_app_styles.scss */ + /* line 7180, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30683,7 +30684,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7190, ../../../scss/_app_styles.scss */ + /* line 7191, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30693,11 +30694,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7201, ../../../scss/_app_styles.scss */ +/* line 7202, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 7203, ../../../scss/_app_styles.scss */ +/* line 7204, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30706,11 +30707,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 7211, ../../../scss/_app_styles.scss */ +/* line 7212, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 7217, ../../../scss/_app_styles.scss */ +/* line 7218, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30719,7 +30720,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7228, ../../../scss/_app_styles.scss */ +/* line 7229, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30730,22 +30731,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7238, ../../../scss/_app_styles.scss */ +/* line 7239, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7241, ../../../scss/_app_styles.scss */ +/* line 7242, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7246, ../../../scss/_app_styles.scss */ +/* line 7247, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7257, ../../../scss/_app_styles.scss */ +/* line 7258, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30756,26 +30757,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7267, ../../../scss/_app_styles.scss */ +/* line 7268, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7270, ../../../scss/_app_styles.scss */ +/* line 7271, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7274, ../../../scss/_app_styles.scss */ +/* line 7275, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7280, ../../../scss/_app_styles.scss */ +/* line 7281, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7282, ../../../scss/_app_styles.scss */ +/* line 7283, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30784,7 +30785,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7291, ../../../scss/_app_styles.scss */ +/* line 7292, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30793,7 +30794,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7305, ../../../scss/_app_styles.scss */ +/* line 7306, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -30803,19 +30804,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Asset detail */ -/* line 7316, ../../../scss/_app_styles.scss */ +/* line 7317, ../../../scss/_app_styles.scss */ .overlay-head { height: 60px; margin-bottom: 20px; } -/* line 7322, ../../../scss/_app_styles.scss */ +/* line 7323, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7327, ../../../scss/_app_styles.scss */ +/* line 7328, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30829,13 +30830,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7339, ../../../scss/_app_styles.scss */ +/* line 7340, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7346, ../../../scss/_app_styles.scss */ +/* line 7347, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; padding: 7px 14px; @@ -30848,22 +30849,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7357, ../../../scss/_app_styles.scss */ +/* line 7358, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7362, ../../../scss/_app_styles.scss */ +/* line 7363, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; background: #fff; } -/* line 7365, ../../../scss/_app_styles.scss */ +/* line 7366, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: #fff; } -/* line 7368, ../../../scss/_app_styles.scss */ +/* line 7369, ../../../scss/_app_styles.scss */ .orange-button-template > a { color: #ce7869; padding: 7px 14px; @@ -30876,13 +30877,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7379, ../../../scss/_app_styles.scss */ +/* line 7380, ../../../scss/_app_styles.scss */ .orange-button-template > a:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7386, ../../../scss/_app_styles.scss */ +/* line 7387, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30894,7 +30895,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7397, ../../../scss/_app_styles.scss */ +/* line 7398, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30902,18 +30903,18 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7406, ../../../scss/_app_styles.scss */ +/* line 7407, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7413, ../../../scss/_app_styles.scss */ +/* line 7414, ../../../scss/_app_styles.scss */ .page-name { margin-top: 8px; } -/* line 7417, ../../../scss/_app_styles.scss */ +/* line 7418, ../../../scss/_app_styles.scss */ .tag-ele { font-weight: normal; text-align: center; @@ -30932,7 +30933,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: none; } -/* line 7435, ../../../scss/_app_styles.scss */ +/* line 7436, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30950,12 +30951,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7451, ../../../scss/_app_styles.scss */ +/* line 7452, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7456, ../../../scss/_app_styles.scss */ +/* line 7457, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30967,13 +30968,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7466, ../../../scss/_app_styles.scss */ +/* line 7467, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7474, ../../../scss/_app_styles.scss */ +/* line 7475, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30990,13 +30991,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7489, ../../../scss/_app_styles.scss */ +/* line 7490, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* line 7500, ../../../scss/_app_styles.scss */ +/* line 7501, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -31004,7 +31005,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-size: 100% 100%; position: relative; } -/* line 7507, ../../../scss/_app_styles.scss */ +/* line 7508, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -31018,13 +31019,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7521, ../../../scss/_app_styles.scss */ +/* line 7522, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 7526, ../../../scss/_app_styles.scss */ +/* line 7527, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -31033,79 +31034,79 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow: hidden; background-color: #fff; } -/* line 7534, ../../../scss/_app_styles.scss */ +/* line 7535, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 7539, ../../../scss/_app_styles.scss */ +/* line 7540, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 7544, ../../../scss/_app_styles.scss */ +/* line 7545, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 7549, ../../../scss/_app_styles.scss */ +/* line 7550, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 7557, ../../../scss/_app_styles.scss */ +/* line 7558, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 7561, ../../../scss/_app_styles.scss */ +/* line 7562, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 7570, ../../../scss/_app_styles.scss */ +/* line 7571, ../../../scss/_app_styles.scss */ .lms_explore_head_unit { width: 100%; height: 50px; background-color: #fff; color: #164A7B; } -/* line 7575, ../../../scss/_app_styles.scss */ +/* line 7576, ../../../scss/_app_styles.scss */ .lms_explore_head_unit > p { margin-left: 81px; padding: 0px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 7581, ../../../scss/_app_styles.scss */ +/* line 7582, ../../../scss/_app_styles.scss */ .lms_explore_head_unit > a { padding: 0px 85px 3px 0px; } -/* line 7587, ../../../scss/_app_styles.scss */ +/* line 7588, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -19.3px; } -/* line 7594, ../../../scss/_app_styles.scss */ +/* line 7595, ../../../scss/_app_styles.scss */ .course-students-data { margin: 2px 2px 2px 2px; border: 2px solid #164a7b; padding: 19px 14px 0px 5px; } -/* line 7601, ../../../scss/_app_styles.scss */ +/* line 7602, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 7604, ../../../scss/_app_styles.scss */ +/* line 7605, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 7612, ../../../scss/_app_styles.scss */ +/* line 7613, ../../../scss/_app_styles.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -31121,7 +31122,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7631, ../../../scss/_app_styles.scss */ +/* line 7632, ../../../scss/_app_styles.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -31131,7 +31132,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7640, ../../../scss/_app_styles.scss */ +/* line 7641, ../../../scss/_app_styles.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -31141,7 +31142,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 7649, ../../../scss/_app_styles.scss */ +/* line 7650, ../../../scss/_app_styles.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; @@ -31161,13 +31162,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #A6D7F5; } }*/ -/* line 7672, ../../../scss/_app_styles.scss */ +/* line 7673, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 7677, ../../../scss/_app_styles.scss */ +/* line 7678, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title { width: 43%; /* background-color: blue;*/ @@ -31177,7 +31178,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; color: #fff; } -/* line 7686, ../../../scss/_app_styles.scss */ +/* line 7687, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title.active { background-color: #719dc7; border: 1px solid #CCC; @@ -31185,7 +31186,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; } -/* line 7699, ../../../scss/_app_styles.scss */ +/* line 7700, ../../../scss/_app_styles.scss */ .create_unit { background: #fff; box-shadow: 0px 2px 3px #000; @@ -31193,7 +31194,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 10px; } -/* line 7707, ../../../scss/_app_styles.scss */ +/* line 7708, ../../../scss/_app_styles.scss */ .asset-unit-button { color: #ce7869; padding: 7px 14px; @@ -31205,13 +31206,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 30px; margin-bottom: 8px; } -/* line 7718, ../../../scss/_app_styles.scss */ +/* line 7719, ../../../scss/_app_styles.scss */ .asset-unit-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7724, ../../../scss/_app_styles.scss */ +/* line 7725, ../../../scss/_app_styles.scss */ .course_creator_header { width: 100%; height: 70px; @@ -31219,7 +31220,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7731, ../../../scss/_app_styles.scss */ +/* line 7732, ../../../scss/_app_styles.scss */ .course_creator_header .unit_editor { width: 100%; height: 320px; @@ -31227,13 +31228,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7740, ../../../scss/_app_styles.scss */ +/* line 7741, ../../../scss/_app_styles.scss */ .course_creator_header .back_to_group { padding: 0px 15px 0px 10px; border-right: 1px solid #ccc; margin-right: 15px; } -/* line 7746, ../../../scss/_app_styles.scss */ +/* line 7747, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit { width: 500px; height: 40px; @@ -31242,24 +31243,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7755, ../../../scss/_app_styles.scss */ +/* line 7756, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit:focus { border: 1px solid #74b3dc; } -/* line 7759, ../../../scss/_app_styles.scss */ +/* line 7760, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7767, ../../../scss/_app_styles.scss */ +/* line 7768, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit select { font-size: 14px; font-family: 'OpenSans-Regular', sans-serif; color: gray; border: 0px solid #74b3dc; } -/* line 7778, ../../../scss/_app_styles.scss */ +/* line 7779, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input { width: 500px; height: 40px; @@ -31268,31 +31269,31 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7786, ../../../scss/_app_styles.scss */ +/* line 7787, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input:focus { border: 1px solid #74b3dc; } -/* line 7790, ../../../scss/_app_styles.scss */ +/* line 7791, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7800, ../../../scss/_app_styles.scss */ +/* line 7801, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading h5 { margin-top: 15px; } -/* line 7805, ../../../scss/_app_styles.scss */ +/* line 7806, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading span { letter-spacing: 0.9px; font-weight: 600; line-height: 50px; } -/* line 7813, ../../../scss/_app_styles.scss */ +/* line 7814, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul { margin: 0px; } -/* line 7816, ../../../scss/_app_styles.scss */ +/* line 7817, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li { list-style-type: none; display: inline-block; @@ -31301,11 +31302,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; letter-spacing: 0.8px; } -/* line 7825, ../../../scss/_app_styles.scss */ +/* line 7826, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { border-bottom: 3px solid #ffc14e; } -/* line 7830, ../../../scss/_app_styles.scss */ +/* line 7831, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions span { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -31317,7 +31318,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; border-radius: 3px; } -/* line 7842, ../../../scss/_app_styles.scss */ +/* line 7843, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -31330,20 +31331,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; } -/* line 7859, ../../../scss/_app_styles.scss */ +/* line 7860, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: 2.7px; } -/* line 7864, ../../../scss/_app_styles.scss */ +/* line 7865, ../../../scss/_app_styles.scss */ .empty-dashboard-message { border: 3px solid #e4e4e4; background: #f8f8f8; padding: 40px 0; text-align: center; } -/* line 7870, ../../../scss/_app_styles.scss */ +/* line 7871, ../../../scss/_app_styles.scss */ .empty-dashboard-message > a { background-color: #164a7b; border: 1px solid #164a7b; @@ -31357,7 +31358,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 5px; padding: 15px 20px; } -/* line 7884, ../../../scss/_app_styles.scss */ +/* line 7885, ../../../scss/_app_styles.scss */ .empty-dashboard-message .button-explore-courses { font-size: 20px; font-weight: normal; @@ -31367,7 +31368,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 170px; } -/* line 7899, ../../../scss/_app_styles.scss */ +/* line 7900, ../../../scss/_app_styles.scss */ .module_card { display: table; height: 290px; @@ -31378,16 +31379,16 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); } -/* line 7909, ../../../scss/_app_styles.scss */ +/* line 7910, ../../../scss/_app_styles.scss */ .module_card:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 7913, ../../../scss/_app_styles.scss */ +/* line 7914, ../../../scss/_app_styles.scss */ .module_card > div { display: table-cell; height: 290px; } -/* line 7918, ../../../scss/_app_styles.scss */ +/* line 7919, ../../../scss/_app_styles.scss */ .module_card .card_banner { width: 250px; height: 290px; @@ -31401,14 +31402,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-radius .2s; transition: border-radius .2s; } -/* line 7931, ../../../scss/_app_styles.scss */ +/* line 7932, ../../../scss/_app_styles.scss */ .module_card .card_banner > img { height: 100%; width: 100%; border-radius: 4px; -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); } -/* line 7936, ../../../scss/_app_styles.scss */ +/* line 7937, ../../../scss/_app_styles.scss */ .module_card .card_banner > img:hover { -webkit-transform: scale(1.03); -moz-transform: scale(1.03); @@ -31417,7 +31418,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transform: scale(1.03); opacity: 0.8; } -/* line 7948, ../../../scss/_app_styles.scss */ +/* line 7949, ../../../scss/_app_styles.scss */ .module_card .card_banner > h4 { position: absolute; top: 100px; @@ -31426,7 +31427,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #ffffff !important; text-shadow: 2px 0px 8px black; } -/* line 7963, ../../../scss/_app_styles.scss */ +/* line 7964, ../../../scss/_app_styles.scss */ .module_card .card_title { display: block; width: 230px; @@ -31436,27 +31437,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px auto; letter-spacing: 1px; } -/* line 7974, ../../../scss/_app_styles.scss */ +/* line 7975, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_banner { border-radius: 8px; } -/* line 7977, ../../../scss/_app_styles.scss */ +/* line 7978, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7982, ../../../scss/_app_styles.scss */ +/* line 7983, ../../../scss/_app_styles.scss */ .module_card.animated_card.isOpen .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7986, ../../../scss/_app_styles.scss */ +/* line 7987, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_summary { left: 30px; } -/* line 7989, ../../../scss/_app_styles.scss */ +/* line 7990, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_summary { left: 5px; } -/* line 7993, ../../../scss/_app_styles.scss */ +/* line 7994, ../../../scss/_app_styles.scss */ .module_card .card_summary { width: 290px; padding: 0px 15px; @@ -31472,35 +31473,35 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Safari */ transition-property: left; } -/* line 8007, ../../../scss/_app_styles.scss */ +/* line 8008, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_label { font-weight: 500; font-size: 12.5px; letter-spacing: 1px; color: black; } -/* line 8013, ../../../scss/_app_styles.scss */ +/* line 8014, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section { margin: 5px 0px; padding: 5px 0px; } -/* line 8017, ../../../scss/_app_styles.scss */ +/* line 8018, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section:not(:last-child) { border-bottom: 1px solid #ccc; } -/* line 8020, ../../../scss/_app_styles.scss */ +/* line 8021, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section p { margin-bottom: 7px; font-size: 12.5px; } -/* line 8024, ../../../scss/_app_styles.scss */ +/* line 8025, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .ellipsis { width: 245px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -/* line 8032, ../../../scss/_app_styles.scss */ +/* line 8033, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol { background: #a2238d; height: 37px; @@ -31514,11 +31515,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 8045, ../../../scss/_app_styles.scss */ +/* line 8046, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 8051, ../../../scss/_app_styles.scss */ +/* line 8052, ../../../scss/_app_styles.scss */ .module_card .card_summary .module_brief { display: block; /* Fallback for non-webkit */ @@ -31535,12 +31536,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: black; } -/* line 8068, ../../../scss/_app_styles.scss */ +/* line 8069, ../../../scss/_app_styles.scss */ .inner { display: inline-block !important; } -/* line 8075, ../../../scss/_app_styles.scss */ +/* line 8076, ../../../scss/_app_styles.scss */ .enroll-btn { width: 90px; opacity: 1; @@ -31556,7 +31557,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #4b4852; } -/* line 8095, ../../../scss/_app_styles.scss */ +/* line 8096, ../../../scss/_app_styles.scss */ .enrollBtn { background: #a2238d; height: 37px; @@ -31571,35 +31572,115 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /*****Toolbar CSS******/ -/* line 8110, ../../../scss/_app_styles.scss */ +/* line 8111, ../../../scss/_app_styles.scss */ #toolbar { background-color: #3e3e3e; } -/* line 8113, ../../../scss/_app_styles.scss */ +/* line 8114, ../../../scss/_app_styles.scss */ .datetime { color: #eaeaea; padding: 4px 0px 2px 5px; font-size: 11px; } -/* line 8118, ../../../scss/_app_styles.scss */ +/* line 8119, ../../../scss/_app_styles.scss */ .changefont { text-align: right; padding: 2px 5px 1px 0px; } -/* line 8122, ../../../scss/_app_styles.scss */ +/* line 8123, ../../../scss/_app_styles.scss */ .changefont .minus { font-size: 60%; color: #eaeaea; } -/* line 8125, ../../../scss/_app_styles.scss */ +/* line 8126, ../../../scss/_app_styles.scss */ .changefont .normal { font-size: 80%; color: #eaeaea; } -/* line 8128, ../../../scss/_app_styles.scss */ +/* line 8129, ../../../scss/_app_styles.scss */ .changefont .plus { font-size: 100%; color: #eaeaea; } + +/***********Landing page***************/ +/* line 8138, ../../../scss/_app_styles.scss */ +.about_us { + height: 300px; + background: #20ade0; +} + +/* line 8142, ../../../scss/_app_styles.scss */ +.analytics { + margin-top: 20px; +} + +/* line 8145, ../../../scss/_app_styles.scss */ +.square { + border: 4px solid #ffffff; + position: relative; + text-align: center; + width: 16%; + float: left; + height: 100%; + margin-left: 30px; +} + +/* line 8155, ../../../scss/_app_styles.scss */ +.square:after { + content: ""; + display: block; + padding-bottom: 100%; +} + +/* line 8161, ../../../scss/_app_styles.scss */ +.content { + position: absolute; + width: 100%; + height: 80%; + font-size: 2em; + padding-top: 20%; +} + +/* line 8174, ../../../scss/_app_styles.scss */ +.activity-slider { + font-family: Arial; + width: 800px; + display: block; + margin: 0 auto; +} + +/* line 8181, ../../../scss/_app_styles.scss */ +.activity-slider h3 { + background: #fff; + color: #3498db; + font-size: 36px; + line-height: 100px; + margin: 10px; + padding: 2%; + position: relative; + text-align: center; +} + +/*.action{ + display:block; + margin:100px auto; + width:100%; + text-align:center; +} +.action a { + display:inline-block; + padding:5px 10px; + background:#f30; + color:#fff; + text-decoration:none; +} +.action a:hover{ + background:#000; +}*/ +/* line 8208, ../../../scss/_app_styles.scss */ +.footer_link_cont h4 { + color: #999; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css index 36c5ab1803..efcefc6126 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css @@ -23929,98 +23929,99 @@ body > footer .myfooter .footer_link_cont .links_show { max-height: 600px; } /* line 567, ../../../scss/_app_styles.scss */ -body > footer .myfooter .footer_link_cont h4 { +body > footer .myfooter .footer_link_cont .flinks { + font-size: 18px; color: #999; } -/* line 570, ../../../scss/_app_styles.scss */ -body > footer .myfooter .footer_link_cont .social_links { +/* line 571, ../../../scss/_app_styles.scss */ +body > footer .myfooter .footer_link_cont .social_links a { font-size: 24px; margin-right: 5px; } -/* line 575, ../../../scss/_app_styles.scss */ +/* line 576, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links { color: #777777; cursor: pointer; } -/* line 578, ../../../scss/_app_styles.scss */ +/* line 579, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links i { font-size: 24px; margin-right: 5px; } -/* line 581, ../../../scss/_app_styles.scss */ +/* line 582, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links:hover { text-decoration: underline; } -/* line 588, ../../../scss/_app_styles.scss */ +/* line 589, ../../../scss/_app_styles.scss */ body > footer hr.footerlogo-divider { border-color: #555; margin-top: 10px; } -/* line 594, ../../../scss/_app_styles.scss */ +/* line 595, ../../../scss/_app_styles.scss */ body > footer ul#footerlogo li { margin: 0px 5px; display: inline; } -/* line 600, ../../../scss/_app_styles.scss */ +/* line 601, ../../../scss/_app_styles.scss */ .no-gap ul { margin-left: 0rem; } -/* line 606, ../../../scss/_app_styles.scss */ +/* line 607, ../../../scss/_app_styles.scss */ body > footer ul#poweredlogos { margin-left: 0px; } -/* line 610, ../../../scss/_app_styles.scss */ +/* line 611, ../../../scss/_app_styles.scss */ #poweredlogos li { margin: 0px 5px; display: inline; } -/* line 616, ../../../scss/_app_styles.scss */ +/* line 617, ../../../scss/_app_styles.scss */ .no-gap ul { margin-left: 0rem; } -/* line 621, ../../../scss/_app_styles.scss */ +/* line 622, ../../../scss/_app_styles.scss */ .coll-arrows { cursor: pointer; display: block; padding: 0.5rem; } -/* line 626, ../../../scss/_app_styles.scss */ +/* line 627, ../../../scss/_app_styles.scss */ .coll-arrows:hover { background-color: #D3D3D3; } /* Sections */ -/* line 633, ../../../scss/_app_styles.scss */ +/* line 634, ../../../scss/_app_styles.scss */ main > article { padding: 0px; } -/* line 636, ../../../scss/_app_styles.scss */ +/* line 637, ../../../scss/_app_styles.scss */ main > nav { border-top: 3px solid black; position: relative; z-index: 10; } -/* line 640, ../../../scss/_app_styles.scss */ +/* line 641, ../../../scss/_app_styles.scss */ main > nav > .button-bar { background-color: #10c1cb; /* Hide icons till we can retreive custom icons from the system */ } -/* line 642, ../../../scss/_app_styles.scss */ +/* line 643, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group { margin: 0; } -/* line 644, ../../../scss/_app_styles.scss */ +/* line 645, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group.tools { padding: 5px; } -/* line 650, ../../../scss/_app_styles.scss */ +/* line 651, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button { border: none; font-size: 0.8rem; @@ -24029,135 +24030,135 @@ main > nav > .button-bar li .button { color: black; margin: 0; } -/* line 654, ../../../scss/_app_styles.scss */ +/* line 655, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.home { font-weight: bold; } -/* line 657, ../../../scss/_app_styles.scss */ +/* line 658, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings, main > nav > .button-bar li .button#toggle-help { padding: 6px 10px; color: #333; background-color: rgba(255, 255, 255, 0.3); } -/* line 662, ../../../scss/_app_styles.scss */ +/* line 663, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:hover, main > nav > .button-bar li .button#toggle-help:hover { background-color: rgba(0, 0, 0, 0.2); color: white; } -/* line 667, ../../../scss/_app_styles.scss */ +/* line 668, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button#toggle-help { background-color: inherit; } -/* line 671, ../../../scss/_app_styles.scss */ +/* line 672, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:after { border: none; } -/* line 679, ../../../scss/_app_styles.scss */ +/* line 680, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button:hover { color: white; } -/* line 685, ../../../scss/_app_styles.scss */ +/* line 686, ../../../scss/_app_styles.scss */ main > nav > .button-bar li.active .button { background-color: #0eacb5; color: white; } -/* line 693, ../../../scss/_app_styles.scss */ +/* line 694, ../../../scss/_app_styles.scss */ main > nav > .button-bar .app i { display: none !important; } -/* line 703, ../../../scss/_app_styles.scss */ +/* line 704, ../../../scss/_app_styles.scss */ main > aside > div h2 { color: #111; } -/* line 706, ../../../scss/_app_styles.scss */ +/* line 707, ../../../scss/_app_styles.scss */ main > aside > div h3 { font-size: 1.2rem; font-weight: normal; color: #222; } -/* line 711, ../../../scss/_app_styles.scss */ +/* line 712, ../../../scss/_app_styles.scss */ main > aside > div h4 { font-size: 1rem; color: #222; } -/* line 714, ../../../scss/_app_styles.scss */ +/* line 715, ../../../scss/_app_styles.scss */ main > aside > div h4 span { display: none; } -/* line 717, ../../../scss/_app_styles.scss */ +/* line 718, ../../../scss/_app_styles.scss */ main > aside > div h4:hover span { display: inline; } -/* line 721, ../../../scss/_app_styles.scss */ +/* line 722, ../../../scss/_app_styles.scss */ main > aside > div h5, main > aside > div h6 { margin: 0; } -/* line 725, ../../../scss/_app_styles.scss */ +/* line 726, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content { width: auto; padding: 0; border: 1px solid #222; } -/* line 729, ../../../scss/_app_styles.scss */ +/* line 730, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content .item { width: 70px; } -/* line 736, ../../../scss/_app_styles.scss */ +/* line 737, ../../../scss/_app_styles.scss */ main > aside > div footer { background-color: #222; min-height: 1rem; } -/* line 739, ../../../scss/_app_styles.scss */ +/* line 740, ../../../scss/_app_styles.scss */ main > aside > div footer label { font-size: 0.7rem; } -/* line 752, ../../../scss/_app_styles.scss */ +/* line 753, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection { background-color: #444; padding: 0; border-bottom: 2px solid #10c1cb; margin: 0; } -/* line 757, ../../../scss/_app_styles.scss */ +/* line 758, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li { border-bottom: 1px solid #555; } -/* line 759, ../../../scss/_app_styles.scss */ +/* line 760, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li a { border-left: 2px solid black; } -/* line 762, ../../../scss/_app_styles.scss */ +/* line 763, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li.active a, main > aside > div .side-nav.collection li a:hover { color: white !important; border-left: 2px solid #10c1cb; background-color: #10c1cb; } -/* line 775, ../../../scss/_app_styles.scss */ +/* line 776, ../../../scss/_app_styles.scss */ article { position: relative; z-index: 1; min-height: 400px; overflow-x: visible; } -/* line 780, ../../../scss/_app_styles.scss */ +/* line 781, ../../../scss/_app_styles.scss */ article > header, article form > header { padding: 15px; background-color: #f0f0f0; } -/* line 793, ../../../scss/_app_styles.scss */ +/* line 794, ../../../scss/_app_styles.scss */ article h1:not(.subheader) .tabs { display: inline-block; position: relative; bottom: -0.5rem; } -/* line 799, ../../../scss/_app_styles.scss */ +/* line 800, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div, article h1:not(.subheader) div input:not(.subheader) div { display: inline-block; position: relative; } -/* line 802, ../../../scss/_app_styles.scss */ +/* line 803, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input { height: 200%; font-style: italic; @@ -24167,13 +24168,13 @@ article h1:not(.subheader) div input { border-bottom: 2px dotted #222; background-color: inherit; } -/* line 812, ../../../scss/_app_styles.scss */ +/* line 813, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input:hover { background-color: white; } /* Card block */ -/* line 822, ../../../scss/_app_styles.scss */ +/* line 823, ../../../scss/_app_styles.scss */ .card > * { position: relative; background-color: white; @@ -24184,51 +24185,51 @@ article h1:not(.subheader) div input:hover { opacity: 0.9; overflow: hidden; } -/* line 834, ../../../scss/_app_styles.scss */ +/* line 835, ../../../scss/_app_styles.scss */ .card > * > a { color: inherit; display: block; position: relative; z-index: 200; } -/* line 845, ../../../scss/_app_styles.scss */ +/* line 846, ../../../scss/_app_styles.scss */ .card > *.published { opacity: 1; background-color: #e6f9ee; } -/* line 850, ../../../scss/_app_styles.scss */ +/* line 851, ../../../scss/_app_styles.scss */ .card > *.published hr { border-color: #7ee2a8; } -/* line 855, ../../../scss/_app_styles.scss */ +/* line 856, ../../../scss/_app_styles.scss */ .card > *.moderation { opacity: 1; background-color: #efefef; } -/* line 860, ../../../scss/_app_styles.scss */ +/* line 861, ../../../scss/_app_styles.scss */ .card > *.moderation hr { border-color: #bcbcbc; } -/* line 865, ../../../scss/_app_styles.scss */ +/* line 866, ../../../scss/_app_styles.scss */ .card > *.unapproved { opacity: 1; border-style: solid; border-color: #f04124; } -/* line 871, ../../../scss/_app_styles.scss */ +/* line 872, ../../../scss/_app_styles.scss */ .card > *:hover { border-style: solid; opacity: 1; } -/* line 877, ../../../scss/_app_styles.scss */ +/* line 878, ../../../scss/_app_styles.scss */ .card > *:hover i { opacity: 0.3; } -/* line 880, ../../../scss/_app_styles.scss */ +/* line 881, ../../../scss/_app_styles.scss */ .card > *:hover footer .age { display: block; } -/* line 885, ../../../scss/_app_styles.scss */ +/* line 886, ../../../scss/_app_styles.scss */ .card > * > i { position: absolute; top: -10px; @@ -24237,28 +24238,28 @@ article h1:not(.subheader) div input:hover { color: #0eacb5; opacity: 0.3; } -/* line 894, ../../../scss/_app_styles.scss */ +/* line 895, ../../../scss/_app_styles.scss */ .card > * .preview { float: left; padding-right: 5px; padding-top: 4px; } -/* line 899, ../../../scss/_app_styles.scss */ +/* line 900, ../../../scss/_app_styles.scss */ .card > * header { overflow: hidden; } -/* line 903, ../../../scss/_app_styles.scss */ +/* line 904, ../../../scss/_app_styles.scss */ .card > * .label, .card > * .label-list:empty:before { opacity: 0.5; } -/* line 906, ../../../scss/_app_styles.scss */ +/* line 907, ../../../scss/_app_styles.scss */ .card > * p { color: #555; height: 80px; background-repeat: no-repeat; font-size: 80%; } -/* line 912, ../../../scss/_app_styles.scss */ +/* line 913, ../../../scss/_app_styles.scss */ .card > * .th { margin: 20px auto; width: 80px; @@ -24266,23 +24267,23 @@ article h1:not(.subheader) div input:hover { overflow: hidden; display: none; } -/* line 918, ../../../scss/_app_styles.scss */ +/* line 919, ../../../scss/_app_styles.scss */ .card > * .th:hover { width: 150px; height: 150px; } -/* line 922, ../../../scss/_app_styles.scss */ +/* line 923, ../../../scss/_app_styles.scss */ .card > * .th img { width: 100%; } -/* line 926, ../../../scss/_app_styles.scss */ +/* line 927, ../../../scss/_app_styles.scss */ .card > * footer { margin-top: 1rem; font-size: 70%; clear: both; color: #e01818; } -/* line 931, ../../../scss/_app_styles.scss */ +/* line 932, ../../../scss/_app_styles.scss */ .card > * footer .age { display: none; position: absolute; @@ -24292,7 +24293,7 @@ article h1:not(.subheader) div input:hover { width: 100%; } -/* line 942, ../../../scss/_app_styles.scss */ +/* line 943, ../../../scss/_app_styles.scss */ .edit-card { position: relative; background-color: white; @@ -24301,40 +24302,40 @@ article h1:not(.subheader) div input:hover { } /* Content Tabs */ -/* line 955, ../../../scss/_app_styles.scss */ +/* line 956, ../../../scss/_app_styles.scss */ article .tabs { display: inline-block; } -/* line 957, ../../../scss/_app_styles.scss */ +/* line 958, ../../../scss/_app_styles.scss */ article .tabs dd a { border-radius: 4px; border: 1px transparent; } -/* line 961, ../../../scss/_app_styles.scss */ +/* line 962, ../../../scss/_app_styles.scss */ article .tabs dd.active a { color: #10c1cb; border: 1px solid; } -/* line 965, ../../../scss/_app_styles.scss */ +/* line 966, ../../../scss/_app_styles.scss */ article .tabs dd:hover a { color: #10c1cb; } -/* line 969, ../../../scss/_app_styles.scss */ +/* line 970, ../../../scss/_app_styles.scss */ article .tabs i { margin-right: 5px; font-size: 1.6rem; } -/* line 973, ../../../scss/_app_styles.scss */ +/* line 974, ../../../scss/_app_styles.scss */ article .tabs span { font-size: 17px; vertical-align: text-bottom; } -/* line 979, ../../../scss/_app_styles.scss */ +/* line 980, ../../../scss/_app_styles.scss */ article section.content { border: 1px solid #eee; } -/* line 986, ../../../scss/_app_styles.scss */ +/* line 987, ../../../scss/_app_styles.scss */ .card > div:hover { box-shadow: 0 0 10px lightgray; transition: 0.9s; @@ -24343,31 +24344,31 @@ article section.content { } /* Default card */ -/* line 994, ../../../scss/_app_styles.scss */ +/* line 995, ../../../scss/_app_styles.scss */ .card > :hover .label, .card > :hover .label-list:empty:before { opacity: 1; } -/* line 999, ../../../scss/_app_styles.scss */ +/* line 1000, ../../../scss/_app_styles.scss */ .gallery .card .th { display: block; } /* Inline label list */ -/* line 1007, ../../../scss/_app_styles.scss */ +/* line 1008, ../../../scss/_app_styles.scss */ .label-list { display: inline-block; text-align: left; margin-bottom: 0.1rem; } -/* line 1011, ../../../scss/_app_styles.scss */ +/* line 1012, ../../../scss/_app_styles.scss */ .label-list:empty:before { content: "UNTAGGED"; opacity: 0.2 !important; padding: 2px; background-color: transparent; } -/* line 1019, ../../../scss/_app_styles.scss */ +/* line 1020, ../../../scss/_app_styles.scss */ .label-list .label, .label-list .label-list:empty:before { background-color: transparent; padding: 2px; @@ -24375,20 +24376,20 @@ article section.content { /*************************** 2. Custom CSS overrides ***********************/ /* Content area */ -/* line 1028, ../../../scss/_app_styles.scss */ +/* line 1029, ../../../scss/_app_styles.scss */ article { padding-bottom: 1rem; } -/* line 1032, ../../../scss/_app_styles.scss */ +/* line 1033, ../../../scss/_app_styles.scss */ article > header { border-bottom: 1px solid #ddd; } -/* line 1036, ../../../scss/_app_styles.scss */ +/* line 1037, ../../../scss/_app_styles.scss */ article > footer { border-top: 1px dotted #ddd; } -/* line 1048, ../../../scss/_app_styles.scss */ +/* line 1049, ../../../scss/_app_styles.scss */ textarea { min-height: 6rem; } @@ -24409,39 +24410,39 @@ textarea { }*/ /*************************** 3. Custom CSS Below ***********************/ /*CSS fix for tables generated via orgitdown*/ -/* line 1068, ../../../scss/_app_styles.scss */ +/* line 1069, ../../../scss/_app_styles.scss */ #content table td, #content colgroup col { float: none !important; } -/* line 1073, ../../../scss/_app_styles.scss */ +/* line 1074, ../../../scss/_app_styles.scss */ .user { color: inherit; } -/* line 1077, ../../../scss/_app_styles.scss */ +/* line 1078, ../../../scss/_app_styles.scss */ .user i { margin-right: 3px; } -/* line 1080, ../../../scss/_app_styles.scss */ +/* line 1081, ../../../scss/_app_styles.scss */ .user:hover i { opacity: 1; } -/* line 1084, ../../../scss/_app_styles.scss */ +/* line 1085, ../../../scss/_app_styles.scss */ a.node { display: block; } -/* line 1088, ../../../scss/_app_styles.scss */ +/* line 1089, ../../../scss/_app_styles.scss */ .button.edit { margin-bottom: 0; } /************ Forms **************/ /* Node edit */ -/* line 1096, ../../../scss/_app_styles.scss */ +/* line 1097, ../../../scss/_app_styles.scss */ input.node-title { font-size: 3rem; height: 4rem; @@ -24449,13 +24450,13 @@ input.node-title { } /* view-graph in node_details_base.html */ -/* line 1103, ../../../scss/_app_styles.scss */ +/* line 1104, ../../../scss/_app_styles.scss */ .graph-height { height: 70%; } /*for graph and location*/ -/* line 1108, ../../../scss/_app_styles.scss */ +/* line 1109, ../../../scss/_app_styles.scss */ .graph-div { height: 90%; width: -webkit-calc(100% - 10px); @@ -24469,13 +24470,13 @@ input.node-title { } /*for graph and location*/ -/* line 1118, ../../../scss/_app_styles.scss */ +/* line 1119, ../../../scss/_app_styles.scss */ .graph-div h3 { border-bottom: 2px inset #154534; padding: 0.25em 0; } -/* line 1123, ../../../scss/_app_styles.scss */ +/* line 1124, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal, #view-map-edit-widget .close-reveal-modal { z-index: 1; background-color: captiontext; @@ -24486,7 +24487,7 @@ input.node-title { box-shadow: 0 1px 10px 2px #A9A9A9; } -/* line 1134, ../../../scss/_app_styles.scss */ +/* line 1135, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal:hover, #view-map-edit-widget .close-reveal-modal:hover { background-color: white; border-radius: 30px; @@ -24499,7 +24500,7 @@ input.node-title { /****************** CUSTOM *********************/ /* UI Button */ -/* line 1149, ../../../scss/_app_styles.scss */ +/* line 1150, ../../../scss/_app_styles.scss */ .ui.button { margin-right: 0.5rem; border: 1px solid rgba(0, 0, 0, 0.2); @@ -24509,102 +24510,102 @@ input.node-title { padding: 0.5vw 0.75vw; z-index: 500; } -/* line 1160, ../../../scss/_app_styles.scss */ +/* line 1161, ../../../scss/_app_styles.scss */ .ui.button label { color: #666; } -/* line 1163, ../../../scss/_app_styles.scss */ +/* line 1164, ../../../scss/_app_styles.scss */ .ui.button small { margin-left: 2px; display: inline; } -/* line 1167, ../../../scss/_app_styles.scss */ +/* line 1168, ../../../scss/_app_styles.scss */ .ui.button:hover, .ui.button:active { border-color: rgba(255, 255, 255, 0.2); background-color: rgba(0, 0, 0, 0.9); } -/* line 1170, ../../../scss/_app_styles.scss */ +/* line 1171, ../../../scss/_app_styles.scss */ .ui.button:hover label, .ui.button:active label { color: #ddd; } -/* line 1173, ../../../scss/_app_styles.scss */ +/* line 1174, ../../../scss/_app_styles.scss */ .ui.button:hover small, .ui.button:active small { display: inline; } -/* line 1176, ../../../scss/_app_styles.scss */ +/* line 1177, ../../../scss/_app_styles.scss */ .ui.button:hover:focus, .ui.button:active:focus { font-weight: bold; } -/* line 1185, ../../../scss/_app_styles.scss */ +/* line 1186, ../../../scss/_app_styles.scss */ aside#help h4 { color: black; } -/* line 1188, ../../../scss/_app_styles.scss */ +/* line 1189, ../../../scss/_app_styles.scss */ aside#help p, aside#help h5, aside#help h6 { color: #ddd; padding: 0.3rem 0.9375rem; } -/* line 1195, ../../../scss/_app_styles.scss */ +/* line 1196, ../../../scss/_app_styles.scss */ .align-center { margin: 0 auto; display: block; } -/* line 1201, ../../../scss/_app_styles.scss */ +/* line 1202, ../../../scss/_app_styles.scss */ #profile-img { height: 40px; margin-right: 5px; } -/* line 1209, ../../../scss/_app_styles.scss */ +/* line 1210, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin-bottom: 20px; } -/* line 1213, ../../../scss/_app_styles.scss */ +/* line 1214, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 1219, ../../../scss/_app_styles.scss */ +/* line 1220, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 1222, ../../../scss/_app_styles.scss */ +/* line 1223, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 1226, ../../../scss/_app_styles.scss */ +/* line 1227, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 1231, ../../../scss/_app_styles.scss */ +/* line 1232, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 1238, ../../../scss/_app_styles.scss */ +/* line 1239, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 1242, ../../../scss/_app_styles.scss */ +/* line 1243, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 1247, ../../../scss/_app_styles.scss */ +/* line 1248, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 1253, ../../../scss/_app_styles.scss */ +/* line 1254, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -24613,16 +24614,16 @@ aside#help p, aside#help h5, aside#help h6 { border-top: 1px solid #B1B1B1; width: 80%; } -/* line 1262, ../../../scss/_app_styles.scss */ +/* line 1263, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 1267, ../../../scss/_app_styles.scss */ +/* line 1268, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 1270, ../../../scss/_app_styles.scss */ +/* line 1271, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { color: #ffffff !important; height: 2em; @@ -24630,7 +24631,7 @@ aside#help p, aside#help h5, aside#help h6 { padding-left: 10px; line-height: 1.5em; } -/* line 1280, ../../../scss/_app_styles.scss */ +/* line 1281, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -24640,12 +24641,12 @@ aside#help p, aside#help h5, aside#help h6 { border-radius: 0px 0px 5px 5px; /*background-color: #f2f2f2;*/ } -/* line 1289, ../../../scss/_app_styles.scss */ +/* line 1290, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 1295, ../../../scss/_app_styles.scss */ +/* line 1296, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -24671,7 +24672,7 @@ aside#help p, aside#help h5, aside#help h6 { } }*/ /* Simple Card CSS*/ -/* line 1323, ../../../scss/_app_styles.scss */ +/* line 1324, ../../../scss/_app_styles.scss */ .scard { background: #FFF; border: 1px solid #AAA; @@ -24683,12 +24684,12 @@ aside#help p, aside#help h5, aside#help h6 { height: 9rem; /*float:left;*/ } -/* line 1332, ../../../scss/_app_styles.scss */ +/* line 1333, ../../../scss/_app_styles.scss */ .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1338, ../../../scss/_app_styles.scss */ +/* line 1339, ../../../scss/_app_styles.scss */ .scard .scard_header { text-align: center; position: fixed; @@ -24706,7 +24707,7 @@ aside#help p, aside#help h5, aside#help h6 { font-weight: bold; } -/* line 1355, ../../../scss/_app_styles.scss */ +/* line 1356, ../../../scss/_app_styles.scss */ .scard-content { height: 2.7em; padding: 0.5rem; @@ -24719,7 +24720,7 @@ aside#help p, aside#help h5, aside#help h6 { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 1366, ../../../scss/_app_styles.scss */ +/* line 1367, ../../../scss/_app_styles.scss */ .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; @@ -24729,7 +24730,7 @@ aside#help p, aside#help h5, aside#help h6 { text-align: center; } -/* line 1379, ../../../scss/_app_styles.scss */ +/* line 1380, ../../../scss/_app_styles.scss */ .scard-action { height: height; font-size: 0.6em; @@ -24743,7 +24744,7 @@ aside#help p, aside#help h5, aside#help h6 { background-color: #CCCCCC; } -/* line 1394, ../../../scss/_app_styles.scss */ +/* line 1395, ../../../scss/_app_styles.scss */ .scard-desc { font-size: 0.7em; color: #333333; @@ -24759,13 +24760,13 @@ aside#help p, aside#help h5, aside#help h6 { display-inline: block; } -/* line 1409, ../../../scss/_app_styles.scss */ +/* line 1410, ../../../scss/_app_styles.scss */ p { margin: 0px; padding: 10px; } -/* line 1414, ../../../scss/_app_styles.scss */ +/* line 1415, ../../../scss/_app_styles.scss */ .scard-image { padding: 0px; margin: 0px; @@ -24776,7 +24777,7 @@ p { overflow: hidden; background-color: #f2f2f2; } -/* line 1423, ../../../scss/_app_styles.scss */ +/* line 1424, ../../../scss/_app_styles.scss */ .scard-image img { border-radius: 2px 2px 0 0; display: block; @@ -24784,7 +24785,7 @@ p { opacity: 0.9; height: 100%; } -/* line 1432, ../../../scss/_app_styles.scss */ +/* line 1433, ../../../scss/_app_styles.scss */ .scard-image i { font-size: 7rem; opacity: 0.75; @@ -24798,83 +24799,83 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1446, ../../../scss/_app_styles.scss */ +/* line 1447, ../../../scss/_app_styles.scss */ .scard-image i.common-icon:before { content: "\f1fb"; } -/* line 1449, ../../../scss/_app_styles.scss */ +/* line 1450, ../../../scss/_app_styles.scss */ .scard-image i.file:before { content: "\f18e"; } -/* line 1452, ../../../scss/_app_styles.scss */ +/* line 1453, ../../../scss/_app_styles.scss */ .scard-image i.page:before { content: "\f18e"; } -/* line 1455, ../../../scss/_app_styles.scss */ +/* line 1456, ../../../scss/_app_styles.scss */ .scard-image i.collection:before { content: "\f18a"; } -/* line 1458, ../../../scss/_app_styles.scss */ +/* line 1459, ../../../scss/_app_styles.scss */ .scard-image i.documents:before { content: "\f18b"; } -/* line 1461, ../../../scss/_app_styles.scss */ +/* line 1462, ../../../scss/_app_styles.scss */ .scard-image i.pdf:before { content: "\f18b"; } -/* line 1464, ../../../scss/_app_styles.scss */ +/* line 1465, ../../../scss/_app_styles.scss */ .scard-image i.text:before { content: "\f18e"; } -/* line 1467, ../../../scss/_app_styles.scss */ +/* line 1468, ../../../scss/_app_styles.scss */ .scard-image i.interactives:before { content: "\f1b2"; } -/* line 1470, ../../../scss/_app_styles.scss */ +/* line 1471, ../../../scss/_app_styles.scss */ .scard-image i.ebooks:before { content: "\f11e"; } -/* line 1473, ../../../scss/_app_styles.scss */ +/* line 1474, ../../../scss/_app_styles.scss */ .scard-image i.images:before { content: "\f125"; } -/* line 1476, ../../../scss/_app_styles.scss */ +/* line 1477, ../../../scss/_app_styles.scss */ .scard-image i.audios:before, .scard-image i.audio:before { content: "\f17b"; } -/* line 1479, ../../../scss/_app_styles.scss */ +/* line 1480, ../../../scss/_app_styles.scss */ .scard-image i.videos:before, .scard-image i.video:before { content: "\f20e"; } -/* line 1485, ../../../scss/_app_styles.scss */ +/* line 1486, ../../../scss/_app_styles.scss */ .published.scard-action { background: #A6D9CB; } -/* line 1489, ../../../scss/_app_styles.scss */ +/* line 1490, ../../../scss/_app_styles.scss */ .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 1495, ../../../scss/_app_styles.scss */ +/* line 1496, ../../../scss/_app_styles.scss */ .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1500, ../../../scss/_app_styles.scss */ +/* line 1501, ../../../scss/_app_styles.scss */ .moderation.scard-action { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1504, ../../../scss/_app_styles.scss */ +/* line 1505, ../../../scss/_app_styles.scss */ .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 1508, ../../../scss/_app_styles.scss */ +/* line 1509, ../../../scss/_app_styles.scss */ .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -24885,7 +24886,7 @@ p { /* End Simple Card CSS*/ /* Customized Off-Canvas */ -/* line 1646, ../../../scss/_app_styles.scss */ +/* line 1647, ../../../scss/_app_styles.scss */ #help-canvas-menu { position: fixed; top: 52px; @@ -24898,26 +24899,26 @@ p { height: 100%; } -/* line 1657, ../../../scss/_app_styles.scss */ +/* line 1658, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded { left: 0 !important; z-index: 100000000; left: 150px; } -/* line 1662, ../../../scss/_app_styles.scss */ +/* line 1663, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded .help-button { right: 80px; z-index: -1; } -/* line 1667, ../../../scss/_app_styles.scss */ +/* line 1668, ../../../scss/_app_styles.scss */ #help-canvas-menu.animating .help-button { -webkit-animation: shake 400ms; animation: shake 400ms; } -/* line 1671, ../../../scss/_app_styles.scss */ +/* line 1672, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button { position: absolute; -webkit-transform: rotate(-90deg); @@ -24944,12 +24945,12 @@ p { border-top-right-radius: 5px; } -/* line 1697, ../../../scss/_app_styles.scss */ +/* line 1698, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button-text { font-size: 18px; } -/* line 1700, ../../../scss/_app_styles.scss */ +/* line 1701, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button .text { color: #f9f9f9; letter-spacing: .1em; @@ -24958,7 +24959,7 @@ p { text-shadow: 0 0 1px rgba(0, 0, 0, 0.35); } -/* line 1709, ../../../scss/_app_styles.scss */ +/* line 1710, ../../../scss/_app_styles.scss */ #help-canvas-menu .mainContainer { background: #fff; /*-webkit-box-shadow:3px 3px 17px -1px #7b7b7b; @@ -24972,7 +24973,7 @@ p { } /* End of Customized Off-Canvas */ -/* line 1727, ../../../scss/_app_styles.scss */ +/* line 1728, ../../../scss/_app_styles.scss */ .rcard { overflow: hidden; color: #272727; @@ -24980,56 +24981,56 @@ p { background-color: #f5f5f5; margin: 5px; } -/* line 1738, ../../../scss/_app_styles.scss */ +/* line 1739, ../../../scss/_app_styles.scss */ .rcard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1743, ../../../scss/_app_styles.scss */ +/* line 1744, ../../../scss/_app_styles.scss */ .rcard .title { font-size: 1.1rem; font-weight: bold; } -/* line 1749, ../../../scss/_app_styles.scss */ +/* line 1750, ../../../scss/_app_styles.scss */ .rcard .content { padding: 0.5rem 2rem; border-radius: 0 0 2px 2px; overflow: hidden; height: 7.25rem; } -/* line 1756, ../../../scss/_app_styles.scss */ +/* line 1757, ../../../scss/_app_styles.scss */ .rcard .content .slick-slider { margin-bottom: 0; } -/* line 1760, ../../../scss/_app_styles.scss */ +/* line 1761, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev { left: 0.25rem; } -/* line 1763, ../../../scss/_app_styles.scss */ +/* line 1764, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev:before { color: #ccc; } -/* line 1769, ../../../scss/_app_styles.scss */ +/* line 1770, ../../../scss/_app_styles.scss */ .rcard .content .slick-next { right: 0.25rem; } -/* line 1772, ../../../scss/_app_styles.scss */ +/* line 1773, ../../../scss/_app_styles.scss */ .rcard .content .slick-next:before { color: #ccc; } -/* line 1778, ../../../scss/_app_styles.scss */ +/* line 1779, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title { width: 100%; border-bottom: 1px solid #808080; line-height: 0.25em; margin: 10px 0 20px; } -/* line 1784, ../../../scss/_app_styles.scss */ +/* line 1785, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title small { padding: 0 10px; background-color: #f5f5f5; } -/* line 1791, ../../../scss/_app_styles.scss */ +/* line 1792, ../../../scss/_app_styles.scss */ .rcard .action { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -25037,15 +25038,15 @@ p { font-size: small; height: 2rem; } -/* line 1798, ../../../scss/_app_styles.scss */ +/* line 1799, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection { opacity: 0.5; } -/* line 1801, ../../../scss/_app_styles.scss */ +/* line 1802, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection:hover { opacity: 1; } -/* line 1815, ../../../scss/_app_styles.scss */ +/* line 1816, ../../../scss/_app_styles.scss */ .rcard .image { position: relative; background-color: #ccc; @@ -25053,7 +25054,7 @@ p { height: 8em; overflow: hidden; } -/* line 1825, ../../../scss/_app_styles.scss */ +/* line 1826, ../../../scss/_app_styles.scss */ .rcard .image .title { position: absolute; bottom: 0; @@ -25065,7 +25066,7 @@ p { text-transform: uppercase; text-shadow: 0px 0px 0.5px rgba(0, 0, 0, 0.5); } -/* line 1838, ../../../scss/_app_styles.scss */ +/* line 1839, ../../../scss/_app_styles.scss */ .rcard .image img { border-radius: 2px 2px 0 0; display: block; @@ -25075,14 +25076,14 @@ p { filter: brightness(0.75); -webkit-filter: brightness(0.75); } -/* line 1850, ../../../scss/_app_styles.scss */ +/* line 1851, ../../../scss/_app_styles.scss */ .rcard .image img:hover { filter: brightness(1); -webkit-filter: brightness(1); transform: translate3d(0, 0, 0); transition: all 1.5s ease; } -/* line 1859, ../../../scss/_app_styles.scss */ +/* line 1860, ../../../scss/_app_styles.scss */ .rcard .image i { font-size: 7rem; opacity: 0.75; @@ -25096,51 +25097,51 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1876, ../../../scss/_app_styles.scss */ +/* line 1877, ../../../scss/_app_styles.scss */ .rcard .image i.file:before { content: "\f18e"; } -/* line 1877, ../../../scss/_app_styles.scss */ +/* line 1878, ../../../scss/_app_styles.scss */ .rcard .image i.page:before { content: "\f18e"; } -/* line 1878, ../../../scss/_app_styles.scss */ +/* line 1879, ../../../scss/_app_styles.scss */ .rcard .image i.collection:before { content: "\f18a"; } -/* line 1880, ../../../scss/_app_styles.scss */ +/* line 1881, ../../../scss/_app_styles.scss */ .rcard .image i.documents:before { content: "\f18b"; } -/* line 1881, ../../../scss/_app_styles.scss */ +/* line 1882, ../../../scss/_app_styles.scss */ .rcard .image i.pdf:before { content: "\f18b"; } -/* line 1882, ../../../scss/_app_styles.scss */ +/* line 1883, ../../../scss/_app_styles.scss */ .rcard .image i.text:before { content: "\f18e"; } -/* line 1883, ../../../scss/_app_styles.scss */ +/* line 1884, ../../../scss/_app_styles.scss */ .rcard .image i.interactives:before { content: "\f1b2"; } -/* line 1884, ../../../scss/_app_styles.scss */ +/* line 1885, ../../../scss/_app_styles.scss */ .rcard .image i.ebooks:before { content: "\f11e"; } -/* line 1885, ../../../scss/_app_styles.scss */ +/* line 1886, ../../../scss/_app_styles.scss */ .rcard .image i.images:before { content: "\f125"; } -/* line 1886, ../../../scss/_app_styles.scss */ +/* line 1887, ../../../scss/_app_styles.scss */ .rcard .image i.audios:before, .rcard .image i.audio:before { content: "\f17b"; } -/* line 1887, ../../../scss/_app_styles.scss */ +/* line 1888, ../../../scss/_app_styles.scss */ .rcard .image i.videos:before, .rcard .image i.video:before { content: "\f20e"; } -/* line 1890, ../../../scss/_app_styles.scss */ +/* line 1891, ../../../scss/_app_styles.scss */ .rcard .card-label { border-style: solid; border-width: 0 70px 40px 0; @@ -25153,59 +25154,59 @@ p { z-index: 1; opacity: 0.75; } -/* line 1903, ../../../scss/_app_styles.scss */ +/* line 1904, ../../../scss/_app_styles.scss */ .rcard .card-label { border-color: transparent #333 transparent transparent; border-color: rgba(255, 255, 255, 0) #333 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1908, ../../../scss/_app_styles.scss */ +/* line 1909, ../../../scss/_app_styles.scss */ .rcard .published.card-label { border-color: transparent #43AC6A transparent transparent; border-color: rgba(255, 255, 255, 0) #43AC6A rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1912, ../../../scss/_app_styles.scss */ +/* line 1913, ../../../scss/_app_styles.scss */ .rcard .published.card-label .label-text:before { content: "\221A"; margin-left: 5px; font-size: larger; } -/* line 1920, ../../../scss/_app_styles.scss */ +/* line 1921, ../../../scss/_app_styles.scss */ .rcard .draft.card-label { border-color: transparent #a9b2b3 transparent transparent; border-color: rgba(255, 255, 255, 0) #a9b2b3 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1924, ../../../scss/_app_styles.scss */ +/* line 1925, ../../../scss/_app_styles.scss */ .rcard .draft.card-label .label-text:before { content: "Draft"; } -/* line 1929, ../../../scss/_app_styles.scss */ +/* line 1930, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1933, ../../../scss/_app_styles.scss */ +/* line 1934, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label .label-text:before { content: "Deleted"; } -/* line 1938, ../../../scss/_app_styles.scss */ +/* line 1939, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1942, ../../../scss/_app_styles.scss */ +/* line 1943, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label .label-text:before { content: "Mod"; } -/* line 1945, ../../../scss/_app_styles.scss */ +/* line 1946, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label { border-color: transparent #000 transparent transparent; border-color: rgba(255, 255, 255, 0) #000 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1949, ../../../scss/_app_styles.scss */ +/* line 1950, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label .label-text:before { content: "hidden"; } -/* line 1952, ../../../scss/_app_styles.scss */ +/* line 1953, ../../../scss/_app_styles.scss */ .rcard .label-text { color: #fff; font-size: 0.75rem; @@ -25216,7 +25217,7 @@ p { transform: rotate(30deg); } -/* line 1966, ../../../scss/_app_styles.scss */ +/* line 1967, ../../../scss/_app_styles.scss */ .compulsory:after { content: '*'; color: red; @@ -25224,19 +25225,19 @@ p { } /* Watermark background for node_ajax_content */ -/* line 1974, ../../../scss/_app_styles.scss */ +/* line 1975, ../../../scss/_app_styles.scss */ .allow.draft { background-size: 10%; background-repeat: repeat; background-image: url("/static/ndf/images/draft-watermark.png"); } -/* line 1982, ../../../scss/_app_styles.scss */ +/* line 1983, ../../../scss/_app_styles.scss */ .text-gray { color: gray; } -/* line 1987, ../../../scss/_app_styles.scss */ +/* line 1988, ../../../scss/_app_styles.scss */ .repository-title { color: #D7D7D7; font-size: 1.1em; @@ -25249,7 +25250,7 @@ p { text-align: center; } -/* line 1999, ../../../scss/_app_styles.scss */ +/* line 2000, ../../../scss/_app_styles.scss */ .repository-desc { font-size: 1.1em; width: auto; @@ -25261,12 +25262,12 @@ p { margin-left: 4px; } -/* line 2010, ../../../scss/_app_styles.scss */ +/* line 2011, ../../../scss/_app_styles.scss */ .card-holder { padding-left: 2%; } -/* line 2014, ../../../scss/_app_styles.scss */ +/* line 2015, ../../../scss/_app_styles.scss */ .app-card-wrapper { position: relative; margin: auto; @@ -25276,14 +25277,14 @@ p { max-width: calc(70rem + 70px); } -/* line 2023, ../../../scss/_app_styles.scss */ +/* line 2024, ../../../scss/_app_styles.scss */ .app-card-container { display: inline-block; vertical-align: top; margin: 15px; } -/* line 2029, ../../../scss/_app_styles.scss */ +/* line 2030, ../../../scss/_app_styles.scss */ .app-card { width: 19rem; margin: 15px 20px; @@ -25294,7 +25295,7 @@ p { border: thin solid #D3D3D3; } -/* line 2039, ../../../scss/_app_styles.scss */ +/* line 2040, ../../../scss/_app_styles.scss */ .app-card:hover { box-shadow: 0px 0px 15px #808080; border: thin solid #D3D3D3; @@ -25302,26 +25303,26 @@ p { transition: all 0.6s ease 0s; } -/* line 2046, ../../../scss/_app_styles.scss */ +/* line 2047, ../../../scss/_app_styles.scss */ .app-card-icon { color: #4c4c4c; position: relative; font-size: 6em; } -/* line 2052, ../../../scss/_app_styles.scss */ +/* line 2053, ../../../scss/_app_styles.scss */ .app-card-title { padding-bottom: -1em; } -/* line 2056, ../../../scss/_app_styles.scss */ +/* line 2057, ../../../scss/_app_styles.scss */ .app-card-content { color: #4c4c4c; text-align: center; margin-top: 0.5cm; } -/* line 2063, ../../../scss/_app_styles.scss */ +/* line 2064, ../../../scss/_app_styles.scss */ .fullscreen-icon { display: none; } @@ -25337,58 +25338,58 @@ div.show-image:hover div.fullscreen-icon{ font-size:2em; }*/ -/* line 2082, ../../../scss/_app_styles.scss */ +/* line 2083, ../../../scss/_app_styles.scss */ .cke .cke_toolbox .cke_toolbar:last-child { float: right; } -/* line 2088, ../../../scss/_app_styles.scss */ +/* line 2089, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin: 0px 1em; } -/* line 2092, ../../../scss/_app_styles.scss */ +/* line 2093, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 2098, ../../../scss/_app_styles.scss */ +/* line 2099, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 2101, ../../../scss/_app_styles.scss */ +/* line 2102, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 2105, ../../../scss/_app_styles.scss */ +/* line 2106, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 2110, ../../../scss/_app_styles.scss */ +/* line 2111, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 2117, ../../../scss/_app_styles.scss */ +/* line 2118, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 2121, ../../../scss/_app_styles.scss */ +/* line 2122, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 2126, ../../../scss/_app_styles.scss */ +/* line 2127, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 2132, ../../../scss/_app_styles.scss */ +/* line 2133, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -25396,16 +25397,16 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 0em; border-top: 1px solid #B1B1B1; } -/* line 2140, ../../../scss/_app_styles.scss */ +/* line 2141, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 2145, ../../../scss/_app_styles.scss */ +/* line 2146, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 2148, ../../../scss/_app_styles.scss */ +/* line 2149, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { /*background-color: #3e3e3e;*/ color: #ececec !important; @@ -25415,7 +25416,7 @@ div.show-image:hover div.fullscreen-icon{ line-height: 1.5em; border-radius: 5px 5px 0px 0px; } -/* line 2158, ../../../scss/_app_styles.scss */ +/* line 2159, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -25424,12 +25425,12 @@ div.show-image:hover div.fullscreen-icon{ padding-left: 10px; border-radius: 0px 0px 5px 5px; } -/* line 2166, ../../../scss/_app_styles.scss */ +/* line 2167, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 2172, ../../../scss/_app_styles.scss */ +/* line 2173, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -25437,7 +25438,7 @@ div.show-image:hover div.fullscreen-icon{ /* Large desktop */ @media (min-width: 34em) { - /* line 2180, ../../../scss/_app_styles.scss */ + /* line 2181, ../../../scss/_app_styles.scss */ .container { max-width: 34rem; margin: 0px auto; @@ -25445,7 +25446,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 48em) { - /* line 2188, ../../../scss/_app_styles.scss */ + /* line 2189, ../../../scss/_app_styles.scss */ .container { max-width: 45rem; margin: 0px auto; @@ -25453,7 +25454,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 62em) { - /* line 2196, ../../../scss/_app_styles.scss */ + /* line 2197, ../../../scss/_app_styles.scss */ .container { max-width: 60rem; margin: 0px auto; @@ -25461,20 +25462,20 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 75em) { - /* line 2204, ../../../scss/_app_styles.scss */ + /* line 2205, ../../../scss/_app_styles.scss */ .container { max-width: 72.25rem; margin: 0px auto; } } -/* line 2210, ../../../scss/_app_styles.scss */ +/* line 2211, ../../../scss/_app_styles.scss */ .course-page { position: relative; background-size: 100% 100%; height: 100%; margin-top: 10px; } -/* line 2216, ../../../scss/_app_styles.scss */ +/* line 2217, ../../../scss/_app_styles.scss */ .course-page > .container { background-color: #fff; padding: 0px 0px; @@ -25482,7 +25483,7 @@ div.show-image:hover div.fullscreen-icon{ box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3); } -/* line 2224, ../../../scss/_app_styles.scss */ +/* line 2225, ../../../scss/_app_styles.scss */ .course-page-opacity { height: 100%; width: 100%; @@ -25496,12 +25497,12 @@ div.show-image:hover div.fullscreen-icon{ background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 2238, ../../../scss/_app_styles.scss */ +/* line 2239, ../../../scss/_app_styles.scss */ #envelop-cover { /*background: #A0148E;*/ height: 250px; } -/* line 2242, ../../../scss/_app_styles.scss */ +/* line 2243, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header { font-size: 35px; font-weight: 500; @@ -25511,11 +25512,11 @@ div.show-image:hover div.fullscreen-icon{ height: 250px; color: #fff; } -/* line 2251, ../../../scss/_app_styles.scss */ +/* line 2252, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header label { color: #fff; } -/* line 2255, ../../../scss/_app_styles.scss */ +/* line 2256, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background, #envelop-cover .course-page-header .course-header-background-layer { position: absolute; left: 0px; @@ -25524,17 +25525,17 @@ div.show-image:hover div.fullscreen-icon{ bottom: 0px; height: 250px; } -/* line 2262, ../../../scss/_app_styles.scss */ +/* line 2263, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background img, #envelop-cover .course-page-header .course-header-background-layer img { width: auto; height: 250px; } -/* line 2268, ../../../scss/_app_styles.scss */ +/* line 2269, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background-layer { background-color: rgba(0, 0, 0, 0.5); opacity: 0; } -/* line 2273, ../../../scss/_app_styles.scss */ +/* line 2274, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings { margin-left: 15px; position: absolute; @@ -25542,20 +25543,20 @@ div.show-image:hover div.fullscreen-icon{ bottom: 55px; /*width: 170px;*/ } -/* line 2279, ../../../scss/_app_styles.scss */ +/* line 2280, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul { box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); } -/* line 2281, ../../../scss/_app_styles.scss */ +/* line 2282, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul > li:hover { background: rgba(0, 0, 0, 0.9); } -/* line 2285, ../../../scss/_app_styles.scss */ +/* line 2286, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a { font-size: 15px; color: #737373; } -/* line 2286, ../../../scss/_app_styles.scss */ +/* line 2287, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child { background: rgba(50, 50, 50, 0.8); padding: 9px 12px 9px 10px; @@ -25563,11 +25564,11 @@ div.show-image:hover div.fullscreen-icon{ font-size: 12px; margin: 0px; } -/* line 2292, ../../../scss/_app_styles.scss */ +/* line 2293, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child > i { margin-right: 5px; } -/* line 2299, ../../../scss/_app_styles.scss */ +/* line 2300, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span { background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.7); @@ -25578,30 +25579,30 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; border-radius: 3px; } -/* line 2309, ../../../scss/_app_styles.scss */ +/* line 2310, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span i { font-size: 20px; } -/* line 2316, ../../../scss/_app_styles.scss */ +/* line 2317, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a { font-size: 15px; color: #737373; } -/* line 2319, ../../../scss/_app_styles.scss */ +/* line 2320, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a i { font-size: 18px; } -/* line 2326, ../../../scss/_app_styles.scss */ +/* line 2327, ../../../scss/_app_styles.scss */ #envelop-cover .heading { letter-spacing: -1.2px; font-weight: 400; } -/* line 2331, ../../../scss/_app_styles.scss */ +/* line 2332, ../../../scss/_app_styles.scss */ #envelop-cover .meta { line-height: 2.1em; padding-left: 14px; } -/* line 2335, ../../../scss/_app_styles.scss */ +/* line 2336, ../../../scss/_app_styles.scss */ #envelop-cover .meta .key { color: #A7A4A4; font-weight: 500; @@ -25611,27 +25612,27 @@ div.show-image:hover div.fullscreen-icon{ vertical-align: top; margin-right: 10px; } -/* line 2345, ../../../scss/_app_styles.scss */ +/* line 2346, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value { display: inline-block; } -/* line 2348, ../../../scss/_app_styles.scss */ +/* line 2349, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .name { color: #000; } -/* line 2352, ../../../scss/_app_styles.scss */ +/* line 2353, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .time { font-size: 13px; font-weight: 300; color: #000; } -/* line 2359, ../../../scss/_app_styles.scss */ +/* line 2360, ../../../scss/_app_styles.scss */ #envelop-cover .course-title { position: absolute; bottom: 50px; left: 5px; } -/* line 2364, ../../../scss/_app_styles.scss */ +/* line 2365, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs { border: 0 solid silver; border-width: 0px 0px 0px 0px; @@ -25643,7 +25644,7 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; background-color: rgba(255, 255, 255, 0.8); } -/* line 2375, ../../../scss/_app_styles.scss */ +/* line 2376, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title { border: 0 solid silver; border-width: 0 0 0px 0px; @@ -25653,7 +25654,7 @@ div.show-image:hover div.fullscreen-icon{ display: inline-block; border-top: 5px solid transparent; } -/* line 2384, ../../../scss/_app_styles.scss */ +/* line 2385, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title a { color: #6F669E; font-weight: 600; @@ -25661,25 +25662,25 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: -0.3px; padding: 0rem 0.8rem 0.4rem; } -/* line 2392, ../../../scss/_app_styles.scss */ +/* line 2393, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active { border-width: 0px 0px 0px 0px; background: #FFFFFF; border-top: 5px solid #F11FD0; } -/* line 2396, ../../../scss/_app_styles.scss */ +/* line 2397, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active a { color: #6153AE; } -/* line 2409, ../../../scss/_app_styles.scss */ +/* line 2410, ../../../scss/_app_styles.scss */ .note-tags a { background: #ffebb2; padding: 0.2em 0.7em; display: inline-block; } -/* line 2416, ../../../scss/_app_styles.scss */ +/* line 2417, ../../../scss/_app_styles.scss */ .toggleButtons a { padding: 0.5em 1em; margin: 0px; @@ -25688,69 +25689,69 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid #B7B7B7; display: inline; } -/* line 2424, ../../../scss/_app_styles.scss */ +/* line 2425, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { margin-right: -3px; border-right: 0px solid #000; } -/* line 2428, ../../../scss/_app_styles.scss */ +/* line 2429, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { border-radius: 10px 0px 0px 10px; } -/* line 2431, ../../../scss/_app_styles.scss */ +/* line 2432, ../../../scss/_app_styles.scss */ .toggleButtons a:last-child { border-radius: 0px 10px 10px 0px; } -/* line 2434, ../../../scss/_app_styles.scss */ +/* line 2435, ../../../scss/_app_styles.scss */ .toggleButtons a.active { background-color: #908F8F; color: #fff; } -/* line 2441, ../../../scss/_app_styles.scss */ +/* line 2442, ../../../scss/_app_styles.scss */ .explore-header { line-height: 3em; } -/* line 2444, ../../../scss/_app_styles.scss */ +/* line 2445, ../../../scss/_app_styles.scss */ .explore-header > div { vertical-align: middle; display: inline-block; } -/* line 2448, ../../../scss/_app_styles.scss */ +/* line 2449, ../../../scss/_app_styles.scss */ .explore-header .heading { font-size: 2em; } -/* line 2461, ../../../scss/_app_styles.scss */ +/* line 2462, ../../../scss/_app_styles.scss */ #envelop-content { /*background-color: #fff;*/ padding: 0px 10px; overflow-x: hidden; /* For accordian in the mobile view*/ } -/* line 2467, ../../../scss/_app_styles.scss */ +/* line 2468, ../../../scss/_app_styles.scss */ #envelop-content .accordion { margin-left: 0px; } -/* line 2471, ../../../scss/_app_styles.scss */ +/* line 2472, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation a { background-color: #DEDEDE; } -/* line 2474, ../../../scss/_app_styles.scss */ +/* line 2475, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation.active a { background-color: #fff; } -/* line 2481, ../../../scss/_app_styles.scss */ +/* line 2482, ../../../scss/_app_styles.scss */ #envelop-content > div > .tabs-content > .content { background: #FFFFFF; padding: 1em; } -/* line 2488, ../../../scss/_app_styles.scss */ +/* line 2489, ../../../scss/_app_styles.scss */ #envelop-content .course-book #course-dashboard { padding: 0px; } -/* line 2496, ../../../scss/_app_styles.scss */ +/* line 2497, ../../../scss/_app_styles.scss */ .course-overview-container { /*.about-course-heading { display: block; @@ -25785,23 +25786,23 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; }*/ } -/* line 2497, ../../../scss/_app_styles.scss */ +/* line 2498, ../../../scss/_app_styles.scss */ .course-overview-container .course-overview > .columns { padding: 0px 10px; } -/* line 2500, ../../../scss/_app_styles.scss */ +/* line 2501, ../../../scss/_app_styles.scss */ .course-overview-container h5 { text-transform: uppercase; } -/* line 2503, ../../../scss/_app_styles.scss */ +/* line 2504, ../../../scss/_app_styles.scss */ .course-overview-container .correct-count { color: #367714; } -/* line 2506, ../../../scss/_app_styles.scss */ +/* line 2507, ../../../scss/_app_styles.scss */ .course-overview-container .incorrect-count { color: #9b0000; } -/* line 2509, ../../../scss/_app_styles.scss */ +/* line 2510, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-heading { text-transform: uppercase; font-size: 12px; @@ -25810,45 +25811,45 @@ div.show-image:hover div.fullscreen-icon{ color: #8E8E8E; display: block; } -/* line 2517, ../../../scss/_app_styles.scss */ +/* line 2518, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-count { font-size: 30px; font-weight: 500; letter-spacing: 0.5px; display: block; } -/* line 2523, ../../../scss/_app_styles.scss */ +/* line 2524, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session { border-bottom: 1px solid #ccc; margin-bottom: 12px; padding-bottom: 15px; } -/* line 2528, ../../../scss/_app_styles.scss */ +/* line 2529, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session h5, .course-overview-container .ongoing-session h3 { color: #2b78e4; } -/* line 2531, ../../../scss/_app_styles.scss */ +/* line 2532, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session button { font-size: 14px; padding: 7px; margin: 0px; background-color: #2B78E4; } -/* line 2539, ../../../scss/_app_styles.scss */ +/* line 2540, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > h5 { color: #888; } -/* line 2542, ../../../scss/_app_styles.scss */ +/* line 2543, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > .row { margin: 10px 0px; } -/* line 2545, ../../../scss/_app_styles.scss */ +/* line 2546, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2550, ../../../scss/_app_styles.scss */ +/* line 2551, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -25857,17 +25858,17 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2558, ../../../scss/_app_styles.scss */ +/* line 2559, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2568, ../../../scss/_app_styles.scss */ +/* line 2569, ../../../scss/_app_styles.scss */ .course-overview-container .course-notif-logs ul { list-style: none; } -/* line 2572, ../../../scss/_app_styles.scss */ +/* line 2573, ../../../scss/_app_styles.scss */ .course-overview-container .course-section { border: 1px solid #ccc; padding: 10px; @@ -25875,11 +25876,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 40px 0px; position: relative; } -/* line 2579, ../../../scss/_app_styles.scss */ +/* line 2580, ../../../scss/_app_styles.scss */ .course-overview-container .course-section > .row { margin: 20px 0px; } -/* line 2583, ../../../scss/_app_styles.scss */ +/* line 2584, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-heading { text-transform: uppercase; font-weight: 600; @@ -25889,7 +25890,7 @@ div.show-image:hover div.fullscreen-icon{ margin: 2px 0px 15px; color: #888; } -/* line 2593, ../../../scss/_app_styles.scss */ +/* line 2594, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-icon { position: absolute; font-size: 40px; @@ -25898,58 +25899,58 @@ div.show-image:hover div.fullscreen-icon{ color: #aaa; background: #fff; } -/* line 2617, ../../../scss/_app_styles.scss */ +/* line 2618, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning { background-color: #fffdd7; } -/* line 2619, ../../../scss/_app_styles.scss */ +/* line 2620, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning > h5 { color: #c09100; } -/* line 2622, ../../../scss/_app_styles.scss */ +/* line 2623, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning i { padding: 10px; margin-right: 5px; color: #c09100; } -/* line 2627, ../../../scss/_app_styles.scss */ +/* line 2628, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning a { text-decoration: underline; } -/* line 2631, ../../../scss/_app_styles.scss */ +/* line 2632, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data { margin: 20px 0px; } -/* line 2635, ../../../scss/_app_styles.scss */ +/* line 2636, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 2638, ../../../scss/_app_styles.scss */ +/* line 2639, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 2645, ../../../scss/_app_styles.scss */ +/* line 2646, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table { width: 100%; margin: 15px 0px; } -/* line 2649, ../../../scss/_app_styles.scss */ +/* line 2650, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table tr { border: none; } -/* line 2653, ../../../scss/_app_styles.scss */ +/* line 2654, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table .progress .merter-val { margin-left: 5px; } -/* line 2691, ../../../scss/_app_styles.scss */ +/* line 2692, ../../../scss/_app_styles.scss */ .about-course { background-color: #fff; padding: 10px 23px; } -/* line 2694, ../../../scss/_app_styles.scss */ +/* line 2695, ../../../scss/_app_styles.scss */ .about-course > h5 { text-transform: uppercase; font-weight: 600; @@ -25960,7 +25961,7 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 5px; } -/* line 2705, ../../../scss/_app_styles.scss */ +/* line 2706, ../../../scss/_app_styles.scss */ .course-desc { letter-spacing: 0.7px; font-weight: 400; @@ -25970,7 +25971,7 @@ div.show-image:hover div.fullscreen-icon{ margin-top: 5px; } -/* line 2713, ../../../scss/_app_styles.scss */ +/* line 2714, ../../../scss/_app_styles.scss */ .course-highlight { letter-spacing: 0.7px; font-weight: 400; @@ -25981,25 +25982,25 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 4px; margin-bottom: 5px; } -/* line 2723, ../../../scss/_app_styles.scss */ +/* line 2724, ../../../scss/_app_styles.scss */ .course-highlight > span { color: #ce7869; } -/* line 2729, ../../../scss/_app_styles.scss */ +/* line 2730, ../../../scss/_app_styles.scss */ .icon-wid { font-size: 34px !important; color: #a2b1be; margin-right: 10px; } -/* line 2738, ../../../scss/_app_styles.scss */ +/* line 2739, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2743, ../../../scss/_app_styles.scss */ +/* line 2744, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26008,96 +26009,96 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2751, ../../../scss/_app_styles.scss */ +/* line 2752, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2760, ../../../scss/_app_styles.scss */ +/* line 2761, ../../../scss/_app_styles.scss */ .student-dashboard-header-container { background-color: #90F; padding: 10px 10px; height: 110px; width: 100%; } -/* line 2768, ../../../scss/_app_styles.scss */ +/* line 2769, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header img { height: 75px; width: 75px; vertical-align: top; margin: 0px 10px; } -/* line 2774, ../../../scss/_app_styles.scss */ +/* line 2775, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info { display: inline-block; } -/* line 2776, ../../../scss/_app_styles.scss */ +/* line 2777, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info > span { display: block; color: #fff; } -/* line 2780, ../../../scss/_app_styles.scss */ +/* line 2781, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-name { color: #fff; font-weight: 600; font-size: 22px; letter-spacing: 0.5px; } -/* line 2786, ../../../scss/_app_styles.scss */ +/* line 2787, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-overall-points { font-size: 26px; color: #ffff00; } -/* line 2799, ../../../scss/_app_styles.scss */ +/* line 2800, ../../../scss/_app_styles.scss */ .student-dashboard { background-color: #fff; padding: 10px; } -/* line 2804, ../../../scss/_app_styles.scss */ +/* line 2805, ../../../scss/_app_styles.scss */ .student-dashboard #course-act-logs > span { display: inline-block; vertical-align: top; } -/* line 2813, ../../../scss/_app_styles.scss */ +/* line 2814, ../../../scss/_app_styles.scss */ .rating-star-number { position: relative; display: inline-block; } -/* line 2816, ../../../scss/_app_styles.scss */ +/* line 2817, ../../../scss/_app_styles.scss */ .rating-star-number > span { position: absolute; top: 11px; left: 14px; font-size: 13px; } -/* line 2822, ../../../scss/_app_styles.scss */ +/* line 2823, ../../../scss/_app_styles.scss */ .rating-star-number i { font-size: 40px; color: gold; } -/* line 2829, ../../../scss/_app_styles.scss */ +/* line 2830, ../../../scss/_app_styles.scss */ .course-notif .notif-type img { height: 35px; width: 75%; } -/* line 2833, ../../../scss/_app_styles.scss */ +/* line 2834, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating { position: absolute; right: 15%; top: 0; } -/* line 2837, ../../../scss/_app_styles.scss */ +/* line 2838, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating i { font-size: 40px; right: 10%; color: #f1c233; } -/* line 2842, ../../../scss/_app_styles.scss */ +/* line 2843, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating span { position: absolute; left: 50%; @@ -26106,12 +26107,12 @@ div.show-image:hover div.fullscreen-icon{ font-size: 11px; } -/* line 2856, ../../../scss/_app_styles.scss */ +/* line 2857, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > ul, .course-dashboard .course-notifications > ul, .course-dashboard .course-performance > ul { list-style: none; } -/* line 2860, ../../../scss/_app_styles.scss */ +/* line 2861, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > .row, .course-dashboard .course-notifications > .row, .course-dashboard .course-performance > .row { padding: 0px; @@ -26123,45 +26124,45 @@ div.show-image:hover div.fullscreen-icon{ margin: 0em 0em; border-radius: 10px; } -/* line 2872, ../../../scss/_app_styles.scss */ +/* line 2873, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-heading { padding: 0.2em 0.7em; border-bottom: 1px solid #DADADA; font-weight: 500; font-size: 1.3em; } -/* line 2878, ../../../scss/_app_styles.scss */ +/* line 2879, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row { padding: 1em; } -/* line 2881, ../../../scss/_app_styles.scss */ +/* line 2882, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row:nth-child(n+3) { border-top: 1px solid #DCDCDC; } -/* line 2887, ../../../scss/_app_styles.scss */ +/* line 2888, ../../../scss/_app_styles.scss */ .course-dashboard .course-status .course-update .course-current-state { color: #000; font-weight: bold; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 2897, ../../../scss/_app_styles.scss */ +/* line 2898, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications { position: relative; } -/* line 2902, ../../../scss/_app_styles.scss */ +/* line 2903, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .notification-text { font-size: 0.85em; letter-spacing: 0em; word-spacing: 0.2em; } -/* line 2907, ../../../scss/_app_styles.scss */ +/* line 2908, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .time-elapsed { font-size: 0.6em; color: #424242; cursor: pointer; } -/* line 2914, ../../../scss/_app_styles.scss */ +/* line 2915, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-count { font-size: 1em; position: absolute; @@ -26169,42 +26170,42 @@ div.show-image:hover div.fullscreen-icon{ top: 0.3em; } -/* line 2924, ../../../scss/_app_styles.scss */ +/* line 2925, ../../../scss/_app_styles.scss */ .notebook .notebook-header { border-color: black; border-style: solid; border-width: 1px 0px; padding-top: 1em; } -/* line 2930, ../../../scss/_app_styles.scss */ +/* line 2931, ../../../scss/_app_styles.scss */ .notebook .notebook-header a, .notebook .notebook-header input { margin: 0px; } -/* line 2933, ../../../scss/_app_styles.scss */ +/* line 2934, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count { text-align: center; } -/* line 2938, ../../../scss/_app_styles.scss */ +/* line 2939, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:first-child { font-size: 21px; font-weight: 600; padding: 15px; } -/* line 2943, ../../../scss/_app_styles.scss */ +/* line 2944, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:last-child { background: lightgrey; padding: 2px 5px; vertical-align: text-bottom; } -/* line 2953, ../../../scss/_app_styles.scss */ +/* line 2954, ../../../scss/_app_styles.scss */ .notebook .notebook-body { padding: 0px 0px; } -/* line 2957, ../../../scss/_app_styles.scss */ +/* line 2958, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .row { margin: 30px 0px; } -/* line 2960, ../../../scss/_app_styles.scss */ +/* line 2961, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card, .notebook .notebook-body .note-cards .note-details { border: 1px solid #ccc; padding: 10px 15px; @@ -26214,12 +26215,12 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; position: relative; } -/* line 2969, ../../../scss/_app_styles.scss */ +/* line 2970, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-heading, .notebook .notebook-body .note-cards .note-details .note-heading { font-weight: 800; font-size: 20px; } -/* line 2973, ../../../scss/_app_styles.scss */ +/* line 2974, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-close, .notebook .notebook-body .note-cards .note-details .note-close { position: absolute; right: 7px; @@ -26228,22 +26229,22 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 700; color: #929292; } -/* line 2981, ../../../scss/_app_styles.scss */ +/* line 2982, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-summary, .notebook .notebook-body .note-cards .note-details .note-summary { margin: 15px 0px; } -/* line 2984, ../../../scss/_app_styles.scss */ +/* line 2985, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info, .notebook .notebook-body .note-cards .note-card .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data { color: #989898; font-size: 13px; letter-spacing: 0.9px; font-weight: 500; } -/* line 2990, ../../../scss/_app_styles.scss */ +/* line 2991, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info > span, .notebook .notebook-body .note-cards .note-card .note-extra-data > span, .notebook .notebook-body .note-cards .note-details .note-info > span, .notebook .notebook-body .note-cards .note-details .note-extra-data > span { margin-right: 5px; } -/* line 2995, ../../../scss/_app_styles.scss */ +/* line 2996, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-tags > span, .notebook .notebook-body .note-cards .note-details .note-tags > span { display: inline-block; margin: 10px; @@ -26251,53 +26252,53 @@ div.show-image:hover div.fullscreen-icon{ color: #cba552; padding: 2px 5px; } -/* line 3003, ../../../scss/_app_styles.scss */ +/* line 3004, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions, .notebook .notebook-body .note-cards .note-details .note-actions { color: #989898; cursor: pointer; } -/* line 3007, ../../../scss/_app_styles.scss */ +/* line 3008, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions span, .notebook .notebook-body .note-cards .note-details .note-actions span { margin-right: 10px 5px; } -/* line 3013, ../../../scss/_app_styles.scss */ +/* line 3014, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-tags, .notebook .notebook-body .note-cards .note-details .note-actions { display: inline-block; margin-right: 10px; } -/* line 3020, ../../../scss/_app_styles.scss */ +/* line 3021, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags { float: right; } -/* line 3022, ../../../scss/_app_styles.scss */ +/* line 3023, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags > span { margin: 0px; } -/* line 3031, ../../../scss/_app_styles.scss */ +/* line 3032, ../../../scss/_app_styles.scss */ .notebook .notebook-body > div { padding: 0px; } -/* line 3037, ../../../scss/_app_styles.scss */ +/* line 3038, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index { border-right: 1px solid #AFAEAE; padding: 4px 0px; background-color: #F1F1F1; } -/* line 3042, ../../../scss/_app_styles.scss */ +/* line 3043, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content { padding: 0px; } -/* line 3045, ../../../scss/_app_styles.scss */ +/* line 3046, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content .active { padding: 0px; } -/* line 3049, ../../../scss/_app_styles.scss */ +/* line 3050, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3054, ../../../scss/_app_styles.scss */ +/* line 3055, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title { width: 50%; /*background-color: #DEDEDE;*/ @@ -26305,114 +26306,114 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3061, ../../../scss/_app_styles.scss */ +/* line 3062, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title a { border-radius: inherit; font-size: 0.9rem; text-align: center; color: #989898; } -/* line 3068, ../../../scss/_app_styles.scss */ +/* line 3069, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3072, ../../../scss/_app_styles.scss */ +/* line 3073, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active a { color: #3a3169; } -/* line 3079, ../../../scss/_app_styles.scss */ +/* line 3080, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tab-content { padding: 0px; } -/* line 3084, ../../../scss/_app_styles.scss */ +/* line 3085, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date { font-size: 12px; font-weight: bold; background: #EFEFEF; padding: 7px 10px; } -/* line 3090, ../../../scss/_app_styles.scss */ +/* line 3091, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date .note-count { font-size: 11px; line-height: 2em; } -/* line 3095, ../../../scss/_app_styles.scss */ +/* line 3096, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes > div { border-bottom: 1px solid #AFAEAE; } -/* line 3098, ../../../scss/_app_styles.scss */ +/* line 3099, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note { padding: 5px 15px; background: #FFF; cursor: pointer; color: #A2A2A2; } -/* line 3104, ../../../scss/_app_styles.scss */ +/* line 3105, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-heading { font-weight: 400; font-size: 17px; } -/* line 3109, ../../../scss/_app_styles.scss */ +/* line 3110, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta { font-size: 13px; } -/* line 3112, ../../../scss/_app_styles.scss */ +/* line 3113, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta > span:not(:first-child) { font-size: 11px; font-weight: 600; color: #717171; } -/* line 3119, ../../../scss/_app_styles.scss */ +/* line 3120, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer { color: #888888; } -/* line 3122, ../../../scss/_app_styles.scss */ +/* line 3123, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer span { margin-right: 10px; } -/* line 3127, ../../../scss/_app_styles.scss */ +/* line 3128, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active { border-left: 5px solid #6153AE; background: #F4E7FF; font-weight: 800; color: #6153AE; } -/* line 3133, ../../../scss/_app_styles.scss */ +/* line 3134, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-heading { font-weight: 500; font-size: 17px; } -/* line 3137, ../../../scss/_app_styles.scss */ +/* line 3138, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-meta > span:not(:first-child) { color: #6153AE; } -/* line 3145, ../../../scss/_app_styles.scss */ +/* line 3146, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page { background-color: #fff; padding-bottom: 30px; } -/* line 3152, ../../../scss/_app_styles.scss */ +/* line 3153, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .group_content { margin-top: 5px; margin-left: 0px; } -/* line 3157, ../../../scss/_app_styles.scss */ +/* line 3158, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page > div { background-color: #fff; } -/* line 3161, ../../../scss/_app_styles.scss */ +/* line 3162, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar { padding: 1.8em 1.2em 0em; margin: 0em; background-color: #FFF; } -/* line 3166, ../../../scss/_app_styles.scss */ +/* line 3167, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .note-creator { font-weight: bold; } -/* line 3169, ../../../scss/_app_styles.scss */ +/* line 3170, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-title { text-align: left; color: #C3C3C3; @@ -26420,102 +26421,102 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.3px; margin-top: 5px; } -/* line 3176, ../../../scss/_app_styles.scss */ +/* line 3177, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating { text-align: right; } -/* line 3178, ../../../scss/_app_styles.scss */ +/* line 3179, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating > div { display: inline-block; } -/* line 3183, ../../../scss/_app_styles.scss */ +/* line 3184, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-title { font-size: 2.3em; font-weight: 500; margin-right: 1em; } -/* line 3188, ../../../scss/_app_styles.scss */ +/* line 3189, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content { padding: 2em 2em 1em; background: #fff; margin: 0em; } -/* line 3195, ../../../scss/_app_styles.scss */ +/* line 3196, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-header > div { display: inline-block; } -/* line 3200, ../../../scss/_app_styles.scss */ +/* line 3201, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text { font-size: 19px; letter-spacing: 0.7px; } -/* line 3203, ../../../scss/_app_styles.scss */ +/* line 3204, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text p { padding: 0px; } -/* line 3209, ../../../scss/_app_styles.scss */ +/* line 3210, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections { padding: 0em 1em 0em; } -/* line 3213, ../../../scss/_app_styles.scss */ +/* line 3214, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header span { font-weight: bold; } -/* line 3216, ../../../scss/_app_styles.scss */ +/* line 3217, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { margin-left: 15px; } -/* line 3221, ../../../scss/_app_styles.scss */ +/* line 3222, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment { border-top: 1px solid grey; padding: 15px 10px; margin-top: 5px; } -/* line 3226, ../../../scss/_app_styles.scss */ +/* line 3227, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { min-height: 200px; margin-top: 0px; } -/* line 3232, ../../../scss/_app_styles.scss */ +/* line 3233, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { font-size: 90px; line-height: 0em; } -/* line 3242, ../../../scss/_app_styles.scss */ +/* line 3243, ../../../scss/_app_styles.scss */ #newNoteModal { width: 40%; } -/* line 3245, ../../../scss/_app_styles.scss */ +/* line 3246, ../../../scss/_app_styles.scss */ #newNoteModal > div { margin-bottom: 1em; } -/* line 3249, ../../../scss/_app_styles.scss */ +/* line 3250, ../../../scss/_app_styles.scss */ #newNoteModal input { width: 100%; } -/* line 3252, ../../../scss/_app_styles.scss */ +/* line 3253, ../../../scss/_app_styles.scss */ #newNoteModal .heading { margin-right: 1em; } -/* line 3256, ../../../scss/_app_styles.scss */ +/* line 3257, ../../../scss/_app_styles.scss */ #newNoteModal .note-tags { padding: 1em; border: 1px solid black; } -/* line 3262, ../../../scss/_app_styles.scss */ +/* line 3263, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button { float: left; margin-left: 1em; margin-bottom: 0px; } -/* line 3267, ../../../scss/_app_styles.scss */ +/* line 3268, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button:last-child { float: right; } -/* line 3275, ../../../scss/_app_styles.scss */ +/* line 3276, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header { line-height: 2em; border-top: 1px solid #797979; @@ -26523,33 +26524,33 @@ div.show-image:hover div.fullscreen-icon{ text-align: center; padding: 0.7em 1em; } -/* line 3282, ../../../scss/_app_styles.scss */ +/* line 3283, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input, .gallery-page .gallery-header select, .gallery-page .gallery-header a { border-radius: 4px; margin-bottom: 0em; } -/* line 3286, ../../../scss/_app_styles.scss */ +/* line 3287, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input.prefix, .gallery-page .gallery-header select.prefix, .gallery-page .gallery-header a.prefix { border-radius: 0px; } -/* line 3291, ../../../scss/_app_styles.scss */ +/* line 3292, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header i { font-size: 1em; color: #A29E9E; } -/* line 3297, ../../../scss/_app_styles.scss */ +/* line 3298, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .filters .columns { padding-left: 5px; } -/* line 3303, ../../../scss/_app_styles.scss */ +/* line 3304, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .columns { padding-left: 5px; } -/* line 3307, ../../../scss/_app_styles.scss */ +/* line 3308, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags { text-align: left; } -/* line 3310, ../../../scss/_app_styles.scss */ +/* line 3311, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag { padding: 0px 10px; background: #cccccc; @@ -26559,73 +26560,73 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.8em; color: #757575; } -/* line 3319, ../../../scss/_app_styles.scss */ +/* line 3320, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag span { margin: 0px 2px 0px 6px; cursor: pointer; } -/* line 3324, ../../../scss/_app_styles.scss */ +/* line 3325, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags > div { display: inline-block; } -/* line 3331, ../../../scss/_app_styles.scss */ +/* line 3332, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading { font-size: 19px; } -/* line 3334, ../../../scss/_app_styles.scss */ +/* line 3335, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading a { background: #e7e7e7; border-width: 1px 0px 1px 1px; border-color: #cccccc; border-style: solid; } -/* line 3341, ../../../scss/_app_styles.scss */ +/* line 3342, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading input { border-radius: 0px; box-shadow: none; border-left: 0px; } -/* line 3348, ../../../scss/_app_styles.scss */ +/* line 3349, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel { background: #FFF; } -/* line 3351, ../../../scss/_app_styles.scss */ +/* line 3352, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content { min-height: 250px; } -/* line 3354, ../../../scss/_app_styles.scss */ +/* line 3355, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader { line-height: 3em; padding: 10px 0px; } -/* line 3358, ../../../scss/_app_styles.scss */ +/* line 3359, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader upload-file { margin: 0px; font-size: 1em; } -/* line 3363, ../../../scss/_app_styles.scss */ +/* line 3364, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions { font-size: 1.2em; color: #2a79e4; } -/* line 3367, ../../../scss/_app_styles.scss */ +/* line 3368, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions > div { display: inline-block; margin-right: 10px; } -/* line 3374, ../../../scss/_app_styles.scss */ +/* line 3375, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel { background: #fff; } -/* line 3377, ../../../scss/_app_styles.scss */ +/* line 3378, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row { margin: 10px 0px; } -/* line 3380, ../../../scss/_app_styles.scss */ +/* line 3381, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row > div:first-child { font-weight: 500; } -/* line 3385, ../../../scss/_app_styles.scss */ +/* line 3386, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .file-name { font-size: 20px; font-weight: bold; @@ -26633,11 +26634,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 10px 0px 20px; } -/* line 3396, ../../../scss/_app_styles.scss */ +/* line 3397, ../../../scss/_app_styles.scss */ .gallery-card .select-file { vertical-align: top; } -/* line 3400, ../../../scss/_app_styles.scss */ +/* line 3401, ../../../scss/_app_styles.scss */ .gallery-card .file-item { width: 80%; color: #fff; @@ -26648,17 +26649,17 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid black; overflow: hidden; } -/* line 3410, ../../../scss/_app_styles.scss */ +/* line 3411, ../../../scss/_app_styles.scss */ .gallery-card .file-item .item-thumbnail-image { height: 100%; padding: 1em; } -/* line 3415, ../../../scss/_app_styles.scss */ +/* line 3416, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-details { margin-top: 10%; display: none; } -/* line 3420, ../../../scss/_app_styles.scss */ +/* line 3421, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions { display: none; position: absolute; @@ -26667,11 +26668,11 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; font-size: 25px; } -/* line 3428, ../../../scss/_app_styles.scss */ +/* line 3429, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions i { margin: 0px 10px; } -/* line 3433, ../../../scss/_app_styles.scss */ +/* line 3434, ../../../scss/_app_styles.scss */ .gallery-card .file-item .filename-footer { position: absolute; bottom: 0px; @@ -26682,24 +26683,24 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 600; background: #999999; } -/* line 3444, ../../../scss/_app_styles.scss */ +/* line 3445, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover { background: #999999; } -/* line 3447, ../../../scss/_app_styles.scss */ +/* line 3448, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .item-thumbnail-image { opacity: 0.2; } -/* line 3451, ../../../scss/_app_styles.scss */ +/* line 3452, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .file-details, .gallery-card .file-item:hover .file-actions { display: block; } -/* line 3454, ../../../scss/_app_styles.scss */ +/* line 3455, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .filename-footer { display: none; } -/* line 3462, ../../../scss/_app_styles.scss */ +/* line 3463, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'], dialog[id^='reveal-'] { width: 100vw; height: 100vh; @@ -26763,49 +26764,49 @@ div.show-image:hover div.fullscreen-icon{ } }*/ } -/* line 3526, ../../../scss/_app_styles.scss */ +/* line 3527, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body, dialog[id^='reveal-'] .gmodal-body { position: relative; height: 100%; } -/* line 3529, ../../../scss/_app_styles.scss */ +/* line 3530, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel { background-color: #fff; height: 100%; } -/* line 3531, ../../../scss/_app_styles.scss */ +/* line 3532, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray { display: none; } -/* line 3535, ../../../scss/_app_styles.scss */ +/* line 3536, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe { height: 550px !important; width: 130% !important; } -/* line 3540, ../../../scss/_app_styles.scss */ +/* line 3541, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page { margin-top: -10px !important; } -/* line 3544, ../../../scss/_app_styles.scss */ +/* line 3545, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel span, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel span { display: none !important; } -/* line 3548, ../../../scss/_app_styles.scss */ +/* line 3549, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .button, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .button { display: none !important; } -/* line 3555, ../../../scss/_app_styles.scss */ +/* line 3556, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder { height: 100%; } -/* line 3558, ../../../scss/_app_styles.scss */ +/* line 3559, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item { height: 100%; width: 100%; background: transparent; padding: 0px; } -/* line 3564, ../../../scss/_app_styles.scss */ +/* line 3565, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image { width: auto; margin: 0px auto; @@ -26813,7 +26814,7 @@ div.show-image:hover div.fullscreen-icon{ padding: 1em 0em; height: 100%; } -/* line 3573, ../../../scss/_app_styles.scss */ +/* line 3574, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer { height: 2em; line-height: 2em; @@ -26825,32 +26826,32 @@ div.show-image:hover div.fullscreen-icon{ opacity: 0; background-color: rgba(0, 0, 0, 0.9); } -/* line 3584, ../../../scss/_app_styles.scss */ +/* line 3585, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details), dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details) { cursor: pointer; } -/* line 3588, ../../../scss/_app_styles.scss */ +/* line 3589, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details { text-align: center; width: 100%; } -/* line 3592, ../../../scss/_app_styles.scss */ +/* line 3593, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i { margin-left: 1em; margin-right: 0.5em; cursor: pointer; } -/* line 3600, ../../../scss/_app_styles.scss */ +/* line 3601, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer { opacity: 0.8; transition: opacity 1s; } -/* line 3605, ../../../scss/_app_styles.scss */ +/* line 3606, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel { height: 100%; padding: 0px 25px; } -/* line 3609, ../../../scss/_app_styles.scss */ +/* line 3610, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side { background: #fff; height: 100%; @@ -26871,31 +26872,31 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.9em; }*/ } -/* line 3613, ../../../scss/_app_styles.scss */ +/* line 3614, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div { width: 100%; display: block; margin: 12px 0px; padding: 0px 10px; } -/* line 3620, ../../../scss/_app_styles.scss */ +/* line 3621, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal { font-size: 20px; top: 6px; right: 26px; } -/* line 3627, ../../../scss/_app_styles.scss */ +/* line 3628, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span { vertical-align: top; margin-right: 5px; line-height: 35px; } -/* line 3632, ../../../scss/_app_styles.scss */ +/* line 3633, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating { background: #ccc; padding: 2px 5px; } -/* line 3638, ../../../scss/_app_styles.scss */ +/* line 3639, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a { padding: 3px 7px; background: #fff; @@ -26905,13 +26906,13 @@ div.show-image:hover div.fullscreen-icon{ margin-right: 10px; display: inline-block; } -/* line 3649, ../../../scss/_app_styles.scss */ +/* line 3650, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3654, ../../../scss/_app_styles.scss */ +/* line 3655, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26920,17 +26921,17 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3662, ../../../scss/_app_styles.scss */ +/* line 3663, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a { border-radius: inherit; } -/* line 3666, ../../../scss/_app_styles.scss */ +/* line 3667, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3674, ../../../scss/_app_styles.scss */ +/* line 3675, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span { font-weight: 500; font-size: 16px; @@ -26938,20 +26939,20 @@ div.show-image:hover div.fullscreen-icon{ line-height: 35px; } -/* line 3704, ../../../scss/_app_styles.scss */ +/* line 3705, ../../../scss/_app_styles.scss */ .user-comment { display: inline-flex; width: 100%; } -/* line 3708, ../../../scss/_app_styles.scss */ +/* line 3709, ../../../scss/_app_styles.scss */ .user-comment > div { display: inline-block; } -/* line 3711, ../../../scss/_app_styles.scss */ +/* line 3712, ../../../scss/_app_styles.scss */ .user-comment > div:last-child { width: 100%; } -/* line 3716, ../../../scss/_app_styles.scss */ +/* line 3717, ../../../scss/_app_styles.scss */ .user-comment .comment-heading { color: #9C9C9C; border-bottom: 1px solid grey; @@ -26959,71 +26960,71 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 10px; margin-top: 10px; } -/* line 3724, ../../../scss/_app_styles.scss */ +/* line 3725, ../../../scss/_app_styles.scss */ .user-comment .comment-heading > div { display: inline-block; } -/* line 3728, ../../../scss/_app_styles.scss */ +/* line 3729, ../../../scss/_app_styles.scss */ .user-comment .comment-heading .commentor-name span { font-weight: bold; color: #333333; } -/* line 3733, ../../../scss/_app_styles.scss */ +/* line 3734, ../../../scss/_app_styles.scss */ .user-comment .comment-footer { font-size: 0.9em; font-weight: 400; border: 1px solid #9E9E9E; background: #CCCCCC; } -/* line 3739, ../../../scss/_app_styles.scss */ +/* line 3740, ../../../scss/_app_styles.scss */ .user-comment .comment-footer > div { cursor: pointer; } -/* line 3742, ../../../scss/_app_styles.scss */ +/* line 3743, ../../../scss/_app_styles.scss */ .user-comment .comment-footer i { margin-right: 1em; } -/* line 3748, ../../../scss/_app_styles.scss */ +/* line 3749, ../../../scss/_app_styles.scss */ .user-comment .comment-container .comment-add { margin-top: 0.4em; } -/* line 3752, ../../../scss/_app_styles.scss */ +/* line 3753, ../../../scss/_app_styles.scss */ .user-comment .user-avatar { font-size: 10em; font-size: 5em; line-height: 1em; } -/* line 3759, ../../../scss/_app_styles.scss */ +/* line 3760, ../../../scss/_app_styles.scss */ .course-content { /*border-top: 1px solid #000;*/ } -/* line 3761, ../../../scss/_app_styles.scss */ +/* line 3762, ../../../scss/_app_styles.scss */ .course-content .alert-box { padding: 5px; font-size: 1em; } -/* line 3765, ../../../scss/_app_styles.scss */ +/* line 3766, ../../../scss/_app_styles.scss */ .course-content .alert-box > div { display: inline-block; vertical-align: top; } -/* line 3769, ../../../scss/_app_styles.scss */ +/* line 3770, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note { width: 96%; } -/* line 3772, ../../../scss/_app_styles.scss */ +/* line 3773, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note > div:nth-child(2) { color: #000; margin-top: 5px; padding-top: 5px; border-top: 1px solid #000; } -/* line 3779, ../../../scss/_app_styles.scss */ +/* line 3780, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-icon { margin: 0px 5px; } -/* line 3782, ../../../scss/_app_styles.scss */ +/* line 3783, ../../../scss/_app_styles.scss */ .course-content .alert-box .close { position: relative; top: 0px; @@ -27033,17 +27034,17 @@ div.show-image:hover div.fullscreen-icon{ text-decoration: underline; color: #085394 !important; } -/* line 3793, ../../../scss/_app_styles.scss */ +/* line 3794, ../../../scss/_app_styles.scss */ .course-content .collection { overflow: visible; } -/* line 3796, ../../../scss/_app_styles.scss */ +/* line 3797, ../../../scss/_app_styles.scss */ .course-content .collection .course-module { position: relative; border-bottom: 1px solid #CCC; padding: 1em 0em; } -/* line 3803, ../../../scss/_app_styles.scss */ +/* line 3804, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-header .fa { position: absolute; left: -1.1em; @@ -27052,58 +27053,58 @@ div.show-image:hover div.fullscreen-icon{ background: #EAEAEA; font-size: 1.4em; } -/* line 3821, ../../../scss/_app_styles.scss */ +/* line 3822, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-page:hover span { text-decoration: underline; color: #9900ff !important; } -/* line 3826, ../../../scss/_app_styles.scss */ +/* line 3827, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .jqtree-tree .jqtree-title { cursor: pointer; } -/* line 3830, ../../../scss/_app_styles.scss */ +/* line 3831, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part { margin-left: 1em; } -/* line 3833, ../../../scss/_app_styles.scss */ +/* line 3834, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler { color: #585858; } -/* line 3836, ../../../scss/_app_styles.scss */ +/* line 3837, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler.jqtree-closed { color: #CCC; } -/* line 3840, ../../../scss/_app_styles.scss */ +/* line 3841, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part span { vertical-align: top; } -/* line 3843, ../../../scss/_app_styles.scss */ +/* line 3844, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .fa { display: inline; margin-right: 5px; } -/* line 3853, ../../../scss/_app_styles.scss */ +/* line 3854, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header { font-weight: 400; font-size: 1.3em; border-bottom: 1px solid #707070; color: #797979; } -/* line 3859, ../../../scss/_app_styles.scss */ +/* line 3860, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header > div { padding: 0.3em 0em; } -/* line 3863, ../../../scss/_app_styles.scss */ +/* line 3864, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header a { color: #797979; } -/* line 3867, ../../../scss/_app_styles.scss */ +/* line 3868, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous { cursor: pointer; padding: 0px; } -/* line 3871, ../../../scss/_app_styles.scss */ +/* line 3872, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous a:first-child { border-right: 1px solid grey; padding-right: 5px; @@ -27111,27 +27112,27 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3880, ../../../scss/_app_styles.scss */ +/* line 3881, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header i { margin-right: 0.1em; } -/* line 3884, ../../../scss/_app_styles.scss */ +/* line 3885, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .unit-title { text-align: center; color: #999999; } -/* line 3888, ../../../scss/_app_styles.scss */ +/* line 3889, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-title { text-align: center; color: #000; } -/* line 3892, ../../../scss/_app_styles.scss */ +/* line 3893, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note { color: #2a78e3; cursor: pointer; padding: 0px; } -/* line 3897, ../../../scss/_app_styles.scss */ +/* line 3898, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note a:last-child { border-left: 1px solid grey; padding-left: 5px; @@ -27139,11 +27140,11 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3905, ../../../scss/_app_styles.scss */ +/* line 3906, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note > div { float: right; } -/* line 3910, ../../../scss/_app_styles.scss */ +/* line 3911, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container { border: 1px solid black; height: 100%; @@ -27151,18 +27152,18 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 2em; padding: 0em 1em; } -/* line 3917, ../../../scss/_app_styles.scss */ +/* line 3918, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides { height: 100%; } -/* line 3921, ../../../scss/_app_styles.scss */ +/* line 3922, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 3929, ../../../scss/_app_styles.scss */ +/* line 3930, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -27170,12 +27171,12 @@ div.show-image:hover div.fullscreen-icon{ color: #999999; margin-left: 12%; } -/* line 3937, ../../../scss/_app_styles.scss */ +/* line 3938, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 3943, ../../../scss/_app_styles.scss */ +/* line 3944, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -27184,21 +27185,21 @@ div.show-image:hover div.fullscreen-icon{ display: none; color: #8E8E8E; } -/* line 3952, ../../../scss/_app_styles.scss */ +/* line 3953, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 3957, ../../../scss/_app_styles.scss */ +/* line 3958, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 3959, ../../../scss/_app_styles.scss */ +/* line 3960, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 3962, ../../../scss/_app_styles.scss */ +/* line 3963, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -27209,24 +27210,24 @@ div.show-image:hover div.fullscreen-icon{ color: #757575; margin-right: 20px; } -/* line 3972, ../../../scss/_app_styles.scss */ +/* line 3973, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 3976, ../../../scss/_app_styles.scss */ +/* line 3977, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 3979, ../../../scss/_app_styles.scss */ +/* line 3980, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 3984, ../../../scss/_app_styles.scss */ +/* line 3985, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 3988, ../../../scss/_app_styles.scss */ +/* line 3989, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content { width: 75%; margin: 0px auto; @@ -27237,7 +27238,7 @@ div.show-image:hover div.fullscreen-icon{ min-height: 50px; position: relative; } -/* line 3998, ../../../scss/_app_styles.scss */ +/* line 3999, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -27245,15 +27246,15 @@ div.show-image:hover div.fullscreen-icon{ left: 8px; top: 4px; } -/* line 4006, ../../../scss/_app_styles.scss */ +/* line 4007, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 4008, ../../../scss/_app_styles.scss */ +/* line 4009, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 4011, ../../../scss/_app_styles.scss */ +/* line 4012, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -27263,27 +27264,27 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.8px; color: #999999; } -/* line 4020, ../../../scss/_app_styles.scss */ +/* line 4021, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 4026, ../../../scss/_app_styles.scss */ +/* line 4027, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 4033, ../../../scss/_app_styles.scss */ +/* line 4034, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section { width: 75%; margin: 0px auto; } -/* line 4037, ../../../scss/_app_styles.scss */ +/* line 4038, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section .user-prof-image { font-size: 7em; text-align: center; } -/* line 4042, ../../../scss/_app_styles.scss */ +/* line 4043, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section #postCommentBtn { padding: 2em 3em; } @@ -27304,28 +27305,28 @@ div.show-image:hover div.fullscreen-icon{ position: absolute; } */ -/* line 4063, ../../../scss/_app_styles.scss */ +/* line 4064, ../../../scss/_app_styles.scss */ .rate-scale { cursor: pointer; } -/* line 4066, ../../../scss/_app_styles.scss */ +/* line 4067, ../../../scss/_app_styles.scss */ .rate-scale i { margin-right: 0em !important; padding-right: 0.5em; } -/* line 4070, ../../../scss/_app_styles.scss */ +/* line 4071, ../../../scss/_app_styles.scss */ .rate-scale .hover-rating, .rate-scale .rated { color: yellow; } -/* line 4076, ../../../scss/_app_styles.scss */ +/* line 4077, ../../../scss/_app_styles.scss */ #left-tab { position: absolute; left: 0px; bottom: 0px; } -/* line 4081, ../../../scss/_app_styles.scss */ +/* line 4082, ../../../scss/_app_styles.scss */ #right-tab { position: absolute; right: 0px; @@ -27333,12 +27334,12 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 6px; } -/* line 4087, ../../../scss/_app_styles.scss */ +/* line 4088, ../../../scss/_app_styles.scss */ #enrolled-btn { margin-bottom: 0px; } -/* line 4090, ../../../scss/_app_styles.scss */ +/* line 4091, ../../../scss/_app_styles.scss */ div.absol-descrip { position: absolute; top: 190px; @@ -27349,14 +27350,14 @@ div.absol-descrip { } /*overview-summary styling*/ -/* line 4100, ../../../scss/_app_styles.scss */ +/* line 4101, ../../../scss/_app_styles.scss */ .course-title, .course-date { color: white; padding-top: 0px; padding-bottom: 0px; } -/* line 4105, ../../../scss/_app_styles.scss */ +/* line 4106, ../../../scss/_app_styles.scss */ .course-description { color: #cccccc; padding-top: 0px; @@ -27368,48 +27369,48 @@ div.absol-descrip { overflow: hidden; } -/* line 4115, ../../../scss/_app_styles.scss */ +/* line 4116, ../../../scss/_app_styles.scss */ .course-para { padding: 0; } -/* line 4119, ../../../scss/_app_styles.scss */ +/* line 4120, ../../../scss/_app_styles.scss */ course-title { padding-left: 10px; } -/* line 4122, ../../../scss/_app_styles.scss */ +/* line 4123, ../../../scss/_app_styles.scss */ .enroll-status-margin { margin-bottom: 0; } -/* line 4126, ../../../scss/_app_styles.scss */ +/* line 4127, ../../../scss/_app_styles.scss */ .progress-summery { color: white; margin-top: 20px; } -/* line 4130, ../../../scss/_app_styles.scss */ +/* line 4131, ../../../scss/_app_styles.scss */ .course-description-thumbnails { margin: 0; padding: 0; } -/* line 4135, ../../../scss/_app_styles.scss */ +/* line 4136, ../../../scss/_app_styles.scss */ .left-shift { padding: 0; color: white !important; } /*course overview for Small screens*/ -/* line 4141, ../../../scss/_app_styles.scss */ +/* line 4142, ../../../scss/_app_styles.scss */ .course { /*position:relative;*/ border: 1px solid black; background-color: #999999; } -/* line 4147, ../../../scss/_app_styles.scss */ +/* line 4148, ../../../scss/_app_styles.scss */ .course-contents { /*position:absolute;*/ width: 100%; @@ -27417,7 +27418,7 @@ course-title { /*Medium screens*/ @media only screen and (min-width: 40.063em) { - /* line 4154, ../../../scss/_app_styles.scss */ + /* line 4155, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27425,7 +27426,7 @@ course-title { background-color: #999999; } - /* line 4160, ../../../scss/_app_styles.scss */ + /* line 4161, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27435,7 +27436,7 @@ course-title { /* min-width 641px, medium screens */ /* Large screens*/ @media only screen and (min-width: 64.063em) { - /* line 4170, ../../../scss/_app_styles.scss */ + /* line 4171, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27443,7 +27444,7 @@ course-title { background-color: #999999; } - /* line 4176, ../../../scss/_app_styles.scss */ + /* line 4177, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27452,14 +27453,14 @@ course-title { } /* min-width 1025px, large screens */ /*General config css*/ -/* line 4183, ../../../scss/_app_styles.scss */ +/* line 4184, ../../../scss/_app_styles.scss */ .alert-box.warning { background: #ffe7c0; border-color: #bf9000; color: #966000; } -/* line 4190, ../../../scss/_app_styles.scss */ +/* line 4191, ../../../scss/_app_styles.scss */ .badge { display: inline-block; line-height: 22px; @@ -27476,7 +27477,7 @@ course-title { font-size: 1.8em; } -/* line 4206, ../../../scss/_app_styles.scss */ +/* line 4207, ../../../scss/_app_styles.scss */ .badge { background: #67c1ef; border-color: #30aae9; @@ -27486,7 +27487,7 @@ course-title { background-image: linear-gradient(to bottom, #acddf6, #67c1ef); } -/* line 4215, ../../../scss/_app_styles.scss */ +/* line 4216, ../../../scss/_app_styles.scss */ .badge.green { background: #77cc51; border-color: #59ad33; @@ -27496,7 +27497,7 @@ course-title { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 4224, ../../../scss/_app_styles.scss */ +/* line 4225, ../../../scss/_app_styles.scss */ .badge.yellow { background: #faba3e; border-color: #f4a306; @@ -27506,7 +27507,7 @@ course-title { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 4234, ../../../scss/_app_styles.scss */ +/* line 4235, ../../../scss/_app_styles.scss */ .badge.red { background: #fa623f; border-color: #fa5a35; @@ -27517,12 +27518,12 @@ course-title { } /* Course/ Event Card CSS*/ -/* line 4250, ../../../scss/_app_styles.scss */ +/* line 4251, ../../../scss/_app_styles.scss */ .card-image-wrapper { position: relative; } -/* line 4254, ../../../scss/_app_styles.scss */ +/* line 4255, ../../../scss/_app_styles.scss */ .event-card { padding: 0px; min-height: 22rem; @@ -27531,12 +27532,12 @@ course-title { border-radius: 10px; background-color: #fff; } -/* line 4262, ../../../scss/_app_styles.scss */ +/* line 4263, ../../../scss/_app_styles.scss */ .event-card:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 4267, ../../../scss/_app_styles.scss */ +/* line 4268, ../../../scss/_app_styles.scss */ .event-card .event-card-status { z-index: 99; width: auto; @@ -27551,31 +27552,31 @@ course-title { border-radius: 4px; letter-spacing: 0.3px; } -/* line 4281, ../../../scss/_app_styles.scss */ +/* line 4282, ../../../scss/_app_styles.scss */ .event-card .event-card-status.open { background-color: #00b300; } -/* line 4284, ../../../scss/_app_styles.scss */ +/* line 4285, ../../../scss/_app_styles.scss */ .event-card .event-card-status.closed { background-color: red; } -/* line 4287, ../../../scss/_app_styles.scss */ +/* line 4288, ../../../scss/_app_styles.scss */ .event-card .event-card-status.in-progress { background-color: #00b300; } -/* line 4290, ../../../scss/_app_styles.scss */ +/* line 4291, ../../../scss/_app_styles.scss */ .event-card .event-card-status.forthcoming { background-color: #F2910D; } -/* line 4293, ../../../scss/_app_styles.scss */ +/* line 4294, ../../../scss/_app_styles.scss */ .event-card .event-card-status.upcoming { background-color: #F2910D; } -/* line 4297, ../../../scss/_app_styles.scss */ +/* line 4298, ../../../scss/_app_styles.scss */ .event-card .event-card-status.completed { background-color: #4d4d4d; } -/* line 4302, ../../../scss/_app_styles.scss */ +/* line 4303, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications { position: absolute; top: 2px; @@ -27584,46 +27585,46 @@ course-title { color: #F04124; font-weight: 600; } -/* line 4310, ../../../scss/_app_styles.scss */ +/* line 4311, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications .badge { padding: 0px 5px; font-size: 1.4em; font-weight: 600; } -/* line 4317, ../../../scss/_app_styles.scss */ +/* line 4318, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status { font-weight: 500; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 4322, ../../../scss/_app_styles.scss */ +/* line 4323, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.open { color: #00b300; } -/* line 4326, ../../../scss/_app_styles.scss */ +/* line 4327, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.closed { color: red; } -/* line 4330, ../../../scss/_app_styles.scss */ +/* line 4331, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.in-progress { color: #000; } -/* line 4333, ../../../scss/_app_styles.scss */ +/* line 4334, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.forthcoming { color: #F2910D; } -/* line 4337, ../../../scss/_app_styles.scss */ +/* line 4338, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.completed { color: #4d4d4d; } -/* line 4341, ../../../scss/_app_styles.scss */ +/* line 4342, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status .event-time { font-size: 0.7em; display: block; font-weight: 400; display: inline; } -/* line 4349, ../../../scss/_app_styles.scss */ +/* line 4350, ../../../scss/_app_styles.scss */ .event-card .event-card-title { color: #0d0d0d; display: inline-block; @@ -27634,19 +27635,19 @@ course-title { font-size: 2em; font-weight: 400; } -/* line 4360, ../../../scss/_app_styles.scss */ +/* line 4361, ../../../scss/_app_styles.scss */ .event-card .event-card-desc { word-wrap: break-word; font-size: 0.6em; color: #333333; padding-left: 4px; } -/* line 4366, ../../../scss/_app_styles.scss */ +/* line 4367, ../../../scss/_app_styles.scss */ .event-card p { margin: 0px; padding: 10px; } -/* line 4372, ../../../scss/_app_styles.scss */ +/* line 4373, ../../../scss/_app_styles.scss */ .event-card .event-card-image { padding: 0px; margin: 0px; @@ -27658,7 +27659,7 @@ course-title { background-color: #e5e5e5; border-radius: 10px 10px 0px 0px; } -/* line 4383, ../../../scss/_app_styles.scss */ +/* line 4384, ../../../scss/_app_styles.scss */ .event-card .event-card-image img { border-radius: 2px 2px 0 0; display: block; @@ -27667,7 +27668,7 @@ course-title { opacity: 0.25; height: 100%; } -/* line 4392, ../../../scss/_app_styles.scss */ +/* line 4393, ../../../scss/_app_styles.scss */ .event-card .event-card-image i { font-size: 7rem; opacity: 0.75; @@ -27681,51 +27682,51 @@ course-title { text-transform: none; text-decoration: inherit; } -/* line 4406, ../../../scss/_app_styles.scss */ +/* line 4407, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.file:before { content: "\f18e"; } -/* line 4409, ../../../scss/_app_styles.scss */ +/* line 4410, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.page:before { content: "\f18e"; } -/* line 4412, ../../../scss/_app_styles.scss */ +/* line 4413, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.collection:before { content: "\f18a"; } -/* line 4415, ../../../scss/_app_styles.scss */ +/* line 4416, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.documents:before { content: "\f18b"; } -/* line 4418, ../../../scss/_app_styles.scss */ +/* line 4419, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.pdf:before { content: "\f18b"; } -/* line 4421, ../../../scss/_app_styles.scss */ +/* line 4422, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.text:before { content: "\f18e"; } -/* line 4424, ../../../scss/_app_styles.scss */ +/* line 4425, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.interactives:before { content: "\f1b2"; } -/* line 4427, ../../../scss/_app_styles.scss */ +/* line 4428, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.ebooks:before { content: "\f11e"; } -/* line 4430, ../../../scss/_app_styles.scss */ +/* line 4431, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.images:before { content: "\f125"; } -/* line 4433, ../../../scss/_app_styles.scss */ +/* line 4434, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.audios:before, .event-card .event-card-image i.audio:before { content: "\f17b"; } -/* line 4436, ../../../scss/_app_styles.scss */ +/* line 4437, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.videos:before, .event-card .event-card-image i.video:before { content: "\f20e"; } -/* line 4440, ../../../scss/_app_styles.scss */ +/* line 4441, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer { padding: 0.7em 1em; border-top: 1px solid #DCDCDC; @@ -27736,7 +27737,7 @@ course-title { background-color: #F3F3F3; border-radius: 0px 0px 10px 10px; } -/* line 4450, ../../../scss/_app_styles.scss */ +/* line 4451, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .footer-label { text-transform: uppercase; font-size: 10px; @@ -27744,54 +27745,54 @@ course-title { margin-bottom: 2px; color: #ADADAD; } -/* line 4458, ../../../scss/_app_styles.scss */ +/* line 4459, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date { color: #929292; font-size: 0.85em; letter-spacing: 0.5px; } -/* line 4463, ../../../scss/_app_styles.scss */ +/* line 4464, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date i:not(.edit-course-duration, .edit-course-enrollment) { margin-right: 0.3em; } -/* line 4467, ../../../scss/_app_styles.scss */ +/* line 4468, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .row { margin: 10px 0px 0px; } -/* line 4471, ../../../scss/_app_styles.scss */ +/* line 4472, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration, .event-card .edit-course-enrollment { float: right; font-size: 1.5em; color: #DADADA; } -/* line 4475, ../../../scss/_app_styles.scss */ +/* line 4476, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration:hover, .event-card .edit-course-enrollment:hover { color: #565656; } -/* line 4479, ../../../scss/_app_styles.scss */ +/* line 4480, ../../../scss/_app_styles.scss */ .event-card .published.scard-action { background: #A6D9CB; } -/* line 4483, ../../../scss/_app_styles.scss */ +/* line 4484, ../../../scss/_app_styles.scss */ .event-card .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 4488, ../../../scss/_app_styles.scss */ +/* line 4489, ../../../scss/_app_styles.scss */ .event-card .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4493, ../../../scss/_app_styles.scss */ +/* line 4494, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4497, ../../../scss/_app_styles.scss */ +/* line 4498, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 4501, ../../../scss/_app_styles.scss */ +/* line 4502, ../../../scss/_app_styles.scss */ .event-card .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -27802,17 +27803,17 @@ course-title { /* End Course/events Card CSS*/ /* Landing page */ -/* line 4513, ../../../scss/_app_styles.scss */ +/* line 4514, ../../../scss/_app_styles.scss */ .landing_page { position: relative; text-align: center; } -/* line 4517, ../../../scss/_app_styles.scss */ +/* line 4518, ../../../scss/_app_styles.scss */ .landing_page .panel { background-color: inherit; border: none; } -/* line 4522, ../../../scss/_app_styles.scss */ +/* line 4523, ../../../scss/_app_styles.scss */ .landing_page .landing_page_background { height: 100%; width: 100%; @@ -27824,24 +27825,24 @@ course-title { background: -ms-linear-gradient(left, #E9A900, #B0108D); background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 4534, ../../../scss/_app_styles.scss */ +/* line 4535, ../../../scss/_app_styles.scss */ .landing_page .clix_brief { text-align: left; padding: 20px 5%; } -/* line 4538, ../../../scss/_app_styles.scss */ +/* line 4539, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 30px 20px; height: 70px; } @media screen and (max-width: 450px) { - /* line 4538, ../../../scss/_app_styles.scss */ + /* line 4539, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 25px 10px; height: 55px; } } -/* line 4546, ../../../scss/_app_styles.scss */ +/* line 4547, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { color: #fff; font-size: 26px; @@ -27849,12 +27850,12 @@ course-title { font-family: 'ubuntu-light'; } @media screen and (max-width: 450px) { - /* line 4546, ../../../scss/_app_styles.scss */ + /* line 4547, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { font-size: 18px; } } -/* line 4557, ../../../scss/_app_styles.scss */ +/* line 4558, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { background-color: rgba(255, 255, 255, 0.92); border-radius: 10px; @@ -27865,12 +27866,12 @@ course-title { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); } @media screen and (min-width: 1025px) { - /* line 4557, ../../../scss/_app_styles.scss */ + /* line 4558, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { margin: 200px auto; } } -/* line 4569, ../../../scss/_app_styles.scss */ +/* line 4570, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix > span { font-family: 'ubuntu-bold'; color: #6658af; @@ -27881,7 +27882,7 @@ course-title { display: inline-block; vertical-align: middle; } -/* line 4579, ../../../scss/_app_styles.scss */ +/* line 4580, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix p { color: #b0108d; font-size: 21px; @@ -27889,28 +27890,28 @@ course-title { font-weight: 300; font-family: 'ubuntu-light'; } -/* line 4587, ../../../scss/_app_styles.scss */ +/* line 4588, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix img { height: 30px; } -/* line 4590, ../../../scss/_app_styles.scss */ +/* line 4591, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form { margin-top: 30px; } -/* line 4593, ../../../scss/_app_styles.scss */ +/* line 4594, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form input { font-size: 24px; height: 45px; margin: 5px 0px 24px; } -/* line 4600, ../../../scss/_app_styles.scss */ +/* line 4601, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix input.button { font-size: 15px; border-radius: 5px; font-family: 'ubuntu-bold'; text-transform: uppercase; } -/* line 4606, ../../../scss/_app_styles.scss */ +/* line 4607, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix a.grey { color: #999; /*display: inline-block; @@ -27921,7 +27922,7 @@ course-title { font-family: 'ubuntu-bold'; text-transform: uppercase;*/ } -/* line 4617, ../../../scss/_app_styles.scss */ +/* line 4618, ../../../scss/_app_styles.scss */ .landing_page .flowers { left: 50px; height: 500px; @@ -27929,18 +27930,18 @@ course-title { opacity: 0.6; } @media screen and (max-width: 450px) { - /* line 4617, ../../../scss/_app_styles.scss */ + /* line 4618, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 250px; } } @media screen and (min-width: 451px) and (max-width: 1025px) { - /* line 4617, ../../../scss/_app_styles.scss */ + /* line 4618, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 350px; } } -/* line 4629, ../../../scss/_app_styles.scss */ +/* line 4630, ../../../scss/_app_styles.scss */ .landing_page .bees { position: absolute; top: 5px; @@ -27948,40 +27949,40 @@ course-title { height: 150px; } @media screen and (max-width: 450px) { - /* line 4629, ../../../scss/_app_styles.scss */ + /* line 4630, ../../../scss/_app_styles.scss */ .landing_page .bees { right: 15px; height: 100px; } } -/* line 4639, ../../../scss/_app_styles.scss */ +/* line 4640, ../../../scss/_app_styles.scss */ .landing_page h2 { color: #A0148E; font-weight: 600; } -/* line 4643, ../../../scss/_app_styles.scss */ +/* line 4644, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text { color: #6153ae; } -/* line 4646, ../../../scss/_app_styles.scss */ +/* line 4647, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text p { font-size: 18px; } /* END of Landing page */ -/* line 4652, ../../../scss/_app_styles.scss */ +/* line 4653, ../../../scss/_app_styles.scss */ .audio-caption { cursor: pointer; } -/* line 4656, ../../../scss/_app_styles.scss */ +/* line 4657, ../../../scss/_app_styles.scss */ .gallery-image { cursor: pointer; max-height: 100px; border: 1px solid !important; } -/* line 4662, ../../../scss/_app_styles.scss */ +/* line 4663, ../../../scss/_app_styles.scss */ .show-collection { color: black !important; font-size: 1.1em; @@ -27994,25 +27995,25 @@ course-title { border: 1px solid #eee; } -/* line 4674, ../../../scss/_app_styles.scss */ +/* line 4675, ../../../scss/_app_styles.scss */ .processing-screen { background-color: #0eacb5 !important; } -/* line 4678, ../../../scss/_app_styles.scss */ +/* line 4679, ../../../scss/_app_styles.scss */ .processing-screen-label { width: 500px !important; font-style: normal !important; } -/* line 4682, ../../../scss/_app_styles.scss */ +/* line 4683, ../../../scss/_app_styles.scss */ h3 { font-size: 20px; color: #164A7B; font-family: 'OpenSans-Semibold'; } -/* line 4688, ../../../scss/_app_styles.scss */ +/* line 4689, ../../../scss/_app_styles.scss */ h5 { color: #99aaba; font-size: 10px; @@ -28021,7 +28022,7 @@ h5 { margin-left: 5px; } -/* line 4696, ../../../scss/_app_styles.scss */ +/* line 4697, ../../../scss/_app_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28030,12 +28031,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4703, ../../../scss/_app_styles.scss */ +/* line 4704, ../../../scss/_app_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 4707, ../../../scss/_app_styles.scss */ +/* line 4708, ../../../scss/_app_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28044,12 +28045,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4714, ../../../scss/_app_styles.scss */ +/* line 4715, ../../../scss/_app_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 4720, ../../../scss/_app_styles.scss */ +/* line 4721, ../../../scss/_app_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28061,7 +28062,7 @@ h5 { color: #6153AE; } -/* line 4731, ../../../scss/_app_styles.scss */ +/* line 4732, ../../../scss/_app_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28074,14 +28075,14 @@ h5 { display: inline-block; color: #6153AE; } -/* line 4743, ../../../scss/_app_styles.scss */ +/* line 4744, ../../../scss/_app_styles.scss */ .add-note-btn:hover { cursor: pointer; color: #6153AE; background-color: #ffffff; } -/* line 4751, ../../../scss/_app_styles.scss */ +/* line 4752, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -28093,7 +28094,7 @@ h5 { border: 2px solid #6153ae; background-color: #dbd4e1; } -/* line 4762, ../../../scss/_app_styles.scss */ +/* line 4763, ../../../scss/_app_styles.scss */ .explore-button:hover { cursor: pointer; } @@ -28101,12 +28102,12 @@ h5 { /*Blue color variable*/ /*Orange color variables*/ /* module detail settings drop */ -/* line 4793, ../../../scss/_app_styles.scss */ +/* line 4794, ../../../scss/_app_styles.scss */ .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4796, ../../../scss/_app_styles.scss */ +/* line 4797, ../../../scss/_app_styles.scss */ .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28119,17 +28120,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4807, ../../../scss/_app_styles.scss */ +/* line 4808, ../../../scss/_app_styles.scss */ .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4813, ../../../scss/_app_styles.scss */ +/* line 4814, ../../../scss/_app_styles.scss */ .explore-settings-drop a { font-size: 16px; } -/* line 4816, ../../../scss/_app_styles.scss */ +/* line 4817, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28137,12 +28138,12 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4816, ../../../scss/_app_styles.scss */ +/* line 4817, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4819, ../../../scss/_app_styles.scss */ +/* line 4820, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28155,17 +28156,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4830, ../../../scss/_app_styles.scss */ +/* line 4831, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4836, ../../../scss/_app_styles.scss */ +/* line 4837, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop a { font-size: 16px; } -/* line 4839, ../../../scss/_app_styles.scss */ +/* line 4840, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28173,33 +28174,33 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4847, ../../../scss/_app_styles.scss */ +/* line 4848, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4851, ../../../scss/_app_styles.scss */ +/* line 4852, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4864, ../../../scss/_app_styles.scss */ +/* line 4865, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4868, ../../../scss/_app_styles.scss */ +/* line 4869, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4875, ../../../scss/_app_styles.scss */ +/* line 4876, ../../../scss/_app_styles.scss */ .edit_button { color: #717171; } -/* line 4877, ../../../scss/_app_styles.scss */ +/* line 4878, ../../../scss/_app_styles.scss */ .edit_button:hover { border-left: 2px solid #ce7869; } -/* line 4883, ../../../scss/_app_styles.scss */ +/* line 4884, ../../../scss/_app_styles.scss */ .left-btn { margin-top: 0px; margin-right: 0px; @@ -28211,7 +28212,7 @@ h5 { color: #555555; font-size: 11px; } -/* line 4893, ../../../scss/_app_styles.scss */ +/* line 4894, ../../../scss/_app_styles.scss */ .left-btn:hover { display: block; padding: 0.5rem; @@ -28219,7 +28220,7 @@ h5 { border-left: 2px solid #ce7869; } -/* line 4902, ../../../scss/_app_styles.scss */ +/* line 4903, ../../../scss/_app_styles.scss */ .chnge-img:hover { display: block; padding: 0.5rem; @@ -28227,14 +28228,14 @@ h5 { border-left: 2px solid #ce7869; } -/* line 4913, ../../../scss/_app_styles.scss */ +/* line 4914, ../../../scss/_app_styles.scss */ .lms_page .lms_banner { width: 100%; height: 150px; background-size: 100% 100%; position: relative; } -/* line 4921, ../../../scss/_app_styles.scss */ +/* line 4922, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -28247,27 +28248,27 @@ h5 { bottom: 0; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 4934, ../../../scss/_app_styles.scss */ +/* line 4935, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before a { cursor: pointer; } -/* line 4939, ../../../scss/_app_styles.scss */ +/* line 4940, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .div-height { height: 150px !important; background-size: 100% 100%; position: absolute !important; } -/* line 4947, ../../../scss/_app_styles.scss */ +/* line 4948, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .enroll_unit > a { cursor: pointer; } -/* line 4951, ../../../scss/_app_styles.scss */ +/* line 4952, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 4957, ../../../scss/_app_styles.scss */ +/* line 4958, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .unit_name { font-size: 36px; font-family: OpenSans-Semibold; @@ -28278,17 +28279,17 @@ h5 { transition: border-radius .2s; text-shadow: 3px 2px #164a7b; } -/* line 4968, ../../../scss/_app_styles.scss */ +/* line 4969, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .right-margin { margin-right: 46px; } -/* line 4977, ../../../scss/_app_styles.scss */ +/* line 4978, ../../../scss/_app_styles.scss */ .border-bottom-lms-header { border-bottom: 1px solid #00000029; } -/* line 4982, ../../../scss/_app_styles.scss */ +/* line 4983, ../../../scss/_app_styles.scss */ .lms_secondary_header { width: 100%; position: relative; @@ -28296,11 +28297,11 @@ h5 { box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 4988, ../../../scss/_app_styles.scss */ +/* line 4989, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions { margin-top: 8px; } -/* line 4991, ../../../scss/_app_styles.scss */ +/* line 4992, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28312,11 +28313,11 @@ h5 { opacity: 0.8; } @media screen and (min-width: 980px) and (max-width: 1000px) { - /* line 5005, ../../../scss/_app_styles.scss */ + /* line 5006, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions { margin-top: 8px; } - /* line 5008, ../../../scss/_app_styles.scss */ + /* line 5009, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions > span { margin-left: 50px; background: #2e3f51; @@ -28330,16 +28331,16 @@ h5 { } } -/* line 5028, ../../../scss/_app_styles.scss */ +/* line 5029, ../../../scss/_app_styles.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; } -/* line 5031, ../../../scss/_app_styles.scss */ +/* line 5032, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 5034, ../../../scss/_app_styles.scss */ +/* line 5035, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a { list-style-type: none; display: inline-block; @@ -28350,23 +28351,23 @@ ul.nav_menu_1 > li > a { letter-spacing: 0.8px; border-bottom: 3px solid transparent; } -/* line 5045, ../../../scss/_app_styles.scss */ +/* line 5046, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-bottom: 3px solid #a2238d; } -/* line 5056, ../../../scss/_app_styles.scss */ +/* line 5057, ../../../scss/_app_styles.scss */ ul.authoring-tab { margin-bottom: 0px; display: inline; width: 50%; } -/* line 5060, ../../../scss/_app_styles.scss */ +/* line 5061, ../../../scss/_app_styles.scss */ ul.authoring-tab > li { display: inline-block; background-color: #164a7b; } -/* line 5063, ../../../scss/_app_styles.scss */ +/* line 5064, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a { list-style-type: none; margin-right: -4px; @@ -28379,13 +28380,13 @@ ul.authoring-tab > li > a { border-bottom: 3px solid transparent; color: #ffffff !important; } -/* line 5074, ../../../scss/_app_styles.scss */ +/* line 5075, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-bottom: 3px solid #a2238d; } /* Secondary Top Bar */ -/* line 5083, ../../../scss/_app_styles.scss */ +/* line 5084, ../../../scss/_app_styles.scss */ .secondary-header-tabs { color: #719dc7; font-weight: 400; @@ -28395,11 +28396,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -webkit-transition: color 1s ease, border-color 1s ease; display: inline-block; } -/* line 5092, ../../../scss/_app_styles.scss */ +/* line 5093, ../../../scss/_app_styles.scss */ .secondary-header-tabs:hover { color: #164A7B; } -/* line 5096, ../../../scss/_app_styles.scss */ +/* line 5097, ../../../scss/_app_styles.scss */ .secondary-header-tabs.active { color: #164A7B; border-bottom: 2px solid #164A7B; @@ -28407,7 +28408,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: 600; } -/* line 5106, ../../../scss/_app_styles.scss */ +/* line 5107, ../../../scss/_app_styles.scss */ .secondary-header-button { color: #3c556d; font-weight: 700; @@ -28420,12 +28421,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-size: 13px; letter-spacing: 1.2px; } -/* line 5118, ../../../scss/_app_styles.scss */ +/* line 5119, ../../../scss/_app_styles.scss */ .secondary-header-button:hover { opacity: 0.5; } -/* line 5125, ../../../scss/_app_styles.scss */ +/* line 5126, ../../../scss/_app_styles.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -28434,34 +28435,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: -8px; } -/* line 5136, ../../../scss/_app_styles.scss */ +/* line 5137, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 5141, ../../../scss/_app_styles.scss */ +/* line 5142, ../../../scss/_app_styles.scss */ .top-bar-second .name { text-align: center; } -/* line 5144, ../../../scss/_app_styles.scss */ +/* line 5145, ../../../scss/_app_styles.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 5154, ../../../scss/_app_styles.scss */ +/* line 5155, ../../../scss/_app_styles.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 5162, ../../../scss/_app_styles.scss */ +/* line 5163, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 5164, ../../../scss/_app_styles.scss */ +/* line 5165, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -28470,31 +28471,31 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; letter-spacing: 0.5px; } -/* line 5175, ../../../scss/_app_styles.scss */ +/* line 5176, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 5183, ../../../scss/_app_styles.scss */ +/* line 5184, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 5189, ../../../scss/_app_styles.scss */ +/* line 5190, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 5200, ../../../scss/_app_styles.scss */ + /* line 5201, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 5202, ../../../scss/_app_styles.scss */ + /* line 5203, ../../../scss/_app_styles.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 5209, ../../../scss/_app_styles.scss */ + /* line 5210, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -28502,32 +28503,32 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { line-height: 52px; border-left-width: 0px; } - /* line 5216, ../../../scss/_app_styles.scss */ + /* line 5217, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5222, ../../../scss/_app_styles.scss */ + /* line 5223, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5230, ../../../scss/_app_styles.scss */ + /* line 5231, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 5240, ../../../scss/_app_styles.scss */ + /* line 5241, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 5249, ../../../scss/_app_styles.scss */ + /* line 5250, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 5256, ../../../scss/_app_styles.scss */ + /* line 5257, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; @@ -28542,7 +28543,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { /** * Sass styles related to unit cards */ -/* line 5284, ../../../scss/_app_styles.scss */ +/* line 5285, ../../../scss/_app_styles.scss */ .unit_card { width: 300px; color: #000; @@ -28554,7 +28555,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { position: relative; height: 210px; } -/* line 5298, ../../../scss/_app_styles.scss */ +/* line 5299, ../../../scss/_app_styles.scss */ .unit_card .unit_status { position: absolute; right: 0px; @@ -28565,11 +28566,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-radius: 3px; letter-spacing: 0.6px; } -/* line 5309, ../../../scss/_app_styles.scss */ +/* line 5310, ../../../scss/_app_styles.scss */ .unit_card .unit_header { display: table; } -/* line 5311, ../../../scss/_app_styles.scss */ +/* line 5312, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_banner { display: table-cell; border-radius: 5px; @@ -28578,7 +28579,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-right: 10px; color: #333333; } -/* line 5319, ../../../scss/_app_styles.scss */ +/* line 5320, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_title { display: table-cell; font-size: 20px; @@ -28592,7 +28593,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { vertical-align: middle; color: #333333; } -/* line 5333, ../../../scss/_app_styles.scss */ +/* line 5334, ../../../scss/_app_styles.scss */ .unit_card .unit_desc { display: block; /* Fallback for non-webkit */ @@ -28609,16 +28610,16 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin: 10px 0px 20px; color: #333333; } -/* line 5349, ../../../scss/_app_styles.scss */ +/* line 5350, ../../../scss/_app_styles.scss */ .unit_card .unit_breif .unit_breif_row i { margin-right: 10px; color: #99aaba; } -/* line 5355, ../../../scss/_app_styles.scss */ +/* line 5356, ../../../scss/_app_styles.scss */ .unit_card .unit_actions { padding: 5px 0px; } -/* line 5360, ../../../scss/_app_styles.scss */ +/* line 5361, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol { background: #a2238d; height: 37px; @@ -28631,11 +28632,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5372, ../../../scss/_app_styles.scss */ +/* line 5373, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 5377, ../../../scss/_app_styles.scss */ +/* line 5378, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics { color: #a2238d; font-weight: 500; @@ -28643,7 +28644,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.3px; border-bottom: 2px solid #a2238d; } -/* line 5385, ../../../scss/_app_styles.scss */ +/* line 5386, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics-points { background: #ffffff; color: #a2238d; @@ -28654,7 +28655,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; cursor: default; } -/* line 5396, ../../../scss/_app_styles.scss */ +/* line 5397, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit { height: 37px; text-align: center; @@ -28663,13 +28664,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5404, ../../../scss/_app_styles.scss */ +/* line 5405, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit:hover { border-bottom: 2px solid #ffc14e; } /* unit cards labels */ -/* line 5414, ../../../scss/_app_styles.scss */ +/* line 5415, ../../../scss/_app_styles.scss */ .status-completed { width: auto; top: -1.15em; @@ -28686,7 +28687,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5430, ../../../scss/_app_styles.scss */ +/* line 5431, ../../../scss/_app_styles.scss */ .status-in-progress { width: auto; top: -1.15em; @@ -28703,7 +28704,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5447, ../../../scss/_app_styles.scss */ +/* line 5448, ../../../scss/_app_styles.scss */ .status-upcoming { width: auto; top: -1.15em; @@ -28720,7 +28721,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5464, ../../../scss/_app_styles.scss */ +/* line 5465, ../../../scss/_app_styles.scss */ .status-draft { width: auto; top: -1.15em; @@ -28737,7 +28738,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5482, ../../../scss/_app_styles.scss */ +/* line 5483, ../../../scss/_app_styles.scss */ .status-workspace { width: auto; top: -1.15em; @@ -28754,48 +28755,48 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5499, ../../../scss/_app_styles.scss */ +/* line 5500, ../../../scss/_app_styles.scss */ .icon-widget { font-size: 24px; } /* module detail css */ -/* line 5508, ../../../scss/_app_styles.scss */ +/* line 5509, ../../../scss/_app_styles.scss */ .thumbnail_style { margin-left: -30px; } -/* line 5512, ../../../scss/_app_styles.scss */ +/* line 5513, ../../../scss/_app_styles.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 5518, ../../../scss/_app_styles.scss */ +/* line 5519, ../../../scss/_app_styles.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); padding-left: 10px; height: auto; min-height: 143px; } -/* line 5524, ../../../scss/_app_styles.scss */ +/* line 5525, ../../../scss/_app_styles.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 5534, ../../../scss/_app_styles.scss */ +/* line 5535, ../../../scss/_app_styles.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 5539, ../../../scss/_app_styles.scss */ +/* line 5540, ../../../scss/_app_styles.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 5542, ../../../scss/_app_styles.scss */ +/* line 5543, ../../../scss/_app_styles.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28809,7 +28810,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 5559, ../../../scss/_app_styles.scss */ +/* line 5560, ../../../scss/_app_styles.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -28823,7 +28824,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* Creating and editing course Structure */ -/* line 5576, ../../../scss/_app_styles.scss */ +/* line 5577, ../../../scss/_app_styles.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -28834,34 +28835,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 5585, ../../../scss/_app_styles.scss */ +/* line 5586, ../../../scss/_app_styles.scss */ .group_tile:hover { opacity: 0.7; } -/* line 5588, ../../../scss/_app_styles.scss */ +/* line 5589, ../../../scss/_app_styles.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 5595, ../../../scss/_app_styles.scss */ +/* line 5596, ../../../scss/_app_styles.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 5602, ../../../scss/_app_styles.scss */ +/* line 5603, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 5605, ../../../scss/_app_styles.scss */ +/* line 5606, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 5608, ../../../scss/_app_styles.scss */ +/* line 5609, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -28869,15 +28870,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 5616, ../../../scss/_app_styles.scss */ +/* line 5617, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 5620, ../../../scss/_app_styles.scss */ +/* line 5621, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 5622, ../../../scss/_app_styles.scss */ +/* line 5623, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -28888,27 +28889,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 5632, ../../../scss/_app_styles.scss */ +/* line 5633, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 5637, ../../../scss/_app_styles.scss */ +/* line 5638, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 5643, ../../../scss/_app_styles.scss */ +/* line 5644, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 5650, ../../../scss/_app_styles.scss */ +/* line 5651, ../../../scss/_app_styles.scss */ .max-width { max-width: 100%; } -/* line 5656, ../../../scss/_app_styles.scss */ +/* line 5657, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28918,7 +28919,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 5665, ../../../scss/_app_styles.scss */ +/* line 5666, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -28935,7 +28936,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 5678, ../../../scss/_app_styles.scss */ +/* line 5679, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -28945,28 +28946,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 5687, ../../../scss/_app_styles.scss */ +/* line 5688, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 5692, ../../../scss/_app_styles.scss */ +/* line 5693, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background-color: #ffffff; } -/* line 5697, ../../../scss/_app_styles.scss */ +/* line 5698, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 5703, ../../../scss/_app_styles.scss */ +/* line 5704, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 5707, ../../../scss/_app_styles.scss */ +/* line 5708, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -28979,7 +28980,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 5720, ../../../scss/_app_styles.scss */ +/* line 5721, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -28994,7 +28995,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Unit_Structure styles */ -/* line 5738, ../../../scss/_app_styles.scss */ +/* line 5739, ../../../scss/_app_styles.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -29002,12 +29003,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 5746, ../../../scss/_app_styles.scss */ +/* line 5747, ../../../scss/_app_styles.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 5750, ../../../scss/_app_styles.scss */ +/* line 5751, ../../../scss/_app_styles.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -29015,17 +29016,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 5756, ../../../scss/_app_styles.scss */ +/* line 5757, ../../../scss/_app_styles.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 5762, ../../../scss/_app_styles.scss */ +/* line 5763, ../../../scss/_app_styles.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 5767, ../../../scss/_app_styles.scss */ +/* line 5768, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29035,25 +29036,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 5776, ../../../scss/_app_styles.scss */ +/* line 5777, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5780, ../../../scss/_app_styles.scss */ +/* line 5781, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 5785, ../../../scss/_app_styles.scss */ +/* line 5786, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 5794, ../../../scss/_app_styles.scss */ +/* line 5795, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29062,7 +29063,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5801, ../../../scss/_app_styles.scss */ +/* line 5802, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29071,15 +29072,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 5810, ../../../scss/_app_styles.scss */ +/* line 5811, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 5815, ../../../scss/_app_styles.scss */ +/* line 5816, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 5818, ../../../scss/_app_styles.scss */ +/* line 5819, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29087,21 +29088,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 5828, ../../../scss/_app_styles.scss */ +/* line 5829, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 5834, ../../../scss/_app_styles.scss */ +/* line 5835, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 5842, ../../../scss/_app_styles.scss */ +/* line 5843, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 5844, ../../../scss/_app_styles.scss */ +/* line 5845, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29110,7 +29111,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5851, ../../../scss/_app_styles.scss */ +/* line 5852, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29118,11 +29119,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5860, ../../../scss/_app_styles.scss */ +/* line 5861, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 5869, ../../../scss/_app_styles.scss */ +/* line 5870, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29134,49 +29135,49 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 5879, ../../../scss/_app_styles.scss */ +/* line 5880, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 5885, ../../../scss/_app_styles.scss */ +/* line 5886, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 5888, ../../../scss/_app_styles.scss */ +/* line 5889, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 5897, ../../../scss/_app_styles.scss */ +/* line 5898, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 5902, ../../../scss/_app_styles.scss */ +/* line 5903, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 5906, ../../../scss/_app_styles.scss */ +/* line 5907, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 5908, ../../../scss/_app_styles.scss */ +/* line 5909, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 5911, ../../../scss/_app_styles.scss */ +/* line 5912, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 5917, ../../../scss/_app_styles.scss */ +/* line 5918, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29184,29 +29185,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 15px 5px; cursor: pointer; } -/* line 5932, ../../../scss/_app_styles.scss */ +/* line 5933, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 5940, ../../../scss/_app_styles.scss */ +/* line 5941, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 5946, ../../../scss/_app_styles.scss */ +/* line 5947, ../../../scss/_app_styles.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 5955, ../../../scss/_app_styles.scss */ +/* line 5956, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 5960, ../../../scss/_app_styles.scss */ +/* line 5961, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29214,28 +29215,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 5967, ../../../scss/_app_styles.scss */ +/* line 5968, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5972, ../../../scss/_app_styles.scss */ +/* line 5973, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5977, ../../../scss/_app_styles.scss */ +/* line 5978, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 5979, ../../../scss/_app_styles.scss */ +/* line 5980, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 5983, ../../../scss/_app_styles.scss */ +/* line 5984, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -29247,21 +29248,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; border-radius: 3px; } -/* line 5994, ../../../scss/_app_styles.scss */ +/* line 5995, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 5999, ../../../scss/_app_styles.scss */ +/* line 6000, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 6005, ../../../scss/_app_styles.scss */ +/* line 6006, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 6011, ../../../scss/_app_styles.scss */ +/* line 6012, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -29269,19 +29270,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 6018, ../../../scss/_app_styles.scss */ +/* line 6019, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 6025, ../../../scss/_app_styles.scss */ +/* line 6026, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6036, ../../../scss/_app_styles.scss */ +/* line 6037, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -29292,7 +29293,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 6053, ../../../scss/_app_styles.scss */ +/* line 6054, ../../../scss/_app_styles.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -29307,66 +29308,66 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* lesspn listing LMS */ -/* line 6069, ../../../scss/_app_styles.scss */ +/* line 6070, ../../../scss/_app_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 6077, ../../../scss/_app_styles.scss */ +/* line 6078, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 6080, ../../../scss/_app_styles.scss */ +/* line 6081, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 6082, ../../../scss/_app_styles.scss */ +/* line 6083, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 6089, ../../../scss/_app_styles.scss */ +/* line 6090, ../../../scss/_app_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 6091, ../../../scss/_app_styles.scss */ +/* line 6092, ../../../scss/_app_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 6096, ../../../scss/_app_styles.scss */ +/* line 6097, ../../../scss/_app_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 6104, ../../../scss/_app_styles.scss */ +/* line 6105, ../../../scss/_app_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6110, ../../../scss/_app_styles.scss */ +/* line 6111, ../../../scss/_app_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6117, ../../../scss/_app_styles.scss */ +/* line 6118, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 6120, ../../../scss/_app_styles.scss */ +/* line 6121, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 6123, ../../../scss/_app_styles.scss */ +/* line 6124, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 6126, ../../../scss/_app_styles.scss */ +/* line 6127, ../../../scss/_app_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; @@ -29376,23 +29377,23 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Styling for the Secondary header 2 */ -/* line 6145, ../../../scss/_app_styles.scss */ +/* line 6146, ../../../scss/_app_styles.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 6148, ../../../scss/_app_styles.scss */ +/* line 6149, ../../../scss/_app_styles.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6156, ../../../scss/_app_styles.scss */ +/* line 6157, ../../../scss/_app_styles.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 6165, ../../../scss/_app_styles.scss */ +/* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { position: relative; color: #fff; @@ -29403,56 +29404,56 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: -2px; border-right: 1px solid white; } -/* line 6174, ../../../scss/_app_styles.scss */ +/* line 6175, ../../../scss/_app_styles.scss */ .activity_player_header .header_title a { color: #ffc14f; } @media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 938px); } } @media only screen and (min-device-width: 2131px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 970px); } } @media only screen and (max-device-width: 1024px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6166, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 753px); } } -/* line 6251, ../../../scss/_app_styles.scss */ +/* line 6252, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon { font-size: 16px; line-height: 45px; color: #ffc14f; } -/* line 6257, ../../../scss/_app_styles.scss */ +/* line 6258, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 6263, ../../../scss/_app_styles.scss */ +/* line 6264, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 10px; } @media screen and (min-width: 1025px) { - /* line 6263, ../../../scss/_app_styles.scss */ + /* line 6264, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 15px; } } @media screen and (min-width: 1025px) { - /* line 6270, ../../../scss/_app_styles.scss */ + /* line 6271, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { float: right; margin-right: 70px; @@ -29460,73 +29461,73 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media screen and (max-width: 1024px) { - /* line 6270, ../../../scss/_app_styles.scss */ + /* line 6271, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { background-color: rgba(107, 0, 84, 0.97); } } -/* line 6283, ../../../scss/_app_styles.scss */ +/* line 6284, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6289, ../../../scss/_app_styles.scss */ +/* line 6290, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block { padding: 0px 15px; margin-left: -2px; border-right: 1px solid white; } -/* line 6293, ../../../scss/_app_styles.scss */ +/* line 6294, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block a { color: #ffc14f; } -/* line 6299, ../../../scss/_app_styles.scss */ +/* line 6300, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 9px; } @media screen and (min-width: 1025px) { - /* line 6299, ../../../scss/_app_styles.scss */ + /* line 6300, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 15px; } } -/* line 6307, ../../../scss/_app_styles.scss */ +/* line 6308, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 7px; } @media screen and (min-width: 1025px) { - /* line 6307, ../../../scss/_app_styles.scss */ + /* line 6308, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 15px; } } -/* line 6316, ../../../scss/_app_styles.scss */ +/* line 6317, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 6319, ../../../scss/_app_styles.scss */ +/* line 6320, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button i { color: #71318b; } -/* line 6325, ../../../scss/_app_styles.scss */ +/* line 6326, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 6329, ../../../scss/_app_styles.scss */ +/* line 6330, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 6335, ../../../scss/_app_styles.scss */ +/* line 6336, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .pagination:not(i) { color: #a983b9; } -/* line 6343, ../../../scss/_app_styles.scss */ +/* line 6344, ../../../scss/_app_styles.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -29534,29 +29535,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 6350, ../../../scss/_app_styles.scss */ +/* line 6351, ../../../scss/_app_styles.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 6354, ../../../scss/_app_styles.scss */ +/* line 6355, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6360, ../../../scss/_app_styles.scss */ +/* line 6361, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6366, ../../../scss/_app_styles.scss */ +/* line 6367, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 6371, ../../../scss/_app_styles.scss */ +/* line 6372, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29566,25 +29567,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 6380, ../../../scss/_app_styles.scss */ +/* line 6381, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6384, ../../../scss/_app_styles.scss */ +/* line 6385, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6389, ../../../scss/_app_styles.scss */ +/* line 6390, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6398, ../../../scss/_app_styles.scss */ +/* line 6399, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29593,7 +29594,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6405, ../../../scss/_app_styles.scss */ +/* line 6406, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29602,15 +29603,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 6414, ../../../scss/_app_styles.scss */ +/* line 6415, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6419, ../../../scss/_app_styles.scss */ +/* line 6420, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6422, ../../../scss/_app_styles.scss */ +/* line 6423, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29618,21 +29619,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 6432, ../../../scss/_app_styles.scss */ +/* line 6433, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6438, ../../../scss/_app_styles.scss */ +/* line 6439, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6446, ../../../scss/_app_styles.scss */ +/* line 6447, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6448, ../../../scss/_app_styles.scss */ +/* line 6449, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29641,7 +29642,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6455, ../../../scss/_app_styles.scss */ +/* line 6456, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29649,11 +29650,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6464, ../../../scss/_app_styles.scss */ +/* line 6465, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6473, ../../../scss/_app_styles.scss */ +/* line 6474, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29665,48 +29666,48 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 6483, ../../../scss/_app_styles.scss */ +/* line 6484, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6488, ../../../scss/_app_styles.scss */ +/* line 6489, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6491, ../../../scss/_app_styles.scss */ +/* line 6492, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6500, ../../../scss/_app_styles.scss */ +/* line 6501, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6505, ../../../scss/_app_styles.scss */ +/* line 6506, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6509, ../../../scss/_app_styles.scss */ +/* line 6510, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6511, ../../../scss/_app_styles.scss */ +/* line 6512, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6514, ../../../scss/_app_styles.scss */ +/* line 6515, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6520, ../../../scss/_app_styles.scss */ +/* line 6521, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29715,7 +29716,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; } -/* line 6538, ../../../scss/_app_styles.scss */ +/* line 6539, ../../../scss/_app_styles.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -29723,26 +29724,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 10px; padding-right: 4px; } -/* line 6544, ../../../scss/_app_styles.scss */ +/* line 6545, ../../../scss/_app_styles.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 6549, ../../../scss/_app_styles.scss */ +/* line 6550, ../../../scss/_app_styles.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6555, ../../../scss/_app_styles.scss */ +/* line 6556, ../../../scss/_app_styles.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 6561, ../../../scss/_app_styles.scss */ +/* line 6562, ../../../scss/_app_styles.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29752,29 +29753,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 6570, ../../../scss/_app_styles.scss */ +/* line 6571, ../../../scss/_app_styles.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 6574, ../../../scss/_app_styles.scss */ +/* line 6575, ../../../scss/_app_styles.scss */ .activity-title > li > a { color: black; } -/* line 6583, ../../../scss/_app_styles.scss */ +/* line 6584, ../../../scss/_app_styles.scss */ .activity_page_rendered { margin-left: 20px; max-width: 900px; } /* Rating css */ -/* line 6591, ../../../scss/_app_styles.scss */ +/* line 6592, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 6593, ../../../scss/_app_styles.scss */ +/* line 6594, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -29782,19 +29783,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { unicode-bidi: bidi-override; direction: rtl; } -/* line 6601, ../../../scss/_app_styles.scss */ +/* line 6602, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 6603, ../../../scss/_app_styles.scss */ +/* line 6604, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 6609, ../../../scss/_app_styles.scss */ +/* line 6610, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 6611, ../../../scss/_app_styles.scss */ +/* line 6612, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -29807,7 +29808,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0; vertical-align: bottom; } -/* line 6623, ../../../scss/_app_styles.scss */ +/* line 6624, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -29815,32 +29816,32 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* WHITE STAR */ color: #888; } -/* line 6630, ../../../scss/_app_styles.scss */ +/* line 6631, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 6641, ../../../scss/_app_styles.scss */ +/* line 6642, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 6648, ../../../scss/_app_styles.scss */ +/* line 6649, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 6656, ../../../scss/_app_styles.scss */ +/* line 6657, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 6661, ../../../scss/_app_styles.scss */ +/* line 6662, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -29849,29 +29850,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-shadow: 0 0 1px #333; } -/* line 6671, ../../../scss/_app_styles.scss */ +/* line 6672, ../../../scss/_app_styles.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 6675, ../../../scss/_app_styles.scss */ +/* line 6676, ../../../scss/_app_styles.scss */ .input_links { margin-left: 10px; } -/* line 6677, ../../../scss/_app_styles.scss */ +/* line 6678, ../../../scss/_app_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 6683, ../../../scss/_app_styles.scss */ +/* line 6684, ../../../scss/_app_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 6691, ../../../scss/_app_styles.scss */ +/* line 6692, ../../../scss/_app_styles.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -29880,19 +29881,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 6700, ../../../scss/_app_styles.scss */ +/* line 6701, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 6704, ../../../scss/_app_styles.scss */ +/* line 6705, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 6710, ../../../scss/_app_styles.scss */ +/* line 6711, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -29900,12 +29901,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; margin-left: 12%; } -/* line 6718, ../../../scss/_app_styles.scss */ +/* line 6719, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 6724, ../../../scss/_app_styles.scss */ +/* line 6725, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -29914,21 +29915,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: none; color: #8E8E8E; } -/* line 6733, ../../../scss/_app_styles.scss */ +/* line 6734, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 6738, ../../../scss/_app_styles.scss */ +/* line 6739, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 6740, ../../../scss/_app_styles.scss */ +/* line 6741, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 6743, ../../../scss/_app_styles.scss */ +/* line 6744, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -29939,24 +29940,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #757575; margin-right: 20px; } -/* line 6753, ../../../scss/_app_styles.scss */ +/* line 6754, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 6757, ../../../scss/_app_styles.scss */ +/* line 6758, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 6760, ../../../scss/_app_styles.scss */ +/* line 6761, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 6765, ../../../scss/_app_styles.scss */ +/* line 6766, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 6769, ../../../scss/_app_styles.scss */ +/* line 6770, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -29968,7 +29969,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; color: #222222; } -/* line 6780, ../../../scss/_app_styles.scss */ +/* line 6781, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -29976,15 +29977,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 8px; top: 4px; } -/* line 6788, ../../../scss/_app_styles.scss */ +/* line 6789, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 6790, ../../../scss/_app_styles.scss */ +/* line 6791, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 6793, ../../../scss/_app_styles.scss */ +/* line 6794, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -29994,25 +29995,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { letter-spacing: 0.8px; color: #999999; } -/* line 6802, ../../../scss/_app_styles.scss */ +/* line 6803, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 6808, ../../../scss/_app_styles.scss */ +/* line 6809, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 6817, ../../../scss/_app_styles.scss */ +/* line 6818, ../../../scss/_app_styles.scss */ .icon-color { color: #2e3f51 !important; padding: right; } /* The asset tile */ -/* line 6827, ../../../scss/_app_styles.scss */ +/* line 6828, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -30022,7 +30023,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 6836, ../../../scss/_app_styles.scss */ +/* line 6837, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -30039,7 +30040,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 6849, ../../../scss/_app_styles.scss */ +/* line 6850, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -30049,28 +30050,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 6858, ../../../scss/_app_styles.scss */ +/* line 6859, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 6863, ../../../scss/_app_styles.scss */ +/* line 6864, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 6868, ../../../scss/_app_styles.scss */ +/* line 6869, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 6874, ../../../scss/_app_styles.scss */ +/* line 6875, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 6878, ../../../scss/_app_styles.scss */ +/* line 6879, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -30083,7 +30084,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 6891, ../../../scss/_app_styles.scss */ +/* line 6892, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -30097,7 +30098,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 6906, ../../../scss/_app_styles.scss */ +/* line 6907, ../../../scss/_app_styles.scss */ .orange-button-subtitle { color: #ce7869; padding: 4px 5px; @@ -30110,13 +30111,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 6917, ../../../scss/_app_styles.scss */ +/* line 6918, ../../../scss/_app_styles.scss */ .orange-button-subtitle:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 6923, ../../../scss/_app_styles.scss */ +/* line 6924, ../../../scss/_app_styles.scss */ .transcript-toggler { display: block; width: 155px !important; @@ -30132,12 +30133,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; } -/* line 6938, ../../../scss/_app_styles.scss */ +/* line 6939, ../../../scss/_app_styles.scss */ .asset_list { margin-left: 12px; } -/* line 6942, ../../../scss/_app_styles.scss */ +/* line 6943, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -30146,22 +30147,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6951, ../../../scss/_app_styles.scss */ +/* line 6952, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6958, ../../../scss/_app_styles.scss */ +/* line 6959, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6964, ../../../scss/_app_styles.scss */ +/* line 6965, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6966, ../../../scss/_app_styles.scss */ +/* line 6967, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -30170,15 +30171,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6973, ../../../scss/_app_styles.scss */ +/* line 6974, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6977, ../../../scss/_app_styles.scss */ +/* line 6978, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6983, ../../../scss/_app_styles.scss */ +/* line 6984, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30187,7 +30188,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6994, ../../../scss/_app_styles.scss */ +/* line 6995, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -30196,24 +30197,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 7003, ../../../scss/_app_styles.scss */ +/* line 7004, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 7010, ../../../scss/_app_styles.scss */ +/* line 7011, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 7015, ../../../scss/_app_styles.scss */ +/* line 7016, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 7019, ../../../scss/_app_styles.scss */ +/* line 7020, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -30224,14 +30225,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 7029, ../../../scss/_app_styles.scss */ +/* line 7030, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 7036, ../../../scss/_app_styles.scss */ + /* line 7037, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30239,7 +30240,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7045, ../../../scss/_app_styles.scss */ + /* line 7046, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30247,7 +30248,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7052, ../../../scss/_app_styles.scss */ + /* line 7053, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30255,14 +30256,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7059, ../../../scss/_app_styles.scss */ + /* line 7060, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 7067, ../../../scss/_app_styles.scss */ +/* line 7068, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30277,14 +30278,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7083, ../../../scss/_app_styles.scss */ +/* line 7084, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 7090, ../../../scss/_app_styles.scss */ + /* line 7091, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30295,7 +30296,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7101, ../../../scss/_app_styles.scss */ + /* line 7102, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30306,7 +30307,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7112, ../../../scss/_app_styles.scss */ + /* line 7113, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30317,7 +30318,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7123, ../../../scss/_app_styles.scss */ + /* line 7124, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30327,7 +30328,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7134, ../../../scss/_app_styles.scss */ +/* line 7135, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30342,14 +30343,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7150, ../../../scss/_app_styles.scss */ +/* line 7151, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 7157, ../../../scss/_app_styles.scss */ + /* line 7158, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30360,7 +30361,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7168, ../../../scss/_app_styles.scss */ + /* line 7169, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30371,7 +30372,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7179, ../../../scss/_app_styles.scss */ + /* line 7180, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30382,7 +30383,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7190, ../../../scss/_app_styles.scss */ + /* line 7191, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30392,11 +30393,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7201, ../../../scss/_app_styles.scss */ +/* line 7202, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 7203, ../../../scss/_app_styles.scss */ +/* line 7204, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30405,11 +30406,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 7211, ../../../scss/_app_styles.scss */ +/* line 7212, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 7217, ../../../scss/_app_styles.scss */ +/* line 7218, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30418,7 +30419,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7228, ../../../scss/_app_styles.scss */ +/* line 7229, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30429,22 +30430,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7238, ../../../scss/_app_styles.scss */ +/* line 7239, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7241, ../../../scss/_app_styles.scss */ +/* line 7242, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7246, ../../../scss/_app_styles.scss */ +/* line 7247, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7257, ../../../scss/_app_styles.scss */ +/* line 7258, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30455,26 +30456,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7267, ../../../scss/_app_styles.scss */ +/* line 7268, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7270, ../../../scss/_app_styles.scss */ +/* line 7271, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7274, ../../../scss/_app_styles.scss */ +/* line 7275, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7280, ../../../scss/_app_styles.scss */ +/* line 7281, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7282, ../../../scss/_app_styles.scss */ +/* line 7283, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30483,7 +30484,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7291, ../../../scss/_app_styles.scss */ +/* line 7292, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30492,7 +30493,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7305, ../../../scss/_app_styles.scss */ +/* line 7306, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -30502,19 +30503,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Asset detail */ -/* line 7316, ../../../scss/_app_styles.scss */ +/* line 7317, ../../../scss/_app_styles.scss */ .overlay-head { height: 60px; margin-bottom: 20px; } -/* line 7322, ../../../scss/_app_styles.scss */ +/* line 7323, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7327, ../../../scss/_app_styles.scss */ +/* line 7328, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30528,13 +30529,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7339, ../../../scss/_app_styles.scss */ +/* line 7340, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7346, ../../../scss/_app_styles.scss */ +/* line 7347, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; padding: 7px 14px; @@ -30547,22 +30548,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7357, ../../../scss/_app_styles.scss */ +/* line 7358, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7362, ../../../scss/_app_styles.scss */ +/* line 7363, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; background: #fff; } -/* line 7365, ../../../scss/_app_styles.scss */ +/* line 7366, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: #fff; } -/* line 7368, ../../../scss/_app_styles.scss */ +/* line 7369, ../../../scss/_app_styles.scss */ .orange-button-template > a { color: #ce7869; padding: 7px 14px; @@ -30575,13 +30576,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7379, ../../../scss/_app_styles.scss */ +/* line 7380, ../../../scss/_app_styles.scss */ .orange-button-template > a:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7386, ../../../scss/_app_styles.scss */ +/* line 7387, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30593,7 +30594,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7397, ../../../scss/_app_styles.scss */ +/* line 7398, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30601,18 +30602,18 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7406, ../../../scss/_app_styles.scss */ +/* line 7407, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7413, ../../../scss/_app_styles.scss */ +/* line 7414, ../../../scss/_app_styles.scss */ .page-name { margin-top: 8px; } -/* line 7417, ../../../scss/_app_styles.scss */ +/* line 7418, ../../../scss/_app_styles.scss */ .tag-ele { font-weight: normal; text-align: center; @@ -30631,7 +30632,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: none; } -/* line 7435, ../../../scss/_app_styles.scss */ +/* line 7436, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30649,12 +30650,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7451, ../../../scss/_app_styles.scss */ +/* line 7452, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7456, ../../../scss/_app_styles.scss */ +/* line 7457, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30666,13 +30667,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7466, ../../../scss/_app_styles.scss */ +/* line 7467, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7474, ../../../scss/_app_styles.scss */ +/* line 7475, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30689,13 +30690,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7489, ../../../scss/_app_styles.scss */ +/* line 7490, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* line 7500, ../../../scss/_app_styles.scss */ +/* line 7501, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -30703,7 +30704,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-size: 100% 100%; position: relative; } -/* line 7507, ../../../scss/_app_styles.scss */ +/* line 7508, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -30717,13 +30718,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7521, ../../../scss/_app_styles.scss */ +/* line 7522, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 7526, ../../../scss/_app_styles.scss */ +/* line 7527, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -30732,79 +30733,79 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow: hidden; background-color: #fff; } -/* line 7534, ../../../scss/_app_styles.scss */ +/* line 7535, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 7539, ../../../scss/_app_styles.scss */ +/* line 7540, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 7544, ../../../scss/_app_styles.scss */ +/* line 7545, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 7549, ../../../scss/_app_styles.scss */ +/* line 7550, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 7557, ../../../scss/_app_styles.scss */ +/* line 7558, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 7561, ../../../scss/_app_styles.scss */ +/* line 7562, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 7570, ../../../scss/_app_styles.scss */ +/* line 7571, ../../../scss/_app_styles.scss */ .lms_explore_head_unit { width: 100%; height: 50px; background-color: #fff; color: #164A7B; } -/* line 7575, ../../../scss/_app_styles.scss */ +/* line 7576, ../../../scss/_app_styles.scss */ .lms_explore_head_unit > p { margin-left: 81px; padding: 0px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 7581, ../../../scss/_app_styles.scss */ +/* line 7582, ../../../scss/_app_styles.scss */ .lms_explore_head_unit > a { padding: 0px 85px 3px 0px; } -/* line 7587, ../../../scss/_app_styles.scss */ +/* line 7588, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -19.3px; } -/* line 7594, ../../../scss/_app_styles.scss */ +/* line 7595, ../../../scss/_app_styles.scss */ .course-students-data { margin: 2px 2px 2px 2px; border: 2px solid #164a7b; padding: 19px 14px 0px 5px; } -/* line 7601, ../../../scss/_app_styles.scss */ +/* line 7602, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 7604, ../../../scss/_app_styles.scss */ +/* line 7605, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 7612, ../../../scss/_app_styles.scss */ +/* line 7613, ../../../scss/_app_styles.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -30820,7 +30821,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7631, ../../../scss/_app_styles.scss */ +/* line 7632, ../../../scss/_app_styles.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -30830,7 +30831,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7640, ../../../scss/_app_styles.scss */ +/* line 7641, ../../../scss/_app_styles.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -30840,7 +30841,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 7649, ../../../scss/_app_styles.scss */ +/* line 7650, ../../../scss/_app_styles.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; @@ -30860,13 +30861,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #A6D7F5; } }*/ -/* line 7672, ../../../scss/_app_styles.scss */ +/* line 7673, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 7677, ../../../scss/_app_styles.scss */ +/* line 7678, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title { width: 43%; /* background-color: blue;*/ @@ -30876,7 +30877,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; color: #fff; } -/* line 7686, ../../../scss/_app_styles.scss */ +/* line 7687, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title.active { background-color: #719dc7; border: 1px solid #CCC; @@ -30884,7 +30885,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; } -/* line 7699, ../../../scss/_app_styles.scss */ +/* line 7700, ../../../scss/_app_styles.scss */ .create_unit { background: #fff; box-shadow: 0px 2px 3px #000; @@ -30892,7 +30893,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 10px; } -/* line 7707, ../../../scss/_app_styles.scss */ +/* line 7708, ../../../scss/_app_styles.scss */ .asset-unit-button { color: #ce7869; padding: 7px 14px; @@ -30904,13 +30905,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 30px; margin-bottom: 8px; } -/* line 7718, ../../../scss/_app_styles.scss */ +/* line 7719, ../../../scss/_app_styles.scss */ .asset-unit-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7724, ../../../scss/_app_styles.scss */ +/* line 7725, ../../../scss/_app_styles.scss */ .course_creator_header { width: 100%; height: 70px; @@ -30918,7 +30919,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7731, ../../../scss/_app_styles.scss */ +/* line 7732, ../../../scss/_app_styles.scss */ .course_creator_header .unit_editor { width: 100%; height: 320px; @@ -30926,13 +30927,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7740, ../../../scss/_app_styles.scss */ +/* line 7741, ../../../scss/_app_styles.scss */ .course_creator_header .back_to_group { padding: 0px 15px 0px 10px; border-right: 1px solid #ccc; margin-right: 15px; } -/* line 7746, ../../../scss/_app_styles.scss */ +/* line 7747, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit { width: 500px; height: 40px; @@ -30941,24 +30942,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7755, ../../../scss/_app_styles.scss */ +/* line 7756, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit:focus { border: 1px solid #74b3dc; } -/* line 7759, ../../../scss/_app_styles.scss */ +/* line 7760, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7767, ../../../scss/_app_styles.scss */ +/* line 7768, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit select { font-size: 14px; font-family: 'OpenSans-Regular', sans-serif; color: gray; border: 0px solid #74b3dc; } -/* line 7778, ../../../scss/_app_styles.scss */ +/* line 7779, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input { width: 500px; height: 40px; @@ -30967,31 +30968,31 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7786, ../../../scss/_app_styles.scss */ +/* line 7787, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input:focus { border: 1px solid #74b3dc; } -/* line 7790, ../../../scss/_app_styles.scss */ +/* line 7791, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7800, ../../../scss/_app_styles.scss */ +/* line 7801, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading h5 { margin-top: 15px; } -/* line 7805, ../../../scss/_app_styles.scss */ +/* line 7806, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading span { letter-spacing: 0.9px; font-weight: 600; line-height: 50px; } -/* line 7813, ../../../scss/_app_styles.scss */ +/* line 7814, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul { margin: 0px; } -/* line 7816, ../../../scss/_app_styles.scss */ +/* line 7817, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li { list-style-type: none; display: inline-block; @@ -31000,11 +31001,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; letter-spacing: 0.8px; } -/* line 7825, ../../../scss/_app_styles.scss */ +/* line 7826, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { border-bottom: 3px solid #ffc14e; } -/* line 7830, ../../../scss/_app_styles.scss */ +/* line 7831, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions span { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -31016,7 +31017,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; border-radius: 3px; } -/* line 7842, ../../../scss/_app_styles.scss */ +/* line 7843, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -31029,20 +31030,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; } -/* line 7859, ../../../scss/_app_styles.scss */ +/* line 7860, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: 2.7px; } -/* line 7864, ../../../scss/_app_styles.scss */ +/* line 7865, ../../../scss/_app_styles.scss */ .empty-dashboard-message { border: 3px solid #e4e4e4; background: #f8f8f8; padding: 40px 0; text-align: center; } -/* line 7870, ../../../scss/_app_styles.scss */ +/* line 7871, ../../../scss/_app_styles.scss */ .empty-dashboard-message > a { background-color: #164a7b; border: 1px solid #164a7b; @@ -31056,7 +31057,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 5px; padding: 15px 20px; } -/* line 7884, ../../../scss/_app_styles.scss */ +/* line 7885, ../../../scss/_app_styles.scss */ .empty-dashboard-message .button-explore-courses { font-size: 20px; font-weight: normal; @@ -31066,7 +31067,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 170px; } -/* line 7899, ../../../scss/_app_styles.scss */ +/* line 7900, ../../../scss/_app_styles.scss */ .module_card { display: table; height: 290px; @@ -31077,16 +31078,16 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); } -/* line 7909, ../../../scss/_app_styles.scss */ +/* line 7910, ../../../scss/_app_styles.scss */ .module_card:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 7913, ../../../scss/_app_styles.scss */ +/* line 7914, ../../../scss/_app_styles.scss */ .module_card > div { display: table-cell; height: 290px; } -/* line 7918, ../../../scss/_app_styles.scss */ +/* line 7919, ../../../scss/_app_styles.scss */ .module_card .card_banner { width: 250px; height: 290px; @@ -31100,14 +31101,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-radius .2s; transition: border-radius .2s; } -/* line 7931, ../../../scss/_app_styles.scss */ +/* line 7932, ../../../scss/_app_styles.scss */ .module_card .card_banner > img { height: 100%; width: 100%; border-radius: 4px; -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); } -/* line 7936, ../../../scss/_app_styles.scss */ +/* line 7937, ../../../scss/_app_styles.scss */ .module_card .card_banner > img:hover { -webkit-transform: scale(1.03); -moz-transform: scale(1.03); @@ -31116,7 +31117,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transform: scale(1.03); opacity: 0.8; } -/* line 7948, ../../../scss/_app_styles.scss */ +/* line 7949, ../../../scss/_app_styles.scss */ .module_card .card_banner > h4 { position: absolute; top: 100px; @@ -31125,7 +31126,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #ffffff !important; text-shadow: 2px 0px 8px black; } -/* line 7963, ../../../scss/_app_styles.scss */ +/* line 7964, ../../../scss/_app_styles.scss */ .module_card .card_title { display: block; width: 230px; @@ -31135,27 +31136,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px auto; letter-spacing: 1px; } -/* line 7974, ../../../scss/_app_styles.scss */ +/* line 7975, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_banner { border-radius: 8px; } -/* line 7977, ../../../scss/_app_styles.scss */ +/* line 7978, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7982, ../../../scss/_app_styles.scss */ +/* line 7983, ../../../scss/_app_styles.scss */ .module_card.animated_card.isOpen .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7986, ../../../scss/_app_styles.scss */ +/* line 7987, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_summary { left: 30px; } -/* line 7989, ../../../scss/_app_styles.scss */ +/* line 7990, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_summary { left: 5px; } -/* line 7993, ../../../scss/_app_styles.scss */ +/* line 7994, ../../../scss/_app_styles.scss */ .module_card .card_summary { width: 290px; padding: 0px 15px; @@ -31171,35 +31172,35 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Safari */ transition-property: left; } -/* line 8007, ../../../scss/_app_styles.scss */ +/* line 8008, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_label { font-weight: 500; font-size: 12.5px; letter-spacing: 1px; color: black; } -/* line 8013, ../../../scss/_app_styles.scss */ +/* line 8014, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section { margin: 5px 0px; padding: 5px 0px; } -/* line 8017, ../../../scss/_app_styles.scss */ +/* line 8018, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section:not(:last-child) { border-bottom: 1px solid #ccc; } -/* line 8020, ../../../scss/_app_styles.scss */ +/* line 8021, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section p { margin-bottom: 7px; font-size: 12.5px; } -/* line 8024, ../../../scss/_app_styles.scss */ +/* line 8025, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .ellipsis { width: 245px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -/* line 8032, ../../../scss/_app_styles.scss */ +/* line 8033, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol { background: #a2238d; height: 37px; @@ -31213,11 +31214,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 8045, ../../../scss/_app_styles.scss */ +/* line 8046, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 8051, ../../../scss/_app_styles.scss */ +/* line 8052, ../../../scss/_app_styles.scss */ .module_card .card_summary .module_brief { display: block; /* Fallback for non-webkit */ @@ -31234,12 +31235,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: black; } -/* line 8068, ../../../scss/_app_styles.scss */ +/* line 8069, ../../../scss/_app_styles.scss */ .inner { display: inline-block !important; } -/* line 8075, ../../../scss/_app_styles.scss */ +/* line 8076, ../../../scss/_app_styles.scss */ .enroll-btn { width: 90px; opacity: 1; @@ -31255,7 +31256,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #4b4852; } -/* line 8095, ../../../scss/_app_styles.scss */ +/* line 8096, ../../../scss/_app_styles.scss */ .enrollBtn { background: #a2238d; height: 37px; @@ -31270,35 +31271,115 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /*****Toolbar CSS******/ -/* line 8110, ../../../scss/_app_styles.scss */ +/* line 8111, ../../../scss/_app_styles.scss */ #toolbar { background-color: #3e3e3e; } -/* line 8113, ../../../scss/_app_styles.scss */ +/* line 8114, ../../../scss/_app_styles.scss */ .datetime { color: #eaeaea; padding: 4px 0px 2px 5px; font-size: 11px; } -/* line 8118, ../../../scss/_app_styles.scss */ +/* line 8119, ../../../scss/_app_styles.scss */ .changefont { text-align: right; padding: 2px 5px 1px 0px; } -/* line 8122, ../../../scss/_app_styles.scss */ +/* line 8123, ../../../scss/_app_styles.scss */ .changefont .minus { font-size: 60%; color: #eaeaea; } -/* line 8125, ../../../scss/_app_styles.scss */ +/* line 8126, ../../../scss/_app_styles.scss */ .changefont .normal { font-size: 80%; color: #eaeaea; } -/* line 8128, ../../../scss/_app_styles.scss */ +/* line 8129, ../../../scss/_app_styles.scss */ .changefont .plus { font-size: 100%; color: #eaeaea; } + +/***********Landing page***************/ +/* line 8138, ../../../scss/_app_styles.scss */ +.about_us { + height: 300px; + background: #20ade0; +} + +/* line 8142, ../../../scss/_app_styles.scss */ +.analytics { + margin-top: 20px; +} + +/* line 8145, ../../../scss/_app_styles.scss */ +.square { + border: 4px solid #ffffff; + position: relative; + text-align: center; + width: 16%; + float: left; + height: 100%; + margin-left: 30px; +} + +/* line 8155, ../../../scss/_app_styles.scss */ +.square:after { + content: ""; + display: block; + padding-bottom: 100%; +} + +/* line 8161, ../../../scss/_app_styles.scss */ +.content { + position: absolute; + width: 100%; + height: 80%; + font-size: 2em; + padding-top: 20%; +} + +/* line 8174, ../../../scss/_app_styles.scss */ +.activity-slider { + font-family: Arial; + width: 800px; + display: block; + margin: 0 auto; +} + +/* line 8181, ../../../scss/_app_styles.scss */ +.activity-slider h3 { + background: #fff; + color: #3498db; + font-size: 36px; + line-height: 100px; + margin: 10px; + padding: 2%; + position: relative; + text-align: center; +} + +/*.action{ + display:block; + margin:100px auto; + width:100%; + text-align:center; +} +.action a { + display:inline-block; + padding:5px 10px; + background:#f30; + color:#fff; + text-decoration:none; +} +.action a:hover{ + background:#000; +}*/ +/* line 8208, ../../../scss/_app_styles.scss */ +.footer_link_cont h4 { + color: #999; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss index 7a982e46c6..dc43448fc7 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss @@ -564,10 +564,11 @@ body>footer { //change as per requirement on addition on more links in future max-height: 600px; } - h4{ + .flinks{ + font-size: 18px; color: #999; } - .social_links{ + .social_links a{ font-size: 24px; margin-right:5px; } @@ -8130,3 +8131,80 @@ $module-card-lines-to-show: 3; } } + + +/***********Landing page***************/ + + .about_us{ + height: 300px; + background: #20ade0; + } + .analytics{ + margin-top: 20px; + } + .square { + border: 4px solid #ffffff; + position: relative; + text-align: center; + width: 16%; + float:left; + height: 100%; + margin-left:30px; + } + + .square:after { + content: ""; + display: block; + padding-bottom: 100%; + } + + .content { + position: absolute; + width: 100%; + height: 80%; + + font-size: 2em; + padding-top: 20%; + } + + .linked-links{ + + } + +.activity-slider { + + font-family:Arial; + width:800px; + display:block; + margin:0 auto; +} +.activity-slider h3{ + background: #fff; + color: #3498db; + font-size: 36px; + line-height: 100px; + margin: 10px; + padding: 2%; + position: relative; + text-align: center; + } +/*.action{ + display:block; + margin:100px auto; + width:100%; + text-align:center; +} +.action a { + display:inline-block; + padding:5px 10px; + background:#f30; + color:#fff; + text-decoration:none; +} +.action a:hover{ + background:#000; +}*/ + +.footer_link_cont h4{ + color: #999; +} \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html index 73234c68d9..146cccd421 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html @@ -4,22 +4,6 @@ {% get_pages "Info page" as infopages %} -
    -
    -

    About US

    - -
    - -
    - - -
    -
    -

    Analytics Section

    - -
    - -
    @@ -29,7 +13,7 @@

    Analytics Section

    + + + {% endif %} {% else %} {% if title == "my desk" %} @@ -104,14 +107,17 @@

    Joined Workspaces & Enrolled Courses

  • {% include "ndf/card_group.html" with node=each_obj url_name="groupchange" first_arg=each_obj.pk no_enroll=True %}
  • - {% empty %} + + {% endfor %} + +

    You are not enrolled in any course!

    Explore
    - {% endfor %} - -
    + + + {% endif %} {% endif %}
    From 606e5b1e3c7dece646848cea25d9a69dee54d8de Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Wed, 4 Apr 2018 16:07:31 +0530 Subject: [PATCH 482/766] In Institutional Partners module added search functionality --- .../gnowsys_ndf/ndf/templates/ndf/header.html | 7 + .../ndf/templates/ndf/module_detail.html | 5 + gnowsys-ndf/gnowsys_ndf/ndf/views/module.py | 165 ++++++++++++------ 3 files changed, 128 insertions(+), 49 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html index 5186e67214..e745181e1e 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html @@ -702,6 +702,10 @@

    else if(window.location.pathname == "/home/topics/" | window.location.pathname == "/55ab34ff81fccb4f1d806025/topics/" | window.location.pathname == "/home/topics") { $('li.has-form').append("
    "); } + else if(window.location.pathname == "/55ab34ff81fccb4f1d806025/module/55d6ef7581fccb016e97ef82" | window.location.pathname == "/home/module/55d6ef7581fccb016e97ef82") { + $('li.has-form').append("
    "); + } + else{ $('li.has-form').append("
    "); @@ -758,6 +762,9 @@

    else if(window.location.pathname == "/home/topics/" | window.location.pathname == "/55ab34ff81fccb4f1d806025/topics/" | window.location.pathname == "/home/topics") { $('li.has-form').append("
    "); } + else if(window.location.pathname == "/55ab34ff81fccb4f1d806025/module/55d6ef7581fccb016e97ef82" | window.location.pathname == "/home/module/55d6ef7581fccb016e97ef82" ) { + $('li.has-form').append("
    "); + } else { $('li.has-form').append("
    "); diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/module_detail.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/module_detail.html index 1ecc0fcaf7..4eef989951 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/module_detail.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/module_detail.html @@ -64,6 +64,11 @@

    {% trans "Delete Unit:" %} {% firstof group_object.altnames group_object.nam

  • +{% if units_under_module_count == 0 %} +
    +

    Sorry, We couldn't find any results matching "{{ search_text|slice:"2:"|slice:"-2" }}"

    +
    +{% endif %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/module.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/module.py index 6962b2a55a..bd04f37bdb 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/module.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/module.py @@ -120,62 +120,125 @@ def module_detail(request, group_id, node_id,title=""): # # {'group_type': 'PUBLIC'} # ]}) + search_text = request.GET.get("search_text",None) + - gstaff_access = check_is_gstaff(group_id,request.user) - module_detail_query = {'_id': {'$in': module_obj.collection_set}, - 'status':'PUBLISHED' - } - - if module_obj.collection_set: - module_detail_query = {'_id': {'$in': module_obj.collection_set}, + if search_text: + search_text = ".*"+search_text+".*" + gstaff_access = check_is_gstaff(group_id,request.user) + module_detail_query = {'$or':[{'altnames':{'$regex' : search_text, '$options' : 'i'}},{'name':{'$regex' : search_text, '$options' : 'i'}}],'_id': {'$in': module_obj.collection_set}, 'status':'PUBLISHED' } - elif module_obj.post_node: - module_detail_query = {'_id': {'$in': module_obj.post_node}, + + if module_obj.collection_set: + module_detail_query = {'$or':[{'altnames':{'$regex' : search_text, '$options' : 'i'}},{'name':{'$regex' : search_text, '$options' : 'i'}}],'_id': {'$in': module_obj.collection_set}, + 'status':'PUBLISHED' + } + elif module_obj.post_node: + module_detail_query = {'$or':[{'altnames':{'$regex' : search_text, '$options' : 'i'}},{'name':{'$regex' : search_text, '$options' : 'i'}}],'_id': {'$in': module_obj.post_node}, + 'status':'PUBLISHED' + } + + + + if not gstaff_access: + module_detail_query.update({'$or': [ + {'$and': [ + {'member_of': gst_base_unit_id}, + {'$or': [ + {'created_by': request.user.id}, + {'group_admin': request.user.id}, + {'author_set': request.user.id}, + ]}, + {'altnames':{'$regex' : search_text, '$options' : 'i'}},{'name':{'$regex' : search_text, '$options' : 'i'}} + ]}, + {'member_of': gst_announced_unit_id} + ]}) + #'$or':[{'altnames':{'$regex' : search_text, '$options' : 'i'}},{'name':{'$regex' : search_text, '$options' : 'i'}}] + if title == "courses": + module_detail_query.update({'$or': [ + {'$and': [ + {'member_of': gst_announced_unit_id}, + {'$or': [ + {'created_by': request.user.id}, + {'group_admin': request.user.id}, + {'author_set': request.user.id}, + ]}, + {'altnames':{'$regex' : search_text, '$options' : 'i'}},{'name':{'$regex' : search_text, '$options' : 'i'}} + ]}, + {'member_of': gst_announced_unit_id } + ]}) + + + if title == "drafts": + module_detail_query.update({'$or': [ + {'$and': [ + {'member_of': gst_base_unit_id}, + {'$or': [ + {'created_by': request.user.id}, + {'group_admin': request.user.id}, + {'author_set': request.user.id}, + ]}, + {'altnames':{'$regex' : search_text, '$options' : 'i'}},{'name':{'$regex' : search_text, '$options' : 'i'}} + ]}, + ]}) + + else: + gstaff_access = check_is_gstaff(group_id,request.user) + module_detail_query = {'_id': {'$in': module_obj.collection_set}, 'status':'PUBLISHED' } - - - if not gstaff_access: - module_detail_query.update({'$or': [ - {'$and': [ - {'member_of': gst_base_unit_id}, - {'$or': [ - {'created_by': request.user.id}, - {'group_admin': request.user.id}, - {'author_set': request.user.id}, - ]} - ]}, - {'member_of': gst_announced_unit_id} - ]}) - - if title == "courses": - module_detail_query.update({'$or': [ - {'$and': [ - {'member_of': gst_announced_unit_id}, - {'$or': [ - {'created_by': request.user.id}, - {'group_admin': request.user.id}, - {'author_set': request.user.id}, - ]} - ]}, - {'member_of': gst_announced_unit_id } - ]}) + if module_obj.collection_set: + module_detail_query = {'_id': {'$in': module_obj.collection_set}, + 'status':'PUBLISHED' + } + elif module_obj.post_node: + module_detail_query = {'_id': {'$in': module_obj.post_node}, + 'status':'PUBLISHED' + } + - - if title == "drafts": - module_detail_query.update({'$or': [ - {'$and': [ - {'member_of': gst_base_unit_id}, - {'$or': [ - {'created_by': request.user.id}, - {'group_admin': request.user.id}, - {'author_set': request.user.id}, - ]} - ]}, - ]}) + + if not gstaff_access: + module_detail_query.update({'$or': [ + {'$and': [ + {'member_of': gst_base_unit_id}, + {'$or': [ + {'created_by': request.user.id}, + {'group_admin': request.user.id}, + {'author_set': request.user.id}, + ]} + ]}, + {'member_of': gst_announced_unit_id} + ]}) + + if title == "courses": + module_detail_query.update({'$or': [ + {'$and': [ + {'member_of': gst_announced_unit_id}, + {'$or': [ + {'created_by': request.user.id}, + {'group_admin': request.user.id}, + {'author_set': request.user.id}, + ]} + ]}, + {'member_of': gst_announced_unit_id } + ]}) + + + if title == "drafts": + module_detail_query.update({'$or': [ + {'$and': [ + {'member_of': gst_base_unit_id}, + {'$or': [ + {'created_by': request.user.id}, + {'group_admin': request.user.id}, + {'author_set': request.user.id}, + ]} + ]}, + ]}) # units_under_module = Node.get_nodes_by_ids_list(module_obj.collection_set) ''' @@ -188,12 +251,16 @@ def module_detail(request, group_id, node_id,title=""): ''' units_under_module = node_collection.find(module_detail_query).sort('last_update', -1) + units_under_module_count = units_under_module.count() template = 'ndf/module_detail.html' req_context = RequestContext(request, { 'title': title, 'node': module_obj, 'units_under_module': units_under_module, 'group_id': group_id, 'groupid': group_id, - 'card': 'ndf/event_card.html', 'card_url_name': 'groupchange' + 'card': 'ndf/event_card.html', 'card_url_name': 'groupchange', + 'search_text':search_text, + 'units_under_module_count':units_under_module_count + }) return render_to_response(template, req_context) From 83237a95eef4ee8b2f31a3e37de684e8f28b1289 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Wed, 4 Apr 2018 16:19:02 +0530 Subject: [PATCH 483/766] about us blog size reduced --- .../conf/locale/hi/LC_MESSAGES/django.po | 2439 ++++++++++++----- .../ndf/templates/ndf/landing_page_nroer.html | 9 +- 2 files changed, 1804 insertions(+), 644 deletions(-) diff --git a/gnowsys-ndf/conf/locale/hi/LC_MESSAGES/django.po b/gnowsys-ndf/conf/locale/hi/LC_MESSAGES/django.po index a0f5a2c633..f36d5a8282 100644 --- a/gnowsys-ndf/conf/locale/hi/LC_MESSAGES/django.po +++ b/gnowsys-ndf/conf/locale/hi/LC_MESSAGES/django.po @@ -2,17 +2,19 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-31 12:54+0530\n" +"POT-Creation-Date: 2018-04-04 15:32+0530\n" "PO-Revision-Date: 2018-02-26 02:58+0530\n" +"Last-Translator: \n" +"Language-Team: \n" "Language: hi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 2.0.6\n" -"Last-Translator: \n" -"Language-Team: \n" -#: gnowsys_ndf/ndf/templates/error_base.html:79 gnowsys_ndf/ndf/templates/ndf/gheader.html:87 gnowsys_ndf/ndf/templates/ndf/header.html:50 +#: gnowsys_ndf/ndf/templates/error_base.html:79 +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:87 +#: gnowsys_ndf/ndf/templates/ndf/header.html:52 msgid "Menu" msgstr "मेन्यू" @@ -28,31 +30,48 @@ msgstr "स्टूडियो" msgid "invalid captcha Try Again" msgstr "अमान्य कैप्चा, दोबारा प्रयास करें " -#: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:8 gnowsys_ndf/ndf/templates/ndf/beta.html:8 gnowsys_ndf/ndf/templates/ndf/file.html:291 -msgid "Files Listed below are already uploaded. Duplicate file uploads are not possible." +#: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:8 +#: gnowsys_ndf/ndf/templates/ndf/beta.html:8 +#: gnowsys_ndf/ndf/templates/ndf/file.html:291 +msgid "" +"Files Listed below are already uploaded. Duplicate file uploads are not " +"possible." msgstr "नीचे दी गई फ़ाइलें पहले ही अपलोड की जा चुकी हैं। डुप्लिकेट फ़ाइल अपलोड संभव नहीं है" -#: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:18 gnowsys_ndf/ndf/templates/ndf/beta.html:38 +#: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:18 +#: gnowsys_ndf/ndf/templates/ndf/beta.html:38 msgid "File Name" msgstr "फ़ाइल नाम" -#: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:19 gnowsys_ndf/ndf/templates/ndf/DocumentList.html:25 gnowsys_ndf/ndf/templates/ndf/card_group.html:64 gnowsys_ndf/ndf/templates/ndf/version_page.html:35 +#: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:19 +#: gnowsys_ndf/ndf/templates/ndf/DocumentList.html:25 +#: gnowsys_ndf/ndf/templates/ndf/card_group.html:64 +#: gnowsys_ndf/ndf/templates/ndf/version_page.html:35 msgid "View" msgstr "देखें" -#: gnowsys_ndf/ndf/templates/ndf/ImageDashboard.html:131 gnowsys_ndf/ndf/templates/ndf/course_event_group.html:148 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:524 gnowsys_ndf/ndf/templates/ndf/videoDashboard.html:131 -msgid "Only image files can be uploaded" +#: gnowsys_ndf/ndf/templates/ndf/ImageDashboard.html:131 +#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:148 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:524 +#: gnowsys_ndf/ndf/templates/ndf/videoDashboard.html:131 +#, fuzzy +msgid "Only image files can be uploaded!" msgstr "केवल इमेज फ़ाइलों को अपलोड किया जा सकता है" -#: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:90 gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:65 +#: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:90 +#: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:65 msgid "Editing Event:" msgstr "इवेंट संपादन" -#: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:93 gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:67 +#: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:93 +#: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:67 msgid "Create a New" msgstr "नया बनाएँ" -#: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:93 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:129 gnowsys_ndf/ndf/templates/ndf/mis_report.html:56 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:339 +#: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:93 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:129 +#: gnowsys_ndf/ndf/templates/ndf/mis_report.html:56 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:339 msgid "Event" msgstr "इवेंट" @@ -72,87 +91,182 @@ msgstr "शेष समय (मिनट में)" msgid "Alloted time (in minutes):" msgstr "सुनिश्चित अवधि (मिनट में)" -#: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:263 gnowsys_ndf/ndf/templates/ndf/mis_report.html:57 +#: gnowsys_ndf/ndf/templates/ndf/Nussd_event_Schedule.html:263 +#: gnowsys_ndf/ndf/templates/ndf/mis_report.html:57 msgid "Voluntary Teacher" msgstr "ऐच्छिक शिक्षक" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:41 gnowsys_ndf/ndf/templates/ndf/filehive.html:41 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:41 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:41 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:41 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:41 msgid "Uploading" msgstr "अपलोड हो रहा है" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:42 gnowsys_ndf/ndf/templates/ndf/filehive.html:42 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:42 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:42 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:42 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:42 msgid "You can upload files of any format to your group library." msgstr "समूह लाईब्रेरी में किसी भी प्रारूप में फाईल अपलोड कर सकते हैं" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:57 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:57 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:57 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:57 msgid "New File" msgstr "नई फ़ाइल" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:84 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:39 gnowsys_ndf/ndf/templates/ndf/action_panel.html:171 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:417 gnowsys_ndf/ndf/templates/ndf/file.html:229 gnowsys_ndf/ndf/templates/ndf/filehive.html:53 -#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:285 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:84 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:84 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:39 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:171 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:417 +#: gnowsys_ndf/ndf/templates/ndf/file.html:229 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:53 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:285 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:84 msgid "Upload File" msgstr "फ़ाइल अपलोड करें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:87 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:42 gnowsys_ndf/ndf/templates/ndf/filehive.html:55 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:87 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:87 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:42 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:55 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:87 msgid "Choose File" msgstr "फ़ाइल चुनें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:89 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:48 gnowsys_ndf/ndf/templates/ndf/filehive.html:57 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:89 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:89 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:48 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:57 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:89 msgid "Title of File" msgstr "फ़ाइल शीर्षक" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:94 gnowsys_ndf/ndf/templates/ndf/add_asset.html:189 gnowsys_ndf/ndf/templates/ndf/create_unit.html:92 gnowsys_ndf/ndf/templates/ndf/filehive.html:62 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:94 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:189 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:80 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:62 msgid "Select Language" msgstr "भाषा चुनें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:108 gnowsys_ndf/ndf/templates/ndf/filehive.html:77 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:108 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:108 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:77 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:108 msgid "Add Description" msgstr "विवरण जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:112 gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:124 gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:135 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:66 gnowsys_ndf/ndf/templates/ndf/course_create_note.html:21 gnowsys_ndf/ndf/templates/ndf/course_create_note.html:33 -#: gnowsys_ndf/ndf/templates/ndf/filehive.html:89 gnowsys_ndf/ndf/templates/ndf/filehive.html:100 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:112 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:124 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:135 gnowsys_ndf/ndf/templates/ndf/widget_tags.html:33 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:112 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:124 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:135 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:66 +#: gnowsys_ndf/ndf/templates/ndf/course_create_note.html:21 +#: gnowsys_ndf/ndf/templates/ndf/course_create_note.html:33 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:89 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:100 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:112 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:124 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:135 +#: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:33 #: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:45 msgid "Add Tag" msgstr "टैग जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:124 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:70 gnowsys_ndf/ndf/templates/ndf/course_create_note.html:21 gnowsys_ndf/ndf/templates/ndf/filehive.html:89 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:124 gnowsys_ndf/ndf/templates/ndf/widget_tags.html:33 -msgid "Tags help identify similiar work easily. Just add tag text and click on [Add Tag] button" -msgstr "टैग एक जैसे काम को आसानी से पहचानने में सहायता करता है। टैग टेक्स्ट जोड़ें और 'टैग जोड़ें' बटन पर क्लिक करें" - -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:131 gnowsys_ndf/ndf/templates/ndf/course_create_note.html:29 gnowsys_ndf/ndf/templates/ndf/filehive.html:96 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:131 gnowsys_ndf/ndf/templates/ndf/widget_tags.html:41 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:124 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:70 +#: gnowsys_ndf/ndf/templates/ndf/course_create_note.html:21 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:89 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:124 +#: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:33 +#, fuzzy +msgid "" +"Tags help identify similiar work easily. Just add tag text and click Add Tag " +"button" +msgstr "" +"टैग एक जैसे काम को आसानी से पहचानने में सहायता करता है। टैग टेक्स्ट जोड़ें और 'टैग जोड़ें' बटन " +"पर क्लिक करें" + +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:131 +#: gnowsys_ndf/ndf/templates/ndf/course_create_note.html:29 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:96 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:131 +#: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:41 msgid "Add tag text and click on [Add Tag] button" msgstr "टैग टेक्स्ट जोड़ें और 'टैग जोड़ें' बटन पर क्लिक करें" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:144 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:94 gnowsys_ndf/ndf/templates/ndf/filehive.html:109 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:144 gnowsys_ndf/ndf/templates/ndf/widget_tags.html:94 -msgid "Non empty tags can have only alphanumeric characters, dash(-) and spaces." +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:144 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:94 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:109 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:144 +#: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:94 +msgid "" +"Non empty tags can have only alphanumeric characters, dash(-) and spaces." msgstr "टैग में केवल अल्फ़ान्यूमेरिक वर्ण, डैश (-) और रिक्त स्थान का प्रयोग किया जा सकता है " -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:169 gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:182 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:134 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:89 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:96 -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:215 gnowsys_ndf/ndf/templates/ndf/filehive.html:134 gnowsys_ndf/ndf/templates/ndf/filehive.html:147 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:89 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:96 -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:222 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:100 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:107 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:169 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:182 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:169 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:182 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:134 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:89 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:96 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:215 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:134 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:147 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:89 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:96 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:222 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:100 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:107 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:169 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:182 msgid "Public" msgstr "सार्वजनिक" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:172 gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:186 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:136 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:92 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:99 -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:218 gnowsys_ndf/ndf/templates/ndf/filehive.html:137 gnowsys_ndf/ndf/templates/ndf/filehive.html:151 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:92 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:99 -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:225 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:103 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:110 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:177 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:172 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:172 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:186 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:136 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:92 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:99 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:218 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:137 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:151 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:92 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:99 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:225 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:103 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:110 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:177 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:172 #: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:186 msgid "Private" msgstr "निजी" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:199 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:273 gnowsys_ndf/ndf/templates/ndf/filehive.html:164 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:199 -msgid "Depending on the size of file/s and your Internet speed, upload process may take time. Please do not close this window." -msgstr "फ़ाइलों के आकार और आपकी इंटरनेट की गति के आधार पर, अपलोड प्रक्रिया को समय लग सकता है। कृपया इस विंडो को बंद न करें।" +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:199 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:273 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:164 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:199 +msgid "" +"Depending on the size of file/s and your Internet speed, upload process may " +"take time. Please do not close this window." +msgstr "" +"फ़ाइलों के आकार और आपकी इंटरनेट की गति के आधार पर, अपलोड प्रक्रिया को समय लग सकता है। " +"कृपया इस विंडो को बंद न करें।" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:201 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:274 gnowsys_ndf/ndf/templates/ndf/filehive.html:166 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:201 -msgid "Please upload videos in webm format. If you upload videos of other formats, it will take longer to publish them." -msgstr "कृपया वीडियो वेबएम प्रारूप में अपलोड करें। यदि आप किसी अन्य प्रारूप में वीडियो अपलोड करते हैं तो उनके प्रकाशन में अधिक समय लग सकता है।" +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:201 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:274 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:166 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:201 +msgid "" +"Please upload videos in webm format. If you upload videos of other formats, " +"it will take longer to publish them." +msgstr "" +"कृपया वीडियो वेबएम प्रारूप में अपलोड करें। यदि आप किसी अन्य प्रारूप में वीडियो अपलोड करते " +"हैं तो उनके प्रकाशन में अधिक समय लग सकता है।" -#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:205 gnowsys_ndf/ndf/templates/ndf/Upload_File.html:290 gnowsys_ndf/ndf/templates/ndf/filehive.html:170 gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:205 +#: gnowsys_ndf/ndf/templates/ndf/UploadDoc.html:205 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:290 +#: gnowsys_ndf/ndf/templates/ndf/filehive.html:170 +#: gnowsys_ndf/ndf/templates/ndf/uploadjhapp.html:205 msgid "You are not an authorised user. Please login to upload files." msgstr "आप अधिकृत उपयोगकर्ता नहीं हैं। कृपया फाईल अपलोड करने से पहले लॉगिन करें।" -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:57 gnowsys_ndf/ndf/templates/ndf/file_statistics.html:68 gnowsys_ndf/ndf/templates/ndf/visualize.html:168 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:57 +#: gnowsys_ndf/ndf/templates/ndf/file_statistics.html:68 +#: gnowsys_ndf/ndf/templates/ndf/visualize.html:168 msgid "Details" msgstr "विवरण" @@ -160,14 +274,33 @@ msgstr "विवरण" msgid "Add one tag at a time" msgstr "एक समय में एक टैग जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:78 gnowsys_ndf/ndf/templates/ndf/buddy.html:76 gnowsys_ndf/ndf/templates/ndf/event.html:58 gnowsys_ndf/ndf/templates/ndf/event.html:64 gnowsys_ndf/ndf/templates/ndf/mis_base.html:63 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:343 -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:362 gnowsys_ndf/ndf/templates/ndf/resource_view.html:37 gnowsys_ndf/ndf/templates/ndf/shelf.html:14 gnowsys_ndf/ndf/templates/ndf/unit_structure.html:19 gnowsys_ndf/ndf/templates/ndf/unit_structure.html:23 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:78 +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:76 +#: gnowsys_ndf/ndf/templates/ndf/event.html:58 +#: gnowsys_ndf/ndf/templates/ndf/event.html:64 +#: gnowsys_ndf/ndf/templates/ndf/mis_base.html:63 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:343 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:362 +#: gnowsys_ndf/ndf/templates/ndf/resource_view.html:37 +#: gnowsys_ndf/ndf/templates/ndf/shelf.html:14 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:19 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:23 msgid "Add" msgstr "जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:127 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:125 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:241 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:386 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:391 -#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:137 gnowsys_ndf/ndf/templates/ndf/location_widget.html:4 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:310 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:279 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:125 -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:248 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:133 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:197 +#: gnowsys_ndf/ndf/templates/ndf/Upload_File.html:127 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:125 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:241 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:386 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:391 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:137 +#: gnowsys_ndf/ndf/templates/ndf/location_widget.html:4 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:310 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:279 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:125 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:248 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:133 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:197 msgid "Add Location" msgstr "लोकेशन जोड़ें" @@ -192,18 +325,28 @@ msgid "What constitutes OER" msgstr "ओईआर क्या है " #: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:20 -msgid "You can upload files of any format in group library" +#, fuzzy +msgid "You can upload files of any format" msgstr "समूह लाईब्रेरी में किसी भी प्रारूप में फाईल अपलोड कर सकते हैं" #: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:24 -msgid "All files get uploaded under the CC BY-SA licence (This license lets others remix, tweak, and build upon your work even for commercial purposes, as long as they credit you and license their new creations under the identical terms) unless you chose a different licence" -msgstr "CC BY-SA लाइसेंस के तहत सभी फाइलें अपलोड की जा रही हैं। यह लाइसेंस दूसरों को रीमिक्स, ट्विक करने और व्यावसायिक कार्यों के लिए भी अपने काम का निर्माण करने की अनुमति देता है, जब तक कि आप एक अलग लाइसेंस नहीं चुनते हैं, तब तक इसका प्रयोग करके नया काम तैयार कर सकते हैं। " +msgid "" +"All files get uploaded under the CC BY-SA licence (This license lets others " +"remix, tweak, and build upon your work even for commercial purposes, as long " +"as they credit you and license their new creations under the identical " +"terms) unless you chose a different licence" +msgstr "" +"CC BY-SA लाइसेंस के तहत सभी फाइलें अपलोड की जा रही हैं। यह लाइसेंस दूसरों को रीमिक्स, " +"ट्विक करने और व्यावसायिक कार्यों के लिए भी अपने काम का निर्माण करने की अनुमति देता है, " +"जब तक कि आप एक अलग लाइसेंस नहीं चुनते हैं, तब तक इसका प्रयोग करके नया काम तैयार कर सकते " +"हैं। " #: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:27 msgid "Please visit" msgstr "कृपया अवश्य पधारें " -#: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:27 gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:26 +#: gnowsys_ndf/ndf/templates/ndf/Uploader_Form.html:27 +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:26 msgid "and" msgstr "और" @@ -211,35 +354,68 @@ msgstr "और" msgid "to learn more about licenses" msgstr "लाइसेंस के बारे में अधिक जानकारी के लिए" -#: gnowsys_ndf/ndf/templates/ndf/User_Activity.html:9 gnowsys_ndf/ndf/templates/ndf/lms.html:119 +#: gnowsys_ndf/ndf/templates/ndf/User_Activity.html:9 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:115 msgid "Activities" msgstr "क्रियाकलाप" -#: gnowsys_ndf/ndf/templates/ndf/User_Activity.html:66 gnowsys_ndf/ndf/templates/ndf/uDashboard.html:204 +#: gnowsys_ndf/ndf/templates/ndf/User_Activity.html:66 +#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:204 msgid "No Recent Activities" msgstr "हाल ही में कोई क्रियाकलाप नहीं है" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:82 gnowsys_ndf/ndf/templates/ndf/activity_player.html:349 gnowsys_ndf/ndf/templates/ndf/admin_fields.html:57 gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:30 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:335 -#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:337 gnowsys_ndf/ndf/templates/ndf/data_review_tbody.html:12 gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:59 gnowsys_ndf/ndf/templates/ndf/gevent_base.html:149 gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:118 gnowsys_ndf/ndf/templates/ndf/lms.html:205 -#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:182 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:184 gnowsys_ndf/ndf/templates/ndf/moderation_data_review.html:47 gnowsys_ndf/ndf/templates/ndf/unit_structure.html:287 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:82 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:354 +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:57 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:30 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:335 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:337 +#: gnowsys_ndf/ndf/templates/ndf/data_review_tbody.html:12 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:59 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:149 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:118 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:197 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:182 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:184 +#: gnowsys_ndf/ndf/templates/ndf/moderation_data_review.html:47 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:287 msgid "Yes" msgstr "हाँ" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:85 gnowsys_ndf/ndf/templates/ndf/activity_player.html:350 gnowsys_ndf/ndf/templates/ndf/admin_fields.html:58 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:341 gnowsys_ndf/ndf/templates/ndf/data_review_tbody.html:13 -#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:60 gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:121 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:188 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:190 gnowsys_ndf/ndf/templates/ndf/moderation_data_review.html:48 -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:134 gnowsys_ndf/ndf/templates/ndf/unit_structure.html:290 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:85 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:355 +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:58 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:341 +#: gnowsys_ndf/ndf/templates/ndf/data_review_tbody.html:13 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:60 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:121 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:188 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:190 +#: gnowsys_ndf/ndf/templates/ndf/moderation_data_review.html:48 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:134 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:290 msgid "No" msgstr "नहीं" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:110 gnowsys_ndf/ndf/templates/ndf/action_panel.html:112 gnowsys_ndf/ndf/templates/ndf/action_panel.html:118 gnowsys_ndf/ndf/templates/ndf/action_panel.html:122 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:110 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:112 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:118 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:122 msgid " Edit" msgstr "संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:124 gnowsys_ndf/ndf/templates/ndf/action_panel.html:129 gnowsys_ndf/ndf/templates/ndf/action_panel.html:167 gnowsys_ndf/ndf/templates/ndf/action_panel.html:191 gnowsys_ndf/ndf/templates/ndf/action_panel.html:450 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:124 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:129 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:167 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:191 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:450 msgid "You are not authorized for this action" msgstr "आप इस एक्शन के लिए अधिकृत नहीं हैं" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:139 gnowsys_ndf/ndf/templates/ndf/action_panel.html:141 gnowsys_ndf/ndf/templates/ndf/mis_details.html:420 gnowsys_ndf/ndf/templates/ndf/mis_details.html:425 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:139 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:141 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:420 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:425 msgid "Publish" msgstr "प्रकाशित" @@ -251,14 +427,34 @@ msgstr "नियंत्रण" msgid "Published" msgstr "प्रकाशित" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:158 gnowsys_ndf/ndf/templates/ndf/version_page.html:39 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:158 +#: gnowsys_ndf/ndf/templates/ndf/version_page.html:39 msgid "History" msgstr "इतिहास" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:162 gnowsys_ndf/ndf/templates/ndf/action_panel.html:164 gnowsys_ndf/ndf/templates/ndf/action_panel.html:167 gnowsys_ndf/ndf/templates/ndf/action_panel.html:348 gnowsys_ndf/ndf/templates/ndf/buddy.html:86 gnowsys_ndf/ndf/templates/ndf/course_detail.html:77 -#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:112 gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:29 gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:17 gnowsys_ndf/ndf/templates/ndf/discussion.html:88 gnowsys_ndf/ndf/templates/ndf/discussion.html:270 gnowsys_ndf/ndf/templates/ndf/forumdetails.html:123 -#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:149 gnowsys_ndf/ndf/templates/ndf/gevent_base.html:70 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:109 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:126 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:117 -#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:60 gnowsys_ndf/ndf/templates/ndf/lms.html:198 gnowsys_ndf/ndf/templates/ndf/note_page.html:79 gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:304 gnowsys_ndf/ndf/templates/ndf/replytwistrep.html:174 gnowsys_ndf/ndf/templates/ndf/thread_details.html:102 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:162 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:164 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:167 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:348 +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:86 +#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:77 +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:112 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:89 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:17 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:88 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:270 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:123 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:149 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:70 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:109 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:126 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:118 +#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:60 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:190 +#: gnowsys_ndf/ndf/templates/ndf/note_page.html:79 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:304 +#: gnowsys_ndf/ndf/templates/ndf/replytwistrep.html:174 +#: gnowsys_ndf/ndf/templates/ndf/thread_details.html:102 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:526 msgid "Delete" msgstr "डिलीट" @@ -267,11 +463,16 @@ msgstr "डिलीट" msgid "Publish this resource in other group/s" msgstr "इस संसाधन को अन्य समूह में प्रकाशित करें" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:179 gnowsys_ndf/ndf/templates/ndf/action_panel.html:191 gnowsys_ndf/ndf/templates/ndf/add_asset.html:62 gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:4 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:179 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:191 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:62 +#: gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:4 msgid "Cross Publish" msgstr "क्रॉस प्रकाशित करें" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:182 gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:59 gnowsys_ndf/ndf/templates/ndf/mis_details.html:455 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:182 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:59 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:455 msgid "Select Groups" msgstr "समूह चुनें" @@ -283,11 +484,16 @@ msgstr "चयनित समूह सेव करें " msgid "keyword or label to categorize" msgstr "वर्गीकृत करने के लिए कीवर्ड या लेबल" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:235 gnowsys_ndf/ndf/templates/ndf/card.html:51 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:407 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:295 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:235 +#: gnowsys_ndf/ndf/templates/ndf/card.html:51 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:407 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:295 msgid "Tags" msgstr "टैग्स" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:249 gnowsys_ndf/ndf/templates/ndf/course_about.html:124 gnowsys_ndf/ndf/templates/ndf/ggallerymodal.html:114 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:249 +#: gnowsys_ndf/ndf/templates/ndf/course_about.html:124 +#: gnowsys_ndf/ndf/templates/ndf/ggallerymodal.html:114 msgid "No tags defined yet!" msgstr "कोई टैग अभी तक परिभाषित नहीं है" @@ -311,7 +517,11 @@ msgstr "रेटिंग" msgid "Click to view the location" msgstr "लोकेशन देखने के लिए क्ल्कि करें" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:277 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:214 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:218 gnowsys_ndf/ndf/templates/ndf/mis_details.html:133 gnowsys_ndf/ndf/templates/ndf/wikidata.html:107 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:277 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:214 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:218 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:133 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:107 msgid "Location" msgstr "लोकेशन " @@ -319,15 +529,22 @@ msgstr "लोकेशन " msgid "Graphs" msgstr "ग्राफ" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:300 gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:222 gnowsys_ndf/ndf/templates/ndf/mis_details.html:126 gnowsys_ndf/ndf/templates/ndf/wikidata.html:98 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:300 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:222 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:126 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:98 msgid "Collection Graph" msgstr "संग्रह ग्राफ" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:304 gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:225 gnowsys_ndf/ndf/templates/ndf/mis_details.html:129 gnowsys_ndf/ndf/templates/ndf/wikidata.html:101 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:304 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:225 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:129 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:101 msgid "Dependency Graph" msgstr "निर्भरता ग्राफ" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:311 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:129 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:311 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:129 msgid "Help" msgstr "सहायता" @@ -343,7 +560,8 @@ msgstr "नया बनायें" msgid "New Partner" msgstr "नए पार्टर्नस" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:344 gnowsys_ndf/ndf/templates/ndf/group.html:51 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:344 +#: gnowsys_ndf/ndf/templates/ndf/group.html:51 msgid "New Group" msgstr "नया समूह" @@ -355,8 +573,15 @@ msgstr "डिलीट पाटनर्स" msgid "Delete Group" msgstr "डिलीट समूह " -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:362 gnowsys_ndf/ndf/templates/ndf/action_panel.html:366 gnowsys_ndf/ndf/templates/ndf/action_panel.html:370 gnowsys_ndf/ndf/templates/ndf/action_panel.html:373 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:126 -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:254 gnowsys_ndf/ndf/templates/ndf/partner_list.html:37 gnowsys_ndf/ndf/templates/ndf/task.html:64 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:187 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:362 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:366 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:370 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:373 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:126 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:254 +#: gnowsys_ndf/ndf/templates/ndf/partner_list.html:37 +#: gnowsys_ndf/ndf/templates/ndf/task.html:64 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:187 msgid "New" msgstr "नया" @@ -364,7 +589,8 @@ msgstr "नया" msgid "New Sub Partner" msgstr "नया सब-पार्टनर" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:395 gnowsys_ndf/ndf/templates/ndf/module_detail.html:36 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:395 +#: gnowsys_ndf/ndf/templates/ndf/module_detail.html:36 msgid "New SubGroup" msgstr "नया उप-समूह" @@ -380,11 +606,16 @@ msgstr "कार्यक्रम" msgid "Unsubscribe" msgstr "सदस्यता रद्द" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:440 gnowsys_ndf/ndf/templates/ndf/action_panel.html:450 gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:32 gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:49 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:440 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:450 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:32 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:49 msgid "Join" msgstr "शामिल हों" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:447 gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:30 gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:45 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:447 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:30 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:45 msgid "Joined" msgstr "शामिल हो गए" @@ -392,72 +623,109 @@ msgstr "शामिल हो गए" msgid "You are already a member of this group" msgstr "आप पहले से ही इस समूह का सदस्य हैं" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:474 gnowsys_ndf/ndf/templates/ndf/under_moderation.html:23 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:474 +#: gnowsys_ndf/ndf/templates/ndf/under_moderation.html:23 msgid "Moderate Resources" msgstr "नियंत्रित संसाधन" -#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:480 gnowsys_ndf/ndf/templates/ndf/program_event_group.html:18 +#: gnowsys_ndf/ndf/templates/ndf/action_panel.html:480 +#: gnowsys_ndf/ndf/templates/ndf/program_event_group.html:18 msgid "Moderation Status" msgstr "मॉडरेशन स्टेटस " -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:76 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:81 msgid "Write Note" msgstr "नोट लिखें " -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:81 gnowsys_ndf/ndf/templates/ndf/activity_player.html:153 gnowsys_ndf/ndf/templates/ndf/activity_player.html:225 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:86 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:158 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:230 msgid "Previous Lesson" msgstr "पिछला पाठ" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:88 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:93 msgid "PREV" msgstr "पिछला" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:93 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:98 msgid "OF" msgstr "का" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:97 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:102 msgid "NEXT" msgstr "अगला " -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:104 gnowsys_ndf/ndf/templates/ndf/activity_player.html:162 gnowsys_ndf/ndf/templates/ndf/activity_player.html:234 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:109 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:167 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:239 msgid "Next Lesson" msgstr "अगला पाठ" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:156 gnowsys_ndf/ndf/templates/ndf/activity_player.html:228 gnowsys_ndf/ndf/templates/ndf/unit_player.html:37 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:161 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:233 +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:37 msgid "Previous Activity" msgstr "पिछला क्रियाकलाप" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:159 gnowsys_ndf/ndf/templates/ndf/activity_player.html:231 gnowsys_ndf/ndf/templates/ndf/unit_player.html:85 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:164 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:236 +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:85 msgid "Next Activity" msgstr "अगला क्रियाकलाप" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:168 gnowsys_ndf/ndf/templates/ndf/activity_player.html:240 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:173 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:245 msgid "Write a new Note" msgstr "एक नया नोट लिखें" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:291 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:296 msgid "Student Help" msgstr "छात्रा सहायता" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:294 +#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:299 msgid "Teacher's Help" msgstr "शिक्षक सहायता" -#: gnowsys_ndf/ndf/templates/ndf/activity_player.html:299 gnowsys_ndf/ndf/templates/ndf/gevent_base.html:105 gnowsys_ndf/ndf/templates/ndf/mis_details.html:134 gnowsys_ndf/ndf/templates/ndf/wikidata.html:110 -msgid "Discuss" -msgstr "परिचर्चा" - -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:45 gnowsys_ndf/ndf/templates/ndf/course_pages.html:38 gnowsys_ndf/ndf/templates/ndf/file.html:221 gnowsys_ndf/ndf/templates/ndf/list_themes.html:35 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:45 +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:38 +#: gnowsys_ndf/ndf/templates/ndf/file.html:221 +#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:35 msgid "Actions" msgstr "एक्शन" -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:50 gnowsys_ndf/ndf/templates/ndf/add_asset.html:107 gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:70 gnowsys_ndf/ndf/templates/ndf/batch_detail.html:19 gnowsys_ndf/ndf/templates/ndf/course_details.html:50 gnowsys_ndf/ndf/templates/ndf/course_details.html:144 -#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:42 gnowsys_ndf/ndf/templates/ndf/curriculum.html:381 gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:30 gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:18 gnowsys_ndf/ndf/templates/ndf/curriculum_resources_listing.html:20 -#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:121 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:136 gnowsys_ndf/ndf/templates/ndf/forumdetails.html:116 gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:149 gnowsys_ndf/ndf/templates/ndf/gevent_base.html:44 -#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:130 gnowsys_ndf/ndf/templates/ndf/gtask_details.html:34 gnowsys_ndf/ndf/templates/ndf/gtask_details.html:161 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:121 gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:111 -#: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:115 gnowsys_ndf/ndf/templates/ndf/mis_details.html:446 gnowsys_ndf/ndf/templates/ndf/mis_details.html:469 gnowsys_ndf/ndf/templates/ndf/mis_list.html:263 gnowsys_ndf/ndf/templates/ndf/module_detail.html:33 gnowsys_ndf/ndf/templates/ndf/note_page.html:78 -#: gnowsys_ndf/ndf/templates/ndf/quiz.html:84 gnowsys_ndf/ndf/templates/ndf/quiz_details.html:124 gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:5 gnowsys_ndf/ndf/templates/ndf/task_details.html:58 gnowsys_ndf/ndf/templates/ndf/theme.html:381 gnowsys_ndf/ndf/templates/ndf/translate_detail.html:16 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:50 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:107 +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:70 +#: gnowsys_ndf/ndf/templates/ndf/batch_detail.html:19 +#: gnowsys_ndf/ndf/templates/ndf/course_details.html:50 +#: gnowsys_ndf/ndf/templates/ndf/course_details.html:144 +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:42 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:381 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:90 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:18 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_resources_listing.html:20 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:121 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:136 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:116 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:149 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:44 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:130 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:34 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:161 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:122 +#: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:111 +#: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:115 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:446 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:469 +#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:263 +#: gnowsys_ndf/ndf/templates/ndf/module_detail.html:33 +#: gnowsys_ndf/ndf/templates/ndf/note_page.html:78 +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:84 +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:124 +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:5 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:58 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:381 +#: gnowsys_ndf/ndf/templates/ndf/translate_detail.html:19 #: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:43 msgid "Edit" msgstr "संपादित करें" @@ -472,7 +740,8 @@ msgstr "मेटाडाटा जोड़ें" msgid " View Metadata" msgstr "मेटाडाटा देखें" -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:67 gnowsys_ndf/ndf/templates/ndf/add_asset.html:71 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:67 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:71 msgid "Delete Asset" msgstr "एसेट डिलीट करें " @@ -488,7 +757,7 @@ msgstr "फाइल जोड़ें" #: gnowsys_ndf/ndf/templates/ndf/add_asset.html:80 #, fuzzy -msgid "Add page" +msgid "Add page" msgstr "पृष्ठ जोड़ें" #: gnowsys_ndf/ndf/templates/ndf/add_asset.html:105 @@ -496,7 +765,8 @@ msgstr "पृष्ठ जोड़ें" msgid "Add a new" msgstr "नया पृष्ठ जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:110 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:95 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:110 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:95 #, fuzzy msgid "Resource" msgstr "संसाधन" @@ -511,9 +781,19 @@ msgstr "फोल्डर" msgid "Asset" msgstr "एसेट" -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:118 gnowsys_ndf/ndf/templates/ndf/add_asset.html:231 gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:341 gnowsys_ndf/ndf/templates/ndf/edit_forum.html:126 gnowsys_ndf/ndf/templates/ndf/gtask_details.html:258 gnowsys_ndf/ndf/templates/ndf/gtask_details.html:271 -#: gnowsys_ndf/ndf/templates/ndf/replyforum.html:103 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:322 gnowsys_ndf/ndf/templates/ndf/task_details.html:282 gnowsys_ndf/ndf/templates/ndf/task_details.html:295 gnowsys_ndf/ndf/templates/ndf/unit_structure.html:345 gnowsys_ndf/ndf/templates/ndf/unit_structure.html:347 -#: gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:19 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:118 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:233 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:341 +#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:126 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:258 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:271 +#: gnowsys_ndf/ndf/templates/ndf/replyforum.html:103 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:322 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:282 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:295 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:345 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:347 +#: gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:21 msgid "Save" msgstr "सेव करें" @@ -556,26 +836,33 @@ msgstr "एसेट का विवरण" msgid "Add tags:" msgstr "टैग जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:218 -msgid "Mark as Raw Material" -msgstr "रॉ मटीरियल के रूप में चिह्नित करें" +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:219 +#, fuzzy +msgid "Mark as Resource" +msgstr "नियंत्रित संसाधन" -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:243 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:246 #, fuzzy msgid "Enter File Name" msgstr "फ़ाइल का नाम डालें" -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:252 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:253 #, fuzzy msgid "Enter File Description" msgstr "फ़ाइल का विवरण डालें " -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:255 gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:117 gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:144 gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:168 gnowsys_ndf/ndf/templates/ndf/beta.html:25 -#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:121 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:226 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:256 +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:117 +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:144 +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:168 +#: gnowsys_ndf/ndf/templates/ndf/beta.html:25 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:121 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:226 msgid "Upload" msgstr "अपलोड" -#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:272 gnowsys_ndf/ndf/templates/ndf/file.html:262 +#: gnowsys_ndf/ndf/templates/ndf/add_asset.html:275 +#: gnowsys_ndf/ndf/templates/ndf/file.html:262 #, fuzzy msgid "Delete Files" msgstr "डिलीट" @@ -584,17 +871,32 @@ msgstr "डिलीट" msgid "Add Internal Image" msgstr "आंतरिक इमेज जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 gnowsys_ndf/ndf/templates/ndf/add_editor.html:262 gnowsys_ndf/ndf/templates/ndf/image_detail.html:4 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:349 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:247 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:262 +#: gnowsys_ndf/ndf/templates/ndf/image_detail.html:4 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:349 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:247 msgid "Image" msgstr "इमेज" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 gnowsys_ndf/ndf/templates/ndf/add_editor.html:262 gnowsys_ndf/ndf/templates/ndf/card.html:43 gnowsys_ndf/ndf/templates/ndf/create_event_group.html:385 gnowsys_ndf/ndf/templates/ndf/create_group.html:301 gnowsys_ndf/ndf/templates/ndf/gtask_details.html:265 -#: gnowsys_ndf/ndf/templates/ndf/task_details.html:289 gnowsys_ndf/ndf/templates/ndf/translation_page.html:76 gnowsys_ndf/ndf/templates/ndf/translation_page.html:111 gnowsys_ndf/ndf/templates/ndf/translation_page.html:175 gnowsys_ndf/ndf/templates/ndf/translation_page.html:197 -#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:332 gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:41 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:262 +#: gnowsys_ndf/ndf/templates/ndf/card.html:43 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:385 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:301 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:265 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:289 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:76 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:111 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:175 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:197 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:332 +#: gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:41 msgid "Description" msgstr "विवरण" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 gnowsys_ndf/ndf/templates/ndf/add_editor.html:263 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:263 msgid "Some description" msgstr "कुछ विवरण" @@ -602,7 +904,8 @@ msgstr "कुछ विवरण" msgid "Width" msgstr "चौड़ाई" -#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 gnowsys_ndf/ndf/templates/ndf/add_editor.html:265 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:177 +#: gnowsys_ndf/ndf/templates/ndf/add_editor.html:265 msgid "Enter width in pixel eg.600" msgstr "चौड़ाई पिक्सेल में दर्ज करें जैसे 600" @@ -650,15 +953,25 @@ msgstr "प्रकार" msgid "Author" msgstr "निर्माता" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:127 gnowsys_ndf/ndf/templates/ndf/curriculum.html:379 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:120 gnowsys_ndf/ndf/templates/ndf/list_themes.html:32 gnowsys_ndf/ndf/templates/ndf/theme.html:379 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:127 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:379 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:120 +#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:32 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:379 msgid "Creation date" msgstr "निर्माण तिथि" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:129 gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:94 gnowsys_ndf/ndf/templates/ndf/wikidata.html:207 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:129 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:94 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:207 msgid "Member of" msgstr "सदस्य" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:130 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:59 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:110 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:59 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:57 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:130 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:59 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:110 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:59 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:57 msgid "Collection" msgstr "संग्रह" @@ -670,32 +983,51 @@ msgstr "ऐट्रीब्यूट टाइप सेट" msgid "RelationType_set" msgstr "रिलेशन टाइप सेट" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:199 gnowsys_ndf/ndf/templates/ndf/curriculum.html:404 gnowsys_ndf/ndf/templates/ndf/list_themes.html:57 gnowsys_ndf/ndf/templates/ndf/quiz.html:85 gnowsys_ndf/ndf/templates/ndf/theme.html:404 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:199 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:404 +#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:57 +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:85 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:404 msgid "Translate" msgstr "अनुवाद करें" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:215 gnowsys_ndf/ndf/templates/ndf/curriculum.html:261 gnowsys_ndf/ndf/templates/ndf/mis_details.html:122 gnowsys_ndf/ndf/templates/ndf/theme.html:261 gnowsys_ndf/ndf/templates/ndf/wikidata.html:94 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:215 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:261 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:122 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:261 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:94 msgid "Graph" msgstr "ग्राफ" -#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:219 gnowsys_ndf/ndf/templates/ndf/mis_details.html:124 gnowsys_ndf/ndf/templates/ndf/wikidata.html:96 +#: gnowsys_ndf/ndf/templates/ndf/adminDashboard.html:219 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:124 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:96 msgid "Concept Graph" msgstr "संकल्पना ग्राफ" -#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:56 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:329 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:331 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:365 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:367 -#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:58 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:176 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:178 +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:56 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:329 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:331 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:365 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:367 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:58 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:176 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:178 msgid "Unknown" msgstr "अज्ञात" -#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:66 gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:74 +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:66 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:74 msgid "PUBLISHED" msgstr "प्रकाशित" -#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:67 gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:75 +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:67 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:75 msgid "DRAFT" msgstr "प्रारूप" -#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:68 gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:76 +#: gnowsys_ndf/ndf/templates/ndf/admin_fields.html:68 +#: gnowsys_ndf/ndf/templates/ndf/fetch_fields.html:76 msgid "HIDDEN" msgstr "छिपा हुआ" @@ -703,33 +1035,72 @@ msgstr "छिपा हुआ" msgid "Underlying Moderation Groups:" msgstr "अंडरलाईन मोडरेशन ग्रुप" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:7 gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:60 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:7 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:60 msgid "Course Announcement " msgstr "कोर्स की घोषणा" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:58 gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:69 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:58 +#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:69 #, python-format msgid " Editing %(title_var)s: %(node_name)s " msgstr "संपादन %(title_var)s:%(node_name)s" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:68 gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:75 gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:88 gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:22 gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:22 -#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:22 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:109 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:68 +#: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:75 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:88 +#: gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:22 +#: gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:22 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:22 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:109 msgid "Fill" msgstr "भरें" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:74 gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:81 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:74 +#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:81 #, python-format msgid " %(tab_name)s " msgstr "टैब _ नाम:%(tab_name)s" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:92 gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:101 gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:192 gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:217 -#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:251 gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:262 gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:275 gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:288 gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:297 -#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:47 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:59 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:71 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:87 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:99 -#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:111 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:137 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:203 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:251 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:264 -#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:279 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:292 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:307 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:320 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:335 -#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:202 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:134 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:146 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:158 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:174 -#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:186 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:198 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:278 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:311 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:324 -#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:339 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:352 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:367 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:380 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:395 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:92 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:101 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:192 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:217 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:251 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:262 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:275 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:288 +#: gnowsys_ndf/ndf/templates/ndf/create_course_structure.html:297 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:47 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:59 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:71 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:87 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:99 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:111 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:137 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:203 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:251 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:264 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:279 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:292 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:307 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:320 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:335 +#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:202 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:134 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:146 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:158 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:174 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:186 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:198 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:278 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:311 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:324 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:339 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:352 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:367 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:380 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:395 #: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:427 #, python-format msgid " %(label_val)s " @@ -743,11 +1114,16 @@ msgstr "के लिए घोषणा" msgid "Course Period" msgstr "कोर्स कालांश" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:140 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:279 gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:143 gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:182 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:140 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:279 +#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:143 +#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:182 msgid "From" msgstr "से" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:148 gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:153 gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:192 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:148 +#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:153 +#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:192 msgid "To" msgstr "तक" @@ -759,7 +1135,8 @@ msgstr "संस्था में घोषणा" msgid "Select University" msgstr "विश्वविद्यालय चुनें" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:176 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:482 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:176 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:482 msgid "- - - Select University - - -" msgstr "विश्वविद्यालय चुनें" @@ -767,24 +1144,51 @@ msgstr "विश्वविद्यालय चुनें" msgid "Please select University" msgstr "कृपया विश्वविद्यालय चुनें" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:717 gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:217 gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:175 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:392 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:409 -#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:612 gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:275 gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:297 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:207 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:224 -#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:680 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:1270 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:717 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:217 +#: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:175 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:392 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:409 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:612 +#: gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:275 +#: gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:297 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:207 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:224 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:680 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:1270 msgid "Next" msgstr "आगे" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:723 gnowsys_ndf/ndf/templates/ndf/course_detail.html:75 gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:75 gnowsys_ndf/ndf/templates/ndf/gevent_base.html:56 gnowsys_ndf/ndf/templates/ndf/lms.html:185 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:723 +#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:75 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:75 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:56 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:177 msgid "Announce" msgstr "घोषणा करें" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:726 gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:184 gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:621 gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:284 gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:306 -#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:689 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:1279 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:726 +#: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:184 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:621 +#: gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:284 +#: gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:306 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:689 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:1279 msgid "Update" msgstr "अपडेट" -#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:735 gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:160 gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:193 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:388 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:402 -#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:630 gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:293 gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:315 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:203 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:217 -#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:698 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:1288 +#: gnowsys_ndf/ndf/templates/ndf/announced_course_create_edit.html:735 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:160 +#: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:193 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:388 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:402 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:630 +#: gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:293 +#: gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:315 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:203 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:217 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:698 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:1288 msgid "Previous" msgstr "पिछला" @@ -841,7 +1245,10 @@ msgstr "लिंक /संबंधित फाइल जोड़ें" msgid "Add Alternate File" msgstr "वैकल्पिक फाइल जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:62 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:339 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:358 gnowsys_ndf/ndf/templates/ndf/resource_view.html:33 +#: gnowsys_ndf/ndf/templates/ndf/asset_content_detail.html:62 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:339 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:358 +#: gnowsys_ndf/ndf/templates/ndf/resource_view.html:33 #, fuzzy msgid "Add Transcript" msgstr "लिप्यन्तर जोड़ें" @@ -870,7 +1277,9 @@ msgstr "भाषा चुनें" msgid "--- Select Alternate Type ---" msgstr "वैकल्पिक प्रकार का चयन करें" -#: gnowsys_ndf/ndf/templates/ndf/assets.html:41 gnowsys_ndf/ndf/templates/ndf/assets.html:46 gnowsys_ndf/ndf/templates/ndf/assets.html:51 +#: gnowsys_ndf/ndf/templates/ndf/assets.html:41 +#: gnowsys_ndf/ndf/templates/ndf/assets.html:46 +#: gnowsys_ndf/ndf/templates/ndf/assets.html:51 #, fuzzy msgid "Add Folder" msgstr "फोल्डर जोड़ें" @@ -879,11 +1288,13 @@ msgstr "फोल्डर जोड़ें" msgid "Add Attendance" msgstr "उपस्थिति जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:30 gnowsys_ndf/ndf/templates/ndf/event_details.html:75 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:30 +#: gnowsys_ndf/ndf/templates/ndf/event_details.html:75 msgid "Attendance" msgstr "उपस्थिति" -#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:36 gnowsys_ndf/ndf/templates/ndf/batch_detail.html:42 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:36 +#: gnowsys_ndf/ndf/templates/ndf/batch_detail.html:42 msgid "Batch" msgstr "बैच" @@ -895,11 +1306,13 @@ msgstr "बैच चुनें" msgid "Majority" msgstr "बहुसंख्य" -#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:58 gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:88 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:58 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:88 msgid "Present" msgstr "उपस्थित" -#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:63 gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:89 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:63 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:89 msgid "Absent" msgstr "अनुपस्थित" @@ -911,7 +1324,8 @@ msgstr "सभी छात्र -उपस्थिति अंकित क msgid "Students Name" msgstr "छात्र/छात्रा का नाम" -#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:109 gnowsys_ndf/ndf/templates/ndf/mis_report.html:55 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:109 +#: gnowsys_ndf/ndf/templates/ndf/mis_report.html:55 msgid "Student" msgstr "छात्र/छात्रा " @@ -923,7 +1337,8 @@ msgstr "पूर्ण हुआ" msgid "Present Students" msgstr "उपस्थित छात्र/छात्रा" -#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:121 gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:129 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:121 +#: gnowsys_ndf/ndf/templates/ndf/attendees_widget.html:129 msgid "Student " msgstr "छात्र/छात्रा" @@ -931,8 +1346,13 @@ msgstr "छात्र/छात्रा" msgid "Absent Students" msgstr "अनुपस्थित छात्र/छात्रा" -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:9 gnowsys_ndf/ndf/templates/ndf/event.html:4 gnowsys_ndf/ndf/templates/ndf/event_base.html:5 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:9 gnowsys_ndf/ndf/templates/ndf/gevent.html:4 gnowsys_ndf/ndf/templates/ndf/mis_details.html:120 -#: gnowsys_ndf/ndf/templates/ndf/test_template.html:4 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:9 +#: gnowsys_ndf/ndf/templates/ndf/event.html:4 +#: gnowsys_ndf/ndf/templates/ndf/event_base.html:5 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:9 +#: gnowsys_ndf/ndf/templates/ndf/gevent.html:4 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:120 +#: gnowsys_ndf/ndf/templates/ndf/test_template.html:3 msgid "Events" msgstr "इवेंटस" @@ -941,43 +1361,62 @@ msgstr "इवेंटस" msgid "Edit Course" msgstr "कोर्स संपादन" -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:126 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:132 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:126 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:132 #, fuzzy msgid "Edit Course Structure" msgstr "कोर्स संरचना संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:126 gnowsys_ndf/ndf/templates/ndf/course_detail.html:76 gnowsys_ndf/ndf/templates/ndf/course_details.html:29 gnowsys_ndf/ndf/templates/ndf/course_event_group.html:26 gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:76 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:126 +#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:76 +#: gnowsys_ndf/ndf/templates/ndf/course_details.html:29 +#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:26 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:76 msgid "Add Course Structure" msgstr "कोर्स संरचना जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:136 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:144 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:136 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:144 #, fuzzy msgid " Add Students" msgstr "छात्र/छात्रा शामिल करें " -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:136 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:144 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:136 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:144 #, fuzzy msgid " Add Members" msgstr "सदस्य शामिल करें " -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:141 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:148 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:141 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:148 msgid " Add Admins" msgstr "एडमिन जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:162 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:220 gnowsys_ndf/ndf/templates/ndf/gevent_base.html:91 gnowsys_ndf/ndf/templates/ndf/lms.html:47 gnowsys_ndf/ndf/templates/ndf/lms.html:76 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:162 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:220 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:91 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:47 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:72 msgid "Overview" msgstr "अवलोकन" -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:168 gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:196 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:226 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:301 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:168 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:196 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:226 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:301 #, fuzzy msgid "Course Content" msgstr "कोर्स विषयवस्तु" -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:174 gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:197 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:232 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:302 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:174 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:197 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:232 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:302 msgid "Raw Material" msgstr "रॉ मेटेरियल " -#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:195 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:300 +#: gnowsys_ndf/ndf/templates/ndf/basecourse_group.html:195 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:300 #, fuzzy msgid "About the course" msgstr "कोर्स के बारे में :" @@ -989,7 +1428,7 @@ msgstr "ऐट्रीब्यूट टाइप " #: gnowsys_ndf/ndf/templates/ndf/basic_temp.html:51 #, fuzzy -msgid "Possible Attribute Type " +msgid "PossibleAttributeType " msgstr "संभावित ऐट्रीब्यूट टाइप " #: gnowsys_ndf/ndf/templates/ndf/basic_temp.html:61 @@ -1003,19 +1442,23 @@ msgid "PossibleRelationType " msgstr "संभावित रिलेशन टाइप" #: gnowsys_ndf/ndf/templates/ndf/batch.html:5 -#, python-format -msgid " %(title)s" +#, fuzzy, python-format +msgid " %(title)s " msgstr "शीर्षक:%(title)s" -#: gnowsys_ndf/ndf/templates/ndf/batch.html:81 gnowsys_ndf/ndf/templates/ndf/new_create_batch.html:114 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:523 +#: gnowsys_ndf/ndf/templates/ndf/batch.html:81 +#: gnowsys_ndf/ndf/templates/ndf/new_create_batch.html:114 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:523 msgid "Course Type" msgstr "कोर्स के प्रकार" -#: gnowsys_ndf/ndf/templates/ndf/batch.html:87 gnowsys_ndf/ndf/templates/ndf/new_create_batch.html:123 +#: gnowsys_ndf/ndf/templates/ndf/batch.html:87 +#: gnowsys_ndf/ndf/templates/ndf/new_create_batch.html:123 msgid "Name of Course" msgstr "कोर्स का नाम" -#: gnowsys_ndf/ndf/templates/ndf/batch.html:172 gnowsys_ndf/ndf/templates/ndf/new_create_batch.html:229 +#: gnowsys_ndf/ndf/templates/ndf/batch.html:172 +#: gnowsys_ndf/ndf/templates/ndf/new_create_batch.html:229 msgid " - - - Select course - - - " msgstr "कोर्स चुनें" @@ -1031,7 +1474,12 @@ msgstr "उपयोगकर्ता" msgid "View history " msgstr "इतिहास देखें" -#: gnowsys_ndf/ndf/templates/ndf/beta.html:21 gnowsys_ndf/ndf/templates/ndf/file_search.html:16 gnowsys_ndf/ndf/templates/ndf/header.html:521 gnowsys_ndf/ndf/templates/ndf/header.html:535 gnowsys_ndf/ndf/templates/ndf/node_search_base.html:6 gnowsys_ndf/ndf/templates/ndf/search_page.html:4 +#: gnowsys_ndf/ndf/templates/ndf/beta.html:21 +#: gnowsys_ndf/ndf/templates/ndf/file_search.html:16 +#: gnowsys_ndf/ndf/templates/ndf/header.html:527 +#: gnowsys_ndf/ndf/templates/ndf/header.html:541 +#: gnowsys_ndf/ndf/templates/ndf/node_search_base.html:6 +#: gnowsys_ndf/ndf/templates/ndf/search_page.html:4 msgid "Search" msgstr "खोजें" @@ -1065,8 +1513,12 @@ msgid "Add a buddy" msgstr "दोस्त जोड़ें" #: gnowsys_ndf/ndf/templates/ndf/buddy.html:41 -msgid "Multiple users can be logged into the platform. Just specify your color and animal and click add to join the session." -msgstr "एकाधिक उपयोगकर्ता प्लेटफॉर्म पर लॉगइन कर सकते हैं। बस अपने रंग और जानवर का चुनाव करें और सत्र में शामिल होने के लिए क्लिक करें" +msgid "" +"Multiple users can be logged into the platform. Just specify your color and " +"animal and click add to join the session." +msgstr "" +"एकाधिक उपयोगकर्ता प्लेटफॉर्म पर लॉगइन कर सकते हैं। बस अपने रंग और जानवर का चुनाव करें " +"और सत्र में शामिल होने के लिए क्लिक करें" #: gnowsys_ndf/ndf/templates/ndf/buddy.html:52 #, fuzzy @@ -1087,9 +1539,21 @@ msgstr "दूसरा चरण:" msgid "Select your animal/flower/fruit" msgstr "अपने जानवर/ फूल / फल का चयन करें" -#: gnowsys_ndf/ndf/templates/ndf/buddy.html:75 gnowsys_ndf/ndf/templates/ndf/buddy.html:85 gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:98 gnowsys_ndf/ndf/templates/ndf/create_event_group.html:407 gnowsys_ndf/ndf/templates/ndf/create_group.html:330 gnowsys_ndf/ndf/templates/ndf/create_unit.html:175 -#: gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:29 gnowsys_ndf/ndf/templates/ndf/edit_forum.html:127 gnowsys_ndf/ndf/templates/ndf/gevent_base.html:148 gnowsys_ndf/ndf/templates/ndf/lms.html:204 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:344 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:363 -#: gnowsys_ndf/ndf/templates/ndf/resource_view.html:38 gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:21 gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:79 +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:75 +#: gnowsys_ndf/ndf/templates/ndf/buddy.html:85 +#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:98 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:407 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:330 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:138 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_list.html:29 +#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:127 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:148 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:196 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:344 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:363 +#: gnowsys_ndf/ndf/templates/ndf/resource_view.html:38 +#: gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:23 +#: gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:79 msgid "Cancel" msgstr "रद्द करें" @@ -1129,14 +1593,16 @@ msgstr "मेरे ई-कोर्सेस" msgid "My Events" msgstr "मेरे इवेंटस" -#: gnowsys_ndf/ndf/templates/ndf/course.html:49 gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html:18 +#: gnowsys_ndf/ndf/templates/ndf/course.html:49 +#: gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html:18 msgid "Courses" msgstr "कोर्सेस " #: gnowsys_ndf/ndf/templates/ndf/course_create_edit.html:13 msgid "" "

    Building of a Course

    \n" -"

    Course is a sequence of learning modules.

    " +"

    Course is a sequence of learning modules." +"

    " msgstr "" "

    पाठ्यक्रम निर्माण

    \n" "

    पाठ्यक्रम पहले से तैयार क्रमबद्ध संग्रह है

    " @@ -1145,19 +1611,27 @@ msgstr "" msgid "Upload thumbnail : " msgstr "कोर्सेस अपलोड करें" -#: gnowsys_ndf/ndf/templates/ndf/course_create_edit.html:31 gnowsys_ndf/ndf/templates/ndf/create_event_group.html:364 gnowsys_ndf/ndf/templates/ndf/create_partner.html:137 +#: gnowsys_ndf/ndf/templates/ndf/course_create_edit.html:31 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:364 +#: gnowsys_ndf/ndf/templates/ndf/create_partner.html:137 msgid "View existing thumbnail " msgstr "मौजूदा थंबनेल देखें" -#: gnowsys_ndf/ndf/templates/ndf/course_create_note.html:119 gnowsys_ndf/ndf/templates/ndf/widget_tags.html:164 +#: gnowsys_ndf/ndf/templates/ndf/course_create_note.html:119 +#: gnowsys_ndf/ndf/templates/ndf/widget_tags.html:164 msgid "Remove this tag" msgstr "इस टैग को हटाएँ " -#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:66 gnowsys_ndf/ndf/templates/ndf/course_details.html:65 gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:66 +#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:66 +#: gnowsys_ndf/ndf/templates/ndf/course_details.html:65 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:66 msgid "View history" msgstr "इतिहास देखें" -#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:76 gnowsys_ndf/ndf/templates/ndf/course_details.html:29 gnowsys_ndf/ndf/templates/ndf/course_event_group.html:26 gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:76 +#: gnowsys_ndf/ndf/templates/ndf/course_detail.html:76 +#: gnowsys_ndf/ndf/templates/ndf/course_details.html:29 +#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:26 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:76 msgid "Edit Course Structure" msgstr "कोर्स संरचना संपादित करें" @@ -1166,7 +1640,8 @@ msgstr "कोर्स संरचना संपादित करें" msgid "* Note: You have not added any resources to this course yet" msgstr "नोट: आपने अभी तक इस कोर्स में कोई संसाधन नहीं जोड़ा है" -#: gnowsys_ndf/ndf/templates/ndf/course_details.html:76 gnowsys_ndf/ndf/templates/ndf/student_enroll.html:113 +#: gnowsys_ndf/ndf/templates/ndf/course_details.html:76 +#: gnowsys_ndf/ndf/templates/ndf/student_enroll.html:113 msgid "Course Details" msgstr "कोर्स विवरण" @@ -1178,11 +1653,17 @@ msgstr "कोर्स रजिस्ट्रेशन विवरण" msgid "Release Date" msgstr "रिलीज़ की तारीख" -#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:160 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:537 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:110 +#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:160 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:537 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:110 msgid "Please wait while file is Uploading..." msgstr "कृपया प्रतीक्षा करें फाईल अपलोड हो रही है" -#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:167 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:544 gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:440 gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:480 gnowsys_ndf/ndf/templates/ndf/widget_photo_upload.html:268 +#: gnowsys_ndf/ndf/templates/ndf/course_event_group.html:167 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:544 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:440 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:480 +#: gnowsys_ndf/ndf/templates/ndf/widget_photo_upload.html:268 msgid "Please select an image to set it as a profile picture !" msgstr "कृपया एक प्रोफ़ाइल पिक्चर के रूप में सेट करने के लिए तस्वीर का चयन करें" @@ -1190,7 +1671,8 @@ msgstr "कृपया एक प्रोफ़ाइल पिक्चर msgid "Unique Name: " msgstr "अद्वितीय नाम" -#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:13 gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:20 +#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:13 +#: gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:20 #, fuzzy msgid "Please enter Name" msgstr "कृपया नाम भरें" @@ -1220,7 +1702,8 @@ msgstr "टेम्पलेट चुनें" msgid "Select Template (Optional): " msgstr "टेम्पलेट चुनें (वैकल्पिक)" -#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:71 gnowsys_ndf/ndf/templates/ndf/lms.html:196 +#: gnowsys_ndf/ndf/templates/ndf/course_page_create_edit.html:71 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:188 #, fuzzy msgid "Edit Metadata" msgstr "मेटाडाटा सम्पादित करें" @@ -1230,12 +1713,14 @@ msgstr "मेटाडाटा सम्पादित करें" msgid "Add Tags:" msgstr "टैग जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:43 gnowsys_ndf/ndf/templates/ndf/unit_player.html:57 +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:43 +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:57 #, fuzzy msgid " Edit Content" msgstr "विषय-वस्तु सम्पादित करें " -#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:44 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:125 +#: gnowsys_ndf/ndf/templates/ndf/course_pages.html:44 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:125 msgid "Interaction Settings" msgstr "इंटरैक्शन सेटिंग्स" @@ -1275,20 +1760,25 @@ msgstr "टीचेस् पेज जोड़ें" msgid "Add Help page" msgstr "सहायता पृष्ठ जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/course_units.html:104 gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:104 +#: gnowsys_ndf/ndf/templates/ndf/course_units.html:104 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:104 msgid "Unit Name: " msgstr "इकाई का नाम" -#: gnowsys_ndf/ndf/templates/ndf/course_units.html:153 gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:153 +#: gnowsys_ndf/ndf/templates/ndf/course_units.html:153 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:153 msgid "Add New Page: " msgstr "नया पृष्ठ जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/course_units.html:160 gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:160 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:287 +#: gnowsys_ndf/ndf/templates/ndf/course_units.html:160 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:160 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:287 #, fuzzy msgid "Page Type:" msgstr "पेज प्रकार" -#: gnowsys_ndf/ndf/templates/ndf/course_units.html:184 gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:184 +#: gnowsys_ndf/ndf/templates/ndf/course_units.html:184 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_units.html:184 msgid "Add New File: " msgstr "नई फ़ाइल जोड़ें" @@ -1310,11 +1800,13 @@ msgstr "कोर्स घोषणा" msgid "Create Program" msgstr "कार्यक्रम बनाएं" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:70 gnowsys_ndf/ndf/templates/ndf/create_group.html:65 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:70 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:65 msgid "Group Name" msgstr "समूह का नाम" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:74 gnowsys_ndf/ndf/templates/ndf/create_group.html:69 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:74 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:69 msgid "Enter the unique group name" msgstr "समूह को विशिष्ट नाम दें" @@ -1322,36 +1814,53 @@ msgstr "समूह को विशिष्ट नाम दें" msgid "Group Name is required and it must be a string. " msgstr "समूह का नाम आवश्यक है और यह एक स्ट्रिंग होना चाहिए" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:89 gnowsys_ndf/ndf/templates/ndf/create_group.html:84 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:89 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:84 msgid "Alternate Group Name" msgstr "समूह का वैकल्पिक नाम" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:93 gnowsys_ndf/ndf/templates/ndf/create_group.html:88 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:93 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:88 msgid "Provide display/alternate group name" msgstr "समूह का वैकल्पिक / प्रदर्शित नाम" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:108 gnowsys_ndf/ndf/templates/ndf/create_group.html:103 gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:49 gnowsys_ndf/ndf/templates/ndf/create_unit.html:138 gnowsys_ndf/ndf/templates/ndf/edit_group.html:106 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:108 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:103 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:49 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:118 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:106 msgid "Group Type" msgstr "समूह प्रकार" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:121 gnowsys_ndf/ndf/templates/ndf/create_event_group.html:147 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:121 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:147 msgid "Please select group type." msgstr "कृपया समूह प्रकार चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:133 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:113 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:230 gnowsys_ndf/ndf/templates/ndf/header.html:393 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:259 -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:113 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:237 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:124 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:189 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:133 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:113 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:230 +#: gnowsys_ndf/ndf/templates/ndf/header.html:396 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:259 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:113 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:237 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:124 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:189 msgid "Language" msgstr "भाषा" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:162 gnowsys_ndf/ndf/templates/ndf/create_group.html:154 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:162 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:154 msgid "Level of moderation" msgstr "नियंत्रण स्तर" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:168 gnowsys_ndf/ndf/templates/ndf/create_group.html:160 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:168 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:160 msgid "Select Level" msgstr "स्तर चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:177 gnowsys_ndf/ndf/templates/ndf/create_group.html:169 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:177 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:169 msgid "Please select moderation level." msgstr "कृपया नियंत्रण स्तर चुनें" @@ -1383,29 +1892,36 @@ msgstr "कृपया नामांकन की आरंभ तिथि msgid "Enrollment End Date" msgstr "नामांकन अंतिम तिथि" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:360 gnowsys_ndf/ndf/templates/ndf/create_partner.html:132 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:360 +#: gnowsys_ndf/ndf/templates/ndf/create_partner.html:132 msgid "Upload thumbnail" msgstr "थंबनेल अपलोड करें" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:441 gnowsys_ndf/ndf/templates/ndf/create_group.html:380 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:441 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:380 msgid "Group name cannot include " msgstr "समूह का नाम शामिल नहीं हो सकता" -#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:447 gnowsys_ndf/ndf/templates/ndf/create_group.html:386 +#: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:447 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:386 msgid "Group name cannot be empty." msgstr "समूह का नाम रिक्त नहीं हो सकता" #: gnowsys_ndf/ndf/templates/ndf/create_forum.html:49 msgid "" "

    Starting Discussions

    \n" -"

    Use a relevant topic for the forum so that interested people can join the discussion

    " -msgstr "[Starting Discussions] [Use a relevant topic for the (forum) so that interested people can join the discussion]" +"

    Use a relevant topic for the forum so " +"that interested people can join the discussion

    " +msgstr "" +"[Starting Discussions] [Use a relevant topic for the (forum) so that " +"interested people can join the discussion]" #: gnowsys_ndf/ndf/templates/ndf/create_forum.html:55 msgid "Create a new discussion thread" msgstr "चर्चा की एक नई कड़ी बनाएँ" -#: gnowsys_ndf/ndf/templates/ndf/create_forum.html:63 gnowsys_ndf/ndf/templates/ndf/edit_forum.html:87 +#: gnowsys_ndf/ndf/templates/ndf/create_forum.html:63 +#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:87 msgid "Forum name:" msgstr "फोरम नाम" @@ -1413,7 +1929,10 @@ msgstr "फोरम नाम" msgid "Enter the name of forum here" msgstr "फ़ोरम का नाम यहाँ दर्ज करें" -#: gnowsys_ndf/ndf/templates/ndf/create_forum.html:89 gnowsys_ndf/ndf/templates/ndf/edit_forum.html:112 gnowsys_ndf/ndf/templates/ndf/gtask_details.html:158 gnowsys_ndf/ndf/templates/ndf/task_details.html:182 +#: gnowsys_ndf/ndf/templates/ndf/create_forum.html:89 +#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:112 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:158 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:182 msgid "Description:" msgstr "विवरणः" @@ -1425,29 +1944,38 @@ msgstr "फोरम बनाएँ" msgid "Forum with same name already exist. Please choose another name" msgstr "इस नाम का फ़ोरम पहले से मौजूद है कृपया दूसरा नाम चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_forum.html:217 gnowsys_ndf/ndf/templates/ndf/edit_forum.html:301 +#: gnowsys_ndf/ndf/templates/ndf/create_forum.html:217 +#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:301 msgid "Forum name cannot be empty" msgstr "फोरम का नाम रिक्त नहीं हो सकता" #: gnowsys_ndf/ndf/templates/ndf/create_group.html:15 +#, fuzzy msgid "" "\n" "

    Types of Groups

    \n" "
    \n" "
    Open Groups
    \n" -"

    Open groups are ideal for projects that require a high level of collaboration and participation. Any metastudio user can join this group without prior approval

    \n" +"

    Open groups are ideal for projects that require a " +"high level of collaboration and participation. Any metastudio user can join " +"this group without prior approval

    \n" "
    Closed Groups
    \n" -"

    Closed groups are ideal for projects that require restricted access to content and documents. Users can only join after their membership request is approved or have been invited.

    " +"

    Closed groups are ideal for projects that require " +"restricted access to content and documents. Users can only join after their " +"membership request is approved or have been invited.

    \n" " " msgstr "" "\n" "

    Types of Groups

    \n" "
    \n" "
    Open Groups
    \n" -"

    खुले समूह उन परियोजनाओं के लिए आदर्श होते हैं जिनके लिए उच्च स्तर के सहयोग और भागीदारी की आवश्यकता होती है। कोई भी मेटास्टऑडियो उपयोगकर्ता बिना किसी पूर्व अनुमोदन के इस समूह में शामिल हो सकता है \n" +"

    खुले समूह उन परियोजनाओं के लिए आदर्श होते हैं जिनके लिए उच्च " +"स्तर के सहयोग और भागीदारी की आवश्यकता होती है। कोई भी मेटास्टऑडियो उपयोगकर्ता बिना " +"किसी पूर्व अनुमोदन के इस समूह में शामिल हो सकता है \n" "

    Closed Groups
    \n" -"

    बंद किए गए समूह उन प्रोजेक्ट्स के लिए आदर्श होते हैं जिनके लिए सामग्री और दस्तावेज़ों तक प्रतिबंधित पहुंच की आवश्यकता होती है। उपयोगकर्ता केवल उनके सदस्यता अनुरोध के बाद ही शामिल हो सकते हैं या उन्हें आमंत्रित किया गया हो। " - +"

    बंद किए गए समूह उन प्रोजेक्ट्स के लिए आदर्श होते हैं जिनके लिए " +"सामग्री और दस्तावेज़ों तक प्रतिबंधित पहुंच की आवश्यकता होती है। उपयोगकर्ता केवल उनके " +"सदस्यता अनुरोध के बाद ही शामिल हो सकते हैं या उन्हें आमंत्रित किया गया हो। " #: gnowsys_ndf/ndf/templates/ndf/create_group.html:31 msgid "More Edit options" @@ -1473,7 +2001,9 @@ msgstr "समूह का नाम आवश्यक है और यह msgid "Group Editing Policy" msgstr "समूह संपादन नीति" -#: gnowsys_ndf/ndf/templates/ndf/create_group.html:274 gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:85 gnowsys_ndf/ndf/templates/ndf/edit_group.html:186 +#: gnowsys_ndf/ndf/templates/ndf/create_group.html:274 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:85 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:186 msgid "Group Agency Types" msgstr "समूह संस्था प्रकार" @@ -1494,18 +2024,26 @@ msgid "" "\n" "

    Types of Groups

    \n" "
    Open Groups
    \n" -"

    Open groups are ideal for projects that require a high level of collaboration and participation. Any metastudio user can join this group without prior approval

    \n" +"

    Open groups are ideal for projects that require a " +"high level of collaboration and participation. Any metastudio user can join " +"this group without prior approval

    \n" "
    Closed Groups
    \n" -"

    Closed groups are ideal for projects that require restricted access to content and documents. Users can only join after their membership request is approved or have been invited.

    \n" +"

    Closed groups are ideal for projects that require " +"restricted access to content and documents. Users can only join after their " +"membership request is approved or have been invited.

    \n" " " msgstr "" "\n" "

    Types of Groups

    \n" "
    \n" "
    Open Groups
    \n" -"

    खुले समूह उन परियोजनाओं के लिए आदर्श होते हैं जिनके लिए उच्च स्तर के सहयोग और भागीदारी की आवश्यकता होती है। कोई भी मेटास्टऑडियो उपयोगकर्ता बिना किसी पूर्व अनुमोदन के इस समूह में शामिल हो सकता है \n" +"

    खुले समूह उन परियोजनाओं के लिए आदर्श होते हैं जिनके लिए उच्च " +"स्तर के सहयोग और भागीदारी की आवश्यकता होती है। कोई भी मेटास्टऑडियो उपयोगकर्ता बिना " +"किसी पूर्व अनुमोदन के इस समूह में शामिल हो सकता है \n" "

    Closed Groups
    \n" -"

    बंद किए गए समूह उन प्रोजेक्ट्स के लिए आदर्श होते हैं जिनके लिए सामग्री और दस्तावेज़ों तक प्रतिबंधित पहुंच की आवश्यकता होती है। उपयोगकर्ता केवल उनके सदस्यता अनुरोध के बाद ही शामिल हो सकते हैं या उन्हें आमंत्रित किया गया हो। " +"

    बंद किए गए समूह उन प्रोजेक्ट्स के लिए आदर्श होते हैं जिनके लिए " +"सामग्री और दस्तावेज़ों तक प्रतिबंधित पहुंच की आवश्यकता होती है। उपयोगकर्ता केवल उनके " +"सदस्यता अनुरोध के बाद ही शामिल हो सकते हैं या उन्हें आमंत्रित किया गया हो। " #: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:20 msgid " Existing Groups:" @@ -1520,15 +2058,18 @@ msgstr "एक उप-समूह बनायें %(maingroup)s" msgid "Name of the Group" msgstr "समूह का नाम" -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:53 gnowsys_ndf/ndf/templates/ndf/edit_group.html:111 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:53 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:111 msgid "PUBLIC" msgstr "सार्वजनिक" -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:54 gnowsys_ndf/ndf/templates/ndf/edit_group.html:112 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:54 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:112 msgid "PRIVATE" msgstr "निजी" -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:55 gnowsys_ndf/ndf/templates/ndf/edit_group.html:113 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:55 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:113 msgid "ANONYMOUS" msgstr "अज्ञात" @@ -1540,11 +2081,14 @@ msgstr "संपादन योग्य_अपरिनियमित" msgid "EDITABLE_MODERATED" msgstr "संपादन योग्य_ नियंत्रित " -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:68 gnowsys_ndf/ndf/templates/ndf/edit_group.html:126 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:68 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:126 msgid "NON_EDITABLE" msgstr "गैर संपादन योग्य" -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:76 gnowsys_ndf/ndf/templates/ndf/edit_group.html:72 gnowsys_ndf/ndf/templates/ndf/edit_group.html:139 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:76 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:72 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:139 msgid "OPEN" msgstr "खुला" @@ -1556,7 +2100,8 @@ msgstr "अनुरोध द्वारा" msgid "BY_INVITATION" msgstr "निमंत्रण द्वारा" -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:97 gnowsys_ndf/ndf/templates/ndf/edit_group.html:161 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:97 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:161 msgid "Group Member Visibility" msgstr "समूह सदस्य दृश्यता" @@ -1568,7 +2113,8 @@ msgstr "सदस्य को सूचित करें" msgid "NOT_DISCLOSED_TO_MEM" msgstr "सदस्यों को सूचित न करें " -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:109 gnowsys_ndf/ndf/templates/ndf/edit_group.html:172 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:109 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:172 msgid "Group Encryption policy" msgstr "समूह एन्क्रिप्शन नीति" @@ -1576,15 +2122,18 @@ msgstr "समूह एन्क्रिप्शन नीति" msgid "NOT_ENCRYPTED" msgstr "एन्क्रिप्टेड नहीं" -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:114 gnowsys_ndf/ndf/templates/ndf/edit_group.html:178 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:114 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:178 msgid "ENCRYPTED" msgstr "एन्क्रिप्टेड" -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:119 gnowsys_ndf/ndf/templates/ndf/edit_group.html:146 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:119 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:146 msgid "Group Existance visibility" msgstr "समूह अस्तित्व दृश्यता" -#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:123 gnowsys_ndf/ndf/templates/ndf/edit_group.html:151 +#: gnowsys_ndf/ndf/templates/ndf/create_sub_group.html:123 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:151 msgid "ANNOUNCED" msgstr "घोषित" @@ -1592,11 +2141,14 @@ msgstr "घोषित" msgid "NOT_ANNOUNCED" msgstr "अघोषित" -#: gnowsys_ndf/ndf/templates/ndf/create_thread.html:41 gnowsys_ndf/ndf/templates/ndf/edit_thread.html:51 +#: gnowsys_ndf/ndf/templates/ndf/create_thread.html:41 +#: gnowsys_ndf/ndf/templates/ndf/edit_thread.html:51 msgid "Thread" msgstr "कड़ी" -#: gnowsys_ndf/ndf/templates/ndf/create_thread.html:52 gnowsys_ndf/ndf/templates/ndf/edit_thread.html:62 gnowsys_ndf/ndf/templates/ndf/forumdetails.html:44 +#: gnowsys_ndf/ndf/templates/ndf/create_thread.html:52 +#: gnowsys_ndf/ndf/templates/ndf/edit_thread.html:62 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:44 msgid "Threads are new ideas on the topic" msgstr "‘कडि़याँ’ विषय से संबंधित नए विचार हैं" @@ -1604,11 +2156,13 @@ msgstr "‘कडि़याँ’ विषय से संबंधित msgid "Add a new Thread to forum" msgstr "फोरम में एक नई कड़ी जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/create_thread.html:92 gnowsys_ndf/ndf/templates/ndf/edit_thread.html:99 +#: gnowsys_ndf/ndf/templates/ndf/create_thread.html:92 +#: gnowsys_ndf/ndf/templates/ndf/edit_thread.html:99 msgid "Thread:" msgstr "कड़ी:" -#: gnowsys_ndf/ndf/templates/ndf/create_thread.html:102 gnowsys_ndf/ndf/templates/ndf/edit_thread.html:110 +#: gnowsys_ndf/ndf/templates/ndf/create_thread.html:102 +#: gnowsys_ndf/ndf/templates/ndf/edit_thread.html:110 msgid "Thread Content: " msgstr "कड़ी की विषय-वस्तु" @@ -1616,95 +2170,124 @@ msgstr "कड़ी की विषय-वस्तु" msgid "Existing threads of forum" msgstr "फोरम की मौजुदा कडि़याँ" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:13 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:14 #, fuzzy msgid "Enter Group Name" msgstr "समूह का वैकल्पिक नाम" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:13 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:14 #, fuzzy msgid "Enter Unit Name" msgstr "बैच का नाम अंकित करें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:32 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:28 #, fuzzy -msgid "Enter alternate Name" +msgid "Enter alternate Name for Unit" msgstr "बैच का नाम अंकित करें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:46 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:40 #, fuzzy msgid "Select Module" msgstr "समूह चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:50 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:42 #, fuzzy msgid "Choose Module" msgstr "फ़ाइल चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:62 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:53 #, fuzzy msgid "Select Grade" msgstr "समूह चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:66 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:55 #, fuzzy msgid "Choose Grade" msgstr "फ़ाइल चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:78 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:68 #, fuzzy msgid "Select Subject" msgstr "संग्रह चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:82 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:70 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:120 #, fuzzy msgid "Choose Subject" msgstr "उपयोगकर्ता चुनें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:158 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:129 +#, fuzzy +msgid "Add Tags" +msgstr "टैग जोड़ें" + +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:133 +#, fuzzy +msgid "Enter Description" +msgstr "विवरण" + +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:142 msgid "Unit with same name exists" msgstr "समान नाम वाला यूनिट मौजूद है" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:158 +#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:142 #, fuzzy msgid "Please choose another name" msgstr "कृपया वैध नाम भरें" -#: gnowsys_ndf/ndf/templates/ndf/create_unit.html:161 -#, fuzzy -msgid "Enter Description" -msgstr "विवरण" - -#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:183 gnowsys_ndf/ndf/templates/ndf/curriculum.html:340 gnowsys_ndf/ndf/templates/ndf/theme.html:183 gnowsys_ndf/ndf/templates/ndf/theme.html:340 -msgid "Are you sure you want to delete? All of the related items for the following themes also will be deleted:" +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:183 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:340 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:183 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:340 +msgid "" +"Are you sure you want to delete? All of the related items for the following " +"themes also will be deleted:" msgstr "क्या आप मिटाना चाहते हैं। ऐसा करने से सभी संबंधित वस्तुएँ भी मिट जायेंगी" -#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:261 gnowsys_ndf/ndf/templates/ndf/curriculum.html:265 gnowsys_ndf/ndf/templates/ndf/theme.html:261 gnowsys_ndf/ndf/templates/ndf/theme.html:265 gnowsys_ndf/ndf/templates/ndf/translation_page.html:65 gnowsys_ndf/ndf/templates/ndf/translation_page.html:96 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:261 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:265 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:261 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:265 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:65 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:96 #: gnowsys_ndf/ndf/templates/ndf/translation_page.html:151 msgid "Theme" msgstr "प्रसंग" -#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:265 gnowsys_ndf/ndf/templates/ndf/theme.html:265 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:265 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:265 msgid "Tree" msgstr "ट्री" -#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:269 gnowsys_ndf/ndf/templates/ndf/theme.html:269 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:269 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:269 msgid "Open" msgstr "खुला" -#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:270 gnowsys_ndf/ndf/templates/ndf/theme.html:270 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:270 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:270 msgid "Close" msgstr "बंद" -#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:377 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:118 gnowsys_ndf/ndf/templates/ndf/list_themes.html:30 gnowsys_ndf/ndf/templates/ndf/theme.html:377 gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:14 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:377 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:118 +#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:30 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:377 +#: gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:14 msgid "Title" msgstr "शीर्षक" -#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:378 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:119 gnowsys_ndf/ndf/templates/ndf/list_themes.html:31 gnowsys_ndf/ndf/templates/ndf/theme.html:378 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:378 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:119 +#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:31 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:378 msgid "Created by" msgstr "सृजक" -#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:413 gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:142 gnowsys_ndf/ndf/templates/ndf/list_themes.html:68 gnowsys_ndf/ndf/templates/ndf/theme.html:413 +#: gnowsys_ndf/ndf/templates/ndf/curriculum.html:413 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:142 +#: gnowsys_ndf/ndf/templates/ndf/list_themes.html:68 +#: gnowsys_ndf/ndf/templates/ndf/theme.html:413 msgid "No data to display" msgstr "प्रदर्शन हेतु विषय नहीं हैं" @@ -1716,56 +2299,78 @@ msgstr "विशिष्ट संपादन सीखने के उद msgid "Create a new specific learning objective " msgstr "एक नया विशिष्ट शिक्षण उद्देश्य बनाएं" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:50 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:50 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:50 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:50 msgid "View: " msgstr "देखें:" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:77 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:77 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:77 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:77 msgid " Name " msgstr "नाम" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:79 gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:206 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:89 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:79 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:213 -#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:90 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:165 gnowsys_ndf/ndf/templates/ndf/translation_page.html:98 gnowsys_ndf/ndf/templates/ndf/translation_page.html:102 -msgid "Please give your page a descriptive name. It's helpful for others and for yourself." +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:79 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:206 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:89 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:79 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:213 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:90 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:165 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:98 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:102 +msgid "" +"Please give your page a descriptive name. It's helpful for others and for " +"yourself." msgstr "अपने पृष्ठ को एक विवरणात्मक नाम दें जो आपके और दूसरों के लिए सहायक होगा" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:84 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:84 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:95 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:170 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:84 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:84 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:95 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:170 msgid "Privacy" msgstr "गोपनीयता" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:154 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:161 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:154 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:161 msgid "Theme Name" msgstr "प्रसंग नाम" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:169 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:176 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:169 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:176 msgid "+ Add Topic" msgstr "प्रकरण जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:173 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:180 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:173 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:180 msgid "Topic Name" msgstr "प्रकरण नाम" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:4 gnowsys_ndf/ndf/templates/ndf/curriculum_listing.html:4 gnowsys_ndf/ndf/templates/ndf/lms.html:66 gnowsys_ndf/ndf/templates/ndf/lms.html:102 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:6 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_listing.html:4 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:62 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:98 #, fuzzy msgid "Topic Map" msgstr "प्रकरण नाम" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:129 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:250 #, fuzzy msgid "Curriculum Name" msgstr "फोरम नाम" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:132 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:253 #, fuzzy msgid "Curriculum Description" msgstr "विवरण" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:132 gnowsys_ndf/ndf/templates/ndf/unit_structure.html:332 gnowsys_ndf/ndf/templates/ndf/unit_structure.html:337 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:253 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:332 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:337 #, fuzzy msgid "optional" msgstr "विकल्प" -#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:135 +#: gnowsys_ndf/ndf/templates/ndf/curriculum_hierarchy.html:256 msgid "Save Curriculum" msgstr "पाठ्यक्रम सहेजें" @@ -1779,7 +2384,9 @@ msgid "Are you sure want to delete?" msgstr "क्या आप वाकई डिलीटकरना चाहते हैं?" #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:88 -msgid "Are you sure you want to delete? All of the following related items also will be deleted:" +msgid "" +"Are you sure you want to delete? All of the following related items also " +"will be deleted:" msgstr "क्या आप मिटाना चाहते हैं। ऐसा करने से सभी संबंधित वस्तुएँ भी मिट जायेंगी" #: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:236 @@ -1794,11 +2401,16 @@ msgstr "अपलोड की गई फाइल" msgid "content:" msgstr "विषय-वस्तुः" -#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:427 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:326 +#: gnowsys_ndf/ndf/templates/ndf/custom_template_for_app.html:427 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:326 msgid "Content" msgstr "विषय-वस्तु" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:91 gnowsys_ndf/ndf/templates/ndf/discussion.html:273 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:104 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:121 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:112 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:91 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:273 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:104 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:121 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:113 #: gnowsys_ndf/ndf/templates/ndf/reply_to_reply.html:82 msgid "Reply" msgstr "जवाब दें" @@ -1807,58 +2419,95 @@ msgstr "जवाब दें" msgid "Enter text here." msgstr "यहाँ लिखें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:189 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:193 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:233 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:222 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:189 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:193 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:233 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:225 msgid "Login to start discussion" msgstr "परिचर्चा करने की पहल करें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:232 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:239 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:280 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:269 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:232 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:239 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:280 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:272 msgid "Login to start discussion." msgstr "परिचर्चा करने की पहल करें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:240 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:248 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:289 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:278 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:240 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:248 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:289 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:281 msgid "Begin Discussion" msgstr "परिचर्चा आरंभ करें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:241 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:249 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:241 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:249 msgid "Comment" msgstr "टिप्पणी" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:245 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:253 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:245 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:253 msgid "Join Discussion" msgstr "परिचर्चा से जुड़ें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:334 gnowsys_ndf/ndf/templates/ndf/discussion.html:342 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:349 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:357 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:391 -#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:399 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:378 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:386 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:334 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:342 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:349 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:357 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:391 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:399 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:381 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:389 msgid "Please provide the reply content." msgstr "कृपया उत्तर सामग्री प्रदान करें।" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:357 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:384 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:426 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:413 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:357 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:384 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:426 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:416 msgid "Along with this reply, total of" msgstr "इस उत्तर के साथ, कुल मिलाकर" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:357 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:384 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:426 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:413 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:357 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:384 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:426 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:416 msgid "replies would get deleted.\\nClick " msgstr "जवाब हटाए जाएंगे। \\ n क्लिक करें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:361 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:388 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:430 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:417 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:361 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:388 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:430 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:420 msgid "Are you sure to delete this reply ?\\nClick " msgstr "क्या आप इस उत्तर को हटाना चाहते हैं? \\ क्लिक करें" -#: gnowsys_ndf/ndf/templates/ndf/discussion.html:387 gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:414 gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:456 gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:443 +#: gnowsys_ndf/ndf/templates/ndf/discussion.html:387 +#: gnowsys_ndf/ndf/templates/ndf/ggallery-discussion.html:414 +#: gnowsys_ndf/ndf/templates/ndf/gin-line-texteditor.html:456 +#: gnowsys_ndf/ndf/templates/ndf/in-line-texteditor.html:446 msgid "To delete this reply, you need to be login and author of this reply." -msgstr "इस जवाब को मिटाने के लिए, आपको इस जवाब का लेखक होना तथा लॉगिन करना आवश्यक है" +msgstr "" +"इस जवाब को मिटाने के लिए, आपको इस जवाब का लेखक होना तथा लॉगिन करना आवश्यक है" #: gnowsys_ndf/ndf/templates/ndf/document_detail.html:9 msgid "download" msgstr "डाउनलोड" -#: gnowsys_ndf/ndf/templates/ndf/document_edit.html:5 gnowsys_ndf/ndf/templates/ndf/image_edit.html:5 gnowsys_ndf/ndf/templates/ndf/video_edit.html:5 +#: gnowsys_ndf/ndf/templates/ndf/document_edit.html:5 +#: gnowsys_ndf/ndf/templates/ndf/image_edit.html:5 +#: gnowsys_ndf/ndf/templates/ndf/video_edit.html:5 msgid "Editor" msgstr "संपादक" -#: gnowsys_ndf/ndf/templates/ndf/document_edit.html:6 gnowsys_ndf/ndf/templates/ndf/image_edit.html:6 -msgid "

    You can upload files of any format to your group library. Also edit the details regarding the same.

    " -msgstr "

    समूह लाईब्रेरी में किसी भी प्रारूप में फाईल अपलोड कर सकते हैं, विवरण को संपादित करें" +#: gnowsys_ndf/ndf/templates/ndf/document_edit.html:6 +#: gnowsys_ndf/ndf/templates/ndf/image_edit.html:6 +msgid "" +"

    You can upload files of any " +"format to your group library. Also edit the details regarding the same.

    " +msgstr "" +"

    समूह लाईब्रेरी में किसी भी प्रारूप में फाईल अपलोड कर सकते हैं, विवरण को संपादित करें" #: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:51 msgid "Select from following drawer: " @@ -1876,7 +2525,11 @@ msgstr "खोज करने के लिए कम से कम 3 वर् msgid "No content of selected type !" msgstr "चयनित प्रकार की कोई भी विषय वस्तु उपलब्ध नहीं है।" -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:309 gnowsys_ndf/ndf/templates/ndf/forumdetails.html:174 gnowsys_ndf/ndf/templates/ndf/group.html:120 gnowsys_ndf/ndf/templates/ndf/gtask_details.html:234 gnowsys_ndf/ndf/templates/ndf/task_details.html:258 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:309 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:174 +#: gnowsys_ndf/ndf/templates/ndf/group.html:120 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:234 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:258 msgid "by" msgstr "द्वारा" @@ -1892,7 +2545,10 @@ msgstr "सभी को दाएं पर ले जाएं" msgid "Move ALL to Left" msgstr "सभी को बाएं ओर ले जाएं" -#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:408 gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:434 gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:577 gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:591 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:408 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:434 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:577 +#: gnowsys_ndf/ndf/templates/ndf/drawer_widget.html:591 msgid "Nothing to move." msgstr "कुछ भी नहीं मिला" @@ -1904,7 +2560,8 @@ msgstr "ई-पुस्तकें" msgid "" " \n" "

    \n" -"
    Each eBook is a collection of chapter files.\n" +"
    Each eBook is a collection of " +"chapter files.\n" "
    \n" " " msgstr "प्रत्येक ईपुस्तक अध्याय फ़ाइलों का एक संग्रह है" @@ -1916,7 +2573,8 @@ msgstr "क्या आप वाकई संपादन को रद्द #: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:73 msgid "" "

    Existing Discussion

    \n" -"

    Use a relevant topic for the Forum so that people interested can join the discussion.

    " +"

    Use a relevant topic for the " +"Forum so that people interested can join the discussion.

    " msgstr "फोरम के लिए एक ऐसा विषय चुने जिसमें लोग भाग लेना चाहें" #: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:79 @@ -1927,7 +2585,9 @@ msgstr "फोरम को संपादित करें" msgid "Forum Name" msgstr "फोरम नाम" -#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:126 gnowsys_ndf/ndf/templates/ndf/forumdetails.html:107 gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:136 +#: gnowsys_ndf/ndf/templates/ndf/edit_forum.html:126 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:107 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:136 msgid "Forum" msgstr "फोरम" @@ -1948,11 +2608,13 @@ msgstr "%(name)s के सेटिंग बदलने के लिए य msgid "Subscription policy" msgstr "सदस्यता नीति" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:73 gnowsys_ndf/ndf/templates/ndf/edit_group.html:140 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:73 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:140 msgid "BY REQUEST" msgstr "अनुरोध द्वारा" -#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:74 gnowsys_ndf/ndf/templates/ndf/edit_group.html:141 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:74 +#: gnowsys_ndf/ndf/templates/ndf/edit_group.html:141 msgid "BY INVITATION" msgstr "निमंत्रण द्वारा" @@ -2006,8 +2668,13 @@ msgstr "संपादित करें" msgid "Edit Thread " msgstr "कड़ी संपादन करें" -#: gnowsys_ndf/ndf/templates/ndf/event_base.html:89 gnowsys_ndf/ndf/templates/ndf/footer.html:30 gnowsys_ndf/ndf/templates/ndf/gevent_base.html:41 gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:99 gnowsys_ndf/ndf/templates/ndf/header.html:482 gnowsys_ndf/ndf/templates/ndf/lms.html:151 -#: gnowsys_ndf/ndf/templates/ndf/lms.html:155 gnowsys_ndf/ndf/templates/ndf/quiz_details.html:43 +#: gnowsys_ndf/ndf/templates/ndf/event_base.html:89 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:20 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:41 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:99 +#: gnowsys_ndf/ndf/templates/ndf/header.html:488 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:147 +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:43 msgid "About" msgstr "बारे में" @@ -2020,7 +2687,11 @@ msgstr "आरंभ" msgid "NoteBook" msgstr "ई-पुस्तक" -#: gnowsys_ndf/ndf/templates/ndf/event_base.html:103 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:244 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:304 gnowsys_ndf/ndf/templates/ndf/lms.html:53 gnowsys_ndf/ndf/templates/ndf/lms.html:89 +#: gnowsys_ndf/ndf/templates/ndf/event_base.html:103 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:244 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:304 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:54 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:86 msgid "Gallery" msgstr "गेलरी" @@ -2028,19 +2699,28 @@ msgstr "गेलरी" msgid "Following are the Notes added: " msgstr "यह नोट्स जोड़े गए हैं:" -#: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:181 gnowsys_ndf/ndf/templates/ndf/page_list.html:85 gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:5 gnowsys_ndf/ndf/templates/ndf/term.html:36 +#: gnowsys_ndf/ndf/templates/ndf/event_create_edit.html:181 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:85 +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:5 +#: gnowsys_ndf/ndf/templates/ndf/term.html:36 msgid "Create" msgstr "सृजित करें" -#: gnowsys_ndf/ndf/templates/ndf/event_details.html:74 gnowsys_ndf/ndf/templates/ndf/mis_details.html:119 gnowsys_ndf/ndf/templates/ndf/wikidata.html:91 +#: gnowsys_ndf/ndf/templates/ndf/event_details.html:74 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:119 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:91 msgid "Read" msgstr "पढ़ें" -#: gnowsys_ndf/ndf/templates/ndf/event_list.html:18 gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:16 -msgid "Are you sure you want to delete? All of the following related items also will be deleted!" +#: gnowsys_ndf/ndf/templates/ndf/event_list.html:18 +#: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:16 +msgid "" +"Are you sure you want to delete? All of the following related items also " +"will be deleted!" msgstr "क्या आप मिटाना चाहते हैं। ऐसा करने से सभी संबंधित वस्तुएँ भी मिट जायेंगी" -#: gnowsys_ndf/ndf/templates/ndf/event_list.html:98 gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:153 +#: gnowsys_ndf/ndf/templates/ndf/event_list.html:98 +#: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:153 msgid "This group doesn't have a registered" msgstr "इस समूह में कोई पंजीकृत नहीं है" @@ -2049,7 +2729,8 @@ msgstr "इस समूह में कोई पंजीकृत नही msgid " Create Course" msgstr "पाठ्यक्रम का नाम" -#: gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html:23 gnowsys_ndf/ndf/templates/ndf/header.html:117 +#: gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html:23 +#: gnowsys_ndf/ndf/templates/ndf/header.html:120 msgid "Workspaces" msgstr "कार्यस्थान" @@ -2071,7 +2752,8 @@ msgstr "कार्यस्थान प्रदर्शन क्रम" msgid "SAVE" msgstr "संचय" -#: gnowsys_ndf/ndf/templates/ndf/file.html:84 gnowsys_ndf/ndf/templates/ndf/page_list.html:77 +#: gnowsys_ndf/ndf/templates/ndf/file.html:84 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:77 msgid "Collections" msgstr "संग्रह" @@ -2095,7 +2777,8 @@ msgstr "ऑडियो" msgid "Images" msgstr "चित्र" -#: gnowsys_ndf/ndf/templates/ndf/file.html:181 gnowsys_ndf/ndf/templates/ndf/file.html:207 +#: gnowsys_ndf/ndf/templates/ndf/file.html:181 +#: gnowsys_ndf/ndf/templates/ndf/file.html:207 msgid "Videos" msgstr "वीडियो" @@ -2120,11 +2803,19 @@ msgstr "फाईल सांख्यिकी" msgid "this file is already uploaded please choose different file" msgstr "यह फाइल अपलोड की गई है कृपया अन्य फाइल चुने" -#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:7 gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:13 gnowsys_ndf/ndf/templates/ndf/group.html:74 gnowsys_ndf/ndf/templates/ndf/group.html:79 gnowsys_ndf/ndf/templates/ndf/pandoracollection.html:10 gnowsys_ndf/ndf/templates/ndf/pandoracollection.html:17 +#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:7 +#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:13 +#: gnowsys_ndf/ndf/templates/ndf/group.html:74 +#: gnowsys_ndf/ndf/templates/ndf/group.html:79 +#: gnowsys_ndf/ndf/templates/ndf/pandoracollection.html:10 +#: gnowsys_ndf/ndf/templates/ndf/pandoracollection.html:17 msgid "Search Results:" msgstr "खोज परिणामः" -#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:7 gnowsys_ndf/ndf/templates/ndf/forum.html:80 gnowsys_ndf/ndf/templates/ndf/group.html:74 gnowsys_ndf/ndf/templates/ndf/page_list.html:127 +#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:7 +#: gnowsys_ndf/ndf/templates/ndf/forum.html:80 +#: gnowsys_ndf/ndf/templates/ndf/group.html:74 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:127 msgid "Found" msgstr "मिल गया" @@ -2132,7 +2823,8 @@ msgstr "मिल गया" msgid "This group doesn't have any collections." msgstr "इस समूह में कोई संग्रह नहीं है" -#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:130 gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:138 +#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:130 +#: gnowsys_ndf/ndf/templates/ndf/file_list_tab.html:138 msgid "Sorry, No such files found." msgstr "क्षमा करें, ऐसी कोई भी फाइल नहीं मिली है" @@ -2158,7 +2850,8 @@ msgstr "टैग्स" #: gnowsys_ndf/ndf/templates/ndf/file_search.html:53 msgid "No file found. Please try using some other keyword" -msgstr "कोई फाइल नहीं प्राप्त हुई है। कृपया अन्य संकेतशब्द (keyword) से प्रयास करें।" +msgstr "" +"कोई फाइल नहीं प्राप्त हुई है। कृपया अन्य संकेतशब्द (keyword) से प्रयास करें।" #: gnowsys_ndf/ndf/templates/ndf/file_statistics.html:58 msgid "Bar-Chart" @@ -2168,7 +2861,8 @@ msgstr "दंड चार्ट" msgid "Pie" msgstr "निजी" -#: gnowsys_ndf/ndf/templates/ndf/file_statistics.html:61 gnowsys_ndf/ndf/templates/ndf/uDashboard.html:26 +#: gnowsys_ndf/ndf/templates/ndf/file_statistics.html:61 +#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:26 msgid "Activity Ratings" msgstr "क्रियाकलाप रेटिंग" @@ -2180,7 +2874,12 @@ msgstr "कुल क्रियाकलाप रेटिंग" msgid "Filter Resources" msgstr "संसाधन" -#: gnowsys_ndf/ndf/templates/ndf/filters.html:133 gnowsys_ndf/ndf/templates/ndf/filters.html:154 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:307 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:312 gnowsys_ndf/ndf/templates/ndf/student_list.html:207 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:687 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:133 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:154 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:307 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:312 +#: gnowsys_ndf/ndf/templates/ndf/student_list.html:207 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:687 msgid "Select" msgstr "चुनें" @@ -2192,7 +2891,8 @@ msgstr "फिल्टर्स" msgid "No values for the key" msgstr "कुंजी के लिए कोई मान नहीं है" -#: gnowsys_ndf/ndf/templates/ndf/filters.html:420 gnowsys_ndf/ndf/templates/ndf/filters.html:498 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:420 +#: gnowsys_ndf/ndf/templates/ndf/filters.html:498 msgid "Remove this filter" msgstr "इस फिल्टर को हटायें" @@ -2204,35 +2904,38 @@ msgstr "पहले से ही लागू है" msgid "Please select the proper filter first" msgstr "कृपया संस्था चुनें" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:31 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:21 msgid "Partners" msgstr "पार्टर्नस" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:32 gnowsys_ndf/ndf/templates/ndf/group.html:12 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:22 +#: gnowsys_ndf/ndf/templates/ndf/group.html:12 msgid "Groups" msgstr "समूह" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:33 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:23 msgid "Terms of Service" msgstr "सेवा की शर्तें" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:34 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:24 msgid "Privacy Policy" msgstr "गोपनीयता नीति" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:35 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:25 msgid "Contribute" msgstr "योगदान करें" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:36 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:26 msgid "Contact" msgstr "संपर्क करें" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:38 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:28 msgid "Issues" msgstr "मुद्दे" -#: gnowsys_ndf/ndf/templates/ndf/footer.html:40 gnowsys_ndf/ndf/templates/ndf/task.html:67 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:190 +#: gnowsys_ndf/ndf/templates/ndf/footer.html:30 +#: gnowsys_ndf/ndf/templates/ndf/task.html:67 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:190 msgid "Feedback" msgstr "प्रतिक्रिया" @@ -2241,7 +2944,8 @@ msgstr "प्रतिक्रिया" msgid "Forums" msgstr "फोरम" -#: gnowsys_ndf/ndf/templates/ndf/forum.html:44 gnowsys_ndf/ndf/templates/ndf/forumdetails.html:64 +#: gnowsys_ndf/ndf/templates/ndf/forum.html:44 +#: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:64 msgid "Create Forum" msgstr "फोरम बनाएँ" @@ -2287,22 +2991,31 @@ msgstr "नवीनतम क्रियाकलाप" #: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:206 msgid "This forum dosen't have any threads. Be the first to create a thread" -msgstr "इस समूह में कोई प्रश्नोत्तरी प्रश्न नहीं है। आप प्रश्नोत्तरी प्रश्न बनाने वाले प्रथम व्यक्ति हो सकते हैं" +msgstr "" +"इस समूह में कोई प्रश्नोत्तरी प्रश्न नहीं है। आप प्रश्नोत्तरी प्रश्न बनाने वाले प्रथम व्यक्ति " +"हो सकते हैं" #: gnowsys_ndf/ndf/templates/ndf/forumdetails.html:274 #, python-format -msgid " This forum has %(thread_count)s existing threads.Please remove them and try again " +msgid "" +" This forum has %(thread_count)s existing threads.Please remove them and " +"try again " msgstr "इस मंच में%(thread_count)s के मौजूदा थ्रेड हैं। कृपया उन्हें हटा दें और पुन: प्रयास करें" #: gnowsys_ndf/ndf/templates/ndf/gcourse_detail.html:146 msgid "You have not added any content to this course yet" msgstr "आपने अभी तक पाठ्यक्रम में विषय-वस्तु नहीं जोड़ी है" -#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:129 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:10 gnowsys_ndf/ndf/templates/ndf/quiz_details.html:98 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:339 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:353 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:129 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:10 +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:98 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:339 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:353 msgid "Edit " msgstr "संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:129 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:339 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:129 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:339 msgid "eCourse" msgstr "पाठ्यक्रम" @@ -2331,17 +3044,25 @@ msgstr "प्रबंधन" msgid "Manage Members" msgstr "सदस्य" -#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:238 gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:303 gnowsys_ndf/ndf/templates/ndf/lms.html:60 gnowsys_ndf/ndf/templates/ndf/lms.html:96 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:238 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:303 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:92 #, fuzzy msgid "Notebook" msgstr "ई-पुस्तक" -#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:250 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:364 gnowsys_ndf/ndf/templates/ndf/quiz.html:31 gnowsys_ndf/ndf/templates/ndf/quiz.html:47 gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:26 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:267 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:250 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:364 +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:31 +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:47 +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:26 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:267 #: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:126 msgid "Quiz" msgstr "प्रश्नोत्तरी" -#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:258 gnowsys_ndf/ndf/templates/ndf/uDashboard.html:285 +#: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:258 +#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:285 msgid "Dashboard" msgstr "डेशबोर्ड" @@ -2349,7 +3070,8 @@ msgstr "डेशबोर्ड" msgid "Unit: " msgstr "इकाई का नाम" -#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:47 gnowsys_ndf/ndf/templates/ndf/lms.html:175 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:47 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:167 #, fuzzy msgid "Manage Users" msgstr "प्रबंधन" @@ -2358,26 +3080,38 @@ msgstr "प्रबंधन" msgid "Export to ePub" msgstr "ePub मैं एक्सपोर्ट करें " -#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:96 gnowsys_ndf/ndf/templates/ndf/lms.html:117 gnowsys_ndf/ndf/templates/ndf/page_list.html:139 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:96 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:113 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:139 msgid "Pages" msgstr "पृष्ठ" -#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:99 gnowsys_ndf/ndf/templates/ndf/lms.html:130 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:99 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:126 #, fuzzy msgid "Assets" msgstr "आकलन" -#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:102 gnowsys_ndf/ndf/templates/ndf/lms.html:134 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:102 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:130 #, fuzzy msgid "Assessments" msgstr "आकलन" -#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:144 gnowsys_ndf/ndf/templates/ndf/lms.html:200 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:105 +#: gnowsys_ndf/ndf/templates/ndf/mis_details.html:134 +#: gnowsys_ndf/ndf/templates/ndf/wikidata.html:110 +msgid "Discuss" +msgstr "परिचर्चा" + +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:144 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:192 #, fuzzy msgid "Delete Unit:" msgstr "मिटाएं" -#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:146 gnowsys_ndf/ndf/templates/ndf/lms.html:202 +#: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:146 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:194 msgid "Are you sure want to delete this unit?" msgstr "क्या आप वाकई इस इकाई को हटाना चाहते हैं?" @@ -2385,20 +3119,29 @@ msgstr "क्या आप वाकई इस इकाई को हटान msgid "Epub will be downloaded automatically." msgstr "ePub स्वयं डाउनलोड हो जायेगा " -#: gnowsys_ndf/ndf/templates/ndf/gheader.html:105 gnowsys_ndf/ndf/templates/ndf/header.html:68 gnowsys_ndf/ndf/templates/ndf/repository.html:19 +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:105 +#: gnowsys_ndf/ndf/templates/ndf/header.html:70 +#: gnowsys_ndf/ndf/templates/ndf/repository.html:19 msgid "Repository" msgstr "संसाधन कोष" -#: gnowsys_ndf/ndf/templates/ndf/gheader.html:161 gnowsys_ndf/ndf/templates/ndf/header.html:220 +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:161 +#: gnowsys_ndf/ndf/templates/ndf/header.html:223 msgid "MY COURSES" msgstr "मेरे पाठ्यक्रम" -#: gnowsys_ndf/ndf/templates/ndf/gheader.html:178 gnowsys_ndf/ndf/templates/ndf/header.html:239 +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:178 +#: gnowsys_ndf/ndf/templates/ndf/header.html:242 msgid "EXPLORE" msgstr "खोजें" -#: gnowsys_ndf/ndf/templates/ndf/gheader.html:214 gnowsys_ndf/ndf/templates/ndf/header.html:291 gnowsys_ndf/ndf/templates/ndf/header_clix.html:140 gnowsys_ndf/ndf/templates/ndf/header_clix.html:185 gnowsys_ndf/ndf/templates/registration/password_change_form.html:12 -#: gnowsys_ndf/ndf/templates/registration/password_change_form.html:16 gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:34 +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:214 +#: gnowsys_ndf/ndf/templates/ndf/header.html:294 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:140 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:185 +#: gnowsys_ndf/ndf/templates/registration/password_change_form.html:12 +#: gnowsys_ndf/ndf/templates/registration/password_change_form.html:16 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:34 msgid "Change Password" msgstr "पासवर्ड बदलें" @@ -2418,27 +3161,53 @@ msgstr "एडमिन डिजाइनर" msgid "Home Dashboard" msgstr "हॉम डेशबोर्ड" -#: gnowsys_ndf/ndf/templates/ndf/gheader.html:234 gnowsys_ndf/ndf/templates/ndf/header.html:347 gnowsys_ndf/ndf/templates/ndf/header_clix.html:145 gnowsys_ndf/ndf/templates/ndf/header_clix.html:190 +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:234 +#: gnowsys_ndf/ndf/templates/ndf/header.html:350 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:145 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:190 msgid "Logout" msgstr "लोगआउट" -#: gnowsys_ndf/ndf/templates/ndf/gheader.html:256 gnowsys_ndf/ndf/templates/ndf/header.html:373 gnowsys_ndf/ndf/templates/ndf/header_clix.html:153 gnowsys_ndf/ndf/templates/ndf/header_clix.html:208 gnowsys_ndf/ndf/templates/ndf/landing_page_clix.html:41 gnowsys_ndf/ndf/templates/registration/login.html:4 -#: gnowsys_ndf/ndf/templates/registration/login.html:85 gnowsys_ndf/ndf/templates/registration/login_clix.html:8 gnowsys_ndf/ndf/templates/registration/login_clix.html:91 +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:256 +#: gnowsys_ndf/ndf/templates/ndf/header.html:376 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:153 +#: gnowsys_ndf/ndf/templates/ndf/header_clix.html:208 +#: gnowsys_ndf/ndf/templates/ndf/landing_page_clix.html:41 +#: gnowsys_ndf/ndf/templates/registration/login.html:4 +#: gnowsys_ndf/ndf/templates/registration/login.html:85 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:8 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:91 msgid "Login" msgstr "लॉगिन" -#: gnowsys_ndf/ndf/templates/ndf/gheader.html:471 gnowsys_ndf/ndf/templates/ndf/header.html:617 -msgid "RSS Feeds may not be displayed properly in this browser. Would you still like to continue?" -msgstr "इस ब्राउज़र में आरएसएस फ़ीड ठीक से प्रदर्शित नहीं की जा सकतीं क्या आप अभी भी जारी रखना चाहेंगे?" +#: gnowsys_ndf/ndf/templates/ndf/gheader.html:471 +#: gnowsys_ndf/ndf/templates/ndf/header.html:623 +msgid "" +"RSS Feeds may not be displayed properly in this browser. Would you still " +"like to continue?" +msgstr "" +"इस ब्राउज़र में आरएसएस फ़ीड ठीक से प्रदर्शित नहीं की जा सकतीं क्या आप अभी भी जारी रखना " +"चाहेंगे?" #: gnowsys_ndf/ndf/templates/ndf/group.html:31 msgid "" -"

    Groups are an easy way to share content and conversation, either privately or with the world. Many times, a group already exist for a specific interest or topic. If you can't find one you like, feel free to start your own.

    \n" +"

    Groups are an easy way to share content and conversation, either " +"privately or with the world. Many times, a group already exist for a " +"specific interest or topic. If you can't find one you like, feel free to " +"start your own.

    \n" "
    How do groups work?
    \n" -"

    Groups can either be public, restricted (users may read a brief description or overview but not view content) or completely private. Every group has a wiki, a pool for resources, and a discussion board for talking.

    " +"

    Groups can either be public, restricted (users may read a brief " +"description or overview but not view content) or completely private. Every " +"group has a wiki, a pool for resources, and a discussion board for talking." msgstr "" -"

    समूह विषय वस्तु को वितरित करने तथा सम्प्रेषित करने का निजि अथवा विश्व स्तरीयसरल मार्ग है। कई बार विशिष्ट अभिरुचि या प्रकरण पर समूह पहले से उपस्थिति होते हैं। यदि आपको अपनी अभिरुचि का समूह नहीं मिले तो आप अपना समूह आरम्भ कर सकते हैं।

    \n" -"
    समूह कैसे कार्य करते हैं?

    समूह सार्वजनिक, अवरुध (उपयोगकर्ता विषय वस्तु का संक्षिप्त विवरण अथवा रूप् रेखा पढ सकते हैं परंतु विषय वस्तु को पूर्णतः देख नहीं सकते) अथवा पूर्णतः निजि। प्रत्येक समूह एक विकी, संसाधन समूह तथा वार्ता हेतु परिचर्चा बोर्ड रखता है।

    " +"

    समूह विषय वस्तु को वितरित करने तथा सम्प्रेषित करने का निजि अथवा विश्व स्तरीयसरल " +"मार्ग है। कई बार विशिष्ट अभिरुचि या प्रकरण पर समूह पहले से उपस्थिति होते हैं। यदि आपको " +"अपनी अभिरुचि का समूह नहीं मिले तो आप अपना समूह आरम्भ कर सकते हैं।

    \n" +"
    समूह कैसे कार्य करते हैं?

    समूह सार्वजनिक, अवरुध (उपयोगकर्ता विषय वस्तु का " +"संक्षिप्त विवरण अथवा रूप् रेखा पढ सकते हैं परंतु विषय वस्तु को पूर्णतः देख नहीं सकते) अथवा " +"पूर्णतः निजि। प्रत्येक समूह एक विकी, संसाधन समूह तथा वार्ता हेतु परिचर्चा बोर्ड रखता है।" #: gnowsys_ndf/ndf/templates/ndf/group.html:64 msgid "All Groups" @@ -2446,14 +3215,20 @@ msgstr "समूह" #: gnowsys_ndf/ndf/templates/ndf/group.html:80 #, python-format -msgid " No %(title|lower)s%(group_nodes_count|pluralize)s matched your search criteria " +msgid "" +" No %(title|lower)s%(group_nodes_count|pluralize)s matched your search " +"criteria " msgstr "" -#: gnowsys_ndf/ndf/templates/ndf/group.html:120 gnowsys_ndf/ndf/templates/ndf/uDashboard.html:184 +#: gnowsys_ndf/ndf/templates/ndf/group.html:120 +#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:184 msgid "created" msgstr "सृजित" -#: gnowsys_ndf/ndf/templates/ndf/group.html:120 gnowsys_ndf/ndf/templates/ndf/gtask_details.html:234 gnowsys_ndf/ndf/templates/ndf/task_details.html:258 gnowsys_ndf/ndf/templates/ndf/uDashboard.html:184 +#: gnowsys_ndf/ndf/templates/ndf/group.html:120 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:234 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:258 +#: gnowsys_ndf/ndf/templates/ndf/uDashboard.html:184 msgid "ago" msgstr "टैग" @@ -2466,8 +3241,12 @@ msgid "Objects" msgstr "ऑब्जेक्ट" #: gnowsys_ndf/ndf/templates/ndf/group.html:142 -msgid "

    There are no groups created yet. Be the first to create a Group!
    " -msgstr "
    अभी तक कोई समूह नहीं बनाया गया है। आप समूह बनाने वाले प्रथम व्यक्ति हो सकते हैं
    " +msgid "" +"
    There are no groups created yet. Be the first to create a Group!
    " +msgstr "" +"
    अभी तक कोई समूह नहीं बनाया गया है। आप समूह बनाने वाले प्रथम व्यक्ति हो सकते हैं
    " #: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:101 msgid "" @@ -2482,7 +3261,8 @@ msgstr "" msgid "Approval" msgstr "अनुमोदन" -#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:199 gnowsys_ndf/ndf/templates/ndf/unit_player.html:22 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:199 +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:22 msgid "Activity" msgstr "क्रियाकलाप" @@ -2494,7 +3274,9 @@ msgstr "कैलेंडर" msgid "Enrollment Details" msgstr "नामांकन विवरण" -#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:220 gnowsys_ndf/ndf/templates/ndf/mis_list.html:258 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:522 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:220 +#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:258 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:522 msgid "S. #" msgstr "" @@ -2510,7 +3292,9 @@ msgstr "प्रदर्शन हेतु विषय नहीं है msgid "Please select the image type file!" msgstr "कृपया कार्य प्रकार चुनें" -#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:424 gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:464 gnowsys_ndf/ndf/templates/ndf/widget_photo_upload.html:235 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:424 +#: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:464 +#: gnowsys_ndf/ndf/templates/ndf/widget_photo_upload.html:235 msgid "Only image files should be selected for setting your profile picture!" msgstr "प्रोफ़ाइल तस्वीर सेट करने के लिए केवल चित्र फाइल का ही चयन करें" @@ -2526,123 +3310,160 @@ msgstr "आप चयनित छात्रों का अनुमोद msgid "Do you want to continue rejecting the selected students?" msgstr "आप चयनित छात्रों का खारिज जारी रखना चाहते हैं ?" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:90 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:218 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:90 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:218 msgid "Feature" msgstr "विशेषता" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:91 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:219 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:91 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:219 msgid "Support" msgstr "मदद" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:127 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:255 gnowsys_ndf/ndf/templates/ndf/task.html:65 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:188 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:127 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:255 +#: gnowsys_ndf/ndf/templates/ndf/task.html:65 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:188 msgid "In Progress" msgstr "प्रगति में" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:137 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:265 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:209 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:137 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:265 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:209 msgid "Low" msgstr "कम" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:138 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:266 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:211 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:138 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:266 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:211 msgid "High" msgstr "उच्च" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:139 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:267 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:213 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:139 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:267 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:213 msgid "Immediate" msgstr "तुरंत" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:177 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:305 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:236 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:177 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:305 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:236 msgid "Single Assignee" msgstr "कार्य प्राप्तकर्ता:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:178 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:306 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:237 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:178 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:306 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:237 msgid "Multiple Assignee" msgstr "कार्य प्राप्तकर्ता:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:179 gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:307 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:179 +#: gnowsys_ndf/ndf/templates/ndf/gtask_create_edit.html:307 msgid "Group Assignee" msgstr "कार्य प्राप्तकर्ता:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:14 gnowsys_ndf/ndf/templates/ndf/task_details.html:38 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:14 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:38 msgid "New Task" msgstr "नया कार्य" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:25 gnowsys_ndf/ndf/templates/ndf/lms.html:70 gnowsys_ndf/ndf/templates/ndf/lms.html:108 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:176 gnowsys_ndf/ndf/templates/ndf/task_details.html:49 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:25 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:66 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:104 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:176 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:49 msgid "Task" msgstr "कार्य" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:48 gnowsys_ndf/ndf/templates/ndf/task_details.html:72 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:48 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:72 msgid "Parent task" msgstr "मूल कार्यः" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:62 gnowsys_ndf/ndf/templates/ndf/task_details.html:86 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:62 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:86 msgid "Task type:" msgstr "कार्य प्रकार:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:73 gnowsys_ndf/ndf/templates/ndf/task_details.html:97 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:73 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:97 msgid "Status:" msgstr "स्थिति:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:87 gnowsys_ndf/ndf/templates/ndf/task_details.html:111 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:87 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:111 msgid "Start Date:" msgstr "आरंभ तिथिः" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:98 gnowsys_ndf/ndf/templates/ndf/task_details.html:122 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:98 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:122 msgid "Priority:" msgstr "प्राथमिकता:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:112 gnowsys_ndf/ndf/templates/ndf/task_details.html:136 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:112 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:136 msgid "Due Date:" msgstr "नियत तिथि:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:123 gnowsys_ndf/ndf/templates/ndf/task_details.html:147 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:123 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:147 msgid "Assignee:" msgstr "कार्य प्राप्तकर्ता:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:137 gnowsys_ndf/ndf/templates/ndf/task_details.html:161 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:137 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:161 msgid "Sub Task:" msgstr "उप-कार्य:" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:234 gnowsys_ndf/ndf/templates/ndf/task_details.html:258 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:234 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:258 msgid "Edited" msgstr "संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:237 gnowsys_ndf/ndf/templates/ndf/task_details.html:261 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:237 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:261 msgid "Versions" msgstr "सत्र" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:255 gnowsys_ndf/ndf/templates/ndf/task_details.html:279 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:255 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:279 msgid "Editing Name" msgstr "नाम संपादन" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:257 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:167 gnowsys_ndf/ndf/templates/ndf/task_details.html:281 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:257 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:167 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:281 msgid "Enter name" msgstr "बैच का नाम अंकित करें" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:274 gnowsys_ndf/ndf/templates/ndf/task_details.html:298 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:274 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:298 msgid "×" msgstr "×" -#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:291 gnowsys_ndf/ndf/templates/ndf/task_details.html:315 +#: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:291 +#: gnowsys_ndf/ndf/templates/ndf/task_details.html:315 msgid "Nothing is Changed" msgstr "कुछ भी नहीं मिला" -#: gnowsys_ndf/ndf/templates/ndf/header.html:211 +#: gnowsys_ndf/ndf/templates/ndf/header.html:214 msgid "MY DASHBOARD" msgstr "मेरा डैशबोर्ड" -#: gnowsys_ndf/ndf/templates/ndf/header.html:228 +#: gnowsys_ndf/ndf/templates/ndf/header.html:231 msgid "MY GROUPS" msgstr "मेरे समूह" -#: gnowsys_ndf/ndf/templates/ndf/header.html:467 +#: gnowsys_ndf/ndf/templates/ndf/header.html:473 msgid "APPS" msgstr "ऐप्स" -#: gnowsys_ndf/ndf/templates/ndf/header.html:489 gnowsys_ndf/ndf/templates/ndf/header.html:499 +#: gnowsys_ndf/ndf/templates/ndf/header.html:495 +#: gnowsys_ndf/ndf/templates/ndf/header.html:505 msgid "Updates" msgstr "अद्यतन सूची" -#: gnowsys_ndf/ndf/templates/ndf/header.html:554 +#: gnowsys_ndf/ndf/templates/ndf/header.html:560 msgid "BACK" msgstr "पीछे" @@ -2668,12 +3489,19 @@ msgstr "ग्रेड" msgid " %(content)s " msgstr "विषय-वस्तुः" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:14 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:192 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:200 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:257 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:269 -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:287 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:304 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:14 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:192 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:200 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:257 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:269 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:287 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:304 msgid "Please select" msgstr "कृपया चुनें" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:30 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:65 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:122 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:30 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:65 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:122 msgid "Please fill a valid" msgstr "कृपया वैध < > भरें" @@ -2693,7 +3521,9 @@ msgstr "देखने के लिए क्ल्कि करें" msgid "Upload! " msgstr "अपलोड करें" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:262 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:280 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:292 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:262 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:280 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:292 #, fuzzy, python-format msgid " - - - Select %(alt)s - - - " msgstr " - - - चुनें - - - " @@ -2703,28 +3533,35 @@ msgstr " - - - चुनें - - - " msgid " %(choice)s " msgstr "विकल्प" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:282 gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:297 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:282 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:297 #, fuzzy, python-format msgid " %(alt)s " msgstr "%(alt)s" -#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:307 gnowsys_ndf/ndf/templates/notification/notice_settings.html:52 gnowsys_ndf/notification/templates/notification/notice_settings.html:52 +#: gnowsys_ndf/ndf/templates/ndf/html_field_widget.html:307 +#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:52 +#: gnowsys_ndf/notification/templates/notification/notice_settings.html:52 msgid "Change" msgstr "बदलें" -#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:38 gnowsys_ndf/ndf/templates/ndf/invite_users.html:34 +#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:38 +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:34 msgid "Notification mails sent to newly selected users" msgstr "समूह संचालक के अतिरिक्त अन्य सभी को मेल भेजें" -#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:42 gnowsys_ndf/ndf/templates/ndf/invite_users.html:38 +#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:42 +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:38 msgid "Notification mails sent to all users except group owner" msgstr "समूह संचालक के अतिरिक्त अन्य सभी को मेल भेजें" -#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:54 gnowsys_ndf/ndf/templates/ndf/invite_users.html:50 +#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:54 +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:50 msgid "Successfully applied modifications and e-mail notifications sent" msgstr "भेजे गए संशोधनों और ई-मेल सूचनाओं को सफलतापूर्वक लागू किया गया" -#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:114 gnowsys_ndf/ndf/templates/ndf/invite_users.html:110 +#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:114 +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:110 msgid "Type here and press enter to search users" msgstr "यहां टाइप करें और उपयोगकर्ताओं को खोजने के लिए एन्टर दबाएं" @@ -2742,7 +3579,10 @@ msgid "" " Send notification mails to all except the group owner" msgstr "Send notification mails to all except the group owner" -#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:167 gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:49 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:211 gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:317 +#: gnowsys_ndf/ndf/templates/ndf/invite_admins.html:167 +#: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:49 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:211 +#: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:317 msgid "×" msgstr "×" @@ -2750,7 +3590,8 @@ msgstr "×" msgid "failed to subscribe" msgstr "सदस्यता लेने में विफल" -#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:155 gnowsys_ndf/ndf/templates/ndf/invite_users.html:157 +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:155 +#: gnowsys_ndf/ndf/templates/ndf/invite_users.html:157 msgid "Subscribe Users" msgstr "उपयोगकर्ता सदस्यता लें" @@ -3204,52 +4045,57 @@ msgstr "" msgid "Welcome" msgstr "स्वागत है" -#: gnowsys_ndf/ndf/templates/ndf/lms.html:51 gnowsys_ndf/ndf/templates/ndf/lms.html:86 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:52 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:83 msgid "Resources" msgstr "संसाधन" -#: gnowsys_ndf/ndf/templates/ndf/lms.html:53 gnowsys_ndf/ndf/templates/ndf/lms.html:89 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:54 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:86 #, fuzzy msgid "E-Library" msgstr "ई-पुस्तकालय" -#: gnowsys_ndf/ndf/templates/ndf/lms.html:58 gnowsys_ndf/ndf/templates/ndf/lms.html:94 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:57 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:90 msgid "Blog" msgstr "ब्लॉग" -#: gnowsys_ndf/ndf/templates/ndf/lms.html:82 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:78 msgid "Lessons" msgstr "पाठ" -#: gnowsys_ndf/ndf/templates/ndf/lms.html:128 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:124 #, fuzzy msgid "Asset Collection" msgstr "संग्रह" -#: gnowsys_ndf/ndf/templates/ndf/lms.html:162 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:154 #, fuzzy msgid "Stats" msgstr "स्थिति:" -#: gnowsys_ndf/ndf/templates/ndf/lms.html:162 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:154 msgid "Progress Report" msgstr "प्रगति रिपोर्ट" -#: gnowsys_ndf/ndf/templates/ndf/lms.html:165 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:157 #, fuzzy msgid "Edit Structure" msgstr "पाठ्यक्रम संरचना संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/lms.html:172 gnowsys_ndf/ndf/templates/ndf/module_detail.html:41 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:164 +#: gnowsys_ndf/ndf/templates/ndf/module_detail.html:41 #, fuzzy msgid "Change image" msgstr "बदलें" -#: gnowsys_ndf/ndf/templates/ndf/lms.html:190 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:182 msgid "Export Content into ePubs" msgstr "ePub मैं एक्सपोर्ट करें " -#: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:38 gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:41 +#: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:38 +#: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:41 msgid "My Workspaces" msgstr "मेरे वर्कस्पेस" @@ -3307,11 +4153,13 @@ msgstr "बैठक आरंभ करें" #: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:26 msgid "" "

    Link user-account to respective user-details

    \n" -"

    NOTE: Please provide username of the user (i.e. student/voluntary-teacher), that he/she has registered on to the website.

    \n" +"

    NOTE: Please provide username of the user (i.e. student/voluntary-" +"teacher), that he/she has registered on to the website.

    \n" " " msgstr "" "

    Link user-account to respective user-details

    \n" -"

    NOTE: Please provide username of the user (i.e. student/voluntary-teacher), that he/she has registered on to the website.

    " +"

    NOTE: Please provide username of the user (i.e. student/voluntary-" +"teacher), that he/she has registered on to the website.

    " #: gnowsys_ndf/ndf/templates/ndf/mis_base_list.html:34 msgid "Username:" @@ -3323,7 +4171,9 @@ msgstr "कृपया उपयोगकर्ता का नाम भर #: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:145 #, fuzzy, python-format -msgid "

    This file :%(already_uploaded)s Already uploaded please choose another file

    " +msgid "" +"

    This file :%(already_uploaded)s Already " +"uploaded please choose another file

    " msgstr "यह फाइल :%(already_uploaded)s अपलोड किया गया है कोई अन्य फाइल चुनें" #: gnowsys_ndf/ndf/templates/ndf/mis_create_edit.html:162 @@ -3358,11 +4208,16 @@ msgstr "बैच जाँच" msgid "Make Module" msgstr "मॉड्यूल बनायें" -#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:200 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:427 gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:111 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:498 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:525 +#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:200 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:427 +#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:111 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:498 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:525 msgid "College" msgstr "संस्था" -#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:201 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:416 +#: gnowsys_ndf/ndf/templates/ndf/mis_list.html:201 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:416 msgid "Degree Year" msgstr "उपाधि वर्ष" @@ -3383,7 +4238,9 @@ msgid "III" msgstr "III" #: gnowsys_ndf/ndf/templates/ndf/mis_list.html:230 -msgid "

    Are you sure you want to delete? All of the following related data also will be deleted:

    " +msgid "" +"

    Are you sure you want to delete? All of the following related data also " +"will be deleted:

    " msgstr "क्या आप मिटाना चाहते हैं। ऐसा करने से सभी संबंधित वस्तुएँ भी मिट जायेंगी" #: gnowsys_ndf/ndf/templates/ndf/mis_list.html:290 @@ -3398,7 +4255,8 @@ msgstr "रिपोर्ट" msgid "- - - Select - - -" msgstr "चुनें" -#: gnowsys_ndf/ndf/templates/ndf/mis_report.html:65 gnowsys_ndf/ndf/templates/ndf/student_list.html:126 +#: gnowsys_ndf/ndf/templates/ndf/mis_report.html:65 +#: gnowsys_ndf/ndf/templates/ndf/student_list.html:126 msgid "Filters" msgstr "फिल्टर्स" @@ -3455,7 +4313,8 @@ msgid "Modules" msgstr "मॉड्यूल" #: gnowsys_ndf/ndf/templates/ndf/module.html:120 -msgid " This group doesn't have any modules. Be the first to create a Module!" +msgid "" +" This group doesn't have any modules. Be the first to create a Module!" msgstr "इस समूह में कोई मॉड्यूल नहीं है। आप मॉड्यूल बनाने वाले प्रथम व्यक्ति हो सकते हैं" #: gnowsys_ndf/ndf/templates/ndf/module_detail.html:22 @@ -3501,17 +4360,30 @@ msgstr "नोट: निम्न संसाधन मॉडरेशन क msgid "Check the current status of Moderation" msgstr "मॉडरेशन की वर्तमान स्थिति की जांच करें" -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:241 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:367 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:145 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:149 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:186 -#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:190 gnowsys_ndf/ndf/templates/ndf/resource_view.html:42 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:241 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:367 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:145 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:149 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:186 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:190 +#: gnowsys_ndf/ndf/templates/ndf/resource_view.html:42 msgid "Your browser does not support the audio element" msgstr "आपका ब्राउज़र वीडियो टैग को सहयोग नहीं कर रहा है" -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:251 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:259 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:321 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:95 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:101 -#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:122 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:130 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:173 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:182 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:251 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:259 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:321 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:95 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:101 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:122 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:130 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:173 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:182 msgid "Your browser does not support the video tag." msgstr "आपका ब्राउज़र वीडियो टैग को सहयोग नहीं कर रहा है" -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:298 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:311 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:298 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:311 msgid "View in Full Screen" msgstr "पूर्ण स्क्रीन में देखें" @@ -3524,15 +4396,18 @@ msgstr "फ़ाइल अपलोड करें" msgid "Add Subtitle(s)" msgstr "उपशीर्षक जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:375 gnowsys_ndf/ndf/templates/ndf/resource_view.html:50 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:375 +#: gnowsys_ndf/ndf/templates/ndf/resource_view.html:50 msgid "View in full screen" msgstr "पूर्ण स्क्रीन में देखें" -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:406 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:221 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:406 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:221 msgid "Download" msgstr "डाउनलोड" -#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:414 gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:545 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:414 +#: gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html:545 msgid "Contributed by" msgstr "योगदानकर्ता द्वारा" @@ -3549,7 +4424,9 @@ msgstr "संसाधनों में खोजने के लिए य msgid "Create " msgstr "सृजित करें" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:71 gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:41 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:41 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:71 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:41 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:41 msgid "Editing " msgstr "%(title_var)s: %(node_name)s को संपादित करें" @@ -3575,19 +4452,23 @@ msgstr "मौजूदा टेम्पलेट से पृष्ठ ब msgid "Node" msgstr "नोड" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:106 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:64 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:106 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:64 msgid "Requires" msgstr "आवश्यक है" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:114 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:61 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:114 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:61 msgid "Metadata" msgstr "मेटाडाटा" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:117 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:70 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:117 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:70 msgid "Teaches" msgstr "टीचेस्" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:121 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:67 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:121 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:67 msgid "Assesses" msgstr "आकलन" @@ -3595,15 +4476,20 @@ msgstr "आकलन" msgid "Settings" msgstr "सेटिंग" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:208 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:236 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:208 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:236 msgid "Visibility" msgstr "दृश्यता" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:215 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:222 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:243 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:215 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:222 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:243 msgid "Visible" msgstr "दर्शनीय" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:218 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:225 gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:246 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:218 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:225 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:246 msgid "Hidden" msgstr "छुपा हुआ" @@ -3611,75 +4497,93 @@ msgstr "छुपा हुआ" msgid "Location:" msgstr "स्थान:" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:341 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:237 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:341 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:237 msgid "Page" msgstr "पृष्ठ" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:345 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:242 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:345 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:242 msgid "File" msgstr "फ़ाइल" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:354 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:254 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:354 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:254 msgid "Video" msgstr "वीडियो" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:359 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:260 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:359 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:260 msgid "Pandora" msgstr "पेंडोरा" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:386 gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:6 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:386 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:6 msgid "Please add or edit Metadata" msgstr "कृपया मेटाडेटा जोड़े अथवा संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:394 gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:15 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:394 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:15 msgid "Educational Use:" msgstr "शैक्षिक उपयोगिताः" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:396 gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:17 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:396 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:17 msgid "Interactivity Type: " msgstr "इंटरैक्टिविटी प्रकार" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:398 gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:19 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:398 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:19 msgid "Educational Level:" msgstr "शैक्षिक स्तरः" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:400 gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:21 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:400 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:21 msgid "Educational Subject:" msgstr "शैक्षिक विषयः" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:402 gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:23 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:402 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:23 msgid "Time Required: " msgstr "आवश्यक समयः" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:404 gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:25 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:404 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:25 msgid "Target Audience:" msgstr "लक्षित गण:" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:406 gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:27 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:406 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:27 msgid "Text Complexity" msgstr "पाठ की जटिलता" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:408 gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:29 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:408 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:29 msgid "Age Range:" msgstr "आयु वर्ग:" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:410 gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:31 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:410 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:31 msgid "Reading Level:" msgstr "पठन स्तरः" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:412 gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:33 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:412 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:33 msgid "Curricular:" msgstr "पाठ्यक्रम:" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:414 gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:35 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:414 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:35 msgid "Educational Alignment:" msgstr "शैक्षिक उपयोगिताः" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:439 gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:61 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:439 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:61 msgid "Based on Url: " msgstr "यूआरएल पर आधारित:" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:445 gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:68 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:445 +#: gnowsys_ndf/ndf/templates/ndf/widget_metadata.html:68 msgid "Source: " msgstr "स्रोत:" @@ -3700,11 +4604,13 @@ msgstr "विचार-विमर्श भाग मैं विशेष msgid " node " msgstr "नोड" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:483 gnowsys_ndf/ndf/templates/ndf/widget_interaction.html:24 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:483 +#: gnowsys_ndf/ndf/templates/ndf/widget_interaction.html:24 msgid "Interaction : " msgstr "इंटरैक्टिवस" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:499 gnowsys_ndf/ndf/templates/ndf/widget_interaction.html:34 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:499 +#: gnowsys_ndf/ndf/templates/ndf/widget_interaction.html:34 msgid "Release Option:" msgstr "संबंध:" @@ -3716,7 +4622,8 @@ msgstr "सभी के उत्तर दिखाएं" msgid "Hide Replies from All" msgstr "सभी के उत्तर छिपाएं" -#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:510 gnowsys_ndf/ndf/templates/ndf/widget_interaction.html:46 +#: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:510 +#: gnowsys_ndf/ndf/templates/ndf/widget_interaction.html:46 msgid "Interaction Type:" msgstr "इंटरैक्टिविटी प्रकार" @@ -3772,23 +4679,32 @@ msgstr "कृपया संकेतशब्द (keyword) भरें" msgid "More" msgstr "अधिक" -#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:78 gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:12 gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:12 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:12 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:99 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:78 +#: gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:12 +#: gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:12 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:12 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:99 msgid "Editing" msgstr "संपादित करें" -#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:80 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:101 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:80 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:101 msgid "Register " msgstr "पंजीकरण" -#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:242 gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:264 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:242 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:264 msgid "Qualification" msgstr "अर्हता" -#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:243 gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:265 gnowsys_ndf/ndf/templates/ndf/refresh_subscribed_users.html:14 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:243 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:265 +#: gnowsys_ndf/ndf/templates/ndf/refresh_subscribed_users.html:14 msgid "Action" msgstr "क्रिया" -#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:248 gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:270 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:248 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:270 msgid "Please set qualification text!" msgstr "कृपया योग्यता सेट करें!" @@ -3796,7 +4712,11 @@ msgstr "कृपया योग्यता सेट करें!" msgid "Demo requirement text" msgstr "डेमो के लिए आवश्यक टेक्स्ट" -#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:618 gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:281 gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:303 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:686 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:1276 +#: gnowsys_ndf/ndf/templates/ndf/nussd_course_create_edit.html:618 +#: gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:281 +#: gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:303 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:686 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:1276 #: gnowsys_ndf/ndf/templates/registration/registration_form.html:29 msgid "Register" msgstr "पंजीकरण" @@ -3817,7 +4737,9 @@ msgstr "Last Seen" msgid "Online" msgstr "ऑनलाइन" -#: gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:14 gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:14 gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:14 +#: gnowsys_ndf/ndf/templates/ndf/organization_create_edit.html:14 +#: gnowsys_ndf/ndf/templates/ndf/person_create_edit.html:14 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:14 msgid "Register a " msgstr "पंजीकरण" @@ -3846,17 +4768,29 @@ msgid "Page Editor" msgstr "पृष्ठ संपादक" #: gnowsys_ndf/ndf/templates/ndf/page_create_edit.html:7 -msgid "Pages are just like the pages of your notebook. You can write your content here.

    " +msgid "" +"Pages are just like the pages of your notebook. You can write your " +"content here.

    " msgstr "पृष्ठ आपकी पुस्तक के पृष्ठ जैसा ही है। इसमें आप अपना विषय लिख सकते हैं" #: gnowsys_ndf/ndf/templates/ndf/page_details.html:4 msgid "" -"

    Pages are user-written articles on a range of subjects. Any contributor or a group of contributors can create (and own) new articles, and there can be multiple articles on the same topic, each written by a different author.

    \n" +"

    Pages are user-written articles on a range of subjects. Any contributor " +"or a group of contributors can create (and own) new articles, and there can " +"be multiple articles on the same topic, each written by a different author. " +"

    \n" "
    Who can make a page?
    \n" -"

    Anyone with an account can create a new article. When creating a new article, the initial contributor can choose to have a defined list of authors, all of whom can edit the page, or have an open, wiki-like format where anyone can contribute.

    \n" +"

    Anyone with an account can create a new article. When creating a new " +"article, the initial contributor can choose to have a defined list of " +"authors, all of whom can edit the page, or have an open, wiki-like format " +"where anyone can contribute.

    \n" msgstr "" -"

    पृष्ठ किसी भी विषय पर लिखा गया लेख है। कोई योगदानकर्ता या समूह, पृष्ठ बना सकता है, किसी भी विषय पर विभिन्न लेखकों द्वारा सृजित अनेक पृष्ठ हो सकते है।

    पृष्ठ कौन तैयार कर सकता है?

    प्रत्येक पंजीकृत उपयोगकर्ता एक नया पृष्ठ सृजित कर सकता है। लेखक, पूर्व निर्धारित पंजीकृत उपयोगकर्ताओं में से इस पृष्ठ को संपादित करने के लिए आमंत्रित कर सकता है अथवा विकी " -"प्रारूप का प्रयोग करते हुए सभी पंजीकृत उपयोगकर्ताओं को संपादन करने की अनुमति भी प्रदान कर सकता है।

    \n" +"

    पृष्ठ किसी भी विषय पर लिखा गया लेख है। कोई योगदानकर्ता या समूह, पृष्ठ बना सकता है, " +"किसी भी विषय पर विभिन्न लेखकों द्वारा सृजित अनेक पृष्ठ हो सकते है।

    पृष्ठ कौन " +"तैयार कर सकता है?

    प्रत्येक पंजीकृत उपयोगकर्ता एक नया पृष्ठ सृजित कर सकता है। " +"लेखक, पूर्व निर्धारित पंजीकृत उपयोगकर्ताओं में से इस पृष्ठ को संपादित करने के लिए आमंत्रित कर " +"सकता है अथवा विकी प्रारूप का प्रयोग करते हुए सभी पंजीकृत उपयोगकर्ताओं को संपादन करने की " +"अनुमति भी प्रदान कर सकता है।

    \n" #: gnowsys_ndf/ndf/templates/ndf/page_list.html:11 msgid "Pages Introduction" @@ -3872,18 +4806,29 @@ msgstr "पृष्ठ" #: gnowsys_ndf/ndf/templates/ndf/page_list.html:25 msgid "" -"

    Pages are user-written articles on a range of subjects. Any contributor or a group of contributors can create (and own) new articles, and there can be multiple articles on the same topic, each written by a different author.

    \n" +"

    Pages are user-written articles on a range of subjects. Any " +"contributor or a group of contributors can create (and own) new articles, " +"and there can be multiple articles on the same topic, each written by a " +"different author.

    \n" "
    Who can make a page?
    \n" -"

    Anyone with an account can create a new article. When creating a new article, the initial contributor can choose to have a defined list of authors, all of whom can edit the page, or have an open, wiki-like format where anyone can contribute.

    \n" +"

    Anyone with an account can create a new article. When creating a " +"new article, the initial contributor can choose to have a defined list of " +"authors, all of whom can edit the page, or have an open, wiki-like format " +"where anyone can contribute.

    \n" msgstr "" -"

    पृष्ठ किसी भी विषय पर लिखा गया लेख है। कोई योगदानकर्ता या समूह, पृष्ठ बना सकता है, किसी भी विषय पर विभिन्न लेखकों द्वारा सृजित अनेक पृष्ठ हो सकते है।

    पृष्ठ कौन तैयार कर सकता है?

    प्रत्येक पंजीकृत उपयोगकर्ता एक नया पृष्ठ सृजित कर सकता है। लेखक, पूर्व निर्धारित पंजीकृत उपयोगकर्ताओं में से इस पृष्ठ को संपादित करने के लिए आमंत्रित कर सकता है अथवा विकी " -"प्रारूप का प्रयोग करते हुए सभी पंजीकृत उपयोगकर्ताओं को संपादन करने की अनुमति भी प्रदान कर सकता है।

    \n" +"

    पृष्ठ किसी भी विषय पर लिखा गया लेख है। कोई योगदानकर्ता या समूह, पृष्ठ बना सकता है, " +"किसी भी विषय पर विभिन्न लेखकों द्वारा सृजित अनेक पृष्ठ हो सकते है।

    पृष्ठ कौन " +"तैयार कर सकता है?

    प्रत्येक पंजीकृत उपयोगकर्ता एक नया पृष्ठ सृजित कर सकता है। " +"लेखक, पूर्व निर्धारित पंजीकृत उपयोगकर्ताओं में से इस पृष्ठ को संपादित करने के लिए आमंत्रित कर " +"सकता है अथवा विकी प्रारूप का प्रयोग करते हुए सभी पंजीकृत उपयोगकर्ताओं को संपादन करने की " +"अनुमति भी प्रदान कर सकता है।

    \n" #: gnowsys_ndf/ndf/templates/ndf/page_list.html:36 msgid "Please Login to create your shelf" msgstr "अपना शेल्फ बनाने के लिए कृपया लॉगिन करें" -#: gnowsys_ndf/ndf/templates/ndf/page_list.html:73 gnowsys_ndf/ndf/templates/ndf/term.html:26 +#: gnowsys_ndf/ndf/templates/ndf/page_list.html:73 +#: gnowsys_ndf/ndf/templates/ndf/term.html:26 msgid "Visit" msgstr "दृश्यता" @@ -3907,7 +4852,8 @@ msgstr "अभी तक नहीं है" msgid "created yet." msgstr "अभी तक सृजन" -#: gnowsys_ndf/ndf/templates/ndf/partner_showcase.html:4 gnowsys_ndf/ndf/templates/ndf/repository.html:49 +#: gnowsys_ndf/ndf/templates/ndf/partner_showcase.html:4 +#: gnowsys_ndf/ndf/templates/ndf/repository.html:49 msgid "Partner Showcase" msgstr "पार्टनर शोकेस" @@ -3943,7 +4889,8 @@ msgstr "इवेंटस जोड़ें" msgid "Add Page" msgstr "पृष्ठ जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/quiz.html:50 gnowsys_ndf/ndf/templates/ndf/quiz_details.html:47 +#: gnowsys_ndf/ndf/templates/ndf/quiz.html:50 +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:47 #, fuzzy msgid "Questions" msgstr "प्रश्न" @@ -3972,8 +4919,11 @@ msgstr "प्रश्नोत्तरी संपादक" #: gnowsys_ndf/ndf/templates/ndf/quiz_create_edit.html:7 msgid "" -"

    A Quiz is a sequenced collection of quiz items. A quiz-item can be any of the three types: short response, single-choice and multiple-choice. submit response and match the following types will be implemented very " -"soon.

    \n" +"

    A Quiz is a sequenced collection of quiz " +"items. A quiz-item can be any of the three types: short " +"response, single-choice and multiple-choice. submit response and match the following types will be " +"implemented very soon.

    \n" "

    You can build a quiz in two ways:\n" "

      \n" "\t
    1. By editing, Quiz node (via collection-list).
    2. \n" @@ -3981,7 +4931,10 @@ msgid "" "

    \n" msgstr "" "

    \n" -" एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" +" एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी आइटम " +"तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें और " +"मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" "

    \n" "

    आप दो तरह से एक प्रश्नोत्तरी का निर्माण कर सकते हैं:\n" "

      \n" @@ -4009,12 +4962,17 @@ msgstr "कोई टैग जोड़ा नहीं गया है" msgid "Sr. No " msgstr "Sr. #" -#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:89 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:166 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:88 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:163 gnowsys_ndf/ndf/templates/ndf/unit_structure.html:320 +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:89 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:166 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:88 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:163 +#: gnowsys_ndf/ndf/templates/ndf/unit_structure.html:320 #: gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:13 msgid "Name" msgstr "नाम" -#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:90 gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:53 +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:90 +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:53 msgid "Question" msgstr "प्रश्न" @@ -4023,7 +4981,8 @@ msgstr "प्रश्न" msgid "Type" msgstr "प्रकार" -#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:92 gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:75 +#: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:92 +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_create_edit.html:75 msgid "Options" msgstr "विकल्प" @@ -4129,7 +5088,8 @@ msgstr "संपादन द्वारा, प्रश्नोत्तर msgid "By using 'Quiz-Item' button corresponding to the Quiz." msgstr "प्रश्नोत्तरी प्रश्न बटन का उपयोग करके प्रश्नोत्तरी की" -#: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:38 gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:40 +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:38 +#: gnowsys_ndf/ndf/templates/ndf/quiz_item_details.html:40 msgid "+ Add" msgstr "+जोड़ें" @@ -4250,7 +5210,8 @@ msgstr "व्यक्तिगत तथा संस्थाओं से msgid "Resource Type" msgstr "पाठ्यक्रम के प्रकार" -#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:154 gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:195 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:154 +#: gnowsys_ndf/ndf/templates/ndf/res_node_ajax_view.html:195 msgid "Full screen view" msgstr "पूर्ण स्क्रीन दृश्य" @@ -4291,12 +5252,14 @@ msgstr "शेल्फ" msgid "Add " msgstr "टैग जोड़ें" -#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:164 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:239 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:164 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:239 #, python-format msgid " %(label_val)s (Max. Size Limit 40kb) " msgstr "%(label_val)s (अधिकतम आकार सीमा 40kb)" -#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:177 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:252 +#: gnowsys_ndf/ndf/templates/ndf/student_create_edit.html:177 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:252 #, python-format msgid " %(label_val)s (Max. Size Limit 200kb) " msgstr "%(label_val)s (अधिकतम आकार सीमा 200kb)" @@ -4329,11 +5292,13 @@ msgstr "एन.एस.एस. में पंजीकृत है?" msgid "Date of Registration" msgstr "पंजीकरण तिथि" -#: gnowsys_ndf/ndf/templates/ndf/student_enroll.html:7 gnowsys_ndf/ndf/templates/ndf/student_enroll.html:88 +#: gnowsys_ndf/ndf/templates/ndf/student_enroll.html:7 +#: gnowsys_ndf/ndf/templates/ndf/student_enroll.html:88 msgid "Enroll Students in Courses" msgstr "पाठ्यक्रमों कें छात्रों का नामांकन करें" -#: gnowsys_ndf/ndf/templates/ndf/student_enroll.html:120 gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:96 +#: gnowsys_ndf/ndf/templates/ndf/student_enroll.html:120 +#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:96 msgid "Announced Course" msgstr "घोषित पाठ्यक्रम" @@ -4349,7 +5314,8 @@ msgstr "टिप्पणी: नामांकित छात्रों msgid "Filter Students" msgstr "फिल्टर" -#: gnowsys_ndf/ndf/templates/ndf/student_enroll.html:173 gnowsys_ndf/ndf/templates/ndf/student_list.html:152 +#: gnowsys_ndf/ndf/templates/ndf/student_enroll.html:173 +#: gnowsys_ndf/ndf/templates/ndf/student_list.html:152 msgid "Please select year" msgstr "कृपया वर्ष चुनें" @@ -4369,7 +5335,8 @@ msgstr "फिल्टर चुनें" msgid " - - - Select University - - - " msgstr "संस्था चुनें" -#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:124 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:477 +#: gnowsys_ndf/ndf/templates/ndf/studentcourseenrollment_create_edit.html:124 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:477 msgid "University" msgstr "संस्था" @@ -4405,21 +5372,26 @@ msgstr "अपलोड हो रहा है" msgid "Status Wise" msgstr "उपयोगकर्ता की स्थिति" -#: gnowsys_ndf/ndf/templates/ndf/task.html:66 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:189 +#: gnowsys_ndf/ndf/templates/ndf/task.html:66 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:189 msgid "Resolved" msgstr "हल" -#: gnowsys_ndf/ndf/templates/ndf/task.html:68 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:191 +#: gnowsys_ndf/ndf/templates/ndf/task.html:68 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:191 msgid "Closed" msgstr "संवृत" -#: gnowsys_ndf/ndf/templates/ndf/task.html:69 gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:192 +#: gnowsys_ndf/ndf/templates/ndf/task.html:69 +#: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:192 msgid "Rejected" msgstr "अस्वीकृत" #: gnowsys_ndf/ndf/templates/ndf/task.html:332 #, python-format -msgid "Search Results: No %(title|lower)s%(TASK_inst.count|pluralize)s matched your search criteria " +msgid "" +"Search Results: No %(title|lower)s" +"%(TASK_inst.count|pluralize)s matched your search criteria " msgstr "आपके खोज मापदंड से मेल खाती है %(title|lower)s%(TASK_inst.count|pluralize)s" #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:104 @@ -4550,14 +5522,17 @@ msgid "Topic Editor" msgstr "प्रकरण संपादक" #: gnowsys_ndf/ndf/templates/ndf/terms_list.html:21 -msgid " This group doesn't have any Terms. Be the first to create a Term!" +msgid "" +" This group doesn't have any Terms. Be the first to create a Term!" msgstr "इस समूह की कोई शर्त नहीं है। आप शर्त बनाने वाले प्रथम व्यक्ति हो सकते हैं" #: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:43 msgid "Create a new " msgstr "एक नया बनायें" -#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:261 gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:210 gnowsys_ndf/ndf/templates/ndf/translation_page.html:122 +#: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:261 +#: gnowsys_ndf/ndf/templates/ndf/topic_create_edit.html:210 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:122 msgid "Tag" msgstr "टैग" @@ -4597,7 +5572,9 @@ msgstr "टीचेस् जोड़ें या संपादित क msgid "Course Enrollment Details" msgstr "पाठ्यक्रम नामांकन विवरण" -#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:459 gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:524 gnowsys_ndf/ndf/templates/ndf/unit_player.html:22 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:459 +#: gnowsys_ndf/ndf/templates/ndf/trainer_create_edit.html:524 +#: gnowsys_ndf/ndf/templates/ndf/unit_player.html:22 msgid "Course" msgstr "पाठ्यक्रम" @@ -4641,23 +5618,24 @@ msgstr "अनिवार्य" msgid "Qualifications" msgstr "अर्हता" -#: gnowsys_ndf/ndf/templates/ndf/translate_detail.html:24 +#: gnowsys_ndf/ndf/templates/ndf/translate_detail.html:28 msgid "Other Translations:" msgstr "अन्य अनुवाद:" -#: gnowsys_ndf/ndf/templates/ndf/translate_detail.html:32 +#: gnowsys_ndf/ndf/templates/ndf/translate_detail.html:36 msgid "Original Resource:" msgstr "मूल संसाधन:" -#: gnowsys_ndf/ndf/templates/ndf/translation_list.html:15 +#: gnowsys_ndf/ndf/templates/ndf/translation_list.html:18 msgid "Translations:" msgstr "अनुवाद:" -#: gnowsys_ndf/ndf/templates/ndf/translation_list.html:17 +#: gnowsys_ndf/ndf/templates/ndf/translation_list.html:20 msgid "Translation Languages" msgstr "अनुवाद की भाषाएँ" -#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:67 gnowsys_ndf/ndf/templates/ndf/translation_page.html:100 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:67 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:100 msgid "Page Name" msgstr "पृष्ठ नाम" @@ -4665,12 +5643,16 @@ msgstr "पृष्ठ नाम" msgid "Tags: " msgstr "टैग्स" -#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:154 gnowsys_ndf/ndf/templates/ndf/translation_page.html:160 gnowsys_ndf/ndf/templates/ndf/translation_page.html:165 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:154 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:160 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:165 #, fuzzy msgid "Please give your page a descriptive name" msgstr "अपने पृष्ठ को एक विवरणात्मक नाम दें जो आपके और दूसरों के लिए सहायक होगा" -#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:154 gnowsys_ndf/ndf/templates/ndf/translation_page.html:160 gnowsys_ndf/ndf/templates/ndf/translation_page.html:165 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:154 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:160 +#: gnowsys_ndf/ndf/templates/ndf/translation_page.html:165 #, fuzzy msgid "It's helpful for others and for yourself" msgstr "अपने पृष्ठ को एक विवरणात्मक नाम दें जो आपके और दूसरों के लिए सहायक होगा" @@ -4783,7 +5765,8 @@ msgstr "लिखित नोट्स" msgid "Views Gained" msgstr "प्राप्त दृश्य" -#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:238 gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:306 +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:238 +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:306 msgid "Comments recieved" msgstr "प्राप्त टिप्पणियाँ" @@ -4799,7 +5782,8 @@ msgstr "अन्य नोट्स पर टिप्पणियाँ" msgid "Avg. Rating Awarded" msgstr "अर्जित औसत रेटिंग्स" -#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:262 gnowsys_ndf/ndf/templates/ndf/user_interactions.html:5 +#: gnowsys_ndf/ndf/templates/ndf/user_course_analytics.html:262 +#: gnowsys_ndf/ndf/templates/ndf/user_interactions.html:5 #, fuzzy msgid "Interactions" msgstr "इंटरैक्टिवस" @@ -4849,7 +5833,8 @@ msgstr "प्रथम नाम" msgid "Last Name" msgstr "उपनाम" -#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:54 gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:171 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:54 +#: gnowsys_ndf/ndf/templates/ndf/user_profile_form.html:171 msgid "Language proficiency" msgstr "भाषा प्रवीणता" @@ -4913,7 +5898,8 @@ msgstr "चयनित समूह:" msgid "User Management" msgstr "उपयोगकर्ता प्रबंधन" -#: gnowsys_ndf/ndf/templates/ndf/version_page.html:37 gnowsys_ndf/ndf/templates/ndf/version_page.html:52 +#: gnowsys_ndf/ndf/templates/ndf/version_page.html:37 +#: gnowsys_ndf/ndf/templates/ndf/version_page.html:52 msgid "Compare" msgstr "तुलना करें" @@ -4958,8 +5944,10 @@ msgid "Step 2: " msgstr "सोपान 2:" #: gnowsys_ndf/ndf/templates/ndf/visualize.html:85 -msgid "Upload a CSV file. Please see the instructions regarding the CSV format." -msgstr "सी.एस.वी. फाइल अपलोड करें। कृपया सी.एस.वी. प्रारूप से संबंधित निर्देशों को ध्यानपूर्वक पढ़ें" +msgid "" +"Upload a CSV file. Please see the instructions regarding the CSV format." +msgstr "" +"सी.एस.वी. फाइल अपलोड करें। कृपया सी.एस.वी. प्रारूप से संबंधित निर्देशों को ध्यानपूर्वक पढ़ें" #: gnowsys_ndf/ndf/templates/ndf/visualize.html:87 msgid "Instructions for CSV file" @@ -4970,8 +5958,11 @@ msgid "Instructions" msgstr "निर्देश" #: gnowsys_ndf/ndf/templates/ndf/visualize.html:91 -msgid "CSV files can easily be created from Excel spreadsheets/LibreOffice Calc." -msgstr "लिब्रेऑफिस केल्क या एम.एस. ऐक्सल स्प्रेडशीट से सी.एस.वी. फाइल को सरलता से सृजित किया जा सकता है" +msgid "" +"CSV files can easily be created from Excel spreadsheets/LibreOffice Calc." +msgstr "" +"लिब्रेऑफिस केल्क या एम.एस. ऐक्सल स्प्रेडशीट से सी.एस.वी. फाइल को सरलता से सृजित किया जा " +"सकता है" #: gnowsys_ndf/ndf/templates/ndf/visualize.html:93 msgid "Just click on " @@ -4979,17 +5970,26 @@ msgstr "क्लिक करें" #: gnowsys_ndf/ndf/templates/ndf/visualize.html:96 msgid "" -"
    1. Currently the graphing app supports CSV files with only 2 columns. So, your spread sheet must have only two columns.
    2. \n" -"\t\t
    3. The first row in every column must be the column heading and not any data value.
    4. \n" -"\t\t
    5. For Example - If you want to plot Cities v/s Annual Rainfall, the first row in your speardsheet must be a heading like \"City Name\" or \"Cities\" or something similar and not be a data value like \"Mumbai\".\n" +"
    6. Currently the graphing app supports CSV files with only 2 columns. So, " +"your spread sheet must have only two columns.
    7. \n" +"\t\t
    8. The first row in every column must be the column heading and not any " +"data value.
    9. \n" +"\t\t
    10. For Example - If you want to plot Cities v/s Annual Rainfall, the " +"first row in your speardsheet must be a heading like \"City Name\" or " +"\"Cities\" or something similar and not be a data value like \"Mumbai\".\n" "\t\t
      \n" msgstr "" -"
    11. वर्तमान में ग्राफिंग एप्लिकेशन केवल 2 कॉलम के साथ सीएसवी फ़ाइलों का समर्थन करता है। इसलिए, आपकी स्प्रेड शीट में केवल दो कॉलम होने चाहिए। \n" -"
    12. प्रत्येक कॉलम में पहली पंक्ति को कॉलम शीर्षक होना चाहिए और कोई भी डेटा मान नहीं होना चाहिए। \n" -"
    13. उदाहरण के लिए - यदि आप शहर बनाम वर्षा प्लाट करना चाहते हैं, तो आपकी शीट में पहली पंक्ति \"सिटी का नाम\" या \"शहर\" या ऐसा कुछ होना चाहिए न की \"मुंबई\" जैसी कोई वैल्यू ।\n" +"
    14. वर्तमान में ग्राफिंग एप्लिकेशन केवल 2 कॉलम के साथ सीएसवी फ़ाइलों का समर्थन करता है। " +"इसलिए, आपकी स्प्रेड शीट में केवल दो कॉलम होने चाहिए। \n" +"
    15. प्रत्येक कॉलम में पहली पंक्ति को कॉलम शीर्षक होना चाहिए और कोई भी डेटा मान नहीं " +"होना चाहिए। \n" +"
    16. उदाहरण के लिए - यदि आप शहर बनाम वर्षा प्लाट करना चाहते हैं, तो आपकी शीट में " +"पहली पंक्ति \"सिटी का नाम\" या \"शहर\" या ऐसा कुछ होना चाहिए न की \"मुंबई\" जैसी " +"कोई वैल्यू ।\n" #: gnowsys_ndf/ndf/templates/ndf/visualize.html:165 -msgid "Almost there! Just click on the button below to create the visualization." +msgid "" +"Almost there! Just click on the button below to create the visualization." msgstr "लगभग हो गया! दृश्य बनाने के लिए बस नीचे दिए गए बटन पर क्लिक करें।" #: gnowsys_ndf/ndf/templates/ndf/visualize.html:166 @@ -5004,7 +6004,8 @@ msgstr "बहुत बढ़िया. मेरे पास है।" msgid "100" msgstr "१००" -#: gnowsys_ndf/ndf/templates/ndf/widget_admin_page.html:8 gnowsys_ndf/ndf/templates/ndf/widget_help_page.html:8 +#: gnowsys_ndf/ndf/templates/ndf/widget_admin_page.html:8 +#: gnowsys_ndf/ndf/templates/ndf/widget_help_page.html:8 msgid "Select admin page(s) for this resource from following options:" msgstr "निम्न विकल्पों से इस संसाधन के लिए व्यवस्थापक पृष्ठ का चयन करें:" @@ -5021,7 +6022,7 @@ msgstr "* एकाधिक विकल्पों का चयन करन msgid "Selections: " msgstr "चयनित:" -#: gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:12 +#: gnowsys_ndf/ndf/templates/ndf/widget_cross_publish.html:13 msgid "Remove from " msgstr "हटाएँ" @@ -5035,17 +6036,21 @@ msgstr "स्थिति:" msgid "Enrollment Status:" msgstr "नामांकन विवरण" -#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:30 gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:45 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:30 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:45 msgid "Enrolled" msgstr "नामांकित" -#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:32 gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:49 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:32 +#: gnowsys_ndf/ndf/templates/ndf/widget_enroll.html:49 msgid "Enroll" msgstr "नामांकन" #: gnowsys_ndf/ndf/templates/ndf/widget_interaction.html:20 -msgid "Do you want to enable Comments/Discussion on this Activity for Students ? " -msgstr "क्या आप विद्यार्थियों के लिए इस गतिविधि पर टिप्पणी / चर्चा को सक्षम करना चाहते हैं?" +msgid "" +"Do you want to enable Comments/Discussion on this Activity for Students ? " +msgstr "" +"क्या आप विद्यार्थियों के लिए इस गतिविधि पर टिप्पणी / चर्चा को सक्षम करना चाहते हैं?" #: gnowsys_ndf/ndf/templates/ndf/widget_node_form.html:26 msgid "Display Name" @@ -5083,13 +6088,23 @@ msgstr "क्षमा करें, कोई विषय उपलब्ध #, python-format msgid "" " Tags Topic Display\n" -"\t
  • Following are the topics with the tag \"%(tag)s\"

    \n" -"\tSelect the topic from the panel on the left to view the details about that topic. The knowledge graph for that particular topic is also available on the same page.\n" -msgstr "उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है %(tag)s \n" +"\t
    Following are the topics with the tag \"%(tag)s\"

    \n" +"\tSelect the topic from the panel on the left to view the details about that " +"topic. The knowledge graph for that particular topic is also available on " +"the same page.\n" +msgstr "" +"उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए " +"ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है %(tag)s \n" #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:75 -msgid "Select the topic from the panel on the left to view the details about that topic. The knowledge graph for that particular topic is also available on the same page." -msgstr "उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है।" +msgid "" +"Select the topic from the panel on the left to view the details about that " +"topic. The knowledge graph for that particular topic is also available on " +"the same page." +msgstr "" +"उस विषय के बारे में विवरण देखने के लिए बाईं ओर पैनल से विषय चुनें। उस विशिष्ट विषय के लिए " +"ज्ञान ग्राफ़ भी उसी पृष्ठ पर उपलब्ध है।" #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:201 msgid "Wikipedia Page Link:" @@ -5124,14 +6139,35 @@ msgid "Wikidata Project" msgstr "विकिडाटा परियोजना" #: gnowsys_ndf/ndf/templates/ndf/wikidata.html:246 -msgid "All structured data from the main and property namespace is available under the Creative Commons CC0 License. Text in the other namespaces is available under the Creative Commons Attribution-ShareAlike License. Additional terms may apply. By using this site, you agree to the Terms of Use and Privacy Policy." -msgstr "मुख्य और प्रॉपर्टी नेमस्पेस से सभी संरचित डेटा क्रिएटिव कॉमन्स CC0 लाइसेंस के अंतर्गत उपलब्ध है। अन्य नेमस्पेस में टेक्स्ट क्रिएटिव कॉमन्स एट्रिब्यूशन-शेयर एलेवेंस लाइसेंस के तहत उपलब्ध है। अतिरिक्त शर्तें लागू हो सकते हैं इस साइट का उपयोग करके, आप उपयोग की शर्तों और गोपनीयता नीति से सहमत हैं।" +msgid "" +"All structured data from the main and property namespace is available under " +"the Creative Commons CC0 License. Text in the other namespaces is available " +"under the Creative Commons Attribution-ShareAlike License. Additional terms " +"may apply. By using this site, you agree to the Terms of Use and Privacy " +"Policy." +msgstr "" +"मुख्य और प्रॉपर्टी नेमस्पेस से सभी संरचित डेटा क्रिएटिव कॉमन्स CC0 लाइसेंस के अंतर्गत उपलब्ध " +"है। अन्य नेमस्पेस में टेक्स्ट क्रिएटिव कॉमन्स एट्रिब्यूशन-शेयर एलेवेंस लाइसेंस के तहत उपलब्ध है। " +"अतिरिक्त शर्तें लागू हो सकते हैं इस साइट का उपयोग करके, आप उपयोग की शर्तों और गोपनीयता " +"नीति से सहमत हैं।" #: gnowsys_ndf/ndf/templates/notification/base.html:4 msgid "notices" msgstr "सूचनाएँ" -#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:8 gnowsys_ndf/ndf/templates/notification/notice_settings.html:11 gnowsys_ndf/notification/templates/notification/notice_settings.html:8 gnowsys_ndf/notification/templates/notification/notice_settings.html:11 +#: gnowsys_ndf/ndf/templates/notification/email_body.txt:1 +msgid "You have received the following notice from the site: " +msgstr "आपको निम्नलिखित सुचनाएँ साइट से प्राप्त हुई हैं:" + +#: gnowsys_ndf/ndf/templates/notification/email_subject.txt:1 +#, python-format +msgid "[%(current_site)s] %(message)s" +msgstr "" + +#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:8 +#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:11 +#: gnowsys_ndf/notification/templates/notification/notice_settings.html:8 +#: gnowsys_ndf/notification/templates/notification/notice_settings.html:11 msgid "Notification Settings" msgstr "अधिसूचना सेटिंग" @@ -5151,10 +6187,15 @@ msgstr "एक नया जोड़ें" msgid "now" msgstr "अब" -#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:27 gnowsys_ndf/notification/templates/notification/notice_settings.html:27 +#: gnowsys_ndf/ndf/templates/notification/notice_settings.html:27 +#: gnowsys_ndf/notification/templates/notification/notice_settings.html:27 msgid "Notification Type" msgstr "अधिसूचना प्रकार" +#: gnowsys_ndf/ndf/templates/notification/short.txt:5 +msgid "Activity notification from" +msgstr "से क्रियाकलाप अधिसूचना" + #: gnowsys_ndf/ndf/templates/online_status/example.html:4 msgid "Users online" msgstr "ऑनलाइन उपयोगकर्ता" @@ -5167,7 +6208,8 @@ msgstr "उपयोगकर्ता की स्थिति" msgid "My status " msgstr "मेरी स्थिति" -#: gnowsys_ndf/ndf/templates/registration/activate.html:6 gnowsys_ndf/ndf/templates/registration/activation_complete.html:4 +#: gnowsys_ndf/ndf/templates/registration/activate.html:6 +#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:4 msgid "Activation complete" msgstr "सक्रियता पूर्ण हुई" @@ -5196,22 +6238,29 @@ msgid "using your email and password." msgstr "अपने ईमेल और पासवर्ड का उपयोग करके" #: gnowsys_ndf/ndf/templates/registration/activate.html:27 -msgid "Oops! It seems that your activation key is invalid. Please check the url or try to reset your password again. " -msgstr "ओह ऐसा लगता है कि आपकी सक्रियण कुंजी अमान्य है कृपया यूआरएल की जांच करें या फिर अपना पासवर्ड रीसेट करने का प्रयास करें।" +msgid "" +"Oops! It seems that your activation key is invalid. Please check the url or " +"try to reset your password again. " +msgstr "" +"ओह ऐसा लगता है कि आपकी सक्रियण कुंजी अमान्य है कृपया यूआरएल की जांच करें या फिर अपना " +"पासवर्ड रीसेट करने का प्रयास करें।" #: gnowsys_ndf/ndf/templates/registration/activation_complete.html:13 msgid "Account successfully activated." msgstr "खाता सफलतापूर्वक सक्रिय हो चुका है" -#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 msgid "Please " msgstr "कृपया" -#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 msgid "Sign In" msgstr "साइन इन" -#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/activation_complete.html:14 +#: gnowsys_ndf/ndf/templates/registration/password_reset_complete.html:14 msgid " here." msgstr "यहाँ" @@ -5220,18 +6269,24 @@ msgid "Account registration" msgstr "खाता पजीकृकरण" #: gnowsys_ndf/ndf/templates/registration/activation_email.html:16 -msgid "You (or someone pretending to be you) have asked to register an account at: " +msgid "" +"You (or someone pretending to be you) have asked to register an account at: " msgstr "आपने यहाँ पंजीकरण के लिए आग्रह किया है:" #: gnowsys_ndf/ndf/templates/registration/activation_email.html:17 -msgid "If this wasn't you, please ignore this email and your address will be removed from our records." +msgid "" +"If this wasn't you, please ignore this email and your address will be " +"removed from our records." msgstr "यदि आप ये नहीं थे, कृपया इस ईमेल को अनंदेखा करें। आपका ईमेल पता मिटा दिया जायेगा" #: gnowsys_ndf/ndf/templates/registration/activation_email.html:21 -msgid "To activate this account, please click the following link within the next two days." +msgid "" +"To activate this account, please click the following link within the next " +"two days." msgstr "प्राप्त लिंक केवल दो दिन तक ही वैध रहेगा। कृपया इस अवधि में खाता सक्रिय करें" #: gnowsys_ndf/ndf/templates/registration/activation_email.html:26 +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:11 msgid "Sincerely" msgstr "भवदीय" @@ -5240,24 +6295,56 @@ msgstr "भवदीय" msgid " \"%(site.name|capfirst)s Team\" " msgstr "" +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:5 +msgid "" +"You (or someone pretending to be you) have asked to register an account at " +msgstr "आपने यहाँ पंजीकरण के लिए आग्रह किया" + +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:6 +msgid "" +"If this wasn't you, please ignore this email and your details will be " +"removed from our records." +msgstr "यदि आप ये नहीं थे, कृपया इस ईमेल को अनंदेखा करें। आपका ईमेल पता मिटा दिया जायेगा" + +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:8 +msgid "" +"To activate this account, please click the following link within the next" +msgstr "प्राप्त लिंक केवल दो दिन तक ही वैध रहेगा। कृपया इस अवधि में खाता सक्रिय करें" + +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:8 +msgid "days" +msgstr "दिन" + +#: gnowsys_ndf/ndf/templates/registration/activation_email.txt:12 +msgid "Team" +msgstr "" + +#: gnowsys_ndf/ndf/templates/registration/activation_email_subject.txt:3 +msgid "Account registration for" +msgstr "खाता पजीकृकरण" + #: gnowsys_ndf/ndf/templates/registration/login.html:28 msgid "Log In" msgstr "लॉग-इन" -#: gnowsys_ndf/ndf/templates/registration/login.html:35 gnowsys_ndf/ndf/templates/registration/login_clix.html:39 +#: gnowsys_ndf/ndf/templates/registration/login.html:35 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:39 msgid "Either your email or password is incorrect !" msgstr "ईमेल अथवा पासवर्ड गलत है" -#: gnowsys_ndf/ndf/templates/registration/login.html:72 gnowsys_ndf/ndf/templates/registration/login_clix.html:99 +#: gnowsys_ndf/ndf/templates/registration/login.html:72 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:99 #, fuzzy msgid "Recover your password" msgstr "पासवर्ड भूल गए?" -#: gnowsys_ndf/ndf/templates/registration/login.html:72 gnowsys_ndf/ndf/templates/registration/login_clix.html:99 +#: gnowsys_ndf/ndf/templates/registration/login.html:72 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:99 msgid "Forgot your password?" msgstr "पासवर्ड भूल गए?" -#: gnowsys_ndf/ndf/templates/registration/login.html:95 gnowsys_ndf/ndf/templates/registration/login_clix.html:111 +#: gnowsys_ndf/ndf/templates/registration/login.html:95 +#: gnowsys_ndf/ndf/templates/registration/login_clix.html:111 #, fuzzy msgid "Click here to register" msgstr "देखने के लिए क्ल्कि करें" @@ -5284,7 +6371,9 @@ msgid "You have sucessfully logged out." msgstr "सफलतापूर्वक लॉग-आउट हो गया है" #: gnowsys_ndf/ndf/templates/registration/logout.html:12 -msgid "Thank you for visiting our website. Please return often to take advantage of this platform." +msgid "" +"Thank you for visiting our website. Please return often to take advantage of " +"this platform." msgstr "हमारी वेबसाइट देखने के लिए धन्यवाद। कृपया इस मंच का लाभ उठाने के लिए अक्सर लौटें।" #: gnowsys_ndf/ndf/templates/registration/password_change_done.html:7 @@ -5307,23 +6396,28 @@ msgstr "पासवर्ड सफलतापूर्वक रीसेट msgid "Confirm password reset" msgstr "पासवर्ड रीसेट की पुष्टि करें" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:43 gnowsys_ndf/ndf/templates/registration/registration_form.html:63 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:43 +#: gnowsys_ndf/ndf/templates/registration/registration_form.html:63 msgid "Either both passwords doesn't match or doesn't satisfy the criteria!!!" msgstr "पासवर्ड कसौटी के अनुरूप नहीं है" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:66 gnowsys_ndf/ndf/templates/registration/registration_form.html:110 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:66 +#: gnowsys_ndf/ndf/templates/registration/registration_form.html:110 msgid "NOTE: " msgstr "टिप्पणी:" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:68 gnowsys_ndf/ndf/templates/registration/registration_form.html:112 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:68 +#: gnowsys_ndf/ndf/templates/registration/registration_form.html:112 msgid "Password must contain atleast 8 characters," msgstr "पासवर्ड में कम-से-कम 8 कैरेक्टर का होना आवश्यक है" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:69 gnowsys_ndf/ndf/templates/registration/registration_form.html:113 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:69 +#: gnowsys_ndf/ndf/templates/registration/registration_form.html:113 msgid "One uppercase letter, and" msgstr "कम-से-कम एक अपरकेस अक्षर और" -#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:70 gnowsys_ndf/ndf/templates/registration/registration_form.html:114 +#: gnowsys_ndf/ndf/templates/registration/password_reset_confirm.html:70 +#: gnowsys_ndf/ndf/templates/registration/registration_form.html:114 msgid "One numeral" msgstr "कम-से-कम एक संख्या" @@ -5332,6 +6426,7 @@ msgid "Set password" msgstr "सेट पासवर्ड" #: gnowsys_ndf/ndf/templates/registration/password_reset_done.html:4 +#: gnowsys_ndf/ndf/templates/registration/password_reset_email_subject.txt:2 msgid "Password reset" msgstr "पासवर्ड रीसेट" @@ -5344,15 +6439,23 @@ msgid "An email has been sent to email-ID associated with your account." msgstr "आपके खाते से संबंधित ईमेल आई.डी. पर ईमेल भेजी गई है" #: gnowsys_ndf/ndf/templates/registration/password_reset_done.html:13 -msgid "Please be patient; the delivery of email may be delayed. Remember to confirm that the email that you entered is correct and to check your junk or spam folder or filter if you do not receive this email." -msgstr "कृपया धैर्य रखें; ईमेल की डिलीवरी में देरी हो सकती है यह पुष्टि करने के लिए याद रखें कि आपने जो ईमेल दर्ज किया है वह सही है और यदि आप यह ईमेल प्राप्त नहीं करते हैं तो अपने ट्रेश या स्पैम फ़ोल्डर या फ़िल्टर की जांच करें।" +msgid "" +"Please be patient; the delivery of email may be delayed. Remember to confirm " +"that the email that you entered is correct and to check your junk or spam " +"folder or filter if you do not receive this email." +msgstr "" +"कृपया धैर्य रखें; ईमेल की डिलीवरी में देरी हो सकती है यह पुष्टि करने के लिए याद रखें कि आपने " +"जो ईमेल दर्ज किया है वह सही है और यदि आप यह ईमेल प्राप्त नहीं करते हैं तो अपने ट्रेश या " +"स्पैम फ़ोल्डर या फ़िल्टर की जांच करें।" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:4 msgid "Greetings " msgstr "अभिनंदन" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:5 -msgid "You are receiving this email because you requested that your password be reset on" +msgid "" +"You are receiving this email because you requested that your password be " +"reset on" msgstr "आप यह ईमेल प्राप्त कर रहे हैं क्योंकि आपने अनुरोध किया है कि आपका पासवर्ड रीसेट हो" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:7 @@ -5360,8 +6463,12 @@ msgid "If you do not wish to reset your password, please ignore this message." msgstr "यदि आप अपना पासवर्ड रीसेट नहीं करना चाहते हैं, तो कृपया इस संदेश को अनदेखा करें।" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:9 -msgid "To reset your password, please click the following link, or copy and paste it into your web browser:" -msgstr "अपना पासवर्ड रीसेट करने के लिए, कृपया निम्न लिंक पर क्लिक करें, या उसे अपने वेब ब्राउज़र में कॉपी और पेस्ट करें:" +msgid "" +"To reset your password, please click the following link, or copy and paste " +"it into your web browser:" +msgstr "" +"अपना पासवर्ड रीसेट करने के लिए, कृपया निम्न लिंक पर क्लिक करें, या उसे अपने वेब ब्राउज़र में " +"कॉपी और पेस्ट करें:" #: gnowsys_ndf/ndf/templates/registration/password_reset_email.html:12 msgid "Your username, in case you've forgotten:" @@ -5375,16 +6482,23 @@ msgstr "आदर सहित" msgid "Management" msgstr "प्रबंधन" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:5 gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:72 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:5 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:65 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:5 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:72 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:5 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:65 msgid "Reset password" msgstr "रीसेट पासवर्ड" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:30 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:30 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:30 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:30 msgid "Forgot password? Don't worry..." msgstr "पासवर्ड भूल गये हैं? चिंता न करें" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:37 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:37 -msgid "Password reset instructions will be sent to the email address associated with your account." +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:37 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:37 +msgid "" +"Password reset instructions will be sent to the email address associated " +"with your account." msgstr "पासवर्ड रीसेट निर्देश अापके खाते से जुडे ईमेल पर भेजे जाएंगे।" #: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:44 @@ -5395,11 +6509,13 @@ msgstr "अवैध ईमेल आई.डी., कृपया फिर स msgid "Please type your valid " msgstr "कृपया वैध ईमेल भरें" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:59 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:52 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:59 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:52 msgid "email address" msgstr "ईमेल पता" -#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:59 gnowsys_ndf/ndf/templates/registration/password_reset_form.html:52 +#: gnowsys_ndf/ndf/templates/registration/password_reset_error_form.html:59 +#: gnowsys_ndf/ndf/templates/registration/password_reset_form.html:52 msgid " below:" msgstr "नीचे" @@ -5424,7 +6540,9 @@ msgid "Account creation successful." msgstr "खाता सफलतापूर्वक सृजित हो चुका है" #: gnowsys_ndf/ndf/templates/registration/registration_complete.html:12 -msgid "Please activate your account by clicking on the link provided in the email you will receive." +msgid "" +"Please activate your account by clicking on the link provided in the email " +"you will receive." msgstr "कृपया प्राप्त ईमेल में दिए गए लिंक पर क्लिक करके अपना खाता सक्रिय करें।" #: gnowsys_ndf/ndf/templates/registration/registration_form.html:5 @@ -5527,41 +6645,39 @@ msgstr "सूचना सेटिंग" msgid "notice settings" msgstr "सूचना सेटिंग" -#: gnowsys_ndf/notification/templates/notification/full.html:1 gnowsys_ndf/notification/templates/notification/notice.html:1 +#: gnowsys_ndf/notification/templates/notification/email_body.txt:1 +#, python-format +msgid "" +"You have received the following notice from %(current_site)s:\n" +"\n" +"%(message)s\n" +"\n" +"To see other notices or change how you receive notifications, please go to " +"%(default_http_protocol)s://%(current_site)s%(notices_url)s\n" +msgstr "" + +#: gnowsys_ndf/notification/templates/notification/full.html:1 +#: gnowsys_ndf/notification/templates/notification/full.txt:1 +#: gnowsys_ndf/notification/templates/notification/notice.html:1 +#: gnowsys_ndf/notification/templates/notification/short.txt:1 #, fuzzy, python-format msgid "%(notice)s" msgstr "सूचना" #: gnowsys_ndf/notification/templates/notification/notice_settings.html:15 -#, python-format +#, fuzzy, python-format msgid "" +"\n" "

    \n" " Note:\n" -" You do not have a verified email address to which notices can be sent. Add one now.\n" +" You do not have a verified email address to which notices can be " +"sent. Add one now.\n" "

    \n" " " msgstr "%(email_url)s आपके पास एक सत्यापित ईमेल नहीं है जिसमें सूचनाएं भेजी जा सकती हैं।" -#~ msgid "You have received the following notice from the site: " -#~ msgstr "आपको निम्नलिखित सुचनाएँ साइट से प्राप्त हुई हैं:" - -#~ msgid "Activity notification from" -#~ msgstr "से क्रियाकलाप अधिसूचना" - -#~ msgid "You (or someone pretending to be you) have asked to register an account at " -#~ msgstr "आपने यहाँ पंजीकरण के लिए आग्रह किया" - -#~ msgid "If this wasn't you, please ignore this email and your details will be removed from our records." -#~ msgstr "यदि आप ये नहीं थे, कृपया इस ईमेल को अनंदेखा करें। आपका ईमेल पता मिटा दिया जायेगा" - -#~ msgid "To activate this account, please click the following link within the next" -#~ msgstr "प्राप्त लिंक केवल दो दिन तक ही वैध रहेगा। कृपया इस अवधि में खाता सक्रिय करें" - -#~ msgid "days" -#~ msgstr "दिन" - -#~ msgid "Account registration for" -#~ msgstr "खाता पजीकृकरण" +#~ msgid "Mark as Raw Material" +#~ msgstr "रॉ मटीरियल के रूप में चिह्नित करें" #~ msgid "List Members" #~ msgstr "सदस्यों की सूची" @@ -5569,14 +6685,20 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "Sorry, No resources found with selected filters" #~ msgstr "क्षमा करें, चयनित फिल्टर से कोई संसाधन प्राप्त नहीं हुआ" -#~ msgid "This group doesn't have any files. Be the first to upload a file!" -#~ msgstr "इस समूह में कोई फाइल नहीं है। आप फाइल अपलोड करने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgid "" +#~ "This group doesn't have any files. Be the first to upload a file!" +#~ msgstr "" +#~ "इस समूह में कोई फाइल नहीं है। आप फाइल अपलोड करने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "View Source Code" #~ msgstr "सोर्स कोड देखें" -#~ msgid "All material is licensed under a Creative Commons Attribution-Share Alike 3.0 Unported License unless mentioned otherwise." -#~ msgstr "सभी सामग्री क्रियेटिव कॉमन्स ऍट्रीब्यूशन शेयर-अलाइक 3.0 के अनपोर्टेड लाइसेंस के अंतर्गत आती है, यदि कोई अन्य लाइसेंस अंकित नहीं है तो" +#~ msgid "" +#~ "All material is licensed under a Creative Commons Attribution-Share Alike " +#~ "3.0 Unported License unless mentioned otherwise." +#~ msgstr "" +#~ "सभी सामग्री क्रियेटिव कॉमन्स ऍट्रीब्यूशन शेयर-अलाइक 3.0 के अनपोर्टेड लाइसेंस के अंतर्गत " +#~ "आती है, यदि कोई अन्य लाइसेंस अंकित नहीं है तो" #~ msgid "Powered by" #~ msgstr "पावर्ड बाइ" @@ -5593,8 +6715,11 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "Contributor" #~ msgstr "योगदानकर्ता" -#~ msgid "This group doesn't have any forums. Be the first to create a forum!
    " -#~ msgstr "इस समूह में कोई फोरम नहीं है। आप फोरम बनाने वाले प्रथम व्यक्ति हो सकते हैं<" +#~ msgid "" +#~ "This group doesn't have any forums. Be the first to create a forum!" +#~ msgstr "" +#~ "इस समूह में कोई फोरम नहीं है। आप फोरम बनाने वाले प्रथम व्यक्ति हो सकते हैं<" #~ msgid "Top Contributors" #~ msgstr "सर्वोच्च योगदानकर्ता" @@ -5677,7 +6802,8 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "Create New Blog" #~ msgstr "नया बनायें" -#~ msgid " This group doesn't have any pages. Be the first to create a Page!" +#~ msgid "" +#~ " This group doesn't have any pages. Be the first to create a Page!" #~ msgstr "इस समूह में कोई पृष्ठ नहीं है। आप पृष्ठ बनाने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "Page Details" @@ -5688,7 +6814,11 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "" #~ "

    \n" -#~ " A Quiz is a sequenced collection of quiz items. A quiz-item can be any of the three types: short response, single-choice and multiple-choice. submit response and match the following types will be implemented very soon.\n" +#~ " A Quiz is a sequenced collection of quiz items. A quiz-" +#~ "item can be any of the three types: short response, single-" +#~ "choice and multiple-choice. " +#~ "submit response and match the following types will be " +#~ "implemented very soon.\n" #~ "

    \n" #~ "

    You can build a quiz in two ways:\n" #~ "

      \n" @@ -5697,7 +6827,10 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ "

    \n" #~ msgstr "" #~ "

    \n" -#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" +#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी " +#~ "आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें " +#~ "और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" #~ "

    \n" #~ "

    आप दो तरह से एक प्रश्नोत्तरी का निर्माण कर सकते हैं:\n" #~ "

      \n" @@ -5712,8 +6845,11 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgstr "प्रश्नोत्तरी प्रश्न संपादक" #~ msgid "" -#~ "

      A Quiz is a sequenced collection of quiz items. A quiz-item can be any of the three types: short response, single-choice and multiple-choice. submit response and match the following types will be implemented very " -#~ "soon.

      \n" +#~ "

      A Quiz is a sequenced collection of " +#~ "quiz items. A quiz-item can be any of the three types: " +#~ "short response, single-choice and " +#~ "multiple-choice. submit response and " +#~ "match the following types will be implemented very soon.

      \n" #~ "

      You can build a quiz in two ways:\n" #~ "

        \n" #~ "\t
      1. By editing, Quiz node (via collection-list).
      2. \n" @@ -5721,7 +6857,10 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ "

      \n" #~ msgstr "" #~ "

      \n" -#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" +#~ " एक प्रश्नोत्तरी के अनुक्रम संग्रह है प्रश्नोत्तरी आइटम.एक प्रश्नोत्तरी " +#~ "आइटम तीन प्रकार के किसी भी हो सकता है: कम प्रतिक्रिया, एक विकल्प और बहुविकल्प. प्रतिक्रिया सबमिट करें " +#~ "और मैच निम्नलिखित प्रकार के बहुत जल्द ही लागू किया जाएगा.\n" #~ "

      \n" #~ "

      आप दो तरह से एक प्रश्नोत्तरी का निर्माण कर सकते हैं:\n" #~ "

        \n" @@ -5745,13 +6884,19 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgstr "प्रश्नोत्तरी" #~ msgid "This group doesn't have any quiz. Be the first to create a Quiz!" -#~ msgstr "इस समूह में कोई प्रश्नोत्तरी नहीं है। आप प्रश्नोत्तरी बनाने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgstr "" +#~ "इस समूह में कोई प्रश्नोत्तरी नहीं है। आप प्रश्नोत्तरी बनाने वाले प्रथम व्यक्ति हो सकते " +#~ "हैं" #~ msgid "Quiz Items" #~ msgstr "प्रश्नोत्तरी प्रश्न" -#~ msgid "This group doesn't have any quiz-items. Be the first to create a Quiz-Item!" -#~ msgstr "इस समूह में कोई प्रश्नोत्तरी प्रश्न नहीं है। आप प्रश्नोत्तरी प्रश्न बनाने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgid "" +#~ "This group doesn't have any quiz-items. Be the first to create a Quiz-" +#~ "Item!" +#~ msgstr "" +#~ "इस समूह में कोई प्रश्नोत्तरी प्रश्न नहीं है। आप प्रश्नोत्तरी प्रश्न बनाने वाले प्रथम " +#~ "व्यक्ति हो सकते हैं" #~ msgid "Not rated yet!" #~ msgstr "अभी तक सृजन" @@ -5759,8 +6904,12 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "resources" #~ msgstr "संसाधन" -#~ msgid "Tag is like a keyword or category label.

        Tags helps you to find photos, videos, files and pages which have something in common.

        " -#~ msgstr "टैग कूटसंकेत के समान है.

        टैग का प्रयोग करके खोजा जा सकता है.

        " +#~ msgid "" +#~ "Tag is like a keyword or category label.

        Tags helps you " +#~ "to find photos, videos, files and pages which have something in common." +#~ msgstr "" +#~ "टैग कूटसंकेत के समान है.

        टैग का प्रयोग करके खोजा जा सकता है.

        " #~ msgid "Attachment(s):" #~ msgstr "संलगन" @@ -5780,8 +6929,12 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "next" #~ msgstr "आगे" -#~ msgid "You (or someone pretending to be you) have asked to register an account at our site." -#~ msgstr "लगता है, आपका सक्रियता संकेत शब्द सही नहीं है। कृपया यू.आर.एल. जाँचें अथवा पासवर्ड रीसेट करें" +#~ msgid "" +#~ "You (or someone pretending to be you) have asked to register an account " +#~ "at our site." +#~ msgstr "" +#~ "लगता है, आपका सक्रियता संकेत शब्द सही नहीं है। कृपया यू.आर.एल. जाँचें अथवा पासवर्ड " +#~ "रीसेट करें" #~ msgid "Management Team" #~ msgstr "प्रबंधन टीम" @@ -5809,11 +6962,13 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "" #~ "\n" -#~ "
        There are no %(grps_category)s created yet.Be the first to create a %(grps_category)s!
        \n" +#~ "
        There are no %(grps_category)s created yet.Be the first to " +#~ "create a %(grps_category)s!
        \n" #~ "\t" #~ msgstr "" #~ "\n" -#~ "
        अभी तक कोई पार्टनर नहीं बनाया गया है। आप पार्टनर बनाने वाले प्रथम व्यक्ति हो सकते हैं
        " +#~ "
        अभी तक कोई पार्टनर नहीं बनाया गया है। आप पार्टनर बनाने वाले प्रथम " +#~ "व्यक्ति हो सकते हैं
        " #~ msgid "Be the first to create a" #~ msgstr "सृजन करने वाले आप प्रथम हो" @@ -5833,14 +6988,20 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "Announced Courses" #~ msgstr "घोषित पाठ्यक्रम" -#~ msgid "This group doesn't have any courses. Be the first to create a course!" -#~ msgstr "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgid "" +#~ "This group doesn't have any courses. Be the first to create a course!" +#~ msgstr "" +#~ "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "You are not enrolled to any course yet." #~ msgstr "आप अभी तक किसी भी पाठ्यक्रम में नामांकित नहीं हैं" -#~ msgid "This group doesn't have any Announced courses. Be the first to Announce a course!" -#~ msgstr "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" +#~ msgid "" +#~ "This group doesn't have any Announced courses. Be the first to " +#~ "Announce a course!" +#~ msgstr "" +#~ "इस समूह में कोई पाठ्यक्रम नहीं है। आप पाठ्यक्रम बनाने वाले प्रथम व्यक्ति हो सकते हैं" #~ msgid "This group doesn't have any Announced courses." #~ msgstr "इस समूह में कोई पाठ्यक्रम नहीं है" diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html index e013197001..947ca9c53a 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html @@ -161,11 +161,10 @@

        -

        -

        WHO WE ARE

        -

        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Idem iste, inquam, de voluptate quid sentit? Sed tamen enitar et, si minus multa mihi occurrent, non fugiam ista popularia. Dat enim intervalla et relaxat. Quid de Platone aut de Democrito loquar? Duo Reges: constructio interrete. Iam id ipsum absurdum, maximum malum neglegi.

        - -

        Amicitiam autem adhibendam esse censent, quia sit ex eo genere, quae prosunt. Et nemo nimium beatus est; Qui potest igitur habitare in beata vita summi mali metus? Omnis enim est natura diligens sui. Si sapiens, ne tum quidem miser, cum ab Oroete, praetore Darei, in crucem actus est. Venit enim mihi Platonis in mentem, quem accepimus primum hic disputare solitum; Hanc quoque iucunditatem, si vis, transfer in animum; Nam quid possumus facere melius?

        +
        +

        WHO WE ARE

        + +

        NROER is a collaborative platform, which brings together everyone interested in school and teacher education.Initiated by the Department of School Education and Literacy, Ministry of Human Resource Development, Government of India and managed by the Central Institute of Educational Technology, National Council of Educational Research and Training, the Repository runs on the MetaStudio platform, an initiative of the Gnowledge Labs, Homi Bhabha Centre for Science Education.

        - {% if not "/course/activity_player/" in request.path %} + {% comment %} - {% endif %} + {% endcomment %}
        {% endif %} From 1576eac1fc4dd97301e815fc4fb5d2cd4a781ff2 Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Wed, 4 Apr 2018 17:32:30 +0530 Subject: [PATCH 486/766] In Interest Groups module added contextual search functionality --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html index a30959e567..4499353f68 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html @@ -708,6 +708,9 @@

        else if(window.location.pathname == "/55ab34ff81fccb4f1d806025/module/55d6c86981fccb016e97eea7" | window.location.pathname == "/home/module/55d6c86981fccb016e97eea7") { $('li.has-form').append("
        "); } + else if(window.location.pathname == "/55ab34ff81fccb4f1d806025/module/5623bad981fccb5aec149bed" | window.location.pathname == "/home/module/5623bad981fccb5aec149bed") { + $('li.has-form').append("
        "); + } else{ @@ -770,6 +773,9 @@

        } else if(window.location.pathname == "/55ab34ff81fccb4f1d806025/module/55d6c86981fccb016e97eea7" | window.location.pathname == "/home/module/55d6c86981fccb016e97eea7") { $('li.has-form').append("
        "); + } + else if(window.location.pathname == "/55ab34ff81fccb4f1d806025/module/5623bad981fccb5aec149bed" | window.location.pathname == "/home/module/5623bad981fccb5aec149bed") { + $('li.has-form').append("
        "); } else { From 34573ec56b2fab84a9666692cc4ef5c35c5a3853 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Wed, 4 Apr 2018 17:42:52 +0530 Subject: [PATCH 487/766] In explore courses Options renamed as Actions --- .../ndf/templates/ndf/explore_secondary_header.html | 2 +- .../gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html index c049698c9c..ca8cf770cb 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html @@ -32,7 +32,7 @@ {% if is_gstaff %}
        -
        +
        +

        +
        +
        {% for each_node in nodes %} {% include "ndf/widget_card.html" with node=each_node url_name=card_url_name url_first_arg=group_id url_second_arg=source_node_id url_third_arg=each_node.language.0 %} From 1be255e6ebeba0f5354191dce34dbc195d116cef Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Thu, 5 Apr 2018 11:36:32 +0530 Subject: [PATCH 495/766] elastic search code commented on node and filehives py file in models --- gnowsys-ndf/gnowsys_ndf/ndf/models/filehive.py | 4 ++-- gnowsys-ndf/gnowsys_ndf/ndf/models/node.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/models/filehive.py b/gnowsys-ndf/gnowsys_ndf/ndf/models/filehive.py index 7ec7f69d0e..268b27e820 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/models/filehive.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/models/filehive.py @@ -400,8 +400,8 @@ def save(self, *args, **kwargs): raise RuntimeError(err) # data save into ES... - if GSTUDIO_ELASTIC_SEARCH == True: - esearch.inject(fp) + #if GSTUDIO_ELASTIC_SEARCH == True: + # esearch.inject(fp) # --- END of storing Filehive JSON in RSC system --- diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/models/node.py b/gnowsys-ndf/gnowsys_ndf/ndf/models/node.py index e4c2964933..25caa85563 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/models/node.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/models/node.py @@ -716,10 +716,10 @@ def save(self, *args, **kwargs): node_collection.collection.update({'_id':self._id}, {'$set': {'snapshot'+"."+str(kwargs['groupid']):rcsno }}, upsert=False, multi=True) ########################## ES ################################## - if GSTUDIO_ELASTIC_SEARCH == True: + #if GSTUDIO_ELASTIC_SEARCH == True: #es = esearch(fp) #es.inject() - esearch.inject(fp) + # esearch.inject(fp) # User-Defined Functions From b4cf7d64db44ce122f516abba4867c4859417374 Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Thu, 5 Apr 2018 11:41:29 +0530 Subject: [PATCH 496/766] es injection file code modified --- doc/deployer/es_injection.py | 4 ++-- gnowsys-ndf/gnowsys_ndf/ndf/models/es.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/deployer/es_injection.py b/doc/deployer/es_injection.py index 58811028f6..601b20ba78 100644 --- a/doc/deployer/es_injection.py +++ b/doc/deployer/es_injection.py @@ -7,7 +7,7 @@ #from gnowsys_ndf.settings import GSTUDIO_SITE_NAME #from gnowsys_ndf.local_settings import GSTUDIO_DOCUMENT_MAPPING -from gnowsys_ndf.local_settings import GSTUDIO_ELASTIC_SEARCH_INDEX +from gnowsys_ndf.local_settings import * try: from bson import ObjectId @@ -17,7 +17,7 @@ # reload(sys) # sys.setdefaultencoding('UTF8') -es = Elasticsearch("http://elastic:changeme@gsearch:9200", timeout=100, retry_on_timeout=True) +es = Elasticsearch(GSTUDIO_ELASTIC_SEARCH_PROTOCOL+"://"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER+":"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD+"@"+GSTUDIO_ELASTIC_SEARCH_ALIAS+":"+GSTUDIO_ELASTIC_SEARCH_PORT,timeout=100, retry_on_timeout=True) #author_index = "author_" + GSTUDIO_SITE_NAME.lower() #index = GSTUDIO_SITE_NAME.lower() diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/models/es.py b/gnowsys-ndf/gnowsys_ndf/ndf/models/es.py index d01d8d1808..8a9fafc884 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/models/es.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/models/es.py @@ -1,6 +1,6 @@ from elasticsearch import Elasticsearch from elasticsearch_dsl import * -from gnowsys_ndf.local_settings import * +from gnowsys_ndf.local_settings import GSTUDIO_ELASTIC_SEARCH_PROTOCOL,GSTUDIO_ELASTIC_SEARCH_SUPERUSER,GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD,GSTUDIO_ELASTIC_SEARCH_ALIAS,GSTUDIO_ELASTIC_SEARCH_PORT from base_imports import * from history_manager import HistoryManager #from gnowsys_ndf.ndf.models.node import * From 00c0ae2b92adad8d2f73991e7b83ca02c8d03df3 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Thu, 5 Apr 2018 13:49:33 +0530 Subject: [PATCH 497/766] PO file generated and MIT logo removed --- .../conf/locale/hi/LC_MESSAGES/django.po | 66 ++++++++++++------- .../gnowsys_ndf/ndf/templates/ndf/footer.html | 4 +- .../gnowsys_ndf/ndf/templates/ndf/header.html | 2 +- .../ndf/templates/ndf/lms_dashboard.html | 4 +- 4 files changed, 48 insertions(+), 28 deletions(-) diff --git a/gnowsys-ndf/conf/locale/hi/LC_MESSAGES/django.po b/gnowsys-ndf/conf/locale/hi/LC_MESSAGES/django.po index 8614547bac..8d5c6e824f 100644 --- a/gnowsys-ndf/conf/locale/hi/LC_MESSAGES/django.po +++ b/gnowsys-ndf/conf/locale/hi/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-03-29 18:52+0530\n" +"POT-Creation-Date: 2018-04-05 13:00+0530\n" "PO-Revision-Date: 2018-03-29 13:17+0530\n" "Last-Translator: \n" "Language-Team: \n" @@ -544,7 +544,7 @@ msgid "Dependency Graph" msgstr "निर्भरता ग्राफ" #: gnowsys_ndf/ndf/templates/ndf/action_panel.html:311 -#: gnowsys_ndf/ndf/templates/ndf/header.html:418 +#: gnowsys_ndf/ndf/templates/ndf/header.html:442 #: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:129 msgid "Help" msgstr "सहायता" @@ -1478,8 +1478,8 @@ msgstr "इतिहास देखें" #: gnowsys_ndf/ndf/templates/ndf/beta.html:21 #: gnowsys_ndf/ndf/templates/ndf/file_search.html:16 -#: gnowsys_ndf/ndf/templates/ndf/header.html:528 -#: gnowsys_ndf/ndf/templates/ndf/header.html:542 +#: gnowsys_ndf/ndf/templates/ndf/header.html:552 +#: gnowsys_ndf/ndf/templates/ndf/header.html:566 #: gnowsys_ndf/ndf/templates/ndf/node_search_base.html:6 #: gnowsys_ndf/ndf/templates/ndf/search_page.html:4 msgid "Search" @@ -1842,7 +1842,8 @@ msgstr "कृपया समूह प्रकार चुनें" #: gnowsys_ndf/ndf/templates/ndf/create_event_group.html:133 #: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:113 #: gnowsys_ndf/ndf/templates/ndf/curriculum_create_edit.html:230 -#: gnowsys_ndf/ndf/templates/ndf/header.html:396 +#: gnowsys_ndf/ndf/templates/ndf/header.html:351 +#: gnowsys_ndf/ndf/templates/ndf/header.html:420 #: gnowsys_ndf/ndf/templates/ndf/node_edit_base.html:259 #: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:113 #: gnowsys_ndf/ndf/templates/ndf/theme_create_edit.html:237 @@ -2674,7 +2675,7 @@ msgstr "कड़ी संपादन करें" #: gnowsys_ndf/ndf/templates/ndf/footer.html:19 #: gnowsys_ndf/ndf/templates/ndf/gevent_base.html:41 #: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:99 -#: gnowsys_ndf/ndf/templates/ndf/header.html:489 +#: gnowsys_ndf/ndf/templates/ndf/header.html:513 #: gnowsys_ndf/ndf/templates/ndf/lms.html:147 #: gnowsys_ndf/ndf/templates/ndf/quiz_details.html:43 msgid "About" @@ -2743,8 +2744,8 @@ msgstr "पाठ्यक्रम" #: gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html:35 #, fuzzy -msgid " Options " -msgstr "विकल्प" +msgid " Actions " +msgstr "एक्शन" #: gnowsys_ndf/ndf/templates/ndf/explore_secondary_header.html:52 msgid "Workspace Display Ordering: " @@ -3065,7 +3066,6 @@ msgstr "सदस्य" #: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:238 #: gnowsys_ndf/ndf/templates/ndf/gcourse_event_group.html:303 -#: gnowsys_ndf/ndf/templates/ndf/lms.html:92 #, fuzzy msgid "Notebook" msgstr "ई-पुस्तक" @@ -3181,14 +3181,14 @@ msgid "Home Dashboard" msgstr "हॉम डेशबोर्ड" #: gnowsys_ndf/ndf/templates/ndf/gheader.html:234 -#: gnowsys_ndf/ndf/templates/ndf/header.html:350 +#: gnowsys_ndf/ndf/templates/ndf/header.html:374 #: gnowsys_ndf/ndf/templates/ndf/header_clix.html:145 #: gnowsys_ndf/ndf/templates/ndf/header_clix.html:190 msgid "Logout" msgstr "लोगआउट" #: gnowsys_ndf/ndf/templates/ndf/gheader.html:256 -#: gnowsys_ndf/ndf/templates/ndf/header.html:376 +#: gnowsys_ndf/ndf/templates/ndf/header.html:400 #: gnowsys_ndf/ndf/templates/ndf/header_clix.html:153 #: gnowsys_ndf/ndf/templates/ndf/header_clix.html:208 #: gnowsys_ndf/ndf/templates/ndf/landing_page_clix.html:41 @@ -3200,7 +3200,7 @@ msgid "Login" msgstr "लॉगिन" #: gnowsys_ndf/ndf/templates/ndf/gheader.html:471 -#: gnowsys_ndf/ndf/templates/ndf/header.html:624 +#: gnowsys_ndf/ndf/templates/ndf/header.html:648 msgid "" "RSS Feeds may not be displayed properly in this browser. Would you still " "like to continue?" @@ -3286,6 +3286,7 @@ msgid "Activity" msgstr "क्रियाकलाप" #: gnowsys_ndf/ndf/templates/ndf/group_dashboard.html:203 +#: gnowsys_ndf/ndf/templates/ndf/lms.html:66 msgid "Calendar" msgstr "कैलेंडर" @@ -3387,7 +3388,6 @@ msgid "New Task" msgstr "नया कार्य" #: gnowsys_ndf/ndf/templates/ndf/gtask_details.html:25 -#: gnowsys_ndf/ndf/templates/ndf/lms.html:66 #: gnowsys_ndf/ndf/templates/ndf/lms.html:104 #: gnowsys_ndf/ndf/templates/ndf/task_create_edit.html:176 #: gnowsys_ndf/ndf/templates/ndf/task_details.html:49 @@ -3481,16 +3481,16 @@ msgstr "मेरा डैशबोर्ड" msgid "MY GROUPS" msgstr "मेरे समूह" -#: gnowsys_ndf/ndf/templates/ndf/header.html:474 +#: gnowsys_ndf/ndf/templates/ndf/header.html:498 msgid "APPS" msgstr "ऐप्स" -#: gnowsys_ndf/ndf/templates/ndf/header.html:496 -#: gnowsys_ndf/ndf/templates/ndf/header.html:506 +#: gnowsys_ndf/ndf/templates/ndf/header.html:520 +#: gnowsys_ndf/ndf/templates/ndf/header.html:530 msgid "Updates" msgstr "अद्यतन सूची" -#: gnowsys_ndf/ndf/templates/ndf/header.html:561 +#: gnowsys_ndf/ndf/templates/ndf/header.html:585 msgid "BACK" msgstr "पीछे" @@ -4096,6 +4096,10 @@ msgstr "ब्लॉग" msgid "Lessons" msgstr "पाठ" +#: gnowsys_ndf/ndf/templates/ndf/lms.html:92 +msgid "blog" +msgstr "" + #: gnowsys_ndf/ndf/templates/ndf/lms.html:124 #, fuzzy msgid "Asset Collection" @@ -4136,8 +4140,18 @@ msgid "My Courses" msgstr "मेरे पाठ्यक्रम" #: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:47 -msgid "My Performance" -msgstr "मेरा प्रदर्शन" +#, fuzzy +msgid "My Progress" +msgstr "प्रगति में" + +#: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:73 +#, fuzzy +msgid "My Workspace" +msgstr "मेरे वर्कस्पेस" + +#: gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html:82 +msgid "Joined Workspaces & Enrolled Courses" +msgstr "" #: gnowsys_ndf/ndf/templates/ndf/mailbox_create_edit.html:14 #, fuzzy @@ -4304,7 +4318,6 @@ msgid "College :" msgstr "संस्था" #: gnowsys_ndf/ndf/templates/ndf/mis_report.html:100 -#, fuzzy msgid "From :" msgstr "से" @@ -5537,7 +5550,7 @@ msgstr "समूह कार्य" #: gnowsys_ndf/ndf/templates/ndf/templates_list.html:25 #, fuzzy msgid "Select Template" -msgstr "टेम्पलेट चुनें (वैकल्पिक)" +msgstr "टेमपलेट चुनें" #: gnowsys_ndf/ndf/templates/ndf/term.html:11 msgid "Topics" @@ -6077,8 +6090,8 @@ msgid "Enroll" msgstr "नामांकन" #: gnowsys_ndf/ndf/templates/ndf/widget_interaction.html:20 -msgid "" -"Do you want to enable Comments/Discussion on this Activity for Students ? " +#, fuzzy +msgid "Do you want to enable Comments/Discussion on this Activity ? " msgstr "" "क्या आप विद्यार्थियों के लिए इस गतिविधि पर टिप्पणी / चर्चा को सक्षम करना चाहते हैं?" @@ -6709,6 +6722,13 @@ msgstr "%(email_url)s आपके पास एक सत्यापित ई #~ msgid "Mark as Raw Material" #~ msgstr "रॉ मटीरियल के रूप में चिह्नित करें" +#, fuzzy +#~ msgid " Options " +#~ msgstr "विकल्प" + +#~ msgid "My Performance" +#~ msgstr "मेरा प्रदर्शन" + #~ msgid "List Members" #~ msgstr "सदस्यों की सूची" diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html index c8150d7688..f0a71a1cd3 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html @@ -81,8 +81,8 @@

        {% trans "Connect With Us" %}

      1. -
      2. -
      3. +

    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html index cd0fcec386..42bed02b5e 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html @@ -392,7 +392,7 @@
    {{each_buddy}}
    {# {% trans "Login to your clix account" %} #} {# {% trans "Login" %} #} - +   {% trans "Login" %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html index 5988b8744d..d2435be9cb 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_dashboard.html @@ -69,7 +69,7 @@ {% if site.SITE_NAME == "NROER" %} {% if title == "my desk" %}
    -

    My Workspace

    +

    {% trans "My Workspace" %}

    • {% include "ndf/card_group.html" with node=node url_name="course_about" first_arg=node.pk no_enroll=True %} @@ -78,7 +78,7 @@

      My Workspace


    -

    Joined Workspaces & Enrolled Courses

    +

    {% trans "Joined Workspaces & Enrolled Courses" %}


    From 90c70616b2b45db7c1dfdafc50e6a97ab08a2755 Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Thu, 5 Apr 2018 14:27:40 +0530 Subject: [PATCH 498/766] search option remvoed from secondary header --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html index d7c5e169b7..c3b584820b 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html @@ -557,7 +557,7 @@

    --> -
  • + @@ -719,7 +719,8 @@

    } else if(window.location.pathname == "/home/e-book/" | window.location.pathname == "/55ab34ff81fccb4f1d806025/e-book/") { $('li.has-form').append("
    "); - } + } + else{ @@ -794,7 +795,9 @@

    } else if(window.location.pathname == "/home/e-book/" | window.location.pathname == "/55ab34ff81fccb4f1d806025/e-book/") { $('li.has-form').append("
    "); - } + } + + else { $('li.has-form').append("
    "); From afa05f9b5b9d3c9bbb0591eed93b7e1f3489b4e7 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Thu, 5 Apr 2018 16:10:10 +0530 Subject: [PATCH 499/766] binding of total number of eresourses,users and langing pages issues resolved --- .../ndf/static/ndf/css/themes/clix/styles.css | 17 +++--- .../ndf/css/themes/metastudio/styles.css | 17 +++--- .../static/ndf/css/themes/nroer/styles.css | 17 +++--- .../ndf/static/ndf/css/themes/tiss/styles.css | 17 +++--- .../ndf/static/ndf/scss/_app_styles.scss | 3 +- .../ndf/templates/ndf/landing_page_nroer.html | 38 ++++++------ .../ndf/templates/ndf/lms_explore.html | 1 - gnowsys-ndf/gnowsys_ndf/ndf/views/home.py | 61 ++++++++++++++++++- 8 files changed, 111 insertions(+), 60 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css index 05d1a85601..0e216d1e49 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css @@ -31284,16 +31284,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /***********Landing page***************/ /* line 8138, ../../../scss/_app_styles.scss */ .about_us { - height: 300px; background: #20ade0; } -/* line 8142, ../../../scss/_app_styles.scss */ +/* line 8141, ../../../scss/_app_styles.scss */ .analytics { margin-top: 20px; } -/* line 8145, ../../../scss/_app_styles.scss */ +/* line 8144, ../../../scss/_app_styles.scss */ .square { border: 4px solid #ffffff; position: relative; @@ -31304,15 +31303,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 30px; } -/* line 8155, ../../../scss/_app_styles.scss */ +/* line 8154, ../../../scss/_app_styles.scss */ .square:after { content: ""; display: block; padding-bottom: 100%; } -/* line 8161, ../../../scss/_app_styles.scss */ -.content { +/* line 8160, ../../../scss/_app_styles.scss */ +.box-content { position: absolute; width: 100%; height: 80%; @@ -31320,7 +31319,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 20%; } -/* line 8174, ../../../scss/_app_styles.scss */ +/* line 8173, ../../../scss/_app_styles.scss */ .activity-slider { font-family: Arial; width: 800px; @@ -31328,7 +31327,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0 auto; } -/* line 8181, ../../../scss/_app_styles.scss */ +/* line 8180, ../../../scss/_app_styles.scss */ .activity-slider h3 { background: #fff; color: #3498db; @@ -31356,7 +31355,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .action a:hover{ background:#000; }*/ -/* line 8208, ../../../scss/_app_styles.scss */ +/* line 8207, ../../../scss/_app_styles.scss */ .footer_link_cont h4 { color: #999; } diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css index efcefc6126..f44dc93c92 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css @@ -31307,16 +31307,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /***********Landing page***************/ /* line 8138, ../../../scss/_app_styles.scss */ .about_us { - height: 300px; background: #20ade0; } -/* line 8142, ../../../scss/_app_styles.scss */ +/* line 8141, ../../../scss/_app_styles.scss */ .analytics { margin-top: 20px; } -/* line 8145, ../../../scss/_app_styles.scss */ +/* line 8144, ../../../scss/_app_styles.scss */ .square { border: 4px solid #ffffff; position: relative; @@ -31327,15 +31326,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 30px; } -/* line 8155, ../../../scss/_app_styles.scss */ +/* line 8154, ../../../scss/_app_styles.scss */ .square:after { content: ""; display: block; padding-bottom: 100%; } -/* line 8161, ../../../scss/_app_styles.scss */ -.content { +/* line 8160, ../../../scss/_app_styles.scss */ +.box-content { position: absolute; width: 100%; height: 80%; @@ -31343,7 +31342,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 20%; } -/* line 8174, ../../../scss/_app_styles.scss */ +/* line 8173, ../../../scss/_app_styles.scss */ .activity-slider { font-family: Arial; width: 800px; @@ -31351,7 +31350,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0 auto; } -/* line 8181, ../../../scss/_app_styles.scss */ +/* line 8180, ../../../scss/_app_styles.scss */ .activity-slider h3 { background: #fff; color: #3498db; @@ -31379,7 +31378,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .action a:hover{ background:#000; }*/ -/* line 8208, ../../../scss/_app_styles.scss */ +/* line 8207, ../../../scss/_app_styles.scss */ .footer_link_cont h4 { color: #999; } diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css index f794f98d6f..e611eeca70 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css @@ -31608,16 +31608,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /***********Landing page***************/ /* line 8138, ../../../scss/_app_styles.scss */ .about_us { - height: 300px; background: #20ade0; } -/* line 8142, ../../../scss/_app_styles.scss */ +/* line 8141, ../../../scss/_app_styles.scss */ .analytics { margin-top: 20px; } -/* line 8145, ../../../scss/_app_styles.scss */ +/* line 8144, ../../../scss/_app_styles.scss */ .square { border: 4px solid #ffffff; position: relative; @@ -31628,15 +31627,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 30px; } -/* line 8155, ../../../scss/_app_styles.scss */ +/* line 8154, ../../../scss/_app_styles.scss */ .square:after { content: ""; display: block; padding-bottom: 100%; } -/* line 8161, ../../../scss/_app_styles.scss */ -.content { +/* line 8160, ../../../scss/_app_styles.scss */ +.box-content { position: absolute; width: 100%; height: 80%; @@ -31644,7 +31643,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 20%; } -/* line 8174, ../../../scss/_app_styles.scss */ +/* line 8173, ../../../scss/_app_styles.scss */ .activity-slider { font-family: Arial; width: 800px; @@ -31652,7 +31651,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0 auto; } -/* line 8181, ../../../scss/_app_styles.scss */ +/* line 8180, ../../../scss/_app_styles.scss */ .activity-slider h3 { background: #fff; color: #3498db; @@ -31680,7 +31679,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .action a:hover{ background:#000; }*/ -/* line 8208, ../../../scss/_app_styles.scss */ +/* line 8207, ../../../scss/_app_styles.scss */ .footer_link_cont h4 { color: #999; } diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css index efcefc6126..f44dc93c92 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css @@ -31307,16 +31307,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /***********Landing page***************/ /* line 8138, ../../../scss/_app_styles.scss */ .about_us { - height: 300px; background: #20ade0; } -/* line 8142, ../../../scss/_app_styles.scss */ +/* line 8141, ../../../scss/_app_styles.scss */ .analytics { margin-top: 20px; } -/* line 8145, ../../../scss/_app_styles.scss */ +/* line 8144, ../../../scss/_app_styles.scss */ .square { border: 4px solid #ffffff; position: relative; @@ -31327,15 +31326,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 30px; } -/* line 8155, ../../../scss/_app_styles.scss */ +/* line 8154, ../../../scss/_app_styles.scss */ .square:after { content: ""; display: block; padding-bottom: 100%; } -/* line 8161, ../../../scss/_app_styles.scss */ -.content { +/* line 8160, ../../../scss/_app_styles.scss */ +.box-content { position: absolute; width: 100%; height: 80%; @@ -31343,7 +31342,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 20%; } -/* line 8174, ../../../scss/_app_styles.scss */ +/* line 8173, ../../../scss/_app_styles.scss */ .activity-slider { font-family: Arial; width: 800px; @@ -31351,7 +31350,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0 auto; } -/* line 8181, ../../../scss/_app_styles.scss */ +/* line 8180, ../../../scss/_app_styles.scss */ .activity-slider h3 { background: #fff; color: #3498db; @@ -31379,7 +31378,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .action a:hover{ background:#000; }*/ -/* line 8208, ../../../scss/_app_styles.scss */ +/* line 8207, ../../../scss/_app_styles.scss */ .footer_link_cont h4 { color: #999; } diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss index dc43448fc7..0cb4b8003e 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss @@ -8136,7 +8136,6 @@ $module-card-lines-to-show: 3; /***********Landing page***************/ .about_us{ - height: 300px; background: #20ade0; } .analytics{ @@ -8158,7 +8157,7 @@ $module-card-lines-to-show: 3; padding-bottom: 100%; } - .content { + .box-content { position: absolute; width: 100%; height: 80%; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html index 947ca9c53a..d15332a066 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html @@ -160,7 +160,7 @@

    -
    +

    WHO WE ARE

    @@ -172,57 +172,55 @@

    WHO WE ARE

    --> - -
    -
    +

  • -
    +
    -
    +

    ANALYTICS

    -
    +

    GROUPS

    -

    45

    +

    {{group_count}}

    -
    +

    TASKS

    -

    22

    +

    -

    -
    +

    DISCUSSION

    -

    38

    +

    -

    -
    +

    eResourses

    -

    {{ file_pages.count }}

    +

    {{ files_count }}

    -
    +

    Users

    -

    29,034

    +

    {{author_count}}

    -
    +

    Activities / Schemes

    - +
    {% endcache %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_explore.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_explore.html index 4995dc0d50..5e1b5e9099 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_explore.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms_explore.html @@ -15,7 +15,6 @@ {% endfor %}
    -

    Units

    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/home.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/home.py index 2baf2169de..da6e289295 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/home.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/home.py @@ -93,12 +93,71 @@ def landing_page(request): ''' Method to render landing page after checking variables in local_settings/settings file. ''' + is_video = request.GET.get('is_video', "") + + try: + group_id = ObjectId('home') + except: + group_name, group_id = get_group_name_id('home') + + + group_count = node_collection.find({"_type":"Group"}) + group_count = group_count.count() + + author_count = node_collection.find({"_type":"Author"}) + author_count = author_count.count() + + GST_FILE = node_collection.one({'_type':'GSystemType', 'name': "File"}) + GST_JSMOL = node_collection.one({"_type":"GSystemType","name":"Jsmol"}) + + files = node_collection.find({ + # 'member_of': {'$in': [GST_FILE._id, GST_PAGE._id]}, + 'member_of': {'$in': [GST_FILE._id,GST_JSMOL._id]}, + # '_type': 'File', + # 'fs_file_ids': {'$ne': []}, + 'group_set': {'$all': [ObjectId('55ab34ff81fccb4f1d806025')]}, + '$and': [{'attribute_set.educationaluse': {'$ne': 'eBooks'}}], + '$or': [ + { 'access_policy': u"PUBLIC" }, + { '$and': [ + {'access_policy': u"PRIVATE"}, + {'created_by': request.user.id} + ] + } + ] + }).sort("last_update", -1) + + educationaluse_stats = {} + + if files: + eu_list = [] # count + for each in files: + eu_list += [i.get("educationaluse") for i in each.attribute_set if i.has_key("educationaluse")] + + files.rewind() + + if set(eu_list): + if len(set(eu_list)) > 1: + educationaluse_stats = dict((x, eu_list.count(x)) for x in set(eu_list)) + elif len(set(eu_list)) == 1: + educationaluse_stats = { eu_list[0]: eu_list.count(eu_list[0])} + educationaluse_stats["all"] = files.count() + + + # print educationaluse_stats + result_paginated_cur = files + files_count= files.count() + + if (GSTUDIO_SITE_LANDING_PAGE == "home") and (GSTUDIO_SITE_NAME == "NROER"): return render_to_response( "ndf/landing_page_nroer.html", { "group_id": "home", 'groupid':"home", - 'landing_page': 'landing_page' + 'landing_page': 'landing_page', + 'group_count':group_count, + 'author_count':author_count, + 'files_count':files_count }, context_instance=RequestContext(request) ) From 557bf025307e118fecee14d91785409c691e9d99 Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Thu, 5 Apr 2018 16:32:39 +0530 Subject: [PATCH 500/766] remove unwanted stuffs --- .../ndf/templates/ndf/asearch.html | 14 ++--- .../gnowsys_ndf/ndf/views/advanced_search.py | 52 +++++-------------- 2 files changed, 19 insertions(+), 47 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/asearch.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/asearch.html index b59aa34886..7efdd0a440 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/asearch.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/asearch.html @@ -4,15 +4,13 @@ {% block title %} {{title}} {% endblock %} {% block concern_information %} - {% endblock %} {% block related_content %}
    + id="a_search_form" name="a_search_form" method="GET" > - + - - +
    @@ -49,9 +45,9 @@ {% for each in search_curr %}
  • - {% if GSTUDIO_ELASTIC_SEARCH == True %} + {% if GSTUDIO_ELASTIC_SEARCH == True and if_teaches != True %} - {% include 'ndf/simple_card.html' with no_footer=True resource=each url_name="page_details" first_arg=groupid second_arg=each.pk %} + {% include 'ndf/simple_card.html' with no_footer=True resource=each url_name="page_details" first_arg=groupid second_arg=each.id %} {% else %} {% include 'ndf/simple_card.html' with no_footer=True resource=each url_name="page_details" first_arg=groupid second_arg=each%} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py index 2bbe5272a7..259a191b6c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py @@ -40,50 +40,32 @@ def search_detail(request,group_id,page_no=1): except: group_name, group_id = get_group_name_id(group_id) - - chk_advanced_search = request.GET.get('chk_advanced_search',None) - print chk_advanced_search + if request.GET.get('field_list',None): selected_field = request.GET.get('field_list',None) else: selected_field = "content" - print selected_field - print "mmmmmmmmmmmmmmmmmmmmmmmmmmmm----------------------" - #,Q('exists',field='content')55ab34ff81fccb4f1d806025 + q = Q('bool', must=[Q('match', member_of=GST_FILE1.hits[0].id),Q('match',group_set='55ab34ff81fccb4f1d806025'),Q('match',access_policy='public'),~Q('exists',field=selected_field)]) search_result =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q) - #search_result.filter('exists', field='attribute_set__educationaluse') if request.GET.get('field_list',None) == "true": - print "chk_advanced_search" - #q = Q('bool', must=[Q('match',language=dict(query='english',type='phrase')),Q('match', access_policy='public'),Q('match', group_set=str(group_id))]) - #lan = Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q) - #lan1 = lan.execute() - #print lan.count() - print ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;" - #Q('match',language=dict(query='hindi',type='phrase')) - #Q('match', content=request.GET.get('search_text','')), - q = Q('bool', must=[Q('match', language='en'),Q('match', access_policy='public'),Q('match', group_set=str(group_id))]) + + search_text = request.GET.get("search_text",None) + + q = Q('bool', must=[Q('match', language='en'),Q('match', access_policy='public'),Q('match', group_set=str(group_id)), + Q('bool', must=[Q('match_phrase', content=search_text)])]) search_result =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q) - #search_result =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author") - #search_result.filter( 'range', gte='900', lte='097f', field='content' ) - #for a in search_result: - # print a.id - search_result = search_result.filter("terms", content=["ncert"]) - - #search_result.query('regexp', title="my * is") - response = s.execute() + if_teaches = False + search_str_user="" - #print search_result.count() - #print group_id + page_no = request.GET.get('page_no',None) - print page_no - print "44444444444444444444444444" has_next = True if search_result.count() <=20: @@ -105,10 +87,9 @@ def search_detail(request,group_id,page_no=1): page_no = int(int(page_no)+1) if request.GET.get('field_list',None) == "attribute_type_set" : - print "if block" - temp = node_collection.find({'_type': 'GSystem'}) - + temp = node_collection.find({'_type': 'GSystem','access_policy':'PUBLIC'}) + lst = [] for each in temp: if each._id: @@ -118,14 +99,9 @@ def search_detail(request,group_id,page_no=1): search_result = node_collection.find({ '_id': {'$in': lst} }) - - #print search_result1 - print "aaaaaaaaaaaa" - #temp.rewind() - - + if_teaches = True - return render_to_response('ndf/asearch.html', {"page_no":page_no,"has_next":has_next,'GSTUDIO_ELASTIC_SEARCH':GSTUDIO_ELASTIC_SEARCH,'advanced_search':"true",'groupid':group_id,'group_id':group_id,'title':"advanced_search","search_curr":search_result,'field_list':selected_field,'chk_advanced_search':chk_advanced_search}, + return render_to_response('ndf/asearch.html', {"page_no":page_no,"has_next":has_next,'GSTUDIO_ELASTIC_SEARCH':GSTUDIO_ELASTIC_SEARCH,'advanced_search':"true",'groupid':group_id,'group_id':group_id,'title':"advanced_search","search_curr":search_result,'field_list':selected_field,'chk_advanced_search':chk_advanced_search,'if_teaches':if_teaches}, context_instance=RequestContext(request)) From 2ee55cabb92ed4d07104465e6f895ed27d227dbb Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Thu, 5 Apr 2018 16:35:55 +0530 Subject: [PATCH 501/766] es_initialize file .... username and password take from local setting file --- doc/deployer/es_initialize.py | 5 +++-- doc/deployer/es_injection.py | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/deployer/es_initialize.py b/doc/deployer/es_initialize.py index 7d2dbebc7a..289e0e2351 100644 --- a/doc/deployer/es_initialize.py +++ b/doc/deployer/es_initialize.py @@ -6,14 +6,15 @@ from gnowsys_ndf.ndf.models import * from gnowsys_ndf.settings import GSTUDIO_SITE_NAME -from gnowsys_ndf.local_settings import GSTUDIO_DOCUMENT_MAPPING +from gnowsys_ndf.local_settings import * ##### use the below commented lines if you are working with Python 2.x ##### # reload(sys) # sys.setdefaultencoding('UTF8') -es = Elasticsearch("http://elastic:changeme@gsearch:9200", timeout=100, retry_on_timeout=True) +es = Elasticsearch(GSTUDIO_ELASTIC_SEARCH_PROTOCOL+"://"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER+":"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD+"@"+GSTUDIO_ELASTIC_SEARCH_ALIAS+":"+GSTUDIO_ELASTIC_SEARCH_PORT,timeout=100, retry_on_timeout=True) + author_index = "author_" + GSTUDIO_SITE_NAME.lower() index = GSTUDIO_SITE_NAME.lower() diff --git a/doc/deployer/es_injection.py b/doc/deployer/es_injection.py index 601b20ba78..add8beab35 100644 --- a/doc/deployer/es_injection.py +++ b/doc/deployer/es_injection.py @@ -17,7 +17,8 @@ # reload(sys) # sys.setdefaultencoding('UTF8') -es = Elasticsearch(GSTUDIO_ELASTIC_SEARCH_PROTOCOL+"://"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER+":"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD+"@"+GSTUDIO_ELASTIC_SEARCH_ALIAS+":"+GSTUDIO_ELASTIC_SEARCH_PORT,timeout=100, retry_on_timeout=True) +es = Elasticsearch("http://elastic:changeme@14.139.123.11:9200", timeout=100, retry_on_timeout=True) +#es = Elasticsearch(GSTUDIO_ELASTIC_SEARCH_PROTOCOL+"://"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER+":"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD+"@"+GSTUDIO_ELASTIC_SEARCH_ALIAS+":"+GSTUDIO_ELASTIC_SEARCH_PORT,timeout=100, retry_on_timeout=True) #author_index = "author_" + GSTUDIO_SITE_NAME.lower() #index = GSTUDIO_SITE_NAME.lower() From 4102411097e8600277b141d02844f481106281b4 Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Thu, 5 Apr 2018 17:47:42 +0530 Subject: [PATCH 502/766] removed unwanted stuffs like print statement etc --- gnowsys-ndf/gnowsys_ndf/ndf/models/es.py | 26 ++++++++---------------- 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/models/es.py b/gnowsys-ndf/gnowsys_ndf/ndf/models/es.py index 8a9fafc884..35f4c93f8d 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/models/es.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/models/es.py @@ -1,6 +1,6 @@ from elasticsearch import Elasticsearch from elasticsearch_dsl import * -from gnowsys_ndf.local_settings import GSTUDIO_ELASTIC_SEARCH_PROTOCOL,GSTUDIO_ELASTIC_SEARCH_SUPERUSER,GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD,GSTUDIO_ELASTIC_SEARCH_ALIAS,GSTUDIO_ELASTIC_SEARCH_PORT +from gnowsys_ndf.local_settings import GSTUDIO_ELASTIC_SEARCH ,GSTUDIO_ELASTIC_SEARCH_PROTOCOL,GSTUDIO_ELASTIC_SEARCH_SUPERUSER,GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD,GSTUDIO_ELASTIC_SEARCH_ALIAS,GSTUDIO_ELASTIC_SEARCH_PORT from base_imports import * from history_manager import HistoryManager #from gnowsys_ndf.ndf.models.node import * @@ -30,10 +30,6 @@ def inject(fp): temp1 = fp[:-29] temp2 = temp1[14:] - print temp1 - print "zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz" - print temp2 - print "zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz" glite_fp = "/data/"+GLITE_RCS_REPO_DIRNAME+ temp2 @@ -63,16 +59,11 @@ def inject(fp): document = json.loads(doc) - print document document["id"] = document.pop("_id") document["type"] = document.pop("_type") document_type = document["type"] - print document_type - print "----------------------------------" - - #es = Elasticsearch("http://elastic:changeme@gsearch:9200", timeout=100, retry_on_timeout=True) index = None print GSTUDIO_ELASTIC_SEARCH_INDEX @@ -82,10 +73,9 @@ def inject(fp): if document_type in v: index = k index = index.lower() - print k + break - #index = "backup" document_type if document_type == "GSystem": @@ -97,19 +87,19 @@ def inject(fp): data = document["if_file"]["mime_type"].split("/") doc_type = data[0] else: - doc_type = "NotMedia" + doc_type = "notmedia" else: - doc_type = "NotMedia" + doc_type = "notmedia" else: - doc_type = "DontCare" - print(doc_type) + doc_type = "dontcare" + if (not es.indices.exists("gsystem")): res = es.indices.create(index="gsystem", body=request_body) es.index(index="gsystem", doc_type=doc_type, id=document["id"], body=document) - print "gsystem block" + else: - print "inject method called .............. else block......................................" + es.index(index=index, doc_type=document_type.lower(), id=document["id"], body=document) From 2907c41f0c6ff9116e018054860372a0a8956b2f Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Thu, 5 Apr 2018 17:50:00 +0530 Subject: [PATCH 503/766] about blog css changed --- .../ndf/static/ndf/css/themes/clix/styles.css | 16 +++++++++++++++- .../static/ndf/css/themes/metastudio/styles.css | 16 +++++++++++++++- .../ndf/static/ndf/css/themes/nroer/styles.css | 16 +++++++++++++++- .../ndf/static/ndf/css/themes/tiss/styles.css | 16 +++++++++++++++- .../ndf/static/ndf/scss/_app_styles.scss | 15 ++++++++++++++- .../gnowsys_ndf/ndf/templates/ndf/footer.html | 4 ++-- .../ndf/templates/ndf/landing_page_nroer.html | 10 ++++++---- 7 files changed, 82 insertions(+), 11 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css index 0e216d1e49..cd905411a3 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css @@ -23907,7 +23907,7 @@ body > footer .myfooter .footer_link_cont .links_show { } /* line 567, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .flinks { - font-size: 18px; + font-size: 22px; color: #999; } /* line 571, ../../../scss/_app_styles.scss */ @@ -31360,6 +31360,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999; } +/* line 8211, ../../../scss/_app_styles.scss */ +.about_content { + color: #ececec; + margin-bottom: 30px; + font-family: ubuntu-regular; + font-size: 20px; +} + +/* line 8219, ../../../scss/_app_styles.scss */ +.about-blog { + height: 100%; + background: #20ade0; +} + /* * CLIx Platform Stylesheet */ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css index f44dc93c92..f0f9d5d37c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css @@ -23930,7 +23930,7 @@ body > footer .myfooter .footer_link_cont .links_show { } /* line 567, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .flinks { - font-size: 18px; + font-size: 22px; color: #999; } /* line 571, ../../../scss/_app_styles.scss */ @@ -31382,3 +31382,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .footer_link_cont h4 { color: #999; } + +/* line 8211, ../../../scss/_app_styles.scss */ +.about_content { + color: #ececec; + margin-bottom: 30px; + font-family: ubuntu-regular; + font-size: 20px; +} + +/* line 8219, ../../../scss/_app_styles.scss */ +.about-blog { + height: 100%; + background: #20ade0; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css index e611eeca70..8f47249d2c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css @@ -24231,7 +24231,7 @@ body > footer .myfooter .footer_link_cont .links_show { } /* line 567, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .flinks { - font-size: 18px; + font-size: 22px; color: #999; } /* line 571, ../../../scss/_app_styles.scss */ @@ -31683,3 +31683,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .footer_link_cont h4 { color: #999; } + +/* line 8211, ../../../scss/_app_styles.scss */ +.about_content { + color: #ececec; + margin-bottom: 30px; + font-family: ubuntu-regular; + font-size: 20px; +} + +/* line 8219, ../../../scss/_app_styles.scss */ +.about-blog { + height: 100%; + background: #20ade0; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css index f44dc93c92..f0f9d5d37c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css @@ -23930,7 +23930,7 @@ body > footer .myfooter .footer_link_cont .links_show { } /* line 567, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .flinks { - font-size: 18px; + font-size: 22px; color: #999; } /* line 571, ../../../scss/_app_styles.scss */ @@ -31382,3 +31382,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .footer_link_cont h4 { color: #999; } + +/* line 8211, ../../../scss/_app_styles.scss */ +.about_content { + color: #ececec; + margin-bottom: 30px; + font-family: ubuntu-regular; + font-size: 20px; +} + +/* line 8219, ../../../scss/_app_styles.scss */ +.about-blog { + height: 100%; + background: #20ade0; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss index 0cb4b8003e..85fcdc8098 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss @@ -565,7 +565,7 @@ body>footer { max-height: 600px; } .flinks{ - font-size: 18px; + font-size: 22px; color: #999; } .social_links a{ @@ -8206,4 +8206,17 @@ $module-card-lines-to-show: 3; .footer_link_cont h4{ color: #999; +} + +.about_content{ + color: #ececec; + margin-bottom: 30px; + font-family: ubuntu-regular; + + font-size: 20px; +} + +.about-blog{ + height:100%; + background: #20ade0; } \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html index 146cccd421..0d12fc0930 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html @@ -82,8 +82,8 @@
  • -
  • -
  • +
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html index d15332a066..5c0aef1c55 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html @@ -160,12 +160,14 @@

    -
    -
    +
    +

    WHO WE ARE

    - -

    NROER is a collaborative platform, which brings together everyone interested in school and teacher education.Initiated by the Department of School Education and Literacy, Ministry of Human Resource Development, Government of India and managed by the Central Institute of Educational Technology, National Council of Educational Research and Training, the Repository runs on the MetaStudio platform, an initiative of the Gnowledge Labs, Homi Bhabha Centre for Science Education.

    +
    + +

    NROER is a collaborative platform, which brings together everyone interested in school and teacher education.Initiated by the Department of School Education and Literacy, Ministry of Human Resource Development, Government of India and managed by the Central Institute of Educational Technology, National Council of Educational Research and Training, the Repository runs on the MetaStudio platform, an initiative of the Gnowledge Labs, Homi Bhabha Centre for Science Education.

    +
    - -======= {% if request.user.is_authenticated %} ->>>>>>> b5e58753fd1285bd4c4005c4ac4dc412afd0a134 + {% endif %}
    {% include 'ndf/rating.html' with node=asset_obj %}
    -<<<<<<< HEAD - -
    -
    - -
    -

    {{asset_obj.content|default:'No description added yet.'|safe|striptags}}

    -
    -=======
    {% if asset_obj.tags %} @@ -129,7 +103,6 @@

    {% firstof asset_obj.altnames|truncatechars:25 asset_obj.

    ->>>>>>> b5e58753fd1285bd4c4005c4ac4dc412afd0a134 {% else %}

      @@ -274,44 +247,40 @@

     
    +
    {% csrf_token %} - - -
    +
    - +
    + +

    {% if asset_content_list.grel_id and asset_obj.created_by == request.user.id or is_gstaff and asset_obj and asset_content_list.grel_id %} -<<<<<<< HEAD - - - -=======
    ->>>>>>> b5e58753fd1285bd4c4005c4ac4dc412afd0a134 + {% endif %}
    From 9748b7fc61437b61bca798783b036841dcd8b0a5 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Thu, 5 Apr 2018 18:16:33 +0530 Subject: [PATCH 505/766] conflicts resolved --- .../ndf/static/ndf/css/themes/clix/styles.css | 47 ++++------------- .../ndf/css/themes/metastudio/styles.css | 47 ++++------------- .../static/ndf/css/themes/nroer/styles.css | 47 ++++------------- .../ndf/static/ndf/css/themes/tiss/styles.css | 50 ++++--------------- .../ndf/static/ndf/scss/_app_styles.scss | 1 - 5 files changed, 38 insertions(+), 154 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css index 8f638a9649..6b10f7aab1 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css @@ -31290,20 +31290,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background: #20ade0; } -<<<<<<< HEAD -/* line 8141, ../../../scss/_app_styles.scss */ -======= -/* line 8144, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8143, ../../../scss/_app_styles.scss */ .analytics { margin-top: 20px; } -<<<<<<< HEAD -/* line 8144, ../../../scss/_app_styles.scss */ -======= -/* line 8147, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8146, ../../../scss/_app_styles.scss */ .square { border: 4px solid #ffffff; position: relative; @@ -31314,24 +31306,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 30px; } -<<<<<<< HEAD -/* line 8154, ../../../scss/_app_styles.scss */ -======= -/* line 8157, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8156, ../../../scss/_app_styles.scss */ .square:after { content: ""; display: block; padding-bottom: 100%; } -<<<<<<< HEAD -/* line 8160, ../../../scss/_app_styles.scss */ +/* line 8162, ../../../scss/_app_styles.scss */ .box-content { -======= -/* line 8163, ../../../scss/_app_styles.scss */ -.content { ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 position: absolute; width: 100%; height: 80%; @@ -31339,11 +31322,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 20%; } -<<<<<<< HEAD -/* line 8173, ../../../scss/_app_styles.scss */ -======= -/* line 8176, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8175, ../../../scss/_app_styles.scss */ .activity-slider { font-family: Arial; width: 800px; @@ -31351,11 +31330,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0 auto; } -<<<<<<< HEAD -/* line 8180, ../../../scss/_app_styles.scss */ -======= -/* line 8183, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8182, ../../../scss/_app_styles.scss */ .activity-slider h3 { background: #fff; color: #3498db; @@ -31383,16 +31358,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .action a:hover{ background:#000; }*/ -<<<<<<< HEAD -/* line 8207, ../../../scss/_app_styles.scss */ -======= -/* line 8210, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8209, ../../../scss/_app_styles.scss */ .footer_link_cont h4 { color: #999; } -/* line 8211, ../../../scss/_app_styles.scss */ +/* line 8213, ../../../scss/_app_styles.scss */ .about_content { color: #ececec; margin-bottom: 30px; @@ -31400,7 +31371,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { font-size: 20px; } -/* line 8219, ../../../scss/_app_styles.scss */ +/* line 8221, ../../../scss/_app_styles.scss */ .about-blog { height: 100%; background: #20ade0; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css index 57bc066cce..dbb5a6ca09 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css @@ -31313,20 +31313,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background: #20ade0; } -<<<<<<< HEAD -/* line 8141, ../../../scss/_app_styles.scss */ -======= -/* line 8144, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8143, ../../../scss/_app_styles.scss */ .analytics { margin-top: 20px; } -<<<<<<< HEAD -/* line 8144, ../../../scss/_app_styles.scss */ -======= -/* line 8147, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8146, ../../../scss/_app_styles.scss */ .square { border: 4px solid #ffffff; position: relative; @@ -31337,24 +31329,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 30px; } -<<<<<<< HEAD -/* line 8154, ../../../scss/_app_styles.scss */ -======= -/* line 8157, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8156, ../../../scss/_app_styles.scss */ .square:after { content: ""; display: block; padding-bottom: 100%; } -<<<<<<< HEAD -/* line 8160, ../../../scss/_app_styles.scss */ +/* line 8162, ../../../scss/_app_styles.scss */ .box-content { -======= -/* line 8163, ../../../scss/_app_styles.scss */ -.content { ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 position: absolute; width: 100%; height: 80%; @@ -31362,11 +31345,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 20%; } -<<<<<<< HEAD -/* line 8173, ../../../scss/_app_styles.scss */ -======= -/* line 8176, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8175, ../../../scss/_app_styles.scss */ .activity-slider { font-family: Arial; width: 800px; @@ -31374,11 +31353,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0 auto; } -<<<<<<< HEAD -/* line 8180, ../../../scss/_app_styles.scss */ -======= -/* line 8183, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8182, ../../../scss/_app_styles.scss */ .activity-slider h3 { background: #fff; color: #3498db; @@ -31406,16 +31381,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .action a:hover{ background:#000; }*/ -<<<<<<< HEAD -/* line 8207, ../../../scss/_app_styles.scss */ -======= -/* line 8210, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8208, ../../../scss/_app_styles.scss */ .footer_link_cont h4 { color: #999; } -/* line 8211, ../../../scss/_app_styles.scss */ +/* line 8212, ../../../scss/_app_styles.scss */ .about_content { color: #ececec; margin-bottom: 30px; @@ -31423,7 +31394,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { font-size: 20px; } -/* line 8219, ../../../scss/_app_styles.scss */ +/* line 8220, ../../../scss/_app_styles.scss */ .about-blog { height: 100%; background: #20ade0; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css index a3b68d8985..6d08927014 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css @@ -31614,20 +31614,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background: #20ade0; } -<<<<<<< HEAD -/* line 8141, ../../../scss/_app_styles.scss */ -======= -/* line 8144, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8143, ../../../scss/_app_styles.scss */ .analytics { margin-top: 20px; } -<<<<<<< HEAD -/* line 8144, ../../../scss/_app_styles.scss */ -======= -/* line 8147, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8146, ../../../scss/_app_styles.scss */ .square { border: 4px solid #ffffff; position: relative; @@ -31638,24 +31630,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 30px; } -<<<<<<< HEAD -/* line 8154, ../../../scss/_app_styles.scss */ -======= -/* line 8157, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8156, ../../../scss/_app_styles.scss */ .square:after { content: ""; display: block; padding-bottom: 100%; } -<<<<<<< HEAD -/* line 8160, ../../../scss/_app_styles.scss */ +/* line 8162, ../../../scss/_app_styles.scss */ .box-content { -======= -/* line 8163, ../../../scss/_app_styles.scss */ -.content { ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 position: absolute; width: 100%; height: 80%; @@ -31663,11 +31646,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 20%; } -<<<<<<< HEAD -/* line 8173, ../../../scss/_app_styles.scss */ -======= -/* line 8176, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8175, ../../../scss/_app_styles.scss */ .activity-slider { font-family: Arial; width: 800px; @@ -31675,11 +31654,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0 auto; } -<<<<<<< HEAD -/* line 8180, ../../../scss/_app_styles.scss */ -======= -/* line 8183, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8182, ../../../scss/_app_styles.scss */ .activity-slider h3 { background: #fff; color: #3498db; @@ -31707,16 +31682,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .action a:hover{ background:#000; }*/ -<<<<<<< HEAD -/* line 8207, ../../../scss/_app_styles.scss */ -======= -/* line 8210, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8208, ../../../scss/_app_styles.scss */ .footer_link_cont h4 { color: #999; } -/* line 8211, ../../../scss/_app_styles.scss */ +/* line 8212, ../../../scss/_app_styles.scss */ .about_content { color: #ececec; margin-bottom: 30px; @@ -31724,7 +31695,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { font-size: 20px; } -/* line 8219, ../../../scss/_app_styles.scss */ +/* line 8220, ../../../scss/_app_styles.scss */ .about-blog { height: 100%; background: #20ade0; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css index 12b758a7c8..dbb5a6ca09 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css @@ -23812,7 +23812,8 @@ pre { /* line 461, ../../../scss/_app_styles.scss */ html, body { height: 100%; - overflow-x: hidden; + /* +overflow-x: hidden;*/ } /* line 465, ../../../scss/_app_styles.scss */ @@ -31312,20 +31313,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background: #20ade0; } -<<<<<<< HEAD -/* line 8141, ../../../scss/_app_styles.scss */ -======= -/* line 8144, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8143, ../../../scss/_app_styles.scss */ .analytics { margin-top: 20px; } -<<<<<<< HEAD -/* line 8144, ../../../scss/_app_styles.scss */ -======= -/* line 8147, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8146, ../../../scss/_app_styles.scss */ .square { border: 4px solid #ffffff; position: relative; @@ -31336,24 +31329,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 30px; } -<<<<<<< HEAD -/* line 8154, ../../../scss/_app_styles.scss */ -======= -/* line 8157, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8156, ../../../scss/_app_styles.scss */ .square:after { content: ""; display: block; padding-bottom: 100%; } -<<<<<<< HEAD -/* line 8160, ../../../scss/_app_styles.scss */ +/* line 8162, ../../../scss/_app_styles.scss */ .box-content { -======= -/* line 8163, ../../../scss/_app_styles.scss */ -.content { ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 position: absolute; width: 100%; height: 80%; @@ -31361,11 +31345,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 20%; } -<<<<<<< HEAD -/* line 8173, ../../../scss/_app_styles.scss */ -======= -/* line 8176, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8175, ../../../scss/_app_styles.scss */ .activity-slider { font-family: Arial; width: 800px; @@ -31373,11 +31353,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0 auto; } -<<<<<<< HEAD -/* line 8180, ../../../scss/_app_styles.scss */ -======= -/* line 8183, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8182, ../../../scss/_app_styles.scss */ .activity-slider h3 { background: #fff; color: #3498db; @@ -31405,16 +31381,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .action a:hover{ background:#000; }*/ -<<<<<<< HEAD -/* line 8207, ../../../scss/_app_styles.scss */ -======= -/* line 8210, ../../../scss/_app_styles.scss */ ->>>>>>> 4960655b3edc4a236ba0247fb69897dc23a6af84 +/* line 8208, ../../../scss/_app_styles.scss */ .footer_link_cont h4 { color: #999; } -/* line 8211, ../../../scss/_app_styles.scss */ +/* line 8212, ../../../scss/_app_styles.scss */ .about_content { color: #ececec; margin-bottom: 30px; @@ -31422,7 +31394,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { font-size: 20px; } -/* line 8219, ../../../scss/_app_styles.scss */ +/* line 8220, ../../../scss/_app_styles.scss */ .about-blog { height: 100%; background: #20ade0; diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss index fb6e46589f..0547240366 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss @@ -8205,7 +8205,6 @@ $module-card-lines-to-show: 3; .action a:hover{ background:#000; }*/ - .footer_link_cont h4{ color: #999; } From b7b8992128c5ca7147b104cb49352d1b69803274 Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Thu, 5 Apr 2018 18:42:05 +0530 Subject: [PATCH 506/766] for pull request ... removed unwanted files... created new directory such as gstudio_es...all code commented on particular files --- .../gnowsys_ndf/ndf/gstudio_es/__init__.py | 0 gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/es.py | 105 ++++++++++++++++++ .../gnowsys_ndf/ndf/models/filehive.py | 2 +- gnowsys-ndf/gnowsys_ndf/ndf/models/node.py | 2 +- .../ndf/templates/ndf/advanced_search.html | 4 +- .../ndf/templates/ndf/card_gsearch.html | 3 +- .../gnowsys_ndf/ndf/templates/ndf/sform.html | 6 +- .../gnowsys_ndf/ndf/views/advanced_search.py | 2 +- gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py | 2 +- .../gnowsys_ndf/ndf/views/e-library.py | 2 +- .../gnowsys_ndf/ndf/views/search_views.py | 2 +- gnowsys-ndf/gnowsys_ndf/settings.py | 2 +- 12 files changed, 119 insertions(+), 13 deletions(-) create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/__init__.py create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/es.py diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/__init__.py b/gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/es.py b/gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/es.py new file mode 100644 index 0000000000..2c4d21de18 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/es.py @@ -0,0 +1,105 @@ +from elasticsearch import Elasticsearch +from elasticsearch_dsl import * +from gnowsys_ndf.local_settings import GSTUDIO_ELASTIC_SEARCH ,GSTUDIO_ELASTIC_SEARCH_PROTOCOL,GSTUDIO_ELASTIC_SEARCH_SUPERUSER,GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD,GSTUDIO_ELASTIC_SEARCH_ALIAS,GSTUDIO_ELASTIC_SEARCH_PORT +from gnowsys_ndf.ndf.models.base_imports import * +from gnowsys_ndf.ndf.models.history_manager import HistoryManager +#from gnowsys_ndf.ndf.models.node import * +#from .node import Node +from bson.json_util import loads, dumps +from gnowsys_ndf.ndf.models.models_utils import NodeJSONEncoder + +#es = Elasticsearch("http://"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER+":"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD+"@"+GSTUDIO_ELASTIC_SEARCH_ALIAS+":"+GSTUDIO_ELASTIC_SEARCH_PORT, timeout=100, retry_on_timeout=True) + +es = Elasticsearch(GSTUDIO_ELASTIC_SEARCH_PROTOCOL+"://"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER+":"+GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD+"@"+GSTUDIO_ELASTIC_SEARCH_ALIAS+":"+GSTUDIO_ELASTIC_SEARCH_PORT,timeout=100, retry_on_timeout=True) + +class esearch: + + #objects = models.Manager() + + #def __init__(self,fp): + # self.fp = fp + @staticmethod + def inject(fp): + if not os.path.exists(GLITE_RCS_REPO_DIRNAME): + os.makedirs(GLITE_RCS_REPO_DIRNAME) + + #fp = history_manager.get_file_path(self) + + rcs_obj = RCS() + rcs_obj.checkout(fp, otherflags="-f") + + temp1 = fp[:-29] + temp2 = temp1[14:] + + glite_fp = "/data/"+GLITE_RCS_REPO_DIRNAME+ temp2 + + try: + os.makedirs(glite_fp) + except OSError as exc: # Python >2.5 + if os.path.isdir(glite_fp): + pass + else: + raise + + temp = "cp " +fp+" "+glite_fp + os.system(temp) + #temp = "rm -rf"+" "+fp + #os.system(temp) + + #glite_fp = glite_fp + self._id + ".json" + + #with open(fp, 'r') as f: + # document = json.load(f) + + read_file_data = open(fp,'r').read() + + convert_oid_to_object_id = loads(read_file_data) + + doc = json.dumps(convert_oid_to_object_id,cls=NodeJSONEncoder) + + document = json.loads(doc) + + + document["id"] = document.pop("_id") + document["type"] = document.pop("_type") + + document_type = document["type"] + + index = None + print GSTUDIO_ELASTIC_SEARCH_INDEX + + for k in GSTUDIO_ELASTIC_SEARCH_INDEX: + for v in GSTUDIO_ELASTIC_SEARCH_INDEX[k]: + if document_type in v: + index = k + index = index.lower() + + break + + document_type + + if document_type == "GSystem": + es.index(index=index, doc_type="gsystem", id=document["id"], body=document) + #file_name.write(document["id"] + '\n') + if document["type"]=="GSystem": + if('if_file' in document.keys()): + if(document["if_file"]["mime_type"] is not None): + data = document["if_file"]["mime_type"].split("/") + doc_type = data[0] + else: + doc_type = "notmedia" + else: + doc_type = "notmedia" + + else: + doc_type = "dontcare" + + if (not es.indices.exists("gsystem")): + res = es.indices.create(index="gsystem", body=request_body) + es.index(index="gsystem", doc_type=doc_type, id=document["id"], body=document) + + else: + + es.index(index=index, doc_type=document_type.lower(), id=document["id"], body=document) + + diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/models/filehive.py b/gnowsys-ndf/gnowsys_ndf/ndf/models/filehive.py index 268b27e820..a3c532a0df 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/models/filehive.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/models/filehive.py @@ -1,6 +1,6 @@ from base_imports import * from history_manager import HistoryManager -from gnowsys_ndf.ndf.models.es import esearch +from gnowsys_ndf.ndf.gstudio_es.es import esearch from gnowsys_ndf.local_settings import GSTUDIO_ELASTIC_SEARCH,GLITE_RCS_REPO_DIRNAME,GSTUDIO_ELASTIC_SEARCH_INDEX diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/models/node.py b/gnowsys-ndf/gnowsys_ndf/ndf/models/node.py index 25caa85563..3ab4191185 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/models/node.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/models/node.py @@ -5,7 +5,7 @@ from gnowsys_ndf.local_settings import GSTUDIO_ELASTIC_SEARCH,GLITE_RCS_REPO_DIRNAME,GSTUDIO_ELASTIC_SEARCH_INDEX from bson.json_util import loads, dumps from models_utils import NodeJSONEncoder -from gnowsys_ndf.ndf.models.es import esearch +from gnowsys_ndf.ndf.gstudio_es.es import esearch @connection.register diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/advanced_search.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/advanced_search.html index 920b5e81ce..9a7f3d7d90 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/advanced_search.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/advanced_search.html @@ -1,4 +1,4 @@ -{% extends "ndf/gbase.html" %} + \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_gsearch.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_gsearch.html index d3606336d6..0187139815 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_gsearch.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/card_gsearch.html @@ -1,4 +1,4 @@ -{% load i18n %} + \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html index d8bc0b3c3a..cfe6154f86 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/sform.html @@ -1,4 +1,4 @@ -{% extends "ndf/gbase.html" %} + + {% else %} sending the id of home as group id if group-set is empty
  • {% include "ndf/card_gsearch.html" with node=each url_name="node_detail" first_arg="5752ad5a2e01310a05dca583" second_arg=each.id %}
  • @@ -101,4 +101,4 @@
    -{% endblock %} \ No newline at end of file +{% endblock %} --> \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py index 259a191b6c..cb238702e2 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py @@ -20,7 +20,7 @@ from gnowsys_ndf.ndf.views.file import * from gnowsys_ndf.ndf.views.methods import get_group_name_id, cast_to_data_type, get_execution_time from gnowsys_ndf.ndf.views.methods import get_filter_querydict -from gnowsys_ndf.ndf.models.es import * +from gnowsys_ndf.ndf.gstudio_es.es import * from gnowsys_ndf.ndf.paginator import Paginator ,EmptyPage, PageNotAnInteger from gnowsys_ndf.local_settings import GSTUDIO_ADVANCED_SEARCH from gnowsys_ndf.ndf.templatetags.ndf_tags import get_relation_value diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py index fa0422d03b..535d860b5d 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py @@ -22,7 +22,7 @@ from elasticsearch_dsl import * from gnowsys_ndf.ndf.paginator import Paginator ,EmptyPage, PageNotAnInteger from gnowsys_ndf.local_settings import GSTUDIO_ELASTIC_SEARCH -from gnowsys_ndf.ndf.models.es import * +from gnowsys_ndf.ndf.gstudio_es.es import * if GSTUDIO_ELASTIC_SEARCH == True: diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-library.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-library.py index 0ba8ad24c8..52d5947585 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-library.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-library.py @@ -20,7 +20,7 @@ from gnowsys_ndf.ndf.views.file import * from gnowsys_ndf.ndf.views.methods import get_group_name_id, cast_to_data_type, get_execution_time from gnowsys_ndf.ndf.views.methods import get_filter_querydict -from gnowsys_ndf.ndf.models.es import * +from gnowsys_ndf.ndf.gstudio_es.es import * from gnowsys_ndf.ndf.paginator import Paginator ,EmptyPage, PageNotAnInteger diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/search_views.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/search_views.py index f2f241e900..2e5d80c302 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/search_views.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/search_views.py @@ -27,7 +27,7 @@ from elasticsearch_dsl import * from django.shortcuts import render_to_response # , render from elasticsearch_dsl.query import MultiMatch, Match -from gnowsys_ndf.ndf.models.es import * +from gnowsys_ndf.ndf.gstudio_es.es import * from gnowsys_ndf.ndf.paginator import Paginator ,EmptyPage, PageNotAnInteger diff --git a/gnowsys-ndf/gnowsys_ndf/settings.py b/gnowsys-ndf/gnowsys_ndf/settings.py index a4476baecf..6fad738158 100755 --- a/gnowsys-ndf/gnowsys_ndf/settings.py +++ b/gnowsys-ndf/gnowsys_ndf/settings.py @@ -1076,7 +1076,7 @@ # Elastic Search GSTUDIO_DOCUMENT_MAPPING = '/data' -GSTUDIO_ELASTIC_SEARCH = True +GSTUDIO_ELASTIC_SEARCH = False GSTUDIO_ELASTIC_SEARCH_PROTOCOL = 'http' # we can use http or https protocol GSTUDIO_ELASTIC_SEARCH_ALIAS = 'gsearch' GSTUDIO_ELASTIC_SEARCH_SUPERUSER = '' From f039933dfbfedc77379b6cc946f75a34e2c02109 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Thu, 5 Apr 2018 18:50:13 +0530 Subject: [PATCH 507/766] merging beta-po and beta-workshopchanges --- .../gnowsys_ndf/ndf/templates/ndf/footer.html | 15 ++------------- .../ndf/templates/ndf/landing_page_nroer.html | 7 ------- 2 files changed, 2 insertions(+), 20 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html index 98c45de3ed..0d12fc0930 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html @@ -13,11 +13,7 @@
    @@ -301,7 +298,6 @@

    Activities / Schemes // fade: true, autoplaySpeed: 5000, autoplay: true, -<<<<<<< HEAD arrows: false, }); @@ -312,9 +308,6 @@

    Activities / Schemes centerPadding: '60px', arrows: false, focusOnSelect: true -======= - arrows:false, ->>>>>>> 00c0ae2b92adad8d2f73991e7b83ca02c8d03df3 }); }); From ecb23a7f9a174f96974d77b4267b95f7c99168fc Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Thu, 5 Apr 2018 19:16:36 +0530 Subject: [PATCH 508/766] removed unwanted stuffs from test_template.html and dev_utils views --- .../gnowsys_ndf/ndf/gstudio_es/paginator.py | 220 +++++ .../ndf/templates/ndf/test_template.html | 687 --------------- gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py | 2 +- gnowsys-ndf/gnowsys_ndf/ndf/urls/dev_utils.py | 3 - .../gnowsys_ndf/ndf/views/advanced_search.py | 2 +- .../gnowsys_ndf/ndf/views/dev_utils.py | 822 +----------------- gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py | 2 +- .../gnowsys_ndf/ndf/views/e-library.py | 2 +- .../gnowsys_ndf/ndf/views/search_views.py | 22 +- 9 files changed, 238 insertions(+), 1524 deletions(-) create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/paginator.py diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/paginator.py b/gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/paginator.py new file mode 100644 index 0000000000..bfba6d5a44 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/gstudio_es/paginator.py @@ -0,0 +1,220 @@ +import collections +import warnings +from math import ceil + +from django.utils.functional import cached_property +from django.utils.translation import gettext_lazy as _ + +from django.utils import six + +class UnorderedObjectListWarning(RuntimeWarning): + pass +class InvalidPage(Exception): + pass +class PageNotAnInteger(InvalidPage): + pass +class EmptyPage(InvalidPage): + pass + +class Paginator: + + def __init__(self, object_list, per_page, orphans=0, + allow_empty_first_page=True): + self.object_list = object_list + self._check_object_list_is_ordered() + self.per_page = int(per_page) + self.orphans = int(orphans) + self.allow_empty_first_page = allow_empty_first_page + + def validate_number(self, number): + """Validate the given 1-based page number.""" + try: + number = int(number) + except (TypeError, ValueError): + raise PageNotAnInteger(_('That page number is not an integer')) + if number < 1: + raise EmptyPage(_('That page number is less than 1')) + if number > self.num_pages: + if number == 1 and self.allow_empty_first_page: + pass + else: + raise EmptyPage(_('That page contains no results')) + return number + + def get_page(self, number): + """ + Return a valid page, even if the page argument isn't a number or isn't + in range. + """ + try: + number = self.validate_number(number) + except PageNotAnInteger: + number = 1 + except EmptyPage: + number = self.num_pages + return self.page(number) + + + def page(self, number): + """Return a Page object for the given 1-based page number.""" + number = self.validate_number(number) + bottom = (number - 1) * self.per_page + top = bottom + self.per_page + if top + self.orphans >= self.count: + top = self.count + return self._get_page(self.object_list[bottom:top], number, self) + + + def _get_page(self, *args, **kwargs): + """ + Return an instance of a single page. + + This hook can be used by subclasses to use an alternative to the + standard :cls:`Page` object. + """ + return Page(*args, **kwargs) + + @cached_property + def count(self): + """Return the total number of objects, across all pages.""" + try: + return self.object_list.count() + except (AttributeError, TypeError): + # AttributeError if object_list has no count() method. + # TypeError if object_list.count() requires arguments + # (i.e. is of type list). + return len(self.object_list) + + @cached_property + def num_pages(self): + """Return the total number of pages.""" + if self.count == 0 and not self.allow_empty_first_page: + return 0 + hits = max(1, self.count - self.orphans) + return int(ceil(hits / float(self.per_page))) + + @property + def page_range(self): + """ + Return a 1-based range of pages for iterating through within + a template for loop. + """ + return range(1, self.num_pages + 1) + + def _check_object_list_is_ordered(self): + """ + Warn if self.object_list is unordered (typically a QuerySet). + """ + ordered = getattr(self.object_list, 'ordered', None) + if ordered is not None and not ordered: + obj_list_repr = ( + '{} {}'.format(self.object_list.model, self.object_list.__class__.__name__) + if hasattr(self.object_list, 'model') + else '{!r}'.format(self.object_list) + ) + warnings.warn( + 'Pagination may yield inconsistent results with an unordered ' + 'object_list: {}.'.format(obj_list_repr), + UnorderedObjectListWarning, + stacklevel=3 + ) + + + +QuerySetPaginator = Paginator # For backwards-compatibility. + + +class Page(collections.Sequence): + + def __init__(self, object_list, number, paginator): + self.object_list = object_list + self.number = number + self.current_page = number + self.paginator = paginator + self.allow_empty_first_page = paginator.allow_empty_first_page + self.orphans = paginator.orphans + self.per_page = paginator.per_page + + + def __repr__(self): + return '' % (self.number, self.paginator.num_pages) + + def __len__(self): + return len(self.object_list) + + def __getitem__(self, index): + if not isinstance(index, (int, slice)): + raise TypeError + # The object_list is converted to a list so that if it was a QuerySet + # it won't be a database hit per __getitem__. + if not isinstance(self.object_list, list): + self.object_list = list(self.object_list) + return self.object_list[index] + + def has_next(self): + return self.number < self.paginator.num_pages + + + def has_previous(self): + return self.number > 1 + + + def has_other_pages(self): + return self.has_previous() or self.has_next() + + + def next_page(self): + return self.paginator.validate_number(self.number + 1) + + + def previous_page(self): + return self.paginator.validate_number(self.number - 1) + + + def start_index(self): + """ + Return the 1-based index of the first object on this page, + relative to total objects in the paginator. + """ + # Special case, return zero if no items. + if self.paginator.count == 0: + return 0 + return (self.paginator.per_page * (self.number - 1)) + 1 + + + def end_index(self): + """ + Return the 1-based index of the last object on this page, + relative to total objects found (hits). + """ + # Special case for the last page because there can be orphans. + if self.number == self.paginator.num_pages: + return self.paginator.count + return self.number * self.paginator.per_page + + @cached_property + def num_pages(self): + """Return the total number of pages.""" + if self.count == 0 and not self.allow_empty_first_page: + return 0 + hits = max(1, self.count - self.orphans) + return int(ceil(hits / float(self.per_page))) + + @property + def page_range(self): + """ + Return a 1-based range of pages for iterating through within + a template for loop. + """ + return range(1, self.num_pages + 1) + + @cached_property + def count(self): + """Return the total number of objects, across all pages.""" + try: + return self.object_list.count() + except (AttributeError, TypeError): + # AttributeError if object_list has no count() method. + # TypeError if object_list.count() requires arguments + # (i.e. is of type list). + return len(self.object_list) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html index e543b16d0e..96c14ebdd4 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/test_template.html @@ -88,691 +88,4 @@

    Please Login to create your shelf

    {% block related_content %} - {% check_user_join request groupid as user_is_joined %} - -
    - - -
    -{% endblock %} - - - -{% block body_content %} -
    - - {% if app_gst.altnames and app_gst.altnames != "None" %} - {% trans app_gst.altnames %} - {% else %} - {% trans app_gst %} - {% endif%} -
    -
    {{app_gst.content_org|default_if_none:""|safe}}
    - {% if title == "E-Library" %} - {% get_filters_data "File" groupid as filter_dict %} - {% include "ndf/filters.html" with filter_dict=filter_dict %} - {% endif %} - - - - - - {% endblock %} - - {% block script %} - // {% endblock %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py index 2394b76126..57ae0a5c07 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py @@ -133,7 +133,7 @@ # ---end of mis #test url - #(r'^dev', include('gnowsys_ndf.ndf.urls.dev_utils')), + (r'^dev', include('gnowsys_ndf.ndf.urls.dev_utils')), (r'^tools/', include('gnowsys_ndf.ndf.urls.tools')), diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/dev_utils.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/dev_utils.py index d6289c80d0..355a5325a3 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/dev_utils.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/dev_utils.py @@ -1,9 +1,6 @@ from django.conf.urls import patterns, url urlpatterns = patterns('gnowsys_ndf.ndf.views.dev_utils', - #url(r'^/template[/]$', 'render_test_template', name='render_test_template'), - #url(r'^/template/(?P[\w-]+)/(?P[\w-]+)/page-no=(?P\d+)/$', 'elib_paged_file_objects', name='elib_paged_file_objects'), - #url(r'^/template/(?P[\w-]+)$', 'render_test_template', name='resource_list'), url(r'^git/branch/?$', 'git_branch', name='git_branch'), url(r'^git/(?P[\w-]+)$', 'git_misc', name='git_misc'), ) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py index cb238702e2..cdc6132a12 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py @@ -21,7 +21,7 @@ from gnowsys_ndf.ndf.views.methods import get_group_name_id, cast_to_data_type, get_execution_time from gnowsys_ndf.ndf.views.methods import get_filter_querydict from gnowsys_ndf.ndf.gstudio_es.es import * -from gnowsys_ndf.ndf.paginator import Paginator ,EmptyPage, PageNotAnInteger +from gnowsys_ndf.ndf.gstudio_es.paginator import Paginator ,EmptyPage, PageNotAnInteger from gnowsys_ndf.local_settings import GSTUDIO_ADVANCED_SEARCH from gnowsys_ndf.ndf.templatetags.ndf_tags import get_relation_value diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py index 4d458512ad..81983075ca 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/dev_utils.py @@ -25,7 +25,6 @@ from django.shortcuts import render_to_response from django.template import RequestContext #from mongokit import paginator -from gnowsys_ndf.ndf.paginator import Paginator ,EmptyPage, PageNotAnInteger #from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger try: @@ -43,107 +42,17 @@ from gnowsys_ndf.ndf.views.methods import get_group_name_id, cast_to_data_type, get_execution_time from gnowsys_ndf.ndf.views.methods import get_filter_querydict -from elasticsearch import Elasticsearch -from elasticsearch_dsl import * -from gnowsys_ndf.local_settings import GSTUDIO_ELASTIC_SEARCH -es = Elasticsearch("http://elastic:changeme@gsearch:9200", timeout=100, retry_on_timeout=True) +GST_PAGE = node_collection.one({'_type':'GSystemType', 'name': 'page'}) +GST_IMAGE = node_collection.one({'_type':'GSystemType', 'name': 'image'}) +GST_VIDEO = node_collection.one({'_type':'GSystemType', 'name': GAPPS[4]}) +e_library_GST = node_collection.one({'_type':'GSystemType', 'name': 'E-Library'}) +pandora_video_st = node_collection.one({'_type':'GSystemType', 'name': 'Pandora_video'}) +app = node_collection.one({'_type':'GSystemType', 'name': 'E-Library'}) +wiki_page = node_collection.one({'_type': 'GSystemType', 'name': 'Wiki page'}) +GST_JSMOL = node_collection.one({"_type":"GSystemType","name":"Jsmol"}) -#GST_PAGE = node_collection.one({'_type':'GSystemType', 'name': 'page'}) -#GST_IMAGE = node_collection.one({'_type':'GSystemType', 'name': 'image'}) -##GST_VIDEO = node_collection.one({'_type':'GSystemType', 'name': GAPPS[4]}) -#e_library_GST = node_collection.one({'_type':'GSystemType', 'name': 'E-Library'}) -#pandora_video_st = node_collection.one({'_type':'GSystemType', 'name': 'Pandora_video'}) -#app = node_collection.one({'_type':'GSystemType', 'name': 'E-Library'}) -#wiki_page = node_collection.one({'_type': 'GSystemType', 'name': 'Wiki page'}) -#GST_JSMOL111 = node_collection.one({"_type":"GSystemType","name":"Jsmol"}) - -#GST_FILE = res = es.search(index="nodes", doc_type="gsystemtype", body={ -# "query": {"bool":{"must": [ {"term": {"name":"file"} }] }}}) -#print "----------------------" -#print GST_FILE - -es_client = Search(using=es) - -#GST_FILE = Search(using=es, index="nodes",doc_type="gsystemtype").query("match", name="file") -#GST_FILE1=GST_FILE.execute() - -#print "GST File" -#print GST_FILE1.hits[0].id - - -q = Q('match',name=dict(query='File',type='phrase')) -GST_FILE = Search(using=es, index="nodes",doc_type="gsystemtype").query(q) -GST_FILE1 = GST_FILE.execute() - -#q = Q('bool', must=[Q('match', name='file')],should=[ Q('match', name='file1')]) -#GST_FILE_new1 =Search(using=es, index="nodes",doc_type="gsystemtype").query(q) - -#q = Q('match',name=dict(query="e-book", type="phrase")) -#GST_FILE_new11 =Search(using=es, index="nodes",doc_type="gsystemtype").query(q) - -#print "e-book ids" -#for a in GST_FILE_new11: -# print a.id -q = Q('match',name=dict(query='Page',type='phrase')) -GST_PAGE = Search(using=es, index="nodes",doc_type="gsystemtype").query(q) -GST_PAGE1 = GST_PAGE.execute() - -#GST_PAGE= Search(using=es, index="nodes",doc_type="gsystemtype").query("match", name="page") -#GST_PAGE1=GST_PAGE.execute() - -q = Q('match',name=dict(query='Image',type='phrase')) -GST_IMAGE = Search(using=es, index="nodes",doc_type="gsystemtype").query(q) -GST_IMAGE1 = GST_IMAGE.execute() - -#GST_IMAGE = Search(using=es, index="nodes",doc_type="gsystemtype").query("match", name="image") -#GST_IMAGE1=GST_IMAGE.execute() - -q = Q('match',name=dict(query='Video',type='phrase')) -GST_VIDEO = Search(using=es, index="nodes",doc_type="gsystemtype").query(q) -GST_VIDEO1 = GST_VIDEO.execute() - -#GST_VIDEO = Search(using=es, index="nodes",doc_type="gsystemtype").query("match", name="video") -#GST_VIDEO1=GST_VIDEO.execute() - -q = Q('match',name=dict(query='E-Library',type='phrase')) -e_library_GST = Search(using=es, index="nodes",doc_type="gsystemtype").query(q) -e_library_GST1 = e_library_GST.execute() - -#e_library_GST = Search(using=es, index="nodes",doc_type="gsystemtype").query("match", name="library") -#e_library_GST1=e_library_GST.execute() - -q = Q('match',name=dict(query='Pandora_video',type='phrase')) -pandora_video_st = Search(using=es, index="nodes",doc_type="gsystemtype").query(q) -pandora_video_st1 = pandora_video_st.execute() - -#pandora_video_st = Search(using=es, index="nodes",doc_type="gsystemtype").query("match", name="pandora") -#pandora_video_st1=pandora_video_st.execute() - -#app = Search(using=es, index="nodes",doc_type="gsystemtype").query("match", name="library") -#app1=app.execute() - -q = Q('match',name=dict(query='E-Library',type='phrase')) -app = Search(using=es, index="nodes",doc_type="gsystemtype").query(q) -app1 = app.execute() - - -q = Q('match',name=dict(query='Wiki page',type='phrase')) -wiki_page = Search(using=es, index="nodes",doc_type="gsystemtype").query(q) -wiki_page1 = wiki_page.execute() - -#wiki_page = Search(using=es, index="nodes",doc_type="gsystemtype").query("match", name="wiki") -#wiki_page1=wiki_page.execute() - - -q = Q('match',name=dict(query='Jsmol',type='phrase')) -GST_JSMOL = Search(using=es, index="nodes",doc_type="gsystemtype").query(q) -GST_JSMOL1 = GST_JSMOL.execute() - - -#GST_JSMOL = Search(using=es, index="nodes",doc_type="gsystemtype").query("match", name="jsmol") -#GST_JSMOL1=GST_JSMOL.execute() def query_doc(request, doc_id_or_name=None, option=None): @@ -171,728 +80,15 @@ def query_doc(request, doc_id_or_name=None, option=None): def render_test_template(request,group_id='home', app_id=None, page_no=1): - is_video = request.GET.get('is_video', "") - - print GST_FILE1 - print "----------------------------------print GST_FILE1" - try: - group_id = ObjectId(group_id) - #print group_id - except: - group_name, group_id = get_group_name_id(group_id) - #print group_id, group_name - - if app_id is None: - app_id = app1.hits[0].id - print app_id - - - title = e_library_GST1.hits[0].name - - GST_FILE_temp=[] - - - file_id = GST_FILE_temp - #print file_id - datavisual = [] - no_of_objs_pp = 24 - - query_dict = [] - # query_dict = filters - - selfilters = urllib.unquote(request.GET.get('selfilters', '')) - if selfilters: - selfilters = json.loads(selfilters) - query_dict = get_filter_querydict(selfilters) - - #query_dict.append({'attribute_set.educationaluse': {'$ne': 'eBooks'}}) - i=-1 - strconcat="" - endstring="" - temp_dict={} - lists = [] - #print query_dict - - for each in list(query_dict): - for temp in each.values(): - for a in temp: - for key,value in a.items(): - if isinstance(value, dict): - #print value["$in"][0] - if value["$in"]: - key = list(key) - key[13]='__' - t="".join(key) - print t - print "-----------------------------" - temp_dict[t]=value["$in"][0] - #strconcat=strconcat+"Q('match',"+ t+"='"+value["$in"][0]+"')," - #Q('match',name=dict(query="e-book", type="phrase")) - #strconcat=strconcat+"Q('match',"+t+"=dict(query='"+value["$in"][0]+"',type='phrase'))$$" - lists.append("Q('match',"+t+"=dict(query='"+value["$in"][0]+"',type='phrase'))") - elif value["$or"]: - key = list(key) - key[13]='__' - t="".join(key) - print t - print "------------------------" - temp_dict[t]=value["$or"][0] - #strconcat=strconcat+"Q('match',"+t+"='"+value["$or"][0]+"') " - #strconcat=strconcat+"Q('match',"+t+"=dict(query='"+value["$or"][0]+"',type='phrase'))$$" - lists.append("Q('match',"+t+"=dict(query='"+value["$or"][0]+"',type='phrase'))") - elif isinstance(value, tuple): - temp_dict["language"]= value[1] - #strconcat=strconcat+"Q('match',"+key+"='"+value[1]+"') " - strconcat=strconcat+"Q('match',"+key+"=dict(query='"+value[1]+"',type='phrase'))$$" - lists.append("Q('match',"+key+"=dict(query='"+value[1]+"',type='phrase'))") - else: - if key != "source": - key = list(key) - key[13]='__' - t="".join(key) - temp_dict[t]=value - #strconcat=strconcat+"Q('match',"+ t+"='"+value+"') " - #strconcat=strconcat+"Q('match',"+t+"=dict(query='"+value+"',type='phrase'))$$" - lists.append("Q('match',"+t+"=dict(query='"+value+"',type='phrase'))") - else: - temp_dict[key]=value - #strconcat=strconcat+"Q('match',"+ key+"='"+value+"') " - #strconcat=strconcat+"Q('match',"+key+"=dict(query='"+value+"',type='phrase'))$$" - lists.append("Q('match',"+key+"=dict(query='"+value+"',type='phrase'))") - - print temp_dict - #strconcat=strconcat - print strconcat - print lists - #files = node_collection.find({ - # 'member_of': {'$in': [GST_FILE._id, GST_PAGE._id]}, - #'member_of': {'$in': [GST_FILE._id,GST_JSMOL._id]}, - # 'member_of': {'$in': [GST_FILE1.hits[0].id,GST_JSMOL1.hits[0].id]}, - - # '_type': 'File', - # 'fs_file_ids': {'$ne': []}, - # 'group_set': {'$all': [ObjectId(group_id)]}, - # '$and': query_dict, - # '$or': [ - # { 'access_policy': u"PUBLIC" }, - # { '$and': [ - # {'access_policy': u"PRIVATE"}, - # {'created_by': request.user.id} - # ] - # } - # ] - # }).sort("last_update", -1) - - - #files1 = es.search(index="nodes", doc_type="gsystem", body={ - # "query": {"bool": { "must": [ {"term": {"group_set": str(ObjectId(group_id))} },{"term": {"access_policy": "public"}} - # ,{"term": {"member_of": GST_FILE1.hits[0].id } } ], - # "must_not": [ {"term": {"attribute_set.educationaluse": "ebooks" } } ], - #"must": [ {"term": {"member_of": GST_FILE1.hits[0].id } } ], - #"must": [ {"terms": {"member_of": GST_JSMOL1.hits[0].id } } ], - # "must":[ {"term": {'access_policy':'public'}} ] - - #"must": [ {"term": {'created_by': request.user.id}}], - - #} }} ) - a,b,c,d,e = ([] for i in range(5)) - - if selfilters: - strconcat1 = "" - for value in lists: - print "************************************************" - print value - print "************************************************" - strconcat1 = strconcat1+'eval(str("'+ value +'")),' - print strconcat1 - - - q = eval("Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',member_of=GST_FILE1.hits[0].id),"+strconcat1[:-1]+"],must_not=[Q('match', attribute_set__educationaluse ='ebooks')])") - - collection_query = eval("Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('exists',field='collection_set'),"+strconcat1[:-1]+"]," - + "should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ]," - + "must_not=[Q('match', attribute_set__educationaluse ='ebooks')],minimum_should_match=1)") - - q_images_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='images'),"+strconcat1[:-1]+"])") - q_audios_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='audios'),"+strconcat1[:-1]+"])") - q_videos_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='videos'),"+strconcat1[:-1]+"])") - q_intercatives_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='interactives'),"+strconcat1[:-1]+"])") - q_applications_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='documents'),"+strconcat1[:-1]+"])") - q_ebooks_count = eval("Q('bool', must=[Q('match', attribute_set__educationaluse='ebooks'),"+strconcat1[:-1]+"])") - q_all_count = eval("Q('bool', must=["+strconcat1[:-1]+"]," - +"should=[Q('match', attribute_set__educationaluse='documents'),Q('match', attribute_set__educationaluse='images'),Q('match', attribute_set__educationaluse='videos')," - "Q('match', attribute_set__educationaluse='interactives')])") - - else: - - q = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('match',member_of=GST_FILE1.hits[0].id)], - must_not=[Q('match', attribute_set__educationaluse ='ebooks')]) - - files_new = Search(using=es, index="nodes",doc_type="gsystem").query(q) - files_new = files_new[0:24] - - print "+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++" - print files_new.count() - print files_new.to_dict() - - if int(page_no)==1: - files_new=files_new[0:24] - else: - temp=( int(page_no) - 1) * 24 - files_new=files_new[temp:temp+24] - - - #files1_temp = [doc['_source'] for doc in files1['hits']['hits']] - - #for a in files_new.scan(): - # print a.id - - #print "----------------------------------------------------------" - #print all_files_count - # print "files.count : ", files.count() - - # pageCollection=node_collection.find({'member_of':GST_PAGE._id, 'group_set': ObjectId(group_id), - # '$or': [ - # { 'access_policy': u"PUBLIC" }, - # { '$and': [ - # {'access_policy': u"PRIVATE"}, - # {'created_by': request.user.id} - # ] - # } - # ], - # 'type_of': {'$in': [wiki_page._id]} - # }).sort("last_update", -1) - - #images_count = es.search(index="gsystem", doc_type="image", body={ - ## "query": {"bool":{"must": [ {"term": {"status":"published"} }] }}}) - #audios_count = es.search(index="gsystem", doc_type="audio", body={ - # "query": {"bool":{"must": [ {"term": {"status":"published"} }] }}}) - #videos_count = es.search(index="gsystem", doc_type="video", body={ - # "query": {"bool":{"must": [ {"term": {"status":"published"} }] }}}) - #applications_count = es.search(index="gsystem", doc_type="application", body={ - # "query": {"bool":{"must": [ {"term": {"status":"published"} }] }}}) - #all_count = es.search(index="gsystem", doc_type="images,audios,videos,application", body={ - # "query": {"bool":{"must": [ {"term": {"status":"published"} }] }}}) - temp111 = "" - if selfilters in (None,'',""): - q_images_count = Q('bool', must=[Q('match', attribute_set__educationaluse='images'),Q('match', access_policy='public'),Q('match', group_set=str(group_id))]) - q_audios_count = Q('bool', must=[Q('match', attribute_set__educationaluse='audios'),Q('match', access_policy='public'),Q('match', group_set=str(group_id))]) - q_videos_count = Q('bool', must=[Q('match', attribute_set__educationaluse='videos'),Q('match', access_policy='public'),Q('match', group_set=str(group_id))]) - q_intercatives_count = Q('bool', must=[Q('match', attribute_set__educationaluse='interactives'),Q('match', access_policy='public'),Q('match', group_set=str(group_id))]) - q_applications_count = Q('bool', must=[Q('match', attribute_set__educationaluse='documents'),Q('match', access_policy='public'),Q('match', group_set=str(group_id))]) - q_ebooks_count = Q('bool', must=[Q('match', attribute_set__educationaluse='ebooks'),Q('match', access_policy='public'),Q('match', group_set=str(group_id))]) - q_all_count= Q('bool', must=[Q('terms',attribute_set__educationaluse=['documents','images','audios','videos','interactives','maps','audio','select','teachers'])]) - - - images_count =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q_images_count) - audios_count =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q_audios_count) - videos_count =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q_videos_count) - intercatives_count =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q_intercatives_count) - applications_count =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q_applications_count) - ebooks_count =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q_ebooks_count) - all_count =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q_all_count) - q = Q('bool', should=[Q('match', attribute_set__educationaluse='images'),Q('match', attribute_set__educationaluse='videos'), - Q('match', attribute_set__educationaluse='audios'),Q('match', attribute_set__educationaluse='documents'), - Q('match', attribute_set__educationaluse='interactives')]) - - - - #print all_count.to_dict() - educationaluse_stats = {} - - #print all_count.count() - - if files_new: - eu_list = [] # count - #for each in files1_temp: - # eu_list += [i.get("educationaluse") for i in each.attribute_set if i.has_key("educationaluse")] - - #files1_temp.rewind() - - if set(eu_list): - if len(set(eu_list)) > 1: - educationaluse_stats = dict((x, eu_list.count(x)) for x in set(eu_list)) - print educationaluse_stats - elif len(set(eu_list)) == 1: - educationaluse_stats = { eu_list[0]: eu_list.count(eu_list[0])} - educationaluse_stats["all"] = files.count() - - paginator = Paginator(files_new, 24) - - - #page_no = request.GET.get('page_no') - try: - result_pages = paginator.page(page_no) - except PageNotAnInteger: - result_pages = paginator.page(1) - except EmptyPage: - result_pages = paginator.page(paginator.num_pages) - # print educationaluse_stats - #result_paginated_cur = files1_temp - #result_pages = paginator.Paginator(result_paginated_cur, page_no, no_of_objs_pp) - #result_paginated_cur = tuple(files1_temp) - - - - - - #collection_pages_cur = node_collection.find({ - # 'member_of': {'$in': [GST_FILE_temp, GST_PAGE1.hits[0].id ]}, - # 'group_set': {'$all': [ObjectId(group_id)]}, - # '$and': query_dict, - # '$or': [ - # {'access_policy': u"PUBLIC"}, - # {'$and': [ - # {'access_policy': u"PRIVATE"}, - # {'created_by': request.user.id} - # ] - # } - # ], - # 'collection_set': {'$exists': "true", '$not': {'$size': 0} } - # }).sort("last_update", -1) - #print GST_FILE_temp - - #print GST_PAGE_collection - - #collection_pages_cur1 = es.search(index="nodes", doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author", - # body={ "query": {"bool": { "must": [ {"term": {"group_set": str(ObjectId(group_id))} },{"term": {"status": "published"}}], - # "must_not": [ {"term": {"attribute_set.educationaluse": "ebooks" } } ], - # #"must": [ {"term": {'created_by': request.user.id}}], - # "must": [ {"term": {'member_of': GST_FILE1.hits[0].id }}], - # "must": [ {"terms": {'member_of': GST_PAGE1.hits[0].id}}], - # "must": {"exists": {"field":"collection_set"}}, - # } }} ) - if selfilters: - collection_pages_cur =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(collection_query) - else: - q = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('exists',field='collection_set')], - should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ], - must_not=[Q('match', attribute_set__educationaluse ='ebooks')], minimum_should_match=1) - collection_pages_cur =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q) - - - - print collection_pages_cur.count() - - print "cccccccccccccccccccccccccccccccccccccccccccccccccccc" - #print collection_pages_cur.to_dict() - - if int(page_no)==1: - collection_pages_cur=collection_pages_cur[0:24] - else: - temp=( int(page_no) - 1) * 24 - collection_pages_cur=collection_pages_cur[temp:temp+24] - - paginator = Paginator(collection_pages_cur, 24) - - - #page_no = request.GET.get('page_no') - try: - results = paginator.page(page_no) - except PageNotAnInteger: - results = paginator.page(1) - except EmptyPage: - results = paginator.page(paginator.num_pages) - - # print collection_pages_cur1 - - #coll_page_count = collection_pages_cur.count() if collection_pages_cur else 0 - coll_page_count = collection_pages_cur.count() if collection_pages_cur else 0 - - - #collection_pages_cur1_temp = [doc['_source'] for doc in collection_pages_cur1['hits']['hits']] - - #results = paginator.Paginator(collection_pages_cur, page_no, no_of_objs_pp) - datavisual.append({"name":"Doc", "count": applications_count.count()}) - #datavisual.append({"name":"Page", "count": educationaluse_stats.get("Pages", 0)}) - datavisual.append({"name":"Image","count": images_count.count()}) - datavisual.append({"name":"Video","count": videos_count.count()}) - datavisual.append({"name":"Interactives","count": intercatives_count.count()}) - datavisual.append({"name":"Audios","count": audios_count.count()}) - datavisual.append({"name":"eBooks","count": ebooks_count.count()}) - if collection_pages_cur: - datavisual.append({"name":"Collections","count": collection_pages_cur.count()}) - datavisual = json.dumps(datavisual) - - #title=''.join(title) - #test_node = node_collection.one({"name":"home", '_type':"Group"}) - #app_gst=''.join(app_gst_name) - print group_id - - return render_to_response( 'ndf/test_template.html', - {'title': title, 'app':e_library_GST1.hits[0].name, - 'appId':app_id, "app_gst": app1.hits[0].name, - # 'already_uploaded': already_uploaded,'shelf_list': shelf_list,'shelves': shelves, - 'files': files_new, - "detail_urlname": "file_detail", - 'ebook_pages': ebooks_count.count(), - #'ebook_pages': educationaluse_stats.get("eBooks", 0), - # 'page_count': pageCollection.count(), - # 'page_nodes':pageCollection - 'all_files_count':files_new.count(), - 'file_pages': result_pages, - 'image_pages': images_count.count(), - 'interactive_pages': intercatives_count.count(), - 'educationaluse_stats': json.dumps(educationaluse_stats), - #'doc_pages': educationaluse_stats.get("Documents", 0), - #'video_pages': educationaluse_stats.get("Videos", 0), - #'audio_pages': educationaluse_stats.get("Audios", 0), - 'doc_pages': applications_count.count(), - 'video_pages': videos_count.count(), - 'audio_pages': audios_count.count(), - 'collection_pages': results, - 'collection': collection_pages_cur, - - 'collection_count': collection_pages_cur.count(), - 'groupid': group_id, 'group_id':group_id, - "datavisual":datavisual, - "GSTUDIO_ELASTIC_SEARCH":GSTUDIO_ELASTIC_SEARCH, - }, + {'title': title }, context_instance=RequestContext(request) ) -@get_execution_time -def elib_paged_file_objects(request, group_id, filetype, page_no): - ''' - Method to implement pagination in File and E-Library app. - ''' - - if request.method == "POST": - - group_name, group_id = get_group_name_id(group_id) - - no_of_objs_pp = 24 - result_pages = None - results = None - - filters = request.POST.get("filters", "") - filters = json.loads(filters) - filters = get_filter_querydict(filters) - - print filters - query_dict = filters - - selfilters = urllib.unquote(request.GET.get('selfilters', '')) - if "?selfilters" in selfilters: - temp_list = selfilters.split("?selfilters") - selfilters = temp_list[0] - - print selfilters - print "111111122222222222222222222222222222222222222222222222" - - if selfilters: - print "if block for selfilters" - selfilters = json.loads(selfilters) - query_dict = get_filter_querydict(selfilters) - - #query_dict.append({'attribute_set.educationaluse': {'$ne': u'eBooks'}}) - detail_urlname = "file_detail" - i=-1 - strconcat="" - endstring="" - temp_dict={} - lists = [] - #print query_dict - - for each in list(query_dict): - for temp in each.values(): - for a in temp: - for key,value in a.items(): - if isinstance(value, dict): - #print value["$in"][0] - if value["$in"]: - key = list(key) - key[13]='__' - t="".join(key) - print t - print "-----------------------------" - temp_dict[t]=value["$in"][0] - #strconcat=strconcat+"Q('match',"+ t+"='"+value["$in"][0]+"')," - #Q('match',name=dict(query="e-book", type="phrase")) - #strconcat=strconcat+"Q('match',"+t+"=dict(query='"+value["$in"][0]+"',type='phrase'))$$" - lists.append("Q('match',"+t+"=dict(query='"+value["$in"][0]+"',type='phrase'))") - elif value["$or"]: - key = list(key) - key[13]='__' - t="".join(key) - print t - print "------------------------" - temp_dict[t]=value["$or"][0] - #strconcat=strconcat+"Q('match',"+t+"='"+value["$or"][0]+"') " - #strconcat=strconcat+"Q('match',"+t+"=dict(query='"+value["$or"][0]+"',type='phrase'))$$" - lists.append("Q('match',"+t+"=dict(query='"+value["$or"][0]+"',type='phrase'))") - elif isinstance(value, tuple): - temp_dict["language"]= value[1] - #strconcat=strconcat+"Q('match',"+key+"='"+value[1]+"') " - strconcat=strconcat+"Q('match',"+key+"=dict(query='"+value[1]+"',type='phrase'))$$" - lists.append("Q('match',"+key+"=dict(query='"+value[1]+"',type='phrase'))") - else: - if key != "source": - key = list(key) - key[13]='__' - t="".join(key) - temp_dict[t]=value - #strconcat=strconcat+"Q('match',"+ t+"='"+value+"') " - #strconcat=strconcat+"Q('match',"+t+"=dict(query='"+value+"',type='phrase'))$$" - lists.append("Q('match',"+t+"=dict(query='"+value+"',type='phrase'))") - else: - temp_dict[key]=value - #strconcat=strconcat+"Q('match',"+ key+"='"+value+"') " - #strconcat=strconcat+"Q('match',"+key+"=dict(query='"+value+"',type='phrase'))$$" - lists.append("Q('match',"+key+"=dict(query='"+value+"',type='phrase'))") - - print temp_dict - #strconcat=strconcat - print strconcat - print lists - - - - #if filetype != "all": - - - # elif filetype == "Collections": - # if filetype == "Collections": - # pass - - # else: - #query_dict.append({"attribute_set.educationaluse": filetype}) - # pass - - - - #GST_FILE_temp=[] - #for a in GST_FILE['hits']['hits']: - #temp1=ObjectId(a['_source']['id']) - # temp1=a['_source']['id'] - # GST_FILE_temp.append(temp1) - #files = node_collection.find({ - # 'member_of': {'$in': [GST_FILE._id,GST_JSMOL._id]}, - # 'member_of': {'$in': [GST_FILE._id, GST_PAGE._id]}, - # '_type': 'File', - # 'fs_file_ids': {'$ne': []}, - # 'group_set': {'$all': [ObjectId(group_id)]}, - # '$and': query_dict, - # '$or': [ - # { 'access_policy': u"PUBLIC" }, - # { '$and': [ - # {'access_policy': u"PRIVATE"}, - # {'created_by': request.user.id} - # ] - # } - # ] - # }).sort("last_update", -1) - print filetype - - - collection_query = None - q= None - - strconcat1 = "" - for value in lists: - print "************************************************" - print value - print "************************************************" - strconcat1 = strconcat1+'eval(str("'+ value +'")),' - print strconcat1 - - if filetype != "all": - - filetype = str(filetype) - print filetype - print "///////////////////" - if filters: - - q = eval("Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',member_of=GST_FILE1.hits[0].id),Q('match', attribute_set__educationaluse=filetype),"+strconcat1[:-1]+"])") - - collection_query = eval("Q('bool', must=[Q('match', group_set=str(group_id)),Q('match',access_policy='public'),Q('exists',field='collection_set'),"+strconcat1[:-1]+"]," - + "should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ]," - + "must_not=[Q('match', attribute_set__educationaluse ='ebooks')], minimum_should_match=1)") - - - else: - print "----------11111111111111111111111111-----------------------------" - - q = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('match', attribute_set__educationaluse =filetype)], - should=[Q('match',member_of=GST_FILE1.hits[0].id)], minimum_should_match=1) - - collection_query = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('exists',field='collection_set')], - should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ], - must_not=[Q('match', attribute_set__educationaluse ='ebooks')], minimum_should_match=1) - - - - files1 =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q) - print files1.count() - if int(page_no)==1: - files1=files1[0:24] - else: - temp=( int(page_no) - 1) * 24 - files1=files1[temp:temp+24] - #files1 = es.search(index="gsystem,nodes", doc_type="image,video,audio,application,gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author", body={ - # "query": {"bool": { "must":[ {"terms": {"group_set": str(ObjectId(group_id))} } ], - # #"must": [ {"match": {"attribute_set.educationaluse": "imag" } } ], - # "must":[ { "terms": {'member_of': GST_FILE1.hits[0].id } } ], - #"must":[ {"terms": {'member_of': GST_JSMOL.hits[0].id } } ], - # "must":[ {"term": {'access_policy':'public'}} ] , - #"must":[ {"terms": {'attribute_set.educationaluse': filetype }} ] , - # "must": [ {'term': {'attribute_set.educationaluse': filetype}} ], - # } } }, size=20 ) - - else: - print "else execute" - if filters: - - q = eval("Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',member_of=GST_FILE1.hits[0].id),Q('terms',attribute_set__educationaluse=['documents','images','audios','videos']),"+strconcat1[:-1]+"])") - - collection_query = eval("Q('bool', must=[Q('match', group_set=str(group_id)),Q('match',access_policy='public'),Q('exists',field='collection_set'),"+strconcat1[:-1]+"]," - + "should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ]," - + "must_not=[Q('match', attribute_set__educationaluse ='ebooks')], minimum_should_match=1)") - - else: - - q = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('match',member_of=GST_FILE1.hits[0].id),Q('terms',attribute_set__educationaluse=['documents','images','audios','videos'])], - ) - - collection_query = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('exists',field='collection_set')], - should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ], - must_not=[Q('match', attribute_set__educationaluse ='ebooks')]) - - - - print query_dict - - - files1 =Search(using=es, index="gsystem",doc_type="image,video,audio,application").query(q) - if int(page_no)==1: - files1=files1[0:24] - else: - temp=( int(page_no) - 1) * 24 - files1=files1[temp:temp+24] - #filetype = [ "images","videos","documents","audios"] - print files1.count() - - - #files1 = es.search(index="gsystem", doc_type="image,video,audio,application", body={ - # "query": {"bool": { "must":[ {"terms": {"group_set": str(ObjectId(group_id))} } ], - #"must": [ {"match": {"attribute_set.educationaluse": "imag" } } ], - # "must":[ { "terms": {'member_of': GST_FILE1.hits[0].id } } ], - #"must":[ {"terms": {'member_of': GST_JSMOL.hits[0].id } } ], - # "must":[ {"term": {'access_policy':'public'}} ] , - #"must":[ {"terms": {'attribute_set.educationaluse': filetype }} ] , - # "must": [ {'terms': {'attribute_set.educationaluse': filetype}} ], - # } } } - # , size=20 ) - - - #all_files_count=files1['hits']['total'] - - - #files1_temp = [doc['_source'] for doc in files1['hits']['hits']] - - #print files1_temp - - educationaluse_stats = {} - - if files1:# and not result_pages: - # print "=======", educationaluse_stats - - eu_list = [] # count - collection_set_count = 0 - #for each in files: - # eu_list += [i.get("educationaluse") for i in each.attribute_set if i.has_key("educationaluse")] - # collection_set_count += 1 if each.collection_set else 0 - - #files.rewind() - - #if set(eu_list): - # if len(set(eu_list)) > 1: - # educationaluse_stats = dict((x, eu_list.count(x)) for x in set(eu_list)) - # elif len(set(eu_list)) == 1: - # educationaluse_stats = { eu_list[0]: eu_list.count(eu_list[0])} - # educationaluse_stats["all"] = files.count() - # educationaluse_stats["Collections"] = collection_set_count - - result_paginated_cur = files1 - #result_pages = paginator.Paginator(result_paginated_cur, page_no, no_of_objs_pp) - #result_paginated_cur = tuple(files1_temp) - - paginator = Paginator(result_paginated_cur, 24) - #page_no = request.GET.get('page_no') - try: - results = paginator.page(page_no) - except PageNotAnInteger: - results = paginator.page(1) - except EmptyPage: - results = paginator.page(paginator.num_pages) - - filter_result = "True" if (files1.count() > 0) else "False" - - - if filetype == "Collections": - print "collections if block" - detail_urlname = "page_details" - #result_cur = node_collection.find({ - # 'member_of': {'$in': [GST_FILE._id, GST_PAGE._id]}, - # 'group_set': {'$all': [ObjectId(group_id)]}, - # '$and': query_dict, - ## '$or': [ - # {'access_policy': u"PUBLIC"}, - # {'$and': [ - # {'access_policy': u"PRIVATE"}, - # {'created_by': request.user.id} - # ] - # } - # ], - # 'collection_set': {'$exists': "true", '$not': {'$size': 0} } - # }).sort("last_update", -1) - #q = Q('bool', must=[Q('match', group_set=str(group_id)), Q('match',access_policy='public'),Q('exists',field='collection_set')], - #should=[Q('match',member_of=GST_FILE1.hits[0].id),Q('match',member_of=GST_PAGE1.hits[0].id) ], - #must_not=[Q('match', attribute_set__educationaluse ='ebooks')]) - - result_cur =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(collection_query) - - print filters - print result_cur.count() - #print "=============================================================", result_cur.count() - #print page_no - if int(page_no) == 1: - result_cur=result_cur[0:24] - - else: - temp=int(( int(page_no) - 1) * 24) - result_cur=result_cur[temp:temp+24] - - - result_paginated_cur = result_cur - #result_pages = paginator.Paginator(result_paginated_cur, page_no, no_of_objs_pp) - - print result_cur - paginator = Paginator(result_paginated_cur, 24) - #page = request.GET.get('page') - - try: - results = paginator.page(int(page_no)) - except PageNotAnInteger: - results = paginator.page(1) - except EmptyPage: - results = paginator.page(paginator.num_pages) - - - return render_to_response ("ndf/file_list_tab.html", { - "filter_result": filter_result, - "group_id": group_id, "group_name_tag": group_id, "groupid": group_id, - 'title': "E-Library", "educationaluse_stats": json.dumps(educationaluse_stats), - "resource_type": result_paginated_cur, "detail_urlname": detail_urlname, - "filetype": filetype, "res_type_name": "", "page_info": results, - "GSTUDIO_ELASTIC_SEARCH":GSTUDIO_ELASTIC_SEARCH, - }, - context_instance = RequestContext(request)) def git_branch(request): return HttpResponse(subprocess.check_output(['git', 'rev-parse', '--abbrev-ref', 'HEAD']), diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py index 535d860b5d..9cf4d08e85 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py @@ -20,7 +20,7 @@ from gnowsys_ndf.ndf.views.methods import get_filter_querydict from elasticsearch import Elasticsearch from elasticsearch_dsl import * -from gnowsys_ndf.ndf.paginator import Paginator ,EmptyPage, PageNotAnInteger +from gnowsys_ndf.ndf.gstudio_es.paginator import Paginator ,EmptyPage, PageNotAnInteger from gnowsys_ndf.local_settings import GSTUDIO_ELASTIC_SEARCH from gnowsys_ndf.ndf.gstudio_es.es import * diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-library.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-library.py index 52d5947585..95355ba5ac 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-library.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-library.py @@ -21,7 +21,7 @@ from gnowsys_ndf.ndf.views.methods import get_group_name_id, cast_to_data_type, get_execution_time from gnowsys_ndf.ndf.views.methods import get_filter_querydict from gnowsys_ndf.ndf.gstudio_es.es import * -from gnowsys_ndf.ndf.paginator import Paginator ,EmptyPage, PageNotAnInteger +from gnowsys_ndf.ndf.gstudio_es.paginator import Paginator ,EmptyPage, PageNotAnInteger if GSTUDIO_ELASTIC_SEARCH: diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/search_views.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/search_views.py index 2e5d80c302..30c69f0e51 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/search_views.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/search_views.py @@ -28,7 +28,7 @@ from django.shortcuts import render_to_response # , render from elasticsearch_dsl.query import MultiMatch, Match from gnowsys_ndf.ndf.gstudio_es.es import * -from gnowsys_ndf.ndf.paginator import Paginator ,EmptyPage, PageNotAnInteger +from gnowsys_ndf.ndf.gstudio_es.paginator import Paginator ,EmptyPage, PageNotAnInteger #es = Elasticsearch("http://elastic:changeme@gsearch:9200", timeout=100, retry_on_timeout=True) @@ -181,15 +181,9 @@ def results_search(request, group_id, page_no=1, return_only_dict = None): name=request.GET.get('name',None) content=request.GET.get('content',None) tags=request.GET.get('tags',None) - print name - print content - print tags page_no = 1 page_no=request.GET.get('page',None) - print "88888888888888888888888888888888888888" - print page_no - print "88888888888888888888888888888888888888" fields =[] if name == "on": @@ -198,7 +192,7 @@ def results_search(request, group_id, page_no=1, return_only_dict = None): fields.append("content") if tags == "on": fields.append("tags") - print fields + q = Q('match',name=dict(query='File',type='phrase')) GST_FILE = Search(using=es, index="nodes",doc_type="gsystemtype").query(q) @@ -211,8 +205,7 @@ def results_search(request, group_id, page_no=1, return_only_dict = None): search_result =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q) #search_result.filter('exists', field='content') search_str_user="" - print search_result.count() - print group_id + else: search_str_user = str(request.GET['search_text']).strip() @@ -222,29 +215,24 @@ def results_search(request, group_id, page_no=1, return_only_dict = None): else: temp = True q = MultiMatch(query=search_str_user, fields=fields) - print len(fields) + for value in fields: value=value+"=on&" strconcat = strconcat + value - print strconcat + search_result =Search(using=es, index="nodes",doc_type="gsystemtype,gsystem,metatype,relationtype,attribute_type,group,author").query(q) search_result = search_result.filter('match', group_set=str(group_id)) search_result = search_result.filter('match', member_of=GST_FILE1.hits[0].id) search_result = search_result.filter('match', access_policy='public') - - - print "search page" - print search_result.count() has_next = True if search_result.count() <=20: has_next = False if request.GET.get('page',None) in [None,'']: - print "siddhu" search_result=search_result[0:20] page_no = 2 else: From f3f546638f0be32703a2a733595b347178bbe8eb Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Thu, 5 Apr 2018 19:54:13 +0530 Subject: [PATCH 509/766] task renamed as calendar --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/course_about.html | 2 +- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/course_about.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/course_about.html index 70efaee0c1..5cb2671c10 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/course_about.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/course_about.html @@ -248,7 +248,7 @@
    Created On


    - +

    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html index 35a8d6ffda..ea818d9291 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/lms.html @@ -101,7 +101,7 @@
  • - {% trans "Task" %} + {% trans "Calendar" %}
  • {% endif %} From 9d73036411b51569dd9d9e8e6014555279937595 Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Fri, 6 Apr 2018 11:41:12 +0530 Subject: [PATCH 510/766] search box css issue fixed --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html index c3b584820b..0e77b3a189 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/header.html @@ -729,7 +729,7 @@

    } - $('#search_form').append('
    Local Global
    '); + $('#search_form').append('
           Local Global
    '); if(temp == "True") { $("#current_search").attr('disabled', true); $("#global_search").prop("checked", true) @@ -750,7 +750,7 @@

    $('li.has-form').append("
    "); } $('li.has-form').append("
    "); - $('#search_form').append('
    Local Global
    '); + $('#search_form').append('
           Local Global
    '); }); @@ -802,7 +802,7 @@

    { $('li.has-form').append("
    "); } - $('#search_form').append('
    Local Global
    '); + $('#search_form').append('
           Local Global
    '); }); From c2f3d187d70dfea282f320f3596bb74698295c06 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Fri, 6 Apr 2018 12:13:02 +0530 Subject: [PATCH 511/766] Footer working in workspace for some pages --- .../ndf/templates/ndf/course_pages.html | 4 ++-- .../ndf/templates/ndf/node_ajax_content.html | 1 + .../ndf/templates/ndf/translation_list.html | 24 +++++++++---------- 3 files changed, 15 insertions(+), 14 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/course_pages.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/course_pages.html index 2fef71bad5..e0b99a498c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/course_pages.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/course_pages.html @@ -100,10 +100,11 @@

    {% firstof activity_node.altnames activity_node.name %} {% endfor %} -

    +

    + {% else %}
    @@ -135,7 +136,6 @@

    {% firstof activity_node.altnames activity_node.name %} - {% endif %} {% include 'ndf/pagination.html' with urlname="course_pages_paged" first_arg=group_id page_info=course_pages_info %} {% endblock %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html index 3bdf43938b..0664ec72ba 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/node_ajax_content.html @@ -938,6 +938,7 @@

    + - + ---> {% get_group_name groupid as group_name_tag %} {% if user.is_authenticated %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py index 57ae0a5c07..a3b75e5ab5 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py @@ -16,7 +16,7 @@ from gnowsys_ndf.ndf.views.custom_app_view import custom_app_view, custom_app_new_view from gnowsys_ndf.ndf.views import rpc_resources -from gnowsys_ndf.ndf.views.esearch import get_search,get_advanced_search_form,advanced_search +#from gnowsys_ndf.ndf.views.esearch import get_search,get_advanced_search_form,advanced_search if GSTUDIO_SITE_NAME.lower() == 'clix': login_template = 'registration/login_clix.html' diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py index cdc6132a12..4af2725206 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py @@ -22,7 +22,7 @@ from gnowsys_ndf.ndf.views.methods import get_filter_querydict from gnowsys_ndf.ndf.gstudio_es.es import * from gnowsys_ndf.ndf.gstudio_es.paginator import Paginator ,EmptyPage, PageNotAnInteger -from gnowsys_ndf.local_settings import GSTUDIO_ADVANCED_SEARCH +from gnowsys_ndf.settings import GSTUDIO_ADVANCED_SEARCH from gnowsys_ndf.ndf.templatetags.ndf_tags import get_relation_value diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py index 8beaeae4c0..2f9ead510f 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/esearch.py @@ -1,499 +1,499 @@ -# -*- coding: utf-8 -*- -import re -import json -import os - -from bson import json_util -from django.shortcuts import render -from django.http import HttpResponseRedirect, HttpResponse, StreamingHttpResponse -from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger -from gnowsys_ndf.ndf.forms import SearchForm -from gnowsys_ndf.ndf.models import * -from gnowsys_ndf.settings import GSTUDIO_NO_OF_OBJS_PP -from gnowsys_ndf.settings import GSTUDIO_ELASTIC_SEARCH_ALIAS, GSTUDIO_ELASTIC_SEARCH_SUPERUSER, \ - GSTUDIO_ELASTIC_SEARCH_PORT, GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD - -from gnowsys_ndf.local_settings import GSTUDIO_SITE_NAME, GSTUDIO_DOCUMENT_MAPPING - -GSTUDIO_SITE_NAME = GSTUDIO_SITE_NAME.lower() - -try: - from elasticsearch import Elasticsearch - es_connection_string = 'http://' + GSTUDIO_ELASTIC_SEARCH_SUPERUSER + ':' \ - + GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD + '@' \ - + GSTUDIO_ELASTIC_SEARCH_ALIAS + ':' + \ - GSTUDIO_ELASTIC_SEARCH_PORT - es = Elasticsearch([es_connection_string]) -except Exception as e: - pass - -author_map = {} -group_map = {} - -mapping_directory = GSTUDIO_DOCUMENT_MAPPING -if(os.path.isdir(mapping_directory)): - with open(mapping_directory+'/authormap.json') as fe: - author_map = json.load(fe) - with open(mapping_directory+'/groupmap.json') as fe: - group_map = json.load(fe) - -else: - print("No mapping found!") - -hits = "" -med_list = [] #contains all the search results -res_list = [] #contains the header of the search results -results = [] #contains a single page's results -altinfo_list = [] -search_filter = [] - -append_to_url = "" -author_index = "author_" + GSTUDIO_SITE_NAME -gsystemtype_index = "node_type_" + GSTUDIO_SITE_NAME - -GROUP_CHOICES=["All"] -for name in group_map.keys(): - GROUP_CHOICES.append(name) - -def get_search(request): - ''' - This function retrieves the search query from the search form and performs - the search with the help of other functions defined below and then sends the - results to sform.html for rendering. See the end of this function for - the control flow of how rendering is done - ''' +# # -*- coding: utf-8 -*- +# import re +# import json +# import os + +# from bson import json_util +# from django.shortcuts import render +# from django.http import HttpResponseRedirect, HttpResponse, StreamingHttpResponse +# from django.core.paginator import Paginator, EmptyPage, PageNotAnInteger +# from gnowsys_ndf.ndf.forms import SearchForm +# from gnowsys_ndf.ndf.models import * +# from gnowsys_ndf.settings import GSTUDIO_NO_OF_OBJS_PP +# from gnowsys_ndf.settings import GSTUDIO_ELASTIC_SEARCH_ALIAS, GSTUDIO_ELASTIC_SEARCH_SUPERUSER, \ +# GSTUDIO_ELASTIC_SEARCH_PORT, GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD + +# from gnowsys_ndf.local_settings import GSTUDIO_SITE_NAME, GSTUDIO_DOCUMENT_MAPPING + +# GSTUDIO_SITE_NAME = GSTUDIO_SITE_NAME.lower() + +# try: +# from elasticsearch import Elasticsearch +# es_connection_string = 'http://' + GSTUDIO_ELASTIC_SEARCH_SUPERUSER + ':' \ +# + GSTUDIO_ELASTIC_SEARCH_SUPERUSER_PASSWORD + '@' \ +# + GSTUDIO_ELASTIC_SEARCH_ALIAS + ':' + \ +# GSTUDIO_ELASTIC_SEARCH_PORT +# es = Elasticsearch([es_connection_string]) +# except Exception as e: +# pass + +# author_map = {} +# group_map = {} + +# mapping_directory = GSTUDIO_DOCUMENT_MAPPING +# if(os.path.isdir(mapping_directory)): +# with open(mapping_directory+'/authormap.json') as fe: +# author_map = json.load(fe) +# with open(mapping_directory+'/groupmap.json') as fe: +# group_map = json.load(fe) + +# else: +# print("No mapping found!") + +# hits = "" +# med_list = [] #contains all the search results +# res_list = [] #contains the header of the search results +# results = [] #contains a single page's results +# altinfo_list = [] +# search_filter = [] + +# append_to_url = "" +# author_index = "author_" + GSTUDIO_SITE_NAME +# gsystemtype_index = "node_type_" + GSTUDIO_SITE_NAME + +# GROUP_CHOICES=["All"] +# for name in group_map.keys(): +# GROUP_CHOICES.append(name) + +# def get_search(request): +# ''' +# This function retrieves the search query from the search form and performs +# the search with the help of other functions defined below and then sends the +# results to sform.html for rendering. See the end of this function for +# the control flow of how rendering is done +# ''' - global med_list - global res_list - global results - global append_to_url - global altinfo_list - global search_filter - - form = SearchForm(request.GET) - query = request.GET.get("query") - form.query = query - - if(query): +# global med_list +# global res_list +# global results +# global append_to_url +# global altinfo_list +# global search_filter + +# form = SearchForm(request.GET) +# query = request.GET.get("query") +# form.query = query + +# if(query): - group = request.GET.get("group") - chkl = request.GET.getlist("groupspec") +# group = request.GET.get("group") +# chkl = request.GET.getlist("groupspec") - if(len(chkl)>0): - group = "All" - page = request.GET.get("page") +# if(len(chkl)>0): +# group = "All" +# page = request.GET.get("page") - if(page is None): - query_display = "" - #search_select = request.GET.get('search_select') - search_select = 0 +# if(page is None): +# query_display = "" +# #search_select = request.GET.get('search_select') +# search_select = 0 - search_filter = request.GET.getlist('checks[]') +# search_filter = request.GET.getlist('checks[]') - if(str(search_select) == '1'): - append_to_url = "" - select = "Author" +# if(str(search_select) == '1'): +# append_to_url = "" +# select = "Author" - resultSet = search_query("nodes", select, group, query) - hits = "

    No of docs found: %d

    " % len(resultSet) - med_list = get_search_results(resultSet) - if(group == "All"): - res_list = ['

    Showing contributions of user %s in all groups:

    ' % (query), hits] - else: - res_list = ['

    Showing contributions of user %s in group %s":

    ' % (query, group), hits] +# resultSet = search_query("nodes", select, group, query) +# hits = "

    No of docs found: %d

    " % len(resultSet) +# med_list = get_search_results(resultSet) +# if(group == "All"): +# res_list = ['

    Showing contributions of user %s in all groups:

    ' % (query), hits] +# else: +# res_list = ['

    Showing contributions of user %s in group %s":

    ' % (query, group), hits] - else: - append_to_url = "" - if(len(search_filter) == 0 or str(search_filter[0])=="all"): - #select = "Author,image,video,text,application,audio,Page,NotMedia,Group" - select = "Author,image,video,text,application,audio,Page,NotMedia,Group" - append_to_url += "&checks%5B%5D=all" - else: - select = "" - for i in range(0,len(search_filter)-1): - select += search_filter[i]+"," - append_to_url += "&checks%5B%5D="+search_filter[i] - append_to_url += "&checks%5B%5D="+search_filter[len(search_filter) - 1] - select += search_filter[len(search_filter) - 1] - - phsug_name = get_suggestion_body(query, field_value = "name.trigram", slop_value = 2, field_name_value = "name") - phsug_content = get_suggestion_body(query, field_value = "content.trigram", slop_value = 3, field_name_value = "content") - phsug_tags = get_suggestion_body(query, field_value = "tags.trigram", slop_value = 2, field_name_value = "tags") - - queryNameInfo = [0, 0.0, "", ""] #[flag,score,query_to_search,query_display_name] - queryContentInfo = [0, 0.0, "", ""] - queryTagsInfo = [0, 0.0, "", ""] - - dqlis = [] # a list containing all the text inserted within double quotes - q = "" # a string to hold the text not enclosed within "" - - #including quotes - if('"' in query): - l = re.split('(")', query) # this will split the query into tokens where delemiter is " and the delimiter is itself a token - qlist = list(filter(lambda a: a!='', l)) - - itr = 0 - while(itr0): - query_body = '{ "query": {"bool": { "should": [' - for quot in dqlis: - query_body += ('{"multi_match": {"query": "%s", "fields": ["name^3", "altnames", "content^2", "tags"], "type": "phrase"}},' % (quot)) - if(q!=''): - query_body += ('{"multi_match": {"query": "%s", "fields": ["name^3", "altnames", "content^2", "tags"], "type": "best_fields"}},' % (q)) - query_body += (']}}, "from": 0, "size": 100}') - query_body = eval(query_body) - print(query_body) - query_display = query - - else: - - get_suggestion(phsug_name, queryNameInfo, select, query, "name") - if(queryNameInfo[2]!=query): - get_suggestion(phsug_content, queryContentInfo, select, query, "content") - if(queryNameInfo[2]!=query and queryContentInfo[2]!=query): - get_suggestion(phsug_tags, queryTagsInfo, select, query, "tags") - - query_display = "" - - altinfo_list = [] - #what if all are 1 and 2/3 names are same but the third one has higher score - if((queryNameInfo[0]==1 and queryNameInfo[2]==query) or (queryContentInfo[0]==1 and queryContentInfo[2]==query) or (queryTagsInfo[0]==1 and queryTagsInfo[2]==query)): - #if the original query is the query to be searched - query_display = query - elif(queryNameInfo[0]==0 and queryContentInfo[0]==0 and queryTagsInfo[0]==0): - #if we didnt find any suggestion, neither did we find the query already indexed->query remains same - query_display = query - else: #if we found a suggestion - altinfo_list = ["

    No results found for %s

    " % (query)] - res1_list = ['Search instead for %s'%(query)] #if the user still wants to search for the original query he asked for - if(queryNameInfo[1]>=queryContentInfo[1] and queryNameInfo[1]>=queryTagsInfo[1]): #comparing the scores of name,content,tags suggestions and finding the max of the three - query = queryNameInfo[2] - query_display = queryNameInfo[3] #what query to display on the search result screen - if(queryContentInfo[1]>queryNameInfo[1] and queryContentInfo[1]>=queryTagsInfo[1]): - query = queryContentInfo[2] - query_display = queryContentInfo[3] - if(queryTagsInfo[1]>queryContentInfo[1] and queryTagsInfo[1]>queryNameInfo[1]): - query = queryTagsInfo[2] - query_display = queryTagsInfo[3] +# else: +# append_to_url = "" +# if(len(search_filter) == 0 or str(search_filter[0])=="all"): +# #select = "Author,image,video,text,application,audio,Page,NotMedia,Group" +# select = "Author,image,video,text,application,audio,Page,NotMedia,Group" +# append_to_url += "&checks%5B%5D=all" +# else: +# select = "" +# for i in range(0,len(search_filter)-1): +# select += search_filter[i]+"," +# append_to_url += "&checks%5B%5D="+search_filter[i] +# append_to_url += "&checks%5B%5D="+search_filter[len(search_filter) - 1] +# select += search_filter[len(search_filter) - 1] + +# phsug_name = get_suggestion_body(query, field_value = "name.trigram", slop_value = 2, field_name_value = "name") +# phsug_content = get_suggestion_body(query, field_value = "content.trigram", slop_value = 3, field_name_value = "content") +# phsug_tags = get_suggestion_body(query, field_value = "tags.trigram", slop_value = 2, field_name_value = "tags") + +# queryNameInfo = [0, 0.0, "", ""] #[flag,score,query_to_search,query_display_name] +# queryContentInfo = [0, 0.0, "", ""] +# queryTagsInfo = [0, 0.0, "", ""] + +# dqlis = [] # a list containing all the text inserted within double quotes +# q = "" # a string to hold the text not enclosed within "" + +# #including quotes +# if('"' in query): +# l = re.split('(")', query) # this will split the query into tokens where delemiter is " and the delimiter is itself a token +# qlist = list(filter(lambda a: a!='', l)) + +# itr = 0 +# while(itr0): +# query_body = '{ "query": {"bool": { "should": [' +# for quot in dqlis: +# query_body += ('{"multi_match": {"query": "%s", "fields": ["name^3", "altnames", "content^2", "tags"], "type": "phrase"}},' % (quot)) +# if(q!=''): +# query_body += ('{"multi_match": {"query": "%s", "fields": ["name^3", "altnames", "content^2", "tags"], "type": "best_fields"}},' % (q)) +# query_body += (']}}, "from": 0, "size": 100}') +# query_body = eval(query_body) +# print(query_body) +# query_display = query + +# else: + +# get_suggestion(phsug_name, queryNameInfo, select, query, "name") +# if(queryNameInfo[2]!=query): +# get_suggestion(phsug_content, queryContentInfo, select, query, "content") +# if(queryNameInfo[2]!=query and queryContentInfo[2]!=query): +# get_suggestion(phsug_tags, queryTagsInfo, select, query, "tags") + +# query_display = "" + +# altinfo_list = [] +# #what if all are 1 and 2/3 names are same but the third one has higher score +# if((queryNameInfo[0]==1 and queryNameInfo[2]==query) or (queryContentInfo[0]==1 and queryContentInfo[2]==query) or (queryTagsInfo[0]==1 and queryTagsInfo[2]==query)): +# #if the original query is the query to be searched +# query_display = query +# elif(queryNameInfo[0]==0 and queryContentInfo[0]==0 and queryTagsInfo[0]==0): +# #if we didnt find any suggestion, neither did we find the query already indexed->query remains same +# query_display = query +# else: #if we found a suggestion +# altinfo_list = ["

    No results found for %s

    " % (query)] +# res1_list = ['Search instead for %s'%(query)] #if the user still wants to search for the original query he asked for +# if(queryNameInfo[1]>=queryContentInfo[1] and queryNameInfo[1]>=queryTagsInfo[1]): #comparing the scores of name,content,tags suggestions and finding the max of the three +# query = queryNameInfo[2] +# query_display = queryNameInfo[3] #what query to display on the search result screen +# if(queryContentInfo[1]>queryNameInfo[1] and queryContentInfo[1]>=queryTagsInfo[1]): +# query = queryContentInfo[2] +# query_display = queryContentInfo[3] +# if(queryTagsInfo[1]>queryContentInfo[1] and queryTagsInfo[1]>queryNameInfo[1]): +# query = queryTagsInfo[2] +# query_display = queryTagsInfo[3] - #if(es.search(index=GSTUDIO_SITE_NAME, doc_type=select, body=query_body)['hits']['total']>0): - altinfo_list.append("

    Showing results for %s

    " % query_display) - - - if(queryNameInfo[0]==0 and queryContentInfo[0]==0 and queryTagsInfo[0]==0):#if we didnt find any suggestion, neither did we find the query already indexed - query_body = {"query": { - "multi_match": { #first do a multi_match - "query" : query, - "type": "best_fields", #when multiple words are there in the query, try to search for those words in a single field - "fields": ["name^3", "altnames", "content^2", "tags"], #in which field to search the query - "minimum_should_match": "30%" - } - }, - "rescore": { #rescoring the top 50 results of multi_match - "window_size": 50, - "query": { - "rescore_query": { - "bool": { #rescoring using match phrase - "should": [ - {"match_phrase": {"name": { "query": query, "slop":2}}}, - {"match_phrase": {"altnames": { "query": query, "slop": 2}}}, - {"match_phrase": {"content": { "query": query, "slop": 4}}} - ] - } - } - } - }, - "from": 0, - "size": 100 - } - - else: #if we found a suggestion or if the query exists as a phrase in one of the name/content/tags field - query_body = {"query": { - "multi_match": { - "query": query, - "fields": ["name^3", "altnames", "content^2", "tags"], - "type": "phrase", #we are doing a match phrase on multi field. - "slop": 5 - } - }, - "from": 0, - "size": 100 - } - - - resultSet = search_query("nodes", select, group, query_body) - hits = "

    No of docs found: %d

    " % len(resultSet) - if(group=="All"): - res_list = ['

    Showing results for %s :Showing results for %s in group "%s":

    ' % (query_display, group), hits] - med_list = get_search_results(resultSet) - if(len(altinfo_list)>0): - res_list = [hits] +# #if(es.search(index=GSTUDIO_SITE_NAME, doc_type=select, body=query_body)['hits']['total']>0): +# altinfo_list.append("

    Showing results for %s

    " % query_display) + + +# if(queryNameInfo[0]==0 and queryContentInfo[0]==0 and queryTagsInfo[0]==0):#if we didnt find any suggestion, neither did we find the query already indexed +# query_body = {"query": { +# "multi_match": { #first do a multi_match +# "query" : query, +# "type": "best_fields", #when multiple words are there in the query, try to search for those words in a single field +# "fields": ["name^3", "altnames", "content^2", "tags"], #in which field to search the query +# "minimum_should_match": "30%" +# } +# }, +# "rescore": { #rescoring the top 50 results of multi_match +# "window_size": 50, +# "query": { +# "rescore_query": { +# "bool": { #rescoring using match phrase +# "should": [ +# {"match_phrase": {"name": { "query": query, "slop":2}}}, +# {"match_phrase": {"altnames": { "query": query, "slop": 2}}}, +# {"match_phrase": {"content": { "query": query, "slop": 4}}} +# ] +# } +# } +# } +# }, +# "from": 0, +# "size": 100 +# } + +# else: #if we found a suggestion or if the query exists as a phrase in one of the name/content/tags field +# query_body = {"query": { +# "multi_match": { +# "query": query, +# "fields": ["name^3", "altnames", "content^2", "tags"], +# "type": "phrase", #we are doing a match phrase on multi field. +# "slop": 5 +# } +# }, +# "from": 0, +# "size": 100 +# } + + +# resultSet = search_query("nodes", select, group, query_body) +# hits = "

    No of docs found: %d

    " % len(resultSet) +# if(group=="All"): +# res_list = ['

    Showing results for %s :Showing results for %s in group "%s":

    ' % (query_display, group), hits] +# med_list = get_search_results(resultSet) +# if(len(altinfo_list)>0): +# res_list = [hits] - paginator = Paginator(med_list, GSTUDIO_NO_OF_OBJS_PP) - page = request.GET.get('page') - try: - results = paginator.page(page) - except PageNotAnInteger: - results = paginator.page(1) - except EmptyPage: - results = paginator.page(paginator.num_pages) +# paginator = Paginator(med_list, GSTUDIO_NO_OF_OBJS_PP) +# page = request.GET.get('page') +# try: +# results = paginator.page(page) +# except PageNotAnInteger: +# results = paginator.page(1) +# except EmptyPage: +# results = paginator.page(paginator.num_pages) - #for rendering we pass the group name selected, the different groups possible(GROUP_CHOICES), - #the search_filter(what filters are applied), the header(for what search query results are shown and how many results) - #alternate text(if suggestion is provided), the results array, the search_filter which has to be appended to url - # esearch.py sends results to -> sform.html sends one result at a time to -> card_gsearch.html for rendering of cards - #if a card is clicked, the result's group id and node id is sent to -> node.py(node_detail function) which renders the media - # by sending mongoDB node to ->result_detailed_view.html +# #for rendering we pass the group name selected, the different groups possible(GROUP_CHOICES), +# #the search_filter(what filters are applied), the header(for what search query results are shown and how many results) +# #alternate text(if suggestion is provided), the results array, the search_filter which has to be appended to url +# # esearch.py sends results to -> sform.html sends one result at a time to -> card_gsearch.html for rendering of cards +# #if a card is clicked, the result's group id and node id is sent to -> node.py(node_detail function) which renders the media +# # by sending mongoDB node to ->result_detailed_view.html - return render(request, 'ndf/sform.html', {'form': form, 'grpnam': group, 'grp': GROUP_CHOICES, 'searchop': search_filter, 'header':res_list, 'alternate': altinfo_list ,'content': results, 'append_to_url':append_to_url}) +# return render(request, 'ndf/sform.html', {'form': form, 'grpnam': group, 'grp': GROUP_CHOICES, 'searchop': search_filter, 'header':res_list, 'alternate': altinfo_list ,'content': results, 'append_to_url':append_to_url}) - return render(request, 'ndf/sform.html', {'form': form, 'grp': GROUP_CHOICES, 'searchop': []}) +# return render(request, 'ndf/sform.html', {'form': form, 'grp': GROUP_CHOICES, 'searchop': []}) -def get_suggestion_body(query, field_value, slop_value, field_name_value): - ''' - This function is used to return the suggestion json body that will be passed to the suggest function of elasticsearch query DSL. - Arguments: query, field in which suggestion is to be found + "trigram" to use trigram analyzer, - slop value, field in which suggestion is to be found - Returns: the suggestion body - ''' - phrase_suggest = { #json body of phrase suggestion in name field - "suggest": { - "text": query, #the query for which we want to find suggestion - "phrase": { - "field": field_value, #in which indexed field to find the suggestion - "gram_size": 3, #this is the max shingle size - "max_errors": 2, #the maximum number of terms that can be misspelt in the query - "direct_generator": [ { - "field": field_value, - #"suggest_mode": "missing", - "min_word_length": 2, - "prefix_length": 0, #misspelling in a single word may exist in the first letter itself - "suggest_mode":"missing" #search for suggestions only if the query isnt present in the index - } ], - "highlight": { #to highlight the suggested word - "pre_tag": "", - "post_tag": "" - }, - "collate": { #this is used to check if the returned suggestion exists in the index - "query": { - "inline": { - "match_phrase": { #matching the returned suggestions with the existing index - "{{field_name}}": { - "query": "{{suggestion}}", - "slop": slop_value - } - } - } - }, - "params": {"field_name": field_name_value}, - "prune": True #to enable collate_match of suggestions - } - }, - } - } - return phrase_suggest - -def get_suggestion(suggestion_body, queryInfo, doc_types, query, field): - ''' - Arguments: suggestion_body, queryInfo is an array which has flag(to check if we got a query to search for or not), - score(how close is the first suggestion to the query), doc_types(the type in which to search), - query, the field in which query is to be searched. - This function searches for suggestion and if suggestion is not found, it may mean that the query is already indexed - and if query is also not indexed, then the flag remains 0. If we find a suggestion or if the query is indexed, the flag is set to 1. - ''' - #print GSTUDIO_SITE_NAME - res = es.suggest(body=suggestion_body, index="nodes") #first we search for suggestion in the name field as it has the highest priority - #print(res) - if(len(res['suggest'][0]['options'])>0): #if we get a suggestion means the phrase doesnt exist in the index - for sugitem in res['suggest'][0]['options']: - if sugitem['collate_match'] == True: #we find the suggestion with collate_match = True - queryInfo[0] = 1 - queryInfo[1] = sugitem['score'] - queryInfo[2] = sugitem['text'] - queryInfo[3] = sugitem['highlighted'] #the query to be displayed onto the search results screen - break - else: #should slop be included in the search part here? - query_body = {"query":{"match_phrase":{field: query,}}} - if(es.search(index="nodes", doc_type=doc_types, body=query_body)['hits']['total']>0): - queryInfo[0] = 1 #set queryNameInfo[0] = 1 when we found a suggestion or we found a hit in the indexed data - queryInfo[2] = query - - -def get_search_results(resultArray): - ''' - Arguments: the results array which contains all the search results along with id, type, - index name. We need to extract only the json source of the search results. - Returns: Array of json objects which will be passed to the html template for rendering. - ''' - reslist = [doc['_source'] for doc in resultArray] - return reslist - -def resources_in_group(res,group): - ''' - Arguments: the results json body which is returned by the es.search function. - The group filter(i.e. Get results from a particular group) - Returns: the search results pertaining to a group. - ''' - results = [] - group_id = group_map[group] - for i in res["hits"]["hits"]: - if "group_set" in i["_source"].keys(): - k = [] - for g_id in (i["_source"]["group_set"]): - k.append(g_id) - if group_id in k: - results.append(i) - return results - -def search_query(index_name, select, group, query): - ''' - Arguments: name of the index in which to search the query,what type of results to show - (filter-images,audio,video,etc), in which groups to search, query - Returns: an array of json bodies(search results) +# def get_suggestion_body(query, field_value, slop_value, field_name_value): +# ''' +# This function is used to return the suggestion json body that will be passed to the suggest function of elasticsearch query DSL. +# Arguments: query, field in which suggestion is to be found + "trigram" to use trigram analyzer, +# slop value, field in which suggestion is to be found +# Returns: the suggestion body +# ''' +# phrase_suggest = { #json body of phrase suggestion in name field +# "suggest": { +# "text": query, #the query for which we want to find suggestion +# "phrase": { +# "field": field_value, #in which indexed field to find the suggestion +# "gram_size": 3, #this is the max shingle size +# "max_errors": 2, #the maximum number of terms that can be misspelt in the query +# "direct_generator": [ { +# "field": field_value, +# #"suggest_mode": "missing", +# "min_word_length": 2, +# "prefix_length": 0, #misspelling in a single word may exist in the first letter itself +# "suggest_mode":"missing" #search for suggestions only if the query isnt present in the index +# } ], +# "highlight": { #to highlight the suggested word +# "pre_tag": "", +# "post_tag": "" +# }, +# "collate": { #this is used to check if the returned suggestion exists in the index +# "query": { +# "inline": { +# "match_phrase": { #matching the returned suggestions with the existing index +# "{{field_name}}": { +# "query": "{{suggestion}}", +# "slop": slop_value +# } +# } +# } +# }, +# "params": {"field_name": field_name_value}, +# "prune": True #to enable collate_match of suggestions +# } +# }, +# } +# } +# return phrase_suggest + +# def get_suggestion(suggestion_body, queryInfo, doc_types, query, field): +# ''' +# Arguments: suggestion_body, queryInfo is an array which has flag(to check if we got a query to search for or not), +# score(how close is the first suggestion to the query), doc_types(the type in which to search), +# query, the field in which query is to be searched. +# This function searches for suggestion and if suggestion is not found, it may mean that the query is already indexed +# and if query is also not indexed, then the flag remains 0. If we find a suggestion or if the query is indexed, the flag is set to 1. +# ''' +# #print GSTUDIO_SITE_NAME +# res = es.suggest(body=suggestion_body, index="nodes") #first we search for suggestion in the name field as it has the highest priority +# #print(res) +# if(len(res['suggest'][0]['options'])>0): #if we get a suggestion means the phrase doesnt exist in the index +# for sugitem in res['suggest'][0]['options']: +# if sugitem['collate_match'] == True: #we find the suggestion with collate_match = True +# queryInfo[0] = 1 +# queryInfo[1] = sugitem['score'] +# queryInfo[2] = sugitem['text'] +# queryInfo[3] = sugitem['highlighted'] #the query to be displayed onto the search results screen +# break +# else: #should slop be included in the search part here? +# query_body = {"query":{"match_phrase":{field: query,}}} +# if(es.search(index="nodes", doc_type=doc_types, body=query_body)['hits']['total']>0): +# queryInfo[0] = 1 #set queryNameInfo[0] = 1 when we found a suggestion or we found a hit in the indexed data +# queryInfo[2] = query + + +# def get_search_results(resultArray): +# ''' +# Arguments: the results array which contains all the search results along with id, type, +# index name. We need to extract only the json source of the search results. +# Returns: Array of json objects which will be passed to the html template for rendering. +# ''' +# reslist = [doc['_source'] for doc in resultArray] +# return reslist + +# def resources_in_group(res,group): +# ''' +# Arguments: the results json body which is returned by the es.search function. +# The group filter(i.e. Get results from a particular group) +# Returns: the search results pertaining to a group. +# ''' +# results = [] +# group_id = group_map[group] +# for i in res["hits"]["hits"]: +# if "group_set" in i["_source"].keys(): +# k = [] +# for g_id in (i["_source"]["group_set"]): +# k.append(g_id) +# if group_id in k: +# results.append(i) +# return results + +# def search_query(index_name, select, group, query): +# ''' +# Arguments: name of the index in which to search the query,what type of results to show +# (filter-images,audio,video,etc), in which groups to search, query +# Returns: an array of json bodies(search results) - This is the main function which does the search. If index_name passed to it is author_index, - the function searches for the contributions of a particular author and if the index name is - gsystemtype_index then the function returns all the GSystem nodes of that GSystemType - ''' - siz = 100 - if(index_name == author_index): - try: - - doctype = author_map[str(query)] - - except: - return [] - else: - body = { - "query":{ - "match_all":{} - }, - "from": 0, - "size": siz - } - - elif(index_name == "nodes"): - doctype = select - body = query - - #elif(index_name == gsystemtype_index): - #body = query - #doctype = select - - resultSet = [] - temp = [] - i = 0 +# This is the main function which does the search. If index_name passed to it is author_index, +# the function searches for the contributions of a particular author and if the index name is +# gsystemtype_index then the function returns all the GSystem nodes of that GSystemType +# ''' +# siz = 100 +# if(index_name == author_index): +# try: + +# doctype = author_map[str(query)] + +# except: +# return [] +# else: +# body = { +# "query":{ +# "match_all":{} +# }, +# "from": 0, +# "size": siz +# } + +# elif(index_name == "nodes"): +# doctype = select +# body = query + +# #elif(index_name == gsystemtype_index): +# #body = query +# #doctype = select + +# resultSet = [] +# temp = [] +# i = 0 - while(True): - body['from'] = i - print(doctype) - res = es.search(index=index_name, doc_type=doctype, body=body) - l = len(res["hits"]["hits"]) - if(l==0): - return [] - if l > 0 and l <= siz: - if(group == "All"): - resultSet.extend(res["hits"]["hits"]) - else: - temp = resources_in_group(res,group) - resultSet.extend(temp) - if l < siz: - break - i+=siz - - return resultSet - - -def get_advanced_search_form(request): - ''' - This function passes the 3 maps-> gsystemtype_map, attribute_map, relation_map to the - html template advanced_search.html for the rendering of the advanced search form - ''' - with open(mapping_directory+"/gsystemtype_map.json") as gm: - gsystemtype_map = json.load(gm) - - with open(mapping_directory+"/attribute_map.json") as am: - attribute_map = json.load(am) - - with open(mapping_directory+"/relation_map.json") as rm: - relation_map = json.load(rm) - - gsystemtype_map_str = json.dumps(gsystemtype_map) - attribute_map_str = json.dumps(attribute_map) - relation_map_str = json.dumps(relation_map) - return render(request, 'ndf/advanced_search.html',{"gsystemtype_map":gsystemtype_map_str,'attribute_map':attribute_map_str,'relation_map':relation_map_str}) - -def advanced_search(request): - global med_list - - node_type = request.GET.get("node_type") - arr_attributes = json.loads(request.GET["arr_attributes"]) - arr_relations = json.loads(request.GET["arr_relations"]) - print(node_type) - query_body = "" - if(len(arr_attributes.keys())>0): - query_body = '{ "query": {"bool": { "must": [' - for attr_name, atr_value in arr_attributes.iteritems(): - query_body += ('{"match": { "%s": "%s"}},' % (attr_name, atr_value)) - query_body += (']}}, "from": 0, "size": 100}') - query_body = eval(query_body) - res = search_query(gsystemtype_index, node_type, "All", query_body) - med_list = get_search_results(res) - - #for relation check -> the user value entered for a relation must be exactly same as the relation value present in the doc - if(len(arr_attributes.keys())==0): - body = { - "query":{ - "match_all":{} - }, - "from": 0, - "size": 100 - } - res = search_query(gsystemtype_index, node_type, "All", body) - med_list = get_search_results(res) - - #print med_list - med_list1 = []; - for result in med_list: - flag = 0 - for reldict in result["relation_set"]: - for k in reldict.keys(): - result[k] = reldict[k] - - for rel_name, rel_value in arr_relations.iteritems(): - fl = 0 - if(rel_name not in result.keys() or len(result[rel_name])==0): - flag = 1 - break - - for rightid in result[rel_name]: - try: - rsub = es.get(index=GSTUDIO_SITE_NAME, id=rightid) - except Exception as e: - continue - if(rsub["_source"]["name"] == rel_value): - fl = 1 - break - if(fl==0): - flag = 1 - break - if(flag==0): - med_list1.append(result) - - return HttpResponse(json.dumps({"results": med_list1}), content_type="application/json") +# while(True): +# body['from'] = i +# print(doctype) +# res = es.search(index=index_name, doc_type=doctype, body=body) +# l = len(res["hits"]["hits"]) +# if(l==0): +# return [] +# if l > 0 and l <= siz: +# if(group == "All"): +# resultSet.extend(res["hits"]["hits"]) +# else: +# temp = resources_in_group(res,group) +# resultSet.extend(temp) +# if l < siz: +# break +# i+=siz + +# return resultSet + + +# def get_advanced_search_form(request): +# ''' +# This function passes the 3 maps-> gsystemtype_map, attribute_map, relation_map to the +# html template advanced_search.html for the rendering of the advanced search form +# ''' +# with open(mapping_directory+"/gsystemtype_map.json") as gm: +# gsystemtype_map = json.load(gm) + +# with open(mapping_directory+"/attribute_map.json") as am: +# attribute_map = json.load(am) + +# with open(mapping_directory+"/relation_map.json") as rm: +# relation_map = json.load(rm) + +# gsystemtype_map_str = json.dumps(gsystemtype_map) +# attribute_map_str = json.dumps(attribute_map) +# relation_map_str = json.dumps(relation_map) +# return render(request, 'ndf/advanced_search.html',{"gsystemtype_map":gsystemtype_map_str,'attribute_map':attribute_map_str,'relation_map':relation_map_str}) + +# def advanced_search(request): +# global med_list + +# node_type = request.GET.get("node_type") +# arr_attributes = json.loads(request.GET["arr_attributes"]) +# arr_relations = json.loads(request.GET["arr_relations"]) +# print(node_type) +# query_body = "" +# if(len(arr_attributes.keys())>0): +# query_body = '{ "query": {"bool": { "must": [' +# for attr_name, atr_value in arr_attributes.iteritems(): +# query_body += ('{"match": { "%s": "%s"}},' % (attr_name, atr_value)) +# query_body += (']}}, "from": 0, "size": 100}') +# query_body = eval(query_body) +# res = search_query(gsystemtype_index, node_type, "All", query_body) +# med_list = get_search_results(res) + +# #for relation check -> the user value entered for a relation must be exactly same as the relation value present in the doc +# if(len(arr_attributes.keys())==0): +# body = { +# "query":{ +# "match_all":{} +# }, +# "from": 0, +# "size": 100 +# } +# res = search_query(gsystemtype_index, node_type, "All", body) +# med_list = get_search_results(res) + +# #print med_list +# med_list1 = []; +# for result in med_list: +# flag = 0 +# for reldict in result["relation_set"]: +# for k in reldict.keys(): +# result[k] = reldict[k] + +# for rel_name, rel_value in arr_relations.iteritems(): +# fl = 0 +# if(rel_name not in result.keys() or len(result[rel_name])==0): +# flag = 1 +# break + +# for rightid in result[rel_name]: +# try: +# rsub = es.get(index=GSTUDIO_SITE_NAME, id=rightid) +# except Exception as e: +# continue +# if(rsub["_source"]["name"] == rel_value): +# fl = 1 +# break +# if(fl==0): +# flag = 1 +# break +# if(flag==0): +# med_list1.append(result) + +# return HttpResponse(json.dumps({"results": med_list1}), content_type="application/json") diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/search_views.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/search_views.py index 30c69f0e51..d4433a0dac 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/search_views.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/search_views.py @@ -31,8 +31,6 @@ from gnowsys_ndf.ndf.gstudio_es.paginator import Paginator ,EmptyPage, PageNotAnInteger -#es = Elasticsearch("http://elastic:changeme@gsearch:9200", timeout=100, retry_on_timeout=True) - my_doc_requirement = u'storing_orignal_doc' reduced_doc_requirement = u'storing_reduced_doc' to_reduce_doc_requirement = u'storing_to_be_reduced_doc' diff --git a/gnowsys-ndf/gnowsys_ndf/req_body.json b/gnowsys-ndf/gnowsys_ndf/req_body.json deleted file mode 100644 index 399d6cab86..0000000000 --- a/gnowsys-ndf/gnowsys_ndf/req_body.json +++ /dev/null @@ -1,466 +0,0 @@ -{ - "settings": { - "index.mapping.total_fields.limit": 5000, - "number_of_shards": 1, - "number_of_replicas": 0, - "analysis": { - "analyzer": { - "trigram": { - "type": "custom", - "tokenizer": "standard", - "stopwords": "_english_", - "filter": [ - "standard", - "lowercase", - "shingle" - ], - "char_filter": ["html_strip"] - } - }, - "filter": { - "shingle": { - "type": "shingle", - "min_shingle_size": 2, - "max_shingle_size": 3 - } - } - } - }, - "mappings": { - "Author": { - "properties": { - "name": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "altnames":{ - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "content": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "tags": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - } - } - }, - "image": { - "properties": { - "name": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "altnames":{ - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "content": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "tags": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - } - } - }, - "video": { - "properties": { - "name": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "altnames":{ - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "content": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "tags": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - } - } - }, - "text": { - "properties": { - "name": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "altnames":{ - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "content": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "tags": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - } - } - }, - "application": { - "properties": { - "name": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "altnames":{ - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "content": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "tags": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - } - } - }, - "audio": { - "properties": { - "name": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "altnames":{ - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "content": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "tags": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - } - } - }, - "NotMedia": { - "properties": { - "name": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "altnames":{ - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "content": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "tags": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - } - } - }, - "Filehive": { - "properties": { - "filename": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - } - } - }, - "RelationType": { - "properties": { - "name": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "altnames":{ - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "content": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "tags": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - } - } - }, - "Group": { - "properties": { - "name": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "altnames":{ - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "content": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "tags": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - } - } - }, - "AttributeType": { - "properties": { - "name": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "altnames":{ - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "content": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "tags": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - } - } - }, - "GAttribute": { - "properties": { - "name": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "tags": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - } - } - } - } -} diff --git a/gnowsys-ndf/gnowsys_ndf/req_body_gtype.json b/gnowsys-ndf/gnowsys_ndf/req_body_gtype.json deleted file mode 100644 index e98c856c21..0000000000 --- a/gnowsys-ndf/gnowsys_ndf/req_body_gtype.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "settings": { - "index.mapping.total_fields.limit": 10000, - "number_of_shards": 1, - "number_of_replicas": 0, - "analysis": { - "analyzer": { - "trigram": { - "type": "custom", - "tokenizer": "standard", - "stopwords": "_english_", - "filter": [ - "standard", - "lowercase" - ], - "char_filter": ["html_strip"] - } - } - } - } -} \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/triples.json b/gnowsys-ndf/gnowsys_ndf/triples.json deleted file mode 100644 index 99d29468d5..0000000000 --- a/gnowsys-ndf/gnowsys_ndf/triples.json +++ /dev/null @@ -1,59 +0,0 @@ -{ - "settings": { - "index.mapping.total_fields.limit": 5000, - "number_of_shards": 1, - "number_of_replicas": 0, - "analysis": { - "analyzer": { - "trigram": { - "type": "custom", - "tokenizer": "standard", - "stopwords": "_english_", - "filter": [ - "standard", - "lowercase", - "shingle" - ], - "char_filter": ["html_strip"] - } - }, - "filter": { - "shingle": { - "type": "shingle", - "min_shingle_size": 2, - "max_shingle_size": 3 - } - } - } - }, - "mappings": { - "_default_": { - "dynamic": "false" - }, - "gattribute": { - "properties": { - "name": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - }, - "tags": { - "type": "text", - "fields": { - "trigram": { - "type": "text", - "analyzer": "trigram" - } - } - } - } - } - - - - } -} From 04450da452f4024b9e7b58d2f28df39e1bf14a5e Mon Sep 17 00:00:00 2001 From: Siddhu Dhangar Date: Fri, 6 Apr 2018 14:56:19 +0530 Subject: [PATCH 513/766] added req_body.json and triples files --- .../gnowsys_ndf/gstudio_configs/req_body.json | 753 ++++++++++++++++++ .../gnowsys_ndf/gstudio_configs/triples.json | 83 ++ 2 files changed, 836 insertions(+) create mode 100644 gnowsys-ndf/gnowsys_ndf/gstudio_configs/req_body.json create mode 100644 gnowsys-ndf/gnowsys_ndf/gstudio_configs/triples.json diff --git a/gnowsys-ndf/gnowsys_ndf/gstudio_configs/req_body.json b/gnowsys-ndf/gnowsys_ndf/gstudio_configs/req_body.json new file mode 100644 index 0000000000..ec168e8cfc --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/gstudio_configs/req_body.json @@ -0,0 +1,753 @@ +{ + "settings": { + "index.mapping.total_fields.limit": 10000, + "number_of_shards": 5, + "number_of_replicas": 2, + "index.mapping.ignore_malformed": true, + "analysis": { + "analyzer": { + "trigram": { + "type": "custom", + "tokenizer": "standard", + "stopwords": "_english_", + "filter": [ + "standard", + "lowercase", + "shingle" + ], + "char_filter": ["html_strip"] + } + }, + "filter": { + "shingle": { + "type": "shingle", + "min_shingle_size": 2, + "max_shingle_size": 3 + } + } + } + }, + "mappings": { + "filehive": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "gattribute": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "grelation": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "buddy": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "benchmark": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "metatype": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "gsystemtype": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "relationtype": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "attributetype": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "gsystem": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "group": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "toreducedocs": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "author": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "counter": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "image": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "audio": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "video": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "application": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "altnames":{ + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "content": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + } + + } +} diff --git a/gnowsys-ndf/gnowsys_ndf/gstudio_configs/triples.json b/gnowsys-ndf/gnowsys_ndf/gstudio_configs/triples.json new file mode 100644 index 0000000000..e4736aa4a3 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/gstudio_configs/triples.json @@ -0,0 +1,83 @@ +{ + "settings": { + "index.mapping.total_fields.limit": 10000, + "number_of_shards": 5, + "number_of_replicas": 2, + "index.mapping.ignore_malformed": true, + "analysis": { + "analyzer": { + "trigram": { + "type": "custom", + "tokenizer": "standard", + "stopwords": "_english_", + "filter": [ + "standard", + "lowercase", + "shingle" + ], + "char_filter": ["html_strip"] + } + }, + "filter": { + "shingle": { + "type": "shingle", + "min_shingle_size": 2, + "max_shingle_size": 3 + } + } + } + }, + "mappings": { + "_default_": { + "dynamic": "false" + }, + "gattribute": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + }, + "grelation": { + "properties": { + "name": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + }, + "tags": { + "type": "text", + "fields": { + "trigram": { + "type": "text", + "analyzer": "trigram" + } + } + } + } + } + + + + + } +} From 466c46c5044dc4b77232bd38c68875647e4e1020 Mon Sep 17 00:00:00 2001 From: Siddhu Dhangar Date: Fri, 6 Apr 2018 15:02:02 +0530 Subject: [PATCH 514/766] esinitialize_map.py file all code commented --- doc/deployer/esinitialize_map.py | 236 +++++++++++++++---------------- 1 file changed, 118 insertions(+), 118 deletions(-) diff --git a/doc/deployer/esinitialize_map.py b/doc/deployer/esinitialize_map.py index b5098c3864..adc69b9f2b 100644 --- a/doc/deployer/esinitialize_map.py +++ b/doc/deployer/esinitialize_map.py @@ -1,121 +1,121 @@ -from bson import json_util -import os, errno -import sys -import json -# from elasticsearch import Elasticsearch -from gnowsys_ndf.ndf.models import * - -from gnowsys_ndf.local_settings import GSTUDIO_DOCUMENT_MAPPING - -# es = Elasticsearch("http://elsearch:changeit@gsearch:9200") - -author_map = {} -group_map = {} -system_type_map = {} -id_attribute_map = {} -id_relation_map = {} - -def create_map(all_docs): - ''' - This function is used to create 4 maps author_map, group_map,attribute map, relation map - Author map is used to search for the contributions of some author. Group map is used in forms.py to show the group filter. - - ''' - for node in all_docs: - if("name" in node): #only docs with names will be considered for mapping - if(node._type == "Author"): - author_map[node.name] = node.created_by - if(node._type == "Group"): - group_map[node.name] = str(node._id) - if(node._type == "GSystem"): - attr = []; rel = []; - #here what we are doing is: if a GSystem node has member_of set as [A,B,C] - #suppose the possible attributes of A are x,y - #suppose the possible attributes of B are z - #suppose the possible attributes of C are w - #if the GSystem node contains any other attribute (p), then that has to be added to the attribute_map - #i.e. it will be added to attribute_set of A,B,C - for grid in node.member_of: - gid = str(grid) - if(gid not in system_type_map.values()): - id_attribute_map[gid] = [] - id_relation_map[gid] = [] - attr += id_attribute_map[gid] - rel += id_relation_map[gid] - - attr = list(set(attr)) - rel = list(set(rel)) - for grid in node.member_of: - gid = str(grid) - for attr_dict in node.attribute_set: - for key in attr_dict.keys(): - if(key not in attr): - id_attribute_map[gid].append(key) - for rel_dict in node.relation_set: - for key in rel_dict.keys(): - if(key not in rel): - id_relation_map[gid].append(key) - - if(node._type == "GSystemType"): - create_advanced_map(node) - # if(node._type == "GSystem"): - # update_advanced_map(node) +# from bson import json_util +# import os, errno +# import sys +# import json +# # from elasticsearch import Elasticsearch +# from gnowsys_ndf.ndf.models import * + +# from gnowsys_ndf.local_settings import GSTUDIO_DOCUMENT_MAPPING + +# # es = Elasticsearch("http://elsearch:changeit@gsearch:9200") + +# author_map = {} +# group_map = {} +# system_type_map = {} +# id_attribute_map = {} +# id_relation_map = {} + +# def create_map(all_docs): +# ''' +# This function is used to create 4 maps author_map, group_map,attribute map, relation map +# Author map is used to search for the contributions of some author. Group map is used in forms.py to show the group filter. + +# ''' +# for node in all_docs: +# if("name" in node): #only docs with names will be considered for mapping +# if(node._type == "Author"): +# author_map[node.name] = node.created_by +# if(node._type == "Group"): +# group_map[node.name] = str(node._id) +# if(node._type == "GSystem"): +# attr = []; rel = []; +# #here what we are doing is: if a GSystem node has member_of set as [A,B,C] +# #suppose the possible attributes of A are x,y +# #suppose the possible attributes of B are z +# #suppose the possible attributes of C are w +# #if the GSystem node contains any other attribute (p), then that has to be added to the attribute_map +# #i.e. it will be added to attribute_set of A,B,C +# for grid in node.member_of: +# gid = str(grid) +# if(gid not in system_type_map.values()): +# id_attribute_map[gid] = [] +# id_relation_map[gid] = [] +# attr += id_attribute_map[gid] +# rel += id_relation_map[gid] + +# attr = list(set(attr)) +# rel = list(set(rel)) +# for grid in node.member_of: +# gid = str(grid) +# for attr_dict in node.attribute_set: +# for key in attr_dict.keys(): +# if(key not in attr): +# id_attribute_map[gid].append(key) +# for rel_dict in node.relation_set: +# for key in rel_dict.keys(): +# if(key not in rel): +# id_relation_map[gid].append(key) + +# if(node._type == "GSystemType"): +# create_advanced_map(node) +# # if(node._type == "GSystem"): +# # update_advanced_map(node) -def create_advanced_map(node): - ''' - This function is used for creating the gsystemtype_map, attribute_map and relation_map - attribute and relation map are a mapping between the gsystem type id and the possible attributes/relations - of that gsystem type. - ''' - system_type_map[node.name] = str(node._id) - attribute_type_set = [] - for attribute in node.attribute_type_set: - attribute_type_set.append(attribute["name"]) - relation_type_set = [] - for relation in node.relation_type_set: - relation_type_set.append(relation["name"]) - if(str(node._id) not in id_attribute_map.keys()): - id_attribute_map[str(node._id)] = [] - if(str(node._id) not in id_relation_map.keys()): - id_relation_map[str(node._id)] = [] - id_attribute_map[str(node._id)] += attribute_type_set - id_relation_map[str(node._id)] += relation_type_set - -def main(): - print("Starting the map creation process") - all_docs = node_collection.find(no_cursor_timeout=True).batch_size(5) - create_map(all_docs) - - for key,val in id_attribute_map.iteritems(): - id_attribute_map[key] = list(set(val)) - for key,val in id_relation_map.iteritems(): - id_relation_map[key] = list(set(val)) - - mapping_directory = GSTUDIO_DOCUMENT_MAPPING - if not os.path.exists(mapping_directory): - print("creating mapping directory") - os.makedirs(mapping_directory) - - f = open(mapping_directory+"/authormap.json","w") - json.dump(author_map,f,indent=4) - f.close() - - f = open(mapping_directory+"/groupmap.json","w") - json.dump(group_map,f,indent=4) - f.close() - - f = open(mapping_directory+"/gsystemtype_map.json","w") - json.dump(system_type_map,f,indent=4) - f.close() - - f = open(mapping_directory+"/attribute_map.json","w") - json.dump(id_attribute_map,f,indent=4) - f.close() - - f = open(mapping_directory+"/relation_map.json","w") - json.dump(id_relation_map,f,indent=4) - f.close() - -main() \ No newline at end of file +# def create_advanced_map(node): +# ''' +# This function is used for creating the gsystemtype_map, attribute_map and relation_map +# attribute and relation map are a mapping between the gsystem type id and the possible attributes/relations +# of that gsystem type. +# ''' +# system_type_map[node.name] = str(node._id) +# attribute_type_set = [] +# for attribute in node.attribute_type_set: +# attribute_type_set.append(attribute["name"]) +# relation_type_set = [] +# for relation in node.relation_type_set: +# relation_type_set.append(relation["name"]) +# if(str(node._id) not in id_attribute_map.keys()): +# id_attribute_map[str(node._id)] = [] +# if(str(node._id) not in id_relation_map.keys()): +# id_relation_map[str(node._id)] = [] +# id_attribute_map[str(node._id)] += attribute_type_set +# id_relation_map[str(node._id)] += relation_type_set + +# def main(): +# print("Starting the map creation process") +# all_docs = node_collection.find(no_cursor_timeout=True).batch_size(5) +# create_map(all_docs) + +# for key,val in id_attribute_map.iteritems(): +# id_attribute_map[key] = list(set(val)) +# for key,val in id_relation_map.iteritems(): +# id_relation_map[key] = list(set(val)) + +# mapping_directory = GSTUDIO_DOCUMENT_MAPPING +# if not os.path.exists(mapping_directory): +# print("creating mapping directory") +# os.makedirs(mapping_directory) + +# f = open(mapping_directory+"/authormap.json","w") +# json.dump(author_map,f,indent=4) +# f.close() + +# f = open(mapping_directory+"/groupmap.json","w") +# json.dump(group_map,f,indent=4) +# f.close() + +# f = open(mapping_directory+"/gsystemtype_map.json","w") +# json.dump(system_type_map,f,indent=4) +# f.close() + +# f = open(mapping_directory+"/attribute_map.json","w") +# json.dump(id_attribute_map,f,indent=4) +# f.close() + +# f = open(mapping_directory+"/relation_map.json","w") +# json.dump(id_relation_map,f,indent=4) +# f.close() + +# main() \ No newline at end of file From 72d6ca6758e07298d853e467d02a280f6da94a9e Mon Sep 17 00:00:00 2001 From: Siddhu Dhangar Date: Fri, 6 Apr 2018 15:06:15 +0530 Subject: [PATCH 515/766] changed local_settings named to settings in import --- gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py | 2 +- gnowsys-ndf/gnowsys_ndf/ndf/views/explore.py | 2 +- gnowsys-ndf/gnowsys_ndf/ndf/views/methods.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py index 9cf4d08e85..9ed2a02387 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/e-book.py @@ -21,7 +21,7 @@ from elasticsearch import Elasticsearch from elasticsearch_dsl import * from gnowsys_ndf.ndf.gstudio_es.paginator import Paginator ,EmptyPage, PageNotAnInteger -from gnowsys_ndf.local_settings import GSTUDIO_ELASTIC_SEARCH +from gnowsys_ndf.settings import GSTUDIO_ELASTIC_SEARCH from gnowsys_ndf.ndf.gstudio_es.es import * diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/explore.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/explore.py index 7cf7c20aa4..57c31528a5 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/explore.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/explore.py @@ -28,7 +28,7 @@ from gnowsys_ndf.ndf.models import node_collection, triple_collection from gnowsys_ndf.ndf.views.methods import get_execution_time, get_language_tuple, create_gattribute from gnowsys_ndf.ndf.templatetags.ndf_tags import check_is_gstaff, get_attribute_value -from gnowsys_ndf.local_settings import GSTUDIO_ELASTIC_SEARCH +from gnowsys_ndf.settings import GSTUDIO_ELASTIC_SEARCH # from gnowsys_ndf.ndf.views.methods import get_group_name_id # from gnowsys_ndf.ndf.views.methods import get_node_common_fields, parse_template_data, get_execution_time, delete_node, replicate_resource diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/methods.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/methods.py index f4bf02636e..8aa79f05b8 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/methods.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/methods.py @@ -55,7 +55,7 @@ from gnowsys_ndf.ndf.views.tasks import record_in_benchmark from datetime import datetime, timedelta, date from gnowsys_ndf.ndf.views.utils import get_dict_from_list_of_dicts -from gnowsys_ndf.local_settings import GSTUDIO_ELASTIC_SEARCH +from gnowsys_ndf.settings import GSTUDIO_ELASTIC_SEARCH history_manager = HistoryManager() theme_GST = node_collection.one({'_type': 'GSystemType', 'name': 'Theme'}) From 88e4f32cda2a06f58e75fc77bdfaa6077d32efaf Mon Sep 17 00:00:00 2001 From: Siddhu Dhangar Date: Fri, 6 Apr 2018 15:15:26 +0530 Subject: [PATCH 516/766] index.lower() changed to index_lower --- doc/deployer/es_injection.py | 52 ++++++++++++++-------------- gnowsys-ndf/gnowsys_ndf/ndf/forms.py | 2 +- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/doc/deployer/es_injection.py b/doc/deployer/es_injection.py index 10355f4082..1f7b492adc 100644 --- a/doc/deployer/es_injection.py +++ b/doc/deployer/es_injection.py @@ -150,16 +150,16 @@ def main(): temp = [] - - if (not es.indices.exists(index.lower())): - if (index.lower() == "triples"): - res = es.indices.create(index=index.lower(), body=triples_body) + index_lower = index.lower() + if (not es.indices.exists(index_lower)): + if (index_lower == "triples"): + res = es.indices.create(index=index_lower, body=triples_body) else: - res = es.indices.create(index=index.lower(), body=request_body) + res = es.indices.create(index=index_lower, body=request_body) - if (es.indices.exists(index.lower())): + if (es.indices.exists(index_lower)): - res = es.search(index=index.lower(), body={"query": {"match_all": {}}, "_source": ["id"]}, scroll="1m", size="10") + res = es.search(index=index_lower, body={"query": {"match_all": {}}, "_source": ["id"]}, scroll="1m", size="10") scrollid = res['_scroll_id'] @@ -175,56 +175,56 @@ def main(): res = es.scroll(scrollid, scroll="1m") - if(index.lower() == "nodes"): + if(index_lower == "nodes"): nodes = node_collection.find({ '_id': {'$nin': temp} }).batch_size(5) if(nodes.count() == 0): - print("All "+ index.lower() +" documents has injected to elasticsearch") + print("All "+ index_lower +" documents has injected to elasticsearch") continue else: - index_docs(nodes, index.lower(), doc_type) + index_docs(nodes, index_lower, doc_type) - elif (index.lower() == "triples"): + elif (index_lower == "triples"): triples = triple_collection.find({ '_id': {'$nin': temp} }).batch_size(5) if (triples.count() == 0): - print("All " + index.lower() + " documents has injected to elasticsearch") + print("All " + index_lower + " documents has injected to elasticsearch") continue else: # f = open("/data/triples.txt", "w") # os.chmod("/data/triples.txt", 0o777) - index_docs(triples, index.lower(), doc_type) + index_docs(triples, index_lower, doc_type) - elif (index.lower() == "benchmarks"): + elif (index_lower == "benchmarks"): benchmarks = benchmark_collection.find({ '_id': {'$nin': temp} }).batch_size(5) if (benchmarks.count() == 0): - print("All " + index.lower() + " documents has injected to elasticsearch") + print("All " + index_lower + " documents has injected to elasticsearch") continue else: - index_docs(benchmarks, index.lower(), doc_type) + index_docs(benchmarks, index_lower, doc_type) - elif (index.lower() == "filehives"): + elif (index_lower == "filehives"): filehives = filehive_collection.find({ '_id': {'$nin': temp} }).batch_size(5) if (filehives.count() == 0): - print("All " + index.lower() + " documents has injected to elasticsearch") + print("All " + index_lower + " documents has injected to elasticsearch") continue else: - index_docs(filehives, index.lower(), doc_type) + index_docs(filehives, index_lower, doc_type) - elif (index.lower() == "buddies"): + elif (index_lower == "buddies"): buddys = buddy_collection.find({ '_id': {'$nin': temp} }).batch_size(5) if (buddys.count() == 0): - print("All " + index.lower() + " documents has injected to elasticsearch") + print("All " + index_lower + " documents has injected to elasticsearch") continue else: - index_docs(buddys, index.lower(), doc_type) + index_docs(buddys, index_lower, doc_type) - elif (index.lower() == "counters"): + elif (index_lower == "counters"): counters = counter_collection.find({ '_id': {'$nin': temp} }).batch_size(5) if (counters.count() == 0): - print("All " + index.lower() + " documents has injected to elasticsearch") + print("All " + index_lower + " documents has injected to elasticsearch") continue else: - index_docs(counters, index.lower(), doc_type) + index_docs(counters, index_lower, doc_type) #print(res['_scroll_id']) @@ -243,7 +243,7 @@ def main(): # DELETING existing/old indexes # for index in GSTUDIO_ELASTIC_SEARCH_INDEX.keys(): - # if (es.indices.exists(index.lower())): + # if (es.indices.exists(index_lower)): # print("Deleting the existing index: " + index.lower() + " for reindexing") # res = es.indices.delete(index=index.lower()) # print("The delete response is %s " % res) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py index c46da3ee4c..d3c2a19a75 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/forms.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/forms.py @@ -3,7 +3,7 @@ from django import forms from django_mongokit.forms import DocumentForm from django.contrib.auth.forms import PasswordChangeForm, SetPasswordForm -from gnowsys_ndf.settings import GSTUDIO_DOCUMENT_MAPPING +#from gnowsys_ndf.settings import GSTUDIO_DOCUMENT_MAPPING from models import Node from models import GSystemType From 4583ad834edfa9936c5bc1d16cc6dd6280ff99ef Mon Sep 17 00:00:00 2001 From: sakshi7373 Date: Fri, 6 Apr 2018 16:01:16 +0530 Subject: [PATCH 517/766] Form Validation for add_asset forms --- .../ndf/templates/ndf/add_asset.html | 82 +++++++++++++------ 1 file changed, 56 insertions(+), 26 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html index 50b69265f1..1e6481c848 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/add_asset.html @@ -83,7 +83,7 @@

    {% firstof asset_obj.altnames|truncatechars:25 asset_obj.
    {% include 'ndf/rating.html' with node=asset_obj %}
    - +
    {% if asset_obj.tags %} @@ -123,17 +123,17 @@

     

    @@ -230,8 +230,8 @@

     

    - - + + {% endif %} - + {% endif %}
    +
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html index 6bc36b1678..347f1f36bf 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/gbase.html @@ -211,40 +211,7 @@
    - - -
    From c3f5ff67a33c8a5a8a89d0bdaabb542d2a363e7d Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Tue, 10 Apr 2018 14:05:51 +0530 Subject: [PATCH 552/766] eCourses card linked to explore_courses --- gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/repository.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/repository.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/repository.html index b603f6e450..f944a42a31 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/repository.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/repository.html @@ -31,6 +31,8 @@ Date: Tue, 10 Apr 2018 15:40:38 +0530 Subject: [PATCH 553/766] ImageDashboard.html and ImageDashboard.py views changed ... added select box and search box for searching resources --- .../ndf/templates/ndf/ImageDashboard.html | 60 ++++++++++++++++++- .../ndf/templates/ndf/main_simple_card.html | 1 + .../gnowsys_ndf/ndf/views/advanced_search.py | 5 +- .../gnowsys_ndf/ndf/views/imageDashboard.py | 22 ++++++- 4 files changed, 82 insertions(+), 6 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/ImageDashboard.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/ImageDashboard.html index c2bec6c824..edcbc4d74a 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/ImageDashboard.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/ImageDashboard.html @@ -53,7 +53,7 @@ alert("Error occurred"); } // check if image is not in the list, add it. - else if(xhr.responseText ) + else if(xhr.responseText) { // alert("success"+xhr.responseText); var imageURL = "{{MEDIA_URL}}" + xhr.responseText; @@ -188,6 +188,23 @@

    {% endcomment %}

    Select Image

    +
    +
    + {% csrf_token %} + + +
    + +
      {% for each in imageCollection %} @@ -222,4 +239,45 @@

      Select Image

      {% endfor %}
    + + {% endblock %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/main_simple_card.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/main_simple_card.html index 35fcb57d9e..fff1e37f7a 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/main_simple_card.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/main_simple_card.html @@ -14,6 +14,7 @@
    {% endif %} + {% if lang_code == "hi" %} {% if "State Partners" == resource.name %}

    {% trans "State Partners" %}

    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py index b46c85b0ed..e2d2d23810 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/advanced_search.py @@ -99,11 +99,8 @@ def search_detail(request,group_id,page_no=1): if not rel_val['grel_id']: lst.append(each._id) - search_result = node_collection.find({ '_id': {'$in': lst} }) - + search_result = node_collection.find({ '_id': {'$in': lst} }).limit(300) if_teaches = True - - print search_result.count() #paginator_search_result = paginator.Paginator(search_result, page_no, 24) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/views/imageDashboard.py b/gnowsys-ndf/gnowsys_ndf/ndf/views/imageDashboard.py index fa7f4113c3..21fa790de5 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/views/imageDashboard.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/views/imageDashboard.py @@ -26,6 +26,12 @@ image_ins = node_collection.find_one({'_type': "GSystemType", "name": "Image"}) file_gst = node_collection.find_one( { "_type" : "GSystemType","name":"File" } ) +from gnowsys_ndf.ndf.models import GSystemType +announced_unit_gst = node_collection.one({'_type': "GSystemType", 'name': "announced_unit"}) +gst_base_unit_name, gst_base_unit_id = GSystemType.get_gst_name_id('base_unit') + + + @get_execution_time def imageDashboard(request, group_id, image_id=None,page_no=1): from gnowsys_ndf.settings import GSTUDIO_NO_OF_OBJS_PP @@ -49,15 +55,29 @@ def imageDashboard(request, group_id, image_id=None,page_no=1): except: group_name, group_id = get_group_name_id(group_id) + search_text = request.GET.get("search_text",None) + if search_text : + group_name, group_id = get_group_name_id(search_text) + print group_name + + if image_id is None: image_ins = node_collection.find_one({'_type': "GSystemType", "name": "Image"}) if image_ins: image_id = str(image_ins._id) + all_workspaces = node_collection.find( + {'_type':'Group','member_of': + {'$nin': [ announced_unit_gst._id,gst_base_unit_id] + } + }).sort('last_update', -1) + all_workspaces_count = all_workspaces.count() + # img_col = node_collection.find({'_type': 'File', 'member_of': {'$all': [ObjectId(image_id)]}, 'group_set': ObjectId(group_id)}).sort("last_update", -1) files_cur = node_collection.find({ '_type': {'$in': ["GSystem"]}, 'member_of': file_gst._id, + #'group_set': {'$all': [ObjectId(group_id)]}, 'group_set': {'$all': [ObjectId(group_id)]}, 'if_file.mime_type': {'$regex': 'image'}, 'status' : { '$ne': u"DELETED" }, @@ -92,7 +112,7 @@ def imageDashboard(request, group_id, image_id=None,page_no=1): # image_page_info = paginator.Paginator(files_cur, page_no, GSTUDIO_NO_OF_OBJS_PP) template = "ndf/ImageDashboard.html" already_uploaded=request.GET.getlist('var',"") - variable = RequestContext(request, {'imageCollection': files_cur,'already_uploaded':already_uploaded,'groupid':group_id,'group_id':group_id }) + variable = RequestContext(request, {'all_workspaces_count':all_workspaces_count,'all_workspaces':all_workspaces,'imageCollection': files_cur,'already_uploaded':already_uploaded,'groupid':group_id,'group_id':group_id }) return render_to_response(template, variable) @get_execution_time From c18104f14fb2f9d6978b1a518533f083a3c32c03 Mon Sep 17 00:00:00 2001 From: amitmoralwar Date: Tue, 10 Apr 2018 15:47:36 +0530 Subject: [PATCH 554/766] File modified in login with mastodon --- .../ndf/middleware/oauth_middleware.py | 182 ++++++++++++++++++ .../ndf/templates/registration/login.html | 10 +- .../gnowsys_ndf/ndf/templatetags/ndf_tags.py | 6 +- gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py | 12 +- gnowsys-ndf/gnowsys_ndf/settings.py | 23 +-- 5 files changed, 218 insertions(+), 15 deletions(-) create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/middleware/oauth_middleware.py diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/middleware/oauth_middleware.py b/gnowsys-ndf/gnowsys_ndf/ndf/middleware/oauth_middleware.py new file mode 100644 index 0000000000..dcc2c15030 --- /dev/null +++ b/gnowsys-ndf/gnowsys_ndf/ndf/middleware/oauth_middleware.py @@ -0,0 +1,182 @@ +from django.http import HttpResponseRedirect +from django.core.urlresolvers import reverse + +###############Mastodon OAUTH Dependancy########## +from gnowsys_ndf.ndf.forms import mform +import mastodon +from django.contrib.auth import authenticate, login +from mastodon import Mastodon +from django.template.response import TemplateResponse +from gnowsys_ndf.ndf.models import * +from django.contrib.auth.models import User +######################################## + + +class test(object): + def moauth(self,request): + + if request.method == 'POST': + + form = mform(request.POST) + + ###GET username and password from user##### + Username = request.POST.get('username') + Password = request.POST.get('password') + + + ###CHECKING CLIENT CREDENTIALS USING MASTODON API########## + mastodon_var = mastodon.Mastodon( + + client_id='gnowsys_ndf/gstudio_configs/NROER-client_cred.secret', + api_base_url='https://member.metastudio.org' + ) + + access_token = None + + ####GET ACCESS FROM MASTODON HERE####### + try: + access_token = mastodon_var.log_in( + Username, + Password, + to_file='gnowsys_ndf/gstudio_configs/NROER-access_token.secret', + + + ) + mastodon_var2 = Mastodon( + client_id = 'gnowsys_ndf/gstudio_configs/NROER-client_cred.secret', + access_token = access_token, + api_base_url = 'https://member.metastudio.org' + ) + except Exception as e: + print e + pass + + name = Username + email = Username + password = Password + + + + if access_token: + + ###check whether given email is present in user table or not#### + user_email = User.objects.filter(email=name).exists() + + + if user_email: + + ##Fetch auth object using email + nodes = node_collection.one({'email':{'$regex':email,'$options': 'i' },'_type':unicode("Author")}) + + if(nodes!=None): + nodes.access_token = access_token + + + ####SECOND AND BY-DEFAULT CUSTOMIZE LAYER FOR AUTHENTICATION + user = authenticate(username=name, password=None) + + + if user is not None: + + if user.is_active: + user.is_active=True + + login(request,user) + + return HttpResponseRedirect( reverse('landing_page') ) + else: + HttpResponse("Error1") + else: + ##Creating auth object for user + member = User.objects.get(email=name) + Author.create_author(member.id,agency_type='Other') + + ##Fetch auth object using email + author = node_collection.one({'email':{'$regex':email,'$options': 'i' },'_type':unicode("Author")}) + + ##Assign access token for auth object + author.access_token = access_token + + author.save() + + #By default layer and customise layer of authentication + user = authenticate(username=name, password=None) + if user is not None: + if user.is_active: + login(request, user) + return HttpResponseRedirect( reverse('landing_page') ) + else: + HttpResponse("Error1") + + else: + ##Creating user in django user table + member = User.objects.create_user(name,email,password) + member.save() + + ##Fetch auth object using email + nodes = node_collection.one({'email':{'$regex':email,'$options': 'i' },'_type':unicode("Author")}) + + if(nodes!=None): + + + user = authenticate(username=name, password=None) + if user is not None: + if user.is_active: + + login(request, user) + return HttpResponseRedirect( reverse('landing_page') ) + else: + HttpResponse("Error2") + + + + else: + + ##GET EMAIL TO CREATE AUTH OBJECT FOR USER + member = User.objects.get(email=name) + Author.create_author(member.id,agency_type='Other') + author = node_collection.one({"created_by":int(member.id),"_type":unicode("Author")}) + author.access_token = access_token + author.save() + ####SECOND AND BY-DEFAULT LAYER FOR AUTHENTICATION + user = authenticate(username=name, password=None) + if user is not None: + if user.is_active: + login(request, user) + return HttpResponseRedirect( reverse('landing_page') ) + else: + HttpResponse("Error2") + return HttpResponseRedirect( reverse('landing_page') ) + + else: + + return HttpResponseRedirect(reverse('login') ) + + else: + + return HttpResponse("Invalid Credentials.") + + + + +# Below class used for overriding defualt authenticate method of django +class MyCustomBackend: + + # Create an authentication method + # This is called by the standard Django login procedure + def authenticate(self, username=None, password=None): + + try: + # Try to find a user matching your username + return User.objects.get(email=username) + + except User.DoesNotExist: + # No user was found, return None - triggers default login failed + return None + + # Required for your backend to work properly - unchanged in most scenarios + def get_user(self, user_id): + try: + return User.objects.get(pk=user_id) + except User.DoesNotExist: + return None \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/registration/login.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/registration/login.html index bbbcab2f44..2f1cca5f5e 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/registration/login.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/registration/login.html @@ -1,5 +1,7 @@ {% extends "registration/registration_base.html" %} {% load i18n %} +{% load get_site_variables from ndf_tags%} +{% get_site_variables as site%} {% load ndf_tags %} {% block title %}{% trans "Login" %}{% endblock %} @@ -32,12 +34,18 @@

    {% trans "Log In" %}


    {% if form.errors %} + {% trans "Either your email or password is incorrect !" %} {% endif %} + {%if site.LOGIN_WITH_MASTODON %}
    - {% csrf_token %} + {% else %} + + + {% endif %} + {% csrf_token %}
    diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py b/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py index fa1d23c1f6..c5bd50081c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templatetags/ndf_tags.py @@ -37,7 +37,7 @@ from mongokit import IS ''' -- imports from application folders/files -- ''' -from gnowsys_ndf.settings import GAPPS as setting_gapps, GSTUDIO_DEFAULT_GAPPS_LIST, META_TYPE, CREATE_GROUP_VISIBILITY, GSTUDIO_SITE_DEFAULT_LANGUAGE,GSTUDIO_DEFAULT_EXPLORE_URL,GSTUDIO_EDIT_LMS_COURSE_STRUCTURE,GSTUDIO_WORKSPACE_INSTANCE,GSTUDIO_SITE_LANDING_PAGE_LOGO,GSTUDIO_SITE_LANDING_PAGE_TEXT, GSTUDIO_SITE_LANDING_PAGE_BG, GSTUDIO_SITE_LOGIN_PAGE_LOGO,GSTUDIO_FOOTER_LINKS +from gnowsys_ndf.settings import GAPPS as setting_gapps, GSTUDIO_DEFAULT_GAPPS_LIST, META_TYPE, CREATE_GROUP_VISIBILITY, GSTUDIO_SITE_DEFAULT_LANGUAGE,GSTUDIO_DEFAULT_EXPLORE_URL,GSTUDIO_EDIT_LMS_COURSE_STRUCTURE,GSTUDIO_WORKSPACE_INSTANCE,GSTUDIO_SITE_LANDING_PAGE_LOGO,GSTUDIO_SITE_LANDING_PAGE_TEXT, GSTUDIO_SITE_LANDING_PAGE_BG, GSTUDIO_SITE_LOGIN_PAGE_LOGO,GSTUDIO_FOOTER_LINKS, LOGIN_WITH_MASTODON # from gnowsys_ndf.settings import GSTUDIO_SITE_LOGO,GSTUDIO_COPYRIGHT,GSTUDIO_GIT_REPO,GSTUDIO_SITE_PRIVACY_POLICY, GSTUDIO_SITE_TERMS_OF_SERVICE,GSTUDIO_ORG_NAME,GSTUDIO_SITE_ABOUT,GSTUDIO_SITE_POWEREDBY,GSTUDIO_SITE_PARTNERS,GSTUDIO_SITE_GROUPS,GSTUDIO_SITE_CONTACT,GSTUDIO_ORG_LOGO,GSTUDIO_SITE_CONTRIBUTE,GSTUDIO_SITE_VIDEO,GSTUDIO_SITE_LANDING_PAGE from gnowsys_ndf.settings import * @@ -61,6 +61,7 @@ from django_mailbox.models import Mailbox import itertools + register = Library() at_apps_list = node_collection.one({ "_type": "AttributeType", "name": "apps_list" @@ -136,6 +137,9 @@ def get_site_variables(): site_var['INSTITUTE_ID'] = GSTUDIO_INSTITUTE_ID site_var['HEADER_LANGUAGES'] = HEADER_LANGUAGES + site_var['LOGIN_WITH_MASTODON'] = LOGIN_WITH_MASTODON + + cache.set('site_var', site_var, 60 * 30) return site_var diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py index 2230a47c94..69c38c6ed9 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py +++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/__init__.py @@ -9,7 +9,7 @@ from jsonrpc import jsonrpc_site # from gnowsys_ndf.ndf.forms import * -from gnowsys_ndf.settings import GSTUDIO_SITE_NAME +from gnowsys_ndf.settings import GSTUDIO_SITE_NAME,LOGIN_WITH_MASTODON from gnowsys_ndf.ndf.views.email_registration import password_reset_email, password_reset_error, GstudioEmailRegistrationForm from gnowsys_ndf.ndf.forms import UserChangeform, UserResetform from gnowsys_ndf.ndf.views.home import homepage, landing_page @@ -18,7 +18,7 @@ from gnowsys_ndf.ndf.views import rpc_resources ################################################ #Middleware for login with mastodon oauth -from gnowsys_ndf.ndf.oauth_middleware import test +from gnowsys_ndf.ndf.middleware.oauth_middleware import test ################################################ @@ -29,6 +29,7 @@ login_template = 'registration/login.html' logout_template = 'registration/logout.html' some_instance=test() + urlpatterns = patterns('', (r'^i18n/', include('django.conf.urls.i18n')), @@ -245,3 +246,10 @@ 'document_root': settings.STATIC_ROOT, }), ) + +# if settings.login_with_mastodon=True: +# urlpatterns += patterns('', +# url(r'^accounts/login_test_view/$', some_instance.moauth , name='login_view'), + + +# ) diff --git a/gnowsys-ndf/gnowsys_ndf/settings.py b/gnowsys-ndf/gnowsys_ndf/settings.py index 9e0ca03354..bb7239568a 100755 --- a/gnowsys-ndf/gnowsys_ndf/settings.py +++ b/gnowsys-ndf/gnowsys_ndf/settings.py @@ -428,6 +428,9 @@ # 'django.template.loaders.eggs.Loader', ) +##LOGIN WITH MASTODON### +LOGIN_WITH_MASTODON = False + MIDDLEWARE_CLASSES = ( 'django.contrib.sessions.middleware.SessionMiddleware', 'django.middleware.locale.LocaleMiddleware', @@ -448,7 +451,6 @@ 'gnowsys_ndf.ndf.middleware.SetCookie.UserId', 'gnowsys_ndf.ndf.middleware.SetData.Author', - 'gnowsys_ndf.ndf.oauth_middleware.test', # 'gnowsys_ndf.ndf.middleware.Buddy.BuddySession', # 'gnowsys_ndf.ndf.middleware.UserRestrictMiddleware.UserRestrictMiddleware', @@ -520,19 +522,12 @@ 'djcelery', ) -# AUTHENTICATION_BACKENDS = ( -# 'registration_email.auth.EmailBackend', -# ) - -ACCOUNT_ACTIVATION_DAYS = 2 # Two days for activation. - -########################### - AUTHENTICATION_BACKENDS = ( - 'gnowsys_ndf.ndf.oauth_middleware.MyCustomBackend', + 'registration_email.auth.EmailBackend', ) -########################## +ACCOUNT_ACTIVATION_DAYS = 2 # Two days for activation. + # A sample logging configuration. The only tangible logging # performed by this configuration is to send an email to @@ -1019,6 +1014,10 @@ } } +#####################MASTODON######################## +if LOGIN_WITH_MASTODON: + MIDDLEWARE_CLASSES += ('gnowsys_ndf.ndf.oauth_middleware.test',) + AUTHENTICATION_BACKENDS = ('gnowsys_ndf.ndf.middleware.oauth_middleware.MyCustomBackend',) # Captcha settings CAPTCHA_CHALLENGE_FUNCT = 'captcha.helpers.random_char_challenge' @@ -1072,6 +1071,8 @@ + + # ---------------------------------------------------------------------------- # following has to be at last # just put every thing above it From 669967710d58a1b04f566314ad4875ded8228290 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Tue, 10 Apr 2018 19:28:11 +0530 Subject: [PATCH 555/766] New images added for slider and in login css fixed --- .../ndf/static/ndf/css/themes/clix/styles.css | 2 +- .../ndf/css/themes/metastudio/styles.css | 2 +- .../static/ndf/css/themes/nroer/styles.css | 2 +- .../ndf/static/ndf/css/themes/tiss/styles.css | 2 +- .../ndf/static/ndf/scss/_app_styles.scss | 2 +- .../ndf/templates/ndf/landing_page_nroer.html | 91 +++++++++++-------- .../ndf/templates/registration/login.html | 10 +- 7 files changed, 65 insertions(+), 46 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css index 2411a32adc..ebba158afa 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css @@ -31364,7 +31364,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #ececec; margin-bottom: 30px; font-family: ubuntu-regular; - font-size: 20px; + font-size: 18px; } /* line 8217, ../../../scss/_app_styles.scss */ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css index 923eae79ac..54c1ac4292 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css @@ -31387,7 +31387,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #ececec; margin-bottom: 30px; font-family: ubuntu-regular; - font-size: 20px; + font-size: 18px; } /* line 8217, ../../../scss/_app_styles.scss */ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css index 86ce526069..80908de91e 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css @@ -31688,7 +31688,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #ececec; margin-bottom: 30px; font-family: ubuntu-regular; - font-size: 20px; + font-size: 18px; } /* line 8217, ../../../scss/_app_styles.scss */ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css index 923eae79ac..54c1ac4292 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css @@ -31387,7 +31387,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #ececec; margin-bottom: 30px; font-family: ubuntu-regular; - font-size: 20px; + font-size: 18px; } /* line 8217, ../../../scss/_app_styles.scss */ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss index 0997582732..26efbe40b9 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss @@ -8211,7 +8211,7 @@ $module-card-lines-to-show: 3; margin-bottom: 30px; font-family: ubuntu-regular; - font-size: 20px; + font-size: 18px; } .about-blog{ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html index 5c0aef1c55..4b26773505 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/landing_page_nroer.html @@ -144,16 +144,30 @@

    {% endcomment %}
    -
    - -
    -
    - +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    -
    - +
    +
    + + @@ -162,12 +176,14 @@

    +

    WHO WE ARE

    - -

    NROER is a collaborative platform, which brings together everyone interested in school and teacher education.Initiated by the Department of School Education and Literacy, Ministry of Human Resource Development, Government of India and managed by the Central Institute of Educational Technology, National Council of Educational Research and Training, the Repository runs on the MetaStudio platform, an initiative of the Gnowledge Labs, Homi Bhabha Centre for Science Education.

    -
    + +

    NROER is a collaborative platform, which brings together everyone interested in school and teacher education.Initiated by the Department of School Education and Literacy, Ministry of Human Resource Development, Government of India and managed by the Central Institute of Educational Technology, National Council of Educational Research and Training, the Repository runs on the MetaStudio platform, an initiative of the Gnowledge Labs, Homi Bhabha Centre for Science Education.

    +
    +
    -
    -
    - -
    +
    +

    ANALYTICS

    -
    -
    -

    GROUPS

    -

    {{group_count}}

    -
    -
    -
    +
    +
    +
    +

    GROUPS

    +

    {{group_count}}

    +
    +
    +
    + + +
    +
    +
    +

    eResourses

    +

    {{ files_count }}

    +
    -
    -
    -

    Users

    -

    {{author_count}}

    +
    +
    +
    +

    Users

    +

    {{author_count}}

    +
    -
    +
    -
    -

    Activities / Schemes

    + {% endcache %} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/registration/login.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/registration/login.html index 11df2b4e37..b07039212e 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/registration/login.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/registration/login.html @@ -24,15 +24,15 @@
    -
    -

    {% trans "Log In" %}

    +
    +

    {% trans "Log In" %}


    {% if form.errors %} - {% trans "Either your email or password is incorrect !" %} + {% trans "Either your email or password is incorrect !" %} {% endif %} @@ -67,7 +67,7 @@

    {% trans "Log In" %}

    -
    +
    @@ -81,7 +81,7 @@

    {% trans "Log In" %}

    {% endif %}
    -
    +
    From 54eccdc3126d528ec6472427e19fcc858be648c1 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Tue, 10 Apr 2018 19:30:28 +0530 Subject: [PATCH 556/766] slider images added --- .../ndf/images/landing_pg_slides/3-01-01.jpg | Bin 0 -> 1295500 bytes .../photo_2018-04-10_18-11-51.jpg | Bin 0 -> 77811 bytes .../images/landing_pg_slides/slider_1a-01.jpg | Bin 0 -> 1204507 bytes .../images/landing_pg_slides/slider_1b-01.png | Bin 0 -> 1643142 bytes 4 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/3-01-01.jpg create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/photo_2018-04-10_18-11-51.jpg create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/slider_1a-01.jpg create mode 100644 gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/slider_1b-01.png diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/3-01-01.jpg b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/3-01-01.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f6afd4ceb4e335ab1b041e7883ddcf5dd220bf9e GIT binary patch literal 1295500 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

    HG~sa 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 z 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 z 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

    P<77GpdR*Nk2X%_4C?h^0z9+K?z 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

    W^-=YG4 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

    3zc7RQ>Cn=qU!r}}-ZIk=52sE&rVF`?j+XS-^w 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 z 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
    &z7Nhedj#udf-cQA5yY8V*l?yUA@- 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 QAW)tVGbC?imp8a0H!FJ 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
    EzQ-6<{7-Qv(C-KBJgbR*I&jdZuPl!V{W`}y7n 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 literal 0 HcmV?d00001 diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/photo_2018-04-10_18-11-51.jpg b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/photo_2018-04-10_18-11-51.jpg new file mode 100644 index 0000000000000000000000000000000000000000..22f6a9ed8389c3f1c4473fa9b8a4fd26edc9a460 GIT binary patch literal 77811 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 ~wHuKM~P5U$?7r&!Uu%<^SO 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 literal 0 HcmV?d00001 diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/slider_1a-01.jpg b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/slider_1a-01.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6f0d6081daa8c41f54e900f2a5e0c6170c108be3 GIT binary patch literal 1204507 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%0D?P|_2&R6RR849z+2=HVqzghH2TWfJX%k= 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 Tdi`{Pv&@tlL)qt@)!uK5 zp??u3n9H9Fm`sc?4haIsqg+C?{Q|^QqT)!4oUZJIhEm>o6&Vdo_~WdA=29Oi!=QnguQiCl+oKZ zItYkLDJY#%(%mf$5)y)>bPg~eo_B8@OZHw@i9L(b3*%7E0F-+90Hd(ZmT zIqUp8Yt5`@@7ep_`?>Bb%)YX5QtHpV)_=^TCom8wz@>}-V6CgH|1&qoribX6q{B)t zNXEyekdw>)b{>)tZnr8nvEGBqClO6>%GvdO{q9Nwk2&p0W0

      d*v9%H~U?gAS&PT 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

      8-b-uWA^el;*etWtgE?~ZMx7tJ zw7DvL$rV|yH7BS?N;sQfkfftnTOus7SU78uV+oUi_@|6deGDt8@0>F1Up68Eai;J{G+Mg(!q0ZqvJE4;hc9St+@p*>E-*O zNU%iZw>+_pHNx|cRdue7?JMPWMv6m5b_Ogwys$~z5*y~B5eb%ihe!EV(%qKbMcPAY zgokcn%|TRU4%bajVqM}VISMpKL|4}P-dtUyW*E=!v4^mm^NJx7i&0@Mixg9eT zaWDN&r}Bfx5rmyPJZh~Q_74TkgWugZZeY-)=KIQn?0D{E>j%}f_E{IZA|cAF&Won9 zPAZ#*H?M@0GQOV@JGDE$j5U!g*q8c;B4~86I^R{k48qN4iE>&I7J*Rnb)YH465sOT@z}`^jkU)X+~h+{==ch z-Wjr=-BH~6(jM%HKf7{A81$yx_J8-WL?+@N*e zW+D@-#4w=E?pIeev+c6nxF^(YJecjEO$%B7EXpO_jo$#?JNiH|a^zTrW zR|+^Q&p>H|`?K9!ZVXB4?$@3Br{yNeA{75nKERt-%=o#tovnk&^7b!Q{R0KG_)Z!2 z$4FIeD{3@~kC!@r?FCuvweoaJ$!5lO5|Ga{?X+$VL}qoF`eoYI z6R32NLcF!teY-6|*w#!gZwGy?2<8s2frWxF6<7fI<_%RH@`%5<*BR7LzEiIV@8tqnXSlVH{6M91_#sVR{&rI=RB zm^Kf6(`z+Ls*iF03{^Z}&*LIQLBX{(Z9k7S8foz&H9fwISe&XeKF}SDz2JKU`?JET zhZXrQz601!PRLG!>^|U0Siz-A>t1Kb2Tw2>sO{P*Onh1m)18Iu(<&4DJkmRL^d0Oj z3Lr+uT-$4+MZ_pL5O_t_x4xE*$AmePb zL*3maq+R&6+e=TgMbbTKU+Al#Ro=4r4_kj4eLsAO5YyO~C!%lUzgHOlv|m8|>&

      )nxi0lHJ4*$;EJg?TefHqp)0^s6Djz}-!eg&$9% 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%0Avo)whn_5T&x#!=!+lQ$R?k=gI(h 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%0D?vpq(|%9mR1p?Y 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�!}`0Eo6O?s6gReJAILg*kRp@$xd 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%0A?g}k%&95v7o*6F>boC zod3!@FjsI$8&_)}?kppo+TSDC@eHkiH;n5mFlRFttubQZo7ki|+)BOc;+WL<#-9CB znWsackQI#Zv;A@PPuJoPW9q6rN}g0mk?nHC!M!`Tw!M{pzA<0<@gsdHN73cG|NcCm z)qOf5n^{Z?lVC9?Bu( z&MJfDK=b$V9!gm!f!P*qRuArQ30&6xAk?)ZqJLHwRLANn)!aYM(McE%3@--vqL2|Z zH7o_!4u^kpeODyV8*|7%d12cE5-nS0Et#fOP>SqLFim#-=E^ONFl9EO(NIsedq5$2 z_@nyW=(}r>{-x0K4M&+=?Zb9^emN|cuv=ps+0c(tgke5&*=8~E+S)GNI!l|TiKbB3 zQN^eNS!{Tk#zV=E#Rkp%jqwv{*roB7T~SfDL8K>iW`Eail%G8(+ABh{RxCj&y^Mpg zJhNj7W@Iu^9uT$V;YN`Tp*t0Y1hL=C(IV){E_eQXXN7rv>J=f{bpayB z$)8>U3b))vlsxWT%ATz+7w@24d4V!^Pd&VXnVBa+nSp3gcqn zrV);e`L4C>Y>=dL$+T5^OURSXE6=UIjoBeLsni=*-~%8^KkpF1N}n^3t}vTS_T0qX zp2u3BqGRt>pfy9bVn=jppPZ@d%a}-=aIT~DIhUlKj@wYt*CppqvOY|5-23_l^a#ps z?tvJkTZ4UrcGXa!=1Y%whKG)GP#UzRIxYfnpKI-P>s3kjERU`x$S%JGA&d6Rf3f(o zo!;}!YG%7wNiEox6vGvkP!z%?FlCPa1kXgKkip1a0?5q$}i6{Jwy2h~Ku8Kr33iCNB?a?i-?U z@2}V5iz;^BZ7<BztG*vAtiRJT3l&P7fe2@@?M!2!2l7>UA&1d!r;Vu-wXrocBy zed;?KYOF9%X}sp{XlYN`@`}G zR%53rhQ*>_Q=TZ{$#@F6-NT^co+%DVW|_Z9oPUMGj`rKBp1nL9YF^uT0K6~j1chnk zAYVWVAy)U%twhLE_^e0MhgWzN2cRntjrbmDb$yxk$SclW*DEqaf%K!{)0WpM#YnCS zfFvnRHdA1HYN5BQ)6rqz%1DRfGhWwY``Nm_Ps~dm

      (FhE2b?)bw)k2THdVW?}fP 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 )86i|sE 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

      ~T0$7hwuuJC9lulQ0-=hYXeG8} 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

      `s3o|_UIUr8^RkkGLKf;=j(aLNi!kBnxkE)V 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

      3HsQn zX1yVW${}deXq-?w{Q|4k9K^X^i0Opz;15Bsgn3RB$6)?Dmo>P%jF-~&G%MI19yiN5 zORwANYWq(}!C$vo#1nG1Zg1YeaYF?Zxqm(jx4t_&|9tsGHO4WhCYDJ5R%){zUJwU3 zd0B2d-(F%GbR3)KB*}-0*6-ZxhaenKUqJi~uKtYXN)&Ud!u1e#HD%`P0zy;=pqFch zFZcrW0ps?;+T+Ww;P8x8M~RfZZ$)bzOdIdf;u01|(L#EvE-b5E}pR9<2! zLJNO|IH5}su6`QvEhhfg=6dK^+>VFT`C<1TnEGuW2MW&|()mY#wxri6Y{&aWdWXhP zC4-JveYW`m^jsiwU2FOxG6%L#UG&>&+&W!T;5x1pY;~)4=-)j~uU#TPaBB;tHxL*7 zaw;baCr6@T_*M^rAlMA~J#{I5V}v9BC0S$yAHN;%Ah+*Mk*uY2xkPP*_#`N1Q3=Jb z;Nfvkw(+P(F%dU#7@<86={}!T)g=^|K*asE&1cLGf$h(-bvG`D9=5)0j<>frwJm`4 zC!ZNmswOaj9fhUELG)z{c&E2dg0)-s3!Y|@$@`gMUyL$UX=2NfX!ROP0%2RfuS+V) z_gFukG;Z<65mQ*tZGpHS-v(Lewz^ph!?4INi%U&AwzDf92ootJJvKVwyYd0{Gzb6b z)#RR(!U%a3{aCc^mvUl3(?-H^Ph#+4t);k*=}aN}59fIkLFjYTHb#ih+D$^8b&fOn z)bE~!+^N_0Gd&n%yH69J}uejCNVmbLM(A%BdSl7T#e&MV6ErLfs*mG>k2O!KhCuP0FU> z@6~o{@3II92VJ0qk4Mwfn#XNAn_-T8EH41O)4h{zTIFxgZ=jlwg}i%Xa(Pw!)bf+) zsQDc2!OHS$;aLFIRP*8mB2d(EEcqNK)^G`7o7UOt+J^0Jm*=m2MEksHzmobt(v!z8 z$kgGvPwjVvHI}3aEx%A#_rEu)@vp10yy3Iy{{Y|$a3W*x5Z}qZ*R+AyTmPMRQ9`Sq zNhdM>rxSNtZ&FC>A#5VuqQBLs!)fPBIOpRuu#!g1ym#YWVDj&6)qLPvLRSo4q~g~e zaRZd)eHSHnkr4>Ts6Ryqe(j6cg^>B<)GH}sY+c0l-acN9a{g5D=cUO|+xFm4&jOLf z!2v%ApcIa-xUSQ1q^VnlFgtmA(07mvRYJduXxmK0|o7@_9Z&D0uZiq}Yax8Ruo zg9tz6epur4mzK%haMa2$_SRqV_%wgCI5&2+{{25}5OI8vD#18e=*;z5N<87^IsCQ& z`xL=hPaZCMdwtV-FpQDj!UKn`DMhDWeE-&cM)?^w+LB@HR{A(Cx-8*!fl`A@xzp-? z)X-rPbyW19W(T|9Z|r}tK;6HRsRrJFd~mQ+9i>cB=G^+^+Gc-XsZuOnf2!Mdy+mBW zvwJm{94h5Sc8~R4wQiD#5WZ0P^k+>P+iW5*drh#p(g@yW`H*DVzPmBY=o^cL3w*t* z^)ctv{d9t#+hkd1fo_gap#;_(+s46aQ3~-67pJ=}Zp8$#<9=lawZVK%<2mq1vZ@D2 zh`foI6I1IzcPv0f<%!lUG+T=$=Y#7_?ABpCi-RMnVc4uc1DLzvR3{_6fI1@*7iicT zUeF)76oufAJf;vTVI$*|!9~V7-VUW|=Y>DnE0lmZR*=gkQ>^m&kH+`)+g5Yi09;`C zguguJLC@^HP5H{LNmW2C8tQ#V(z1wda_sdSYI52+lD<&2{#J1@w19m;$b$;^9*&wKogy)xm? zff(ir_I*AVwp0Hi&T;-XR$H{E0HHj2FMfuFH_wJh3G|5t@=yYpgg410?Sg-kb~zzQ z-Fu4YU&JTDIq=-SBk|B6BBVlP$F)!Tb?Qxy8~qnnao-GvK&f9o-}YKOJix`N*G>l% z>?a*SZg!^-)66~a5N9mQ8{A^#)9`S|NX#3SpjJ>%VNxu5btI1QlHcxV5sjqNM?~W` zY^>F7vD;cUuY7CjIZz4)zU+yI{Ue7?#`3JApYz*!EeM_@&9rY%MNmz~!F4P@M-tcN_8e80-L_sh6B{WB{C6~Y+?FzIYCM8bj z-&i;F@uVX@fMigqSdje89=on7mE+^Tqn0bj#zBNs*kVq7d$j<_Xz78OELuwM1a@3Q zO}D~7rB>By^V`+XFzntbI8`P0O=rZ`gV@vG{9M-qucM7`bZ113EB3Xh+f|$u^Sq`Z zAT{ic?5{i-Sd8Pejlj4Y9dx=S6%0gZ&e4X@{$o`Su$J+=mUcS0E~3FwM-kgz^=t{P z@t_Q4*gomsJ%_c6UG64sLOk+Qj00#=2-N23MRytpuSbaH>h9#+LdpEr&la|_$~&k) zaAINSmtLNZBW$;l!C7)0NY9Q}@l|EyLH#~^KZ<0#?s5Bpsa3f+=Y{n9obH|TL)RQ< z!~Cnb+v9WvFK1hUz;~1&pG#h4YGYpoYEvPOh0wgUAP;AKCmdwhi0)(6ng@Ht*j}`y z3t)K#lkBQWUT_BWzgN@v-L9S;xn}VfJs@kUQ zFSC1fZOv2Ia|BGG%Hn;4p5BEPm z#tMTmQ+9KF@?5q*yz2+#C6_ZKsd^p$SP<+go<1xgyqS!nhmwpc9~fmuobP$XOdM1% zLZ!R2yetc%VswM@3D{zIYBL|}9R9C&!pMa5?FV8Ifhpd&9fqrlRCs|`;V8YA0C#E{ zf;@G999wwK9x`ZDX>-YZzm%Uzalt?LoU{^c20f4arDiP0*(-(IAidE^jm=X>1 zyDcj%VwKmFaD=t`47^@O{gkjFaq+}+uqI@Wapnzp8x$ zZtMhBWC5;dH^oEsP3!dW;5i379572MbtEafDisv0qBl zMoAXO5@RF*ybi%|9UE^U{?E5u23{NO~~A)!u?9{iN`^)Do9X$PGRclq`B5T$eJg4{quC!lVBxy zZV<2yc^|U)z2klgzB5Jy(F@6^tV=fEtOafu5*a7%`97~=EI01K)$jH6U*Mn57Rk_t z%RC6%((7Nx^f|oT*gkWLzhO@Hk7%fBGDlbZqGS2}YlaG{sxbHE>uHXnO}iyfB9ePa zz)jiX(8XRct9bg~u5>HbLr=^zUl|zK+1_5k=0U(p5#4Qc$lSt;7&^8_LTY4Fab%b6 z#EVklOGz-SXik?nuw!dwfZGhkErFGM>j}tqb9^x0%#0i;62>+<-~8kC78i)p0$57) zUeIdcGwy%CV`E-NX#=Jw%|aLty1+QtI2qx0R-gCba@Az*8(qBC`Nk-dI+RQ2v(W0! zJBkS8wN37v3+|-)WMXP)tT1WuYm98n`|UU*8_t2~=UlcD@2%01%*1dhsA(%E?Fto< zPMXjOHgKczv3`^?E?;Np8hSWV)Ub1jIPHE^tI6ZFRI ztxHbI^>)pm%Y`bfn*C?*o!nZtO;lCeULbr(UcIR@8JLv>O>OL?Qk&h!dUETo^BAnsAk z_%Y}F>zmLD;>_S{7y*BpF~6Dc789o3=hX>!D5s3XROdQEN<2!YqC@04{I%z|G~SYg zjQ8~P48j@+34aDXUzSU_^+*8kh7z^&wnr#g-|&@?bVUN6NfNcuXkD!G#C@pM0uOSM zdo)E^eTE5(+$#?{0uSqAr0mXonYaQ=mlO`h8D~;|sg&eXyxuJj{+Ys4|4w>Rr0Jz> za(qyN;9YR(Q!F@WJXoiS#kPN>Rhvi@R9&66`~uEc#X^3v$orI{xEh~)kQE@Zh|09k2D>y!kXdaZhHPru9%Fw>NPTH zRMwlrqXoQJ{at_~e2*ky!yuTPdlQL?zC?A1Bur7tcTq}H5%W!Q8d?3Swa~rk@K9@f zA#*Bxw9z^lu-6^8MrV7}Ns+N41q>#vpr#p+Guc`@zx?GMOPs|$jBVOIJIm$jMQq$2 zPFzr=`o(`T9a(ZTnS^8AJw;;e-S0d_jpJ|4ZY-vLSvSuxF~-c0@k8t~kICI)BTQaj z)Vkr?6P&IKg{jSKx4EX*P1k;}ZA2>x!wYXH10`#hX)(`lngaPJdB2D8{IJepRk3t` zWZ^IsN)%moBQtDqVTb*Cr-f>%1w!>&_}IPJrTzAEN#QyD#5qjwV`qqH&Zx_GWf-* z!~exEqYB50gyAzuA=@NFfILy3si%$!PNWl#Wo`aG znhnW9pM&(nkpA%dY5G|eK{pHHCd&F-|KzM`Mv@V!%-l$~dUQL#B}&PAxnB(leedEK z(QH~)J=+w*kp5Q)USF39{!acLVV6y0hCs+2`%mt$j4NW*e2o6->psX8P(V%hXGylU z6$N4arm`d&7I8tEBR0Ir8-|#VAJf&^KxsSx)Z1ysP*yUz;PWgo}%#y_lctSA_EW0{>m3!$Q=6bP0UK0<4lS<5gY4*o>tK1TB5uI=fCHE)%%N% zn<(`9()RN-c!qJUa`e9c7)V0w`~mp3g8B`0(Ad*W4JoBTq5v#kE@5k`^P1*mR*?cg zQ+ypZ$I>UAqx5n*0<0#DAU>$^5%dkJ-nF!@vtv6=U%*>)*}Oa2^nf3b3sUiR+{WSw zY!WDvOEZp?P~9bNyt(2aR{g2G14T8Vc)YKk!PAu^5ifdjEq2Mi4khCjk6{Kd{r0&D z_H1bEai6SVu!m8$sVX2xN)n!ljYnVcWkr6A2oPJpT3ZDk0}`0@NEzI zvfue=${hPp(^=A+X3CA`g`e1(M-gI5$d2A{{TQMjV~b0`GY{OPGr%M;)2Ygp(v)sG zZFSQ}=jD0fM&k*Coj=4qerbPH(ZdBj=B5>tOX-P*?B@!y!ku2V>`Bh#^c)^)Ta|Nc zOoU?zJ=~LdLY6~)*>p6pjGS3fh5NUA=mfO(G^s!0tWe;z>qrro3bP+TjHjjj&BeU2 zi(you3|%8f=d2VMjgYE)k%^hA{d6MtQw(%kD>7W~#ZX5y8e2t1F4@)Vzd~h{BriO? zRf%-$HRykR7#XJyJS6?8Xb$%}JH!K7udg5@FZp8uA2%28KR~;`N5>fFeUUp=i9qjY ztS6U(dc&9B8!+(X)UZaLi0G4Q>K1i6`G-c=E@V%a5jEDNyfGxgxA4+Q_*Xjimr1tf z%6;Bt5&GFofEQ=0vKH|el$L5w!sJk;py}!DI;EvkdieReJixw`jHUG4DlINs^H>x% zFC6m*PKylKv=^V3gPR6F^g+y_lH zNlk)QQnW{jply{8yWxX{IyXBG(2_^Fx!SGWwMa>W`U5&=pVif(Pe}Mz6s&00sj2Qi z1f=iScbWp%{|xlor=Ykud?O5*dl_>93V=oT6$sfYqcF=9Yi2awnLTB#+$Y{10-rgP zDeK?RJvEp<`Sw5uu8L0rZwC5yHB&wzl)SWYDO5{2PCd9HHmtXm9K5Q5x8iu zk7#PLC=7#JghylM;!$lmpx{+|LwfpN_*d_)3nEXPoQev%oB}>{O=rvv5o&yH&6+41 zm0!XiLT2;LzN1yWU{501mKvI7m}lCZ>~>lTKg-(nemV&et(b>5~? zy6Xl)gxx&<2z&Qszt<4J%)(X~Y@tnhmk>wrQIB}B;+>T(Q&RHYLWPYL7A5bUaOVhp zo>S;n{GiZS(cQkEo}qUU!}P1Ltu_A*GYjH4EHr%-o}iUf(SpbmV@(3*GNYP3nb$CV zcvn2`U64!!XFm_!&QUAdi~S~M*l$>DCRtB7R)*_oC-%DWnLG(ulY8&Al`nsmEny=K z(u##bX_qe+;p;D>^C5|Tt3PXuU}0Fuo5k#LKe3eoOLf0NkKaH$MnT))+&~}V#ezQQ zwh**D$4%E1FI1}UYGAH2v%1l()z$iSy&p-fny`>WUQg!1KD~;vV;cV&%=d6U$$yC* zBM$FqA=>Bin$A938{R-X^M>SuK5D&wjW-!;wLKVJ8+P%_Rov^DNyt$7 zzr%WdC)1hl^(fuBT@$YkC zkd}|~=Zg%<^P=pDI|N7yS$Q0J`ECDzXQ1^?eiLl!*oIH42r5nty5nStV2HY;rwRTA zO0sL4-}HY6d)7h8N@;nqVJR4)J4&fZOdDY{aJ}5(l+>A;6ex}{nnGkTp#BB50--9Q zl~@Uhp=PVfD&$JIMLi&F-BYs(9AFq)XTrNj5M}+Aq$lgx_V!ip-wQXwHV8`j4rtj} zC~y;Z)?+3KkQI6gvKUn|cRf`-h0V~~SS^AuIM`qe$Z&l$&K)ebrai_ccl-lVx8XCw zGI0vV#I7B5Y|ZCm;?AacVOUV?uyW&Ld#?xWix$#dE<7nV3zJ`v3U?A}eXpNOl@~7V ziIWA@`H78H=PL^KsQ)zY5oM@(s!BluzfTUh5Sq7+CTxb5^p19VpqphWWp!k_S9&ig z`Tj5kVz*0ThxKlrFr(Q#R1=lKR73v8kzw{lm?o{2tqE=LB-npgcjn^$K18BsX}0SH z@qzRU2efWxqjeFZ>Lw2GiM=MnGq!t6MK^~S>&yyfrMPudT6GXB=)A|s0S{UJ;Y1VW`=FycMZjbWSZ3J(bYEm_ zyE<2XbL7=O0@ai@42p0hHf(U_D&(ArEYHj(Joo_MM{UN*Q0wY>n)F%*OJd}Y)2?Pi z4u}mV%(VeEDbn6ch|!i&qbW*O2?TUk$;d4+mwU>WKp7R}19B(-VkO$>u*%R%Px~Gf@#mUF>LIb1|SCPe85{ z^jQ6e)S~wbgID`&*2)A{Px!XNYC=tejfnT5-cQ%fLL(d@_ZeeFI@!9Ffb)t{(6b3M)qJ}K`H#fUtAfaeX_R~eX`all<5q=21JbLscpA!%&XymJ zYm~)M=M|?=z$%VJQzRkU>Xg=k*_FsED=*JC?5ynW+`#o{COTyIhD)X@1h@}--k}NR zcF#+BtydoY#(+Xu-57k*bkSdi_W7y~>~>WSyxysD|5DCpBJQCezGel(+80Ps$=1Yo zI>JmSBh{VdGqj){$i&kO8EJn7A;bQo>ON8yT_H&`dM0*fV^O5Y+-90M$CWZW=_A-A ziQ8q|)Q(rRT9{`$&c_|Pghn!Fg$?SFQky?FW4`sZ3BjQIsULKH*unM&;g7ZX!|eU@-;;F({m z#BAbay0hKhJbLV#KN=gWZSE^D)z_jR6S1%h6y3k=H6%5Al-ZL6b}q{?(`8iPKnNssHI8%&KOdsD(?p_xJw zis5>&46fzYW1yu|PKDrgFMHn2|E_P1Ot*YL(ic~ABp&suZZkXGVYq6Q9DVk{Y=%;IkFvTO==1u-{iQM-tC}{l9m`96{Nx>4 zUG+|S5O_ChnN0aB@js>;b-r2@W^Hb-L1=dWZy;6hDc;QX)#ss7*{`Y$+OIm4e5hgd z7NjiY$HxG%XN3HMtUb8FBzZT`-03DRzLeaJgO^zSDW~=6w5a(HL1}BOwPNRq`(+ni ztBa=0+$NYt9x_`<-AUFpu5M(Hpbi37IZjsZzCZLTb`ahLeiieUxT;XoGWt~9@O=4H zo*zwkymYhDxHqUk!%CqG`MaC=d^;YqG3X!D=hpGkPk)Qx6AEE-MZ>ME|K!90uih}4 zfho!-HhuqQ7e@aqYQG9E?{qr8+fQzk>4K@K9)|BQ-}W|jF@~_;E^ujllg6E(b_(l) z3QasfyC^zh9H-w{*)novAY+1PWw{zEo5b^^a|AI1(u?Q=&}y7{n-2QD{r;XvJGwAA z31V<;|8*ez&2LXHxEeZeqcqcZ_#;*;PBzmG;_X>fRf-nf6fQ>>y*8(06mW!XaYvaO z+mlJr@x9ufJ{|lw*L@X&`5_(^zgtQmM;oPpym$)ezBLgY(Rr#AAjJkl(`XJNi zqr@Sat?$Xb)=L869CPxDZ3k6TSYRVI<-V368Z!o&SII^&>+1b(1@5L{6qscReH>i- ztq{zOmFd{;{e#G8kePCe|567qvbj)FKp>{P{f>wdxW}MB!yTum6!%k<`<-K7+B9|0 zPY3%crJZxXz~e)|tNR=ArSYZunOm9S=E7lp?YUoFOner9=yrj+pUC@`n+#kM<_vW87)|5#Tf~Qoey)32p(AH(x~GLhAVjTlnQT=53*I7 zjyTh=?0uYS_^D0o?d`SsL8jYXLwee4`Y`7~wOo)(2R@1N0T*ZNc1qAwJ`*qY-NXzh zxiq{$l#H1YSw5|EyYw>kX1Sbt+(Zer^l!;}6`BU3t3R;HWTP6roGVIrPOiLB;oNCg z#$Eft`AXRZ-F*CpaIC#8U~rp$@LBHNlsx;D`WN8MmCO6o0foxiH2j8ocWb?Pj_Vsm zK*^9c;mmdXFRXV%LW34zADee}jgt!xb;oi6{Q`5p=ty29@777GI7kd$gU5$#cw;*M z0Y$D=dR;xgEIM7)CZ@&LID|O)f9?adw^I;%tBaCRQzv+~v&3{Bjy)akc#0H{TbOSB`XCr38s5pD#e0h`tRsp{tnzM5wp+gOFq~jY6PnJbm&MtdPAZFG}wlb?J%KpdmMQkI>(1x9cIYO0VcTrY`6)X*$}#u zBnV=X1^!HF~=7BFBT~EZEf`e?yDR_bNnQdl@ zy+wg1$9!wCd9D~9(aa%EWxcT|X9lID84Nn#x|MNEb!5Q%seSx|Fv)n^X=mVxuf%(x zePuPRthB)dcf@PigedbUbg}^h5q3gUg|q*E74nhiGE-W)YOU|mt3a`yDF3DUuUKVy z3#FDyCdagJtW$YC8A#K=9k_R1 z4%Pm^Kqv{`l{Y9DcR4y zbxn;YV%O)}$36Ef_!Re-TD+$i#6wqF0{mH_y6!u*kWUuu^H%gR_aP3Q()d%zuxAHf zSIhkXH3_1p?uz1y@(UI|b?~h& zz@WBQ;FFrb-K6BhMZemF@8vk>+C|5Msje5>Y!uI4L>tqKxj=zpd5^vAKzS+CIo}*) z%R7Co3f9h<=}x!V9db&AhU)RNXW%1TMsQmr>gFC*a0yB=u>F1bA7#|cm62}y(3gpV zaC`o)Pe;Qj$Tf?ajCAmTtFJIf##utZ^xSEYoAGU6oKzy#> z&&?zArvC_Vsf1YO3I92w)yK`V`wZ>*vi!O67GuS;k_&C}y^w>a0rPc|?Q5k&7q;89e4x!W_QRHUhC@Nv+xCthe41Pj2 zD37cwKcf2d=ibVIs*(^NTJ_sjH=SPC*EFA6)`ugki7aD_-Y&_wav^;eqYnf2fQPNf&Kc2$u(Z{9G2=!b1T2CHFagN*B`(E&yPiN)L&oe&&Iy3ug+PpAqIJu%AxWkgE8Y{R)abHgAAbYE=YWbKZDv7>hP; zup2h(FdR8>YTtu<~&~XGkk3V-ua8TU$Ree^4@iGK) z1nM#Kzs5d7AjNSZh@a$&%3Xg1J15l>4WTxZRm~ssKFi}Ot9=52e`+(kYI52+^9Aj+ zs42Xv{e-GJL-$IjSn9`z&^j9%Y7n`CFhWFDvzO|SPz@AbyvgBlOiL`_V$FOpB!wsi0($Buh9%Jhx?kGKb( zfQNg*cI}(%mSw96`q!$$_8&6jhO7kL1b-n-lXEwS--tJvNF#g1<)*}*o<4q_P8Gq^o<>BPGH!;qMGBbw0mfJZACghu~N z^s|-hQ1myRp-Tq}*ZN?uK8!EYFo&CBB*t zfYkVo*@*@gBL^ol+La7*GRM3-WFUQZj$#n)g2k&m;`2Z|Z=J9uea~<_abb2RgLJ$* z8xzX#v#y1k66OXHC=3Tpl4IzPHj?k?Mig8#Go1h)oAFSG2>I`-HgIMxU|G9-k@7Z3 z_lmt2b!|=G`kw3F7a_^MQl6Fr<+QOnt^mx_>S;FRQKjosAKyBLO zL;psK8uAYhII`Ea#jC%9<&+(l_|26Qp0)~g<+z{;i+?IS9Qu1X$@`}bTx3h)r%b|g zbv0KyRb+KR|6wdf{CL_o{nPafH4X|#2yqFAKc)7mKTfFJT>HCm*Biaw_o{mk|5krO zsf_O7;n7NGmKLiazZCTX`D$L?`oXrkkFVbA4&u1g?`{sHCU?L4R!`aVAAOF;Zuv@; zT5rbhzay@AhVZY7oia6<)Y!>58>-x;eD>Nk10IIp)Gd2%=lfZcEbXO*?w>nS_R*S> zWnJIBdbuW0lS4nDkgm`IbDYVA4}BU!-u|r3*%Z+B(Sd9dR+v$F02}x%)=p?Wn?@2E4nJK0E>VIYOQSNNqqSB$DwFsd$ zRRM3eB^9XgG~0Ao$q}o%mcv5oycTIsc#5%yW&>05(8@9~4FsUB7sZ=id9u^8t5Wevv2eYxlK_*Nf`-H}Uv zvNhqgR4BHCqXd^?!YXh*Z@kU?H`#39k-ueet=8*=Y`%y5wC*1C@VsC&YT=3zToyuJ zYya+9jK&@zrDh?TT@5;TV7w4Fbmh+XFzd76y6|Z7KBnw@!0pe(!GDwSLtzgt*Geho~&;|r^Nc` z()yEVexOVtJl=3hn+vc?FOrjH1phL}Mk2eqARE$&_EVPiyvEl)?jb37Ixb&hxoa>0 zGe7C>(izr(mS{Ai|5ma=(|<(xTvT&A{+xkVF=0N2xu~NYZZ?>~a6b;v-=!_D)gq_M zQs7uhs2HUpby^6mCYlrnr%$VT(xrAq^VXIeU0wJBZAB%1y9j#wKm}Bu(^2cm4F5IG zm{RmN`T2#v<^Px-ky&*u&rt?TzyfM7;9^Bs7x�QjqDDfur?T-CO0=e8wjXIFHg7 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

      EPi;wIf$A=$P=@2^!b%K7h`BMS7%q7o* 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

    1. Sgr5^+ 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 mUor2tdZ8W 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

      VmpY~L3+NZN;$ZCMVOK`?65IEj(c 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

      iKuHNCMy-H3t~#3E|8g>Z*b>GlTqi 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

      &b&z<@MC;RZsz>f-g&TL28^8`t3h}fb; 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

      @8>_gEVn9Bon=ku-xLCXd?T(>VH0 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

    2. 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 literal 0 HcmV?d00001 diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/slider_1b-01.png b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/images/landing_pg_slides/slider_1b-01.png new file mode 100644 index 0000000000000000000000000000000000000000..4202c58d3abdcf107619f94c8b189cc14db397a1 GIT binary patch literal 1643142 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 hxds{+Qg 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

    + -
    @@ -18,8 +18,8 @@ *
    + -
    From d6a6a8ba5dd9500585f39ea5cf62e48f824462ee Mon Sep 17 00:00:00 2001 From: siddhu dhangar Date: Tue, 10 Apr 2018 20:04:23 +0530 Subject: [PATCH 558/766] In e-library ... removed file value in member_of attribute... for showing pages and images --- .../ndf/templates/ndf/ImageDashboard.html | 5 ++- .../ndf/templates/registration/login.html | 2 +- .../gnowsys_ndf/ndf/views/e-library.py | 34 +++++++++---------- .../gnowsys_ndf/ndf/views/imageDashboard.py | 19 ++++++++--- gnowsys-ndf/gnowsys_ndf/settings.py | 8 +++++ 5 files changed, 41 insertions(+), 27 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/ImageDashboard.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/ImageDashboard.html index edcbc4d74a..836a22e03c 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/ImageDashboard.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/ImageDashboard.html @@ -241,15 +241,14 @@

    Select Image

    From afc5c77557d6ce695b99603242831a5c2565c1f3 Mon Sep 17 00:00:00 2001 From: tirthakarmahesh211 Date: Thu, 12 Apr 2018 14:22:36 +0530 Subject: [PATCH 579/766] Topic map and calendar removed from complete site --- .../ndf/static/ndf/css/themes/clix/styles.css | 2275 +++++++++-------- .../ndf/css/themes/metastudio/styles.css | 2275 +++++++++-------- .../static/ndf/css/themes/nroer/styles.css | 2275 +++++++++-------- .../ndf/static/ndf/css/themes/tiss/styles.css | 2275 +++++++++-------- .../ndf/static/ndf/scss/_app_styles.scss | 41 +- .../gnowsys_ndf/ndf/templates/ndf/footer.html | 8 +- .../gnowsys_ndf/ndf/templates/ndf/lms.html | 16 +- 7 files changed, 4692 insertions(+), 4473 deletions(-) diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css index 4913f7cf2c..4fafc712f8 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/clix/styles.css @@ -23897,107 +23897,106 @@ body > footer .myfooter .links_collapse ul { body > footer .myfooter .footer_link_cont { display: inline-block; vertical-align: top; - /*margin: 20px;*/ text-align: left; } -/* line 562, ../../../scss/_app_styles.scss */ +/* line 561, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .links_show { max-height: 600px; } -/* line 566, ../../../scss/_app_styles.scss */ +/* line 565, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .flinks { font-size: 22px; color: #999; } -/* line 570, ../../../scss/_app_styles.scss */ +/* line 569, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .social_links a { font-size: 24px; margin-right: 5px; } -/* line 575, ../../../scss/_app_styles.scss */ +/* line 574, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links { color: #777777; cursor: pointer; } -/* line 578, ../../../scss/_app_styles.scss */ +/* line 577, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links i { font-size: 24px; margin-right: 5px; } -/* line 581, ../../../scss/_app_styles.scss */ +/* line 580, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links:hover { text-decoration: underline; } -/* line 588, ../../../scss/_app_styles.scss */ +/* line 587, ../../../scss/_app_styles.scss */ body > footer hr.footerlogo-divider { border-color: #555; margin-top: 10px; } -/* line 594, ../../../scss/_app_styles.scss */ +/* line 593, ../../../scss/_app_styles.scss */ body > footer ul#footerlogo li { margin: 0px 5px; display: inline; } -/* line 600, ../../../scss/_app_styles.scss */ +/* line 599, ../../../scss/_app_styles.scss */ .no-gap ul { margin-left: 0rem; } -/* line 606, ../../../scss/_app_styles.scss */ +/* line 605, ../../../scss/_app_styles.scss */ body > footer ul#poweredlogos { margin-left: 0px; } -/* line 610, ../../../scss/_app_styles.scss */ +/* line 609, ../../../scss/_app_styles.scss */ #poweredlogos li { margin: 0px 5px; display: inline; } -/* line 616, ../../../scss/_app_styles.scss */ +/* line 615, ../../../scss/_app_styles.scss */ .no-gap ul { margin-left: 0rem; } -/* line 621, ../../../scss/_app_styles.scss */ +/* line 620, ../../../scss/_app_styles.scss */ .coll-arrows { cursor: pointer; display: block; padding: 0.5rem; } -/* line 626, ../../../scss/_app_styles.scss */ +/* line 625, ../../../scss/_app_styles.scss */ .coll-arrows:hover { background-color: #D3D3D3; } /* Sections */ -/* line 633, ../../../scss/_app_styles.scss */ +/* line 632, ../../../scss/_app_styles.scss */ main > article { padding: 0px; } -/* line 636, ../../../scss/_app_styles.scss */ +/* line 635, ../../../scss/_app_styles.scss */ main > nav { border-top: 3px solid black; position: relative; z-index: 10; } -/* line 640, ../../../scss/_app_styles.scss */ +/* line 639, ../../../scss/_app_styles.scss */ main > nav > .button-bar { background-color: #6152ae; /* Hide icons till we can retreive custom icons from the system */ } -/* line 642, ../../../scss/_app_styles.scss */ +/* line 641, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group { margin: 0; } -/* line 644, ../../../scss/_app_styles.scss */ +/* line 643, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group.tools { padding: 5px; } -/* line 650, ../../../scss/_app_styles.scss */ +/* line 649, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button { border: none; font-size: 0.8rem; @@ -24006,135 +24005,135 @@ main > nav > .button-bar li .button { color: black; margin: 0; } -/* line 654, ../../../scss/_app_styles.scss */ +/* line 653, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.home { font-weight: bold; } -/* line 657, ../../../scss/_app_styles.scss */ +/* line 656, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings, main > nav > .button-bar li .button#toggle-help { padding: 6px 10px; color: #333; background-color: rgba(255, 255, 255, 0.3); } -/* line 662, ../../../scss/_app_styles.scss */ +/* line 661, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:hover, main > nav > .button-bar li .button#toggle-help:hover { background-color: rgba(0, 0, 0, 0.2); color: white; } -/* line 667, ../../../scss/_app_styles.scss */ +/* line 666, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button#toggle-help { background-color: inherit; } -/* line 671, ../../../scss/_app_styles.scss */ +/* line 670, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:after { border: none; } -/* line 679, ../../../scss/_app_styles.scss */ +/* line 678, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button:hover { color: white; } -/* line 685, ../../../scss/_app_styles.scss */ +/* line 684, ../../../scss/_app_styles.scss */ main > nav > .button-bar li.active .button { background-color: #6153ae; color: white; } -/* line 693, ../../../scss/_app_styles.scss */ +/* line 692, ../../../scss/_app_styles.scss */ main > nav > .button-bar .app i { display: none !important; } -/* line 703, ../../../scss/_app_styles.scss */ +/* line 702, ../../../scss/_app_styles.scss */ main > aside > div h2 { color: #111; } -/* line 706, ../../../scss/_app_styles.scss */ +/* line 705, ../../../scss/_app_styles.scss */ main > aside > div h3 { font-size: 1.2rem; font-weight: normal; color: #222; } -/* line 711, ../../../scss/_app_styles.scss */ +/* line 710, ../../../scss/_app_styles.scss */ main > aside > div h4 { font-size: 1rem; color: #222; } -/* line 714, ../../../scss/_app_styles.scss */ +/* line 713, ../../../scss/_app_styles.scss */ main > aside > div h4 span { display: none; } -/* line 717, ../../../scss/_app_styles.scss */ +/* line 716, ../../../scss/_app_styles.scss */ main > aside > div h4:hover span { display: inline; } -/* line 721, ../../../scss/_app_styles.scss */ +/* line 720, ../../../scss/_app_styles.scss */ main > aside > div h5, main > aside > div h6 { margin: 0; } -/* line 725, ../../../scss/_app_styles.scss */ +/* line 724, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content { width: auto; padding: 0; border: 1px solid #222; } -/* line 729, ../../../scss/_app_styles.scss */ +/* line 728, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content .item { width: 70px; } -/* line 736, ../../../scss/_app_styles.scss */ +/* line 735, ../../../scss/_app_styles.scss */ main > aside > div footer { background-color: #222; min-height: 1rem; } -/* line 739, ../../../scss/_app_styles.scss */ +/* line 738, ../../../scss/_app_styles.scss */ main > aside > div footer label { font-size: 0.7rem; } -/* line 752, ../../../scss/_app_styles.scss */ +/* line 751, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection { background-color: #444; padding: 0; border-bottom: 2px solid #6152ae; margin: 0; } -/* line 757, ../../../scss/_app_styles.scss */ +/* line 756, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li { border-bottom: 1px solid #555; } -/* line 759, ../../../scss/_app_styles.scss */ +/* line 758, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li a { border-left: 2px solid black; } -/* line 762, ../../../scss/_app_styles.scss */ +/* line 761, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li.active a, main > aside > div .side-nav.collection li a:hover { color: white !important; border-left: 2px solid #6152ae; background-color: #6152ae; } -/* line 775, ../../../scss/_app_styles.scss */ +/* line 774, ../../../scss/_app_styles.scss */ article { position: relative; z-index: 1; min-height: 400px; overflow-x: visible; } -/* line 780, ../../../scss/_app_styles.scss */ +/* line 779, ../../../scss/_app_styles.scss */ article > header, article form > header { padding: 15px; background-color: #f0f0f0; } -/* line 793, ../../../scss/_app_styles.scss */ +/* line 792, ../../../scss/_app_styles.scss */ article h1:not(.subheader) .tabs { display: inline-block; position: relative; bottom: -0.5rem; } -/* line 799, ../../../scss/_app_styles.scss */ +/* line 798, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div, article h1:not(.subheader) div input:not(.subheader) div { display: inline-block; position: relative; } -/* line 802, ../../../scss/_app_styles.scss */ +/* line 801, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input { height: 200%; font-style: italic; @@ -24144,13 +24143,13 @@ article h1:not(.subheader) div input { border-bottom: 2px dotted #222; background-color: inherit; } -/* line 812, ../../../scss/_app_styles.scss */ +/* line 811, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input:hover { background-color: white; } /* Card block */ -/* line 822, ../../../scss/_app_styles.scss */ +/* line 821, ../../../scss/_app_styles.scss */ .card > * { position: relative; background-color: white; @@ -24161,51 +24160,51 @@ article h1:not(.subheader) div input:hover { opacity: 0.9; overflow: hidden; } -/* line 834, ../../../scss/_app_styles.scss */ +/* line 833, ../../../scss/_app_styles.scss */ .card > * > a { color: inherit; display: block; position: relative; z-index: 200; } -/* line 845, ../../../scss/_app_styles.scss */ +/* line 844, ../../../scss/_app_styles.scss */ .card > *.published { opacity: 1; background-color: #e6f9ee; } -/* line 850, ../../../scss/_app_styles.scss */ +/* line 849, ../../../scss/_app_styles.scss */ .card > *.published hr { border-color: #7ee2a8; } -/* line 855, ../../../scss/_app_styles.scss */ +/* line 854, ../../../scss/_app_styles.scss */ .card > *.moderation { opacity: 1; background-color: #efefef; } -/* line 860, ../../../scss/_app_styles.scss */ +/* line 859, ../../../scss/_app_styles.scss */ .card > *.moderation hr { border-color: #bcbcbc; } -/* line 865, ../../../scss/_app_styles.scss */ +/* line 864, ../../../scss/_app_styles.scss */ .card > *.unapproved { opacity: 1; border-style: solid; border-color: #f04124; } -/* line 871, ../../../scss/_app_styles.scss */ +/* line 870, ../../../scss/_app_styles.scss */ .card > *:hover { border-style: solid; opacity: 1; } -/* line 877, ../../../scss/_app_styles.scss */ +/* line 876, ../../../scss/_app_styles.scss */ .card > *:hover i { opacity: 0.3; } -/* line 880, ../../../scss/_app_styles.scss */ +/* line 879, ../../../scss/_app_styles.scss */ .card > *:hover footer .age { display: block; } -/* line 885, ../../../scss/_app_styles.scss */ +/* line 884, ../../../scss/_app_styles.scss */ .card > * > i { position: absolute; top: -10px; @@ -24214,28 +24213,28 @@ article h1:not(.subheader) div input:hover { color: #6153ae; opacity: 0.3; } -/* line 894, ../../../scss/_app_styles.scss */ +/* line 893, ../../../scss/_app_styles.scss */ .card > * .preview { float: left; padding-right: 5px; padding-top: 4px; } -/* line 899, ../../../scss/_app_styles.scss */ +/* line 898, ../../../scss/_app_styles.scss */ .card > * header { overflow: hidden; } -/* line 903, ../../../scss/_app_styles.scss */ +/* line 902, ../../../scss/_app_styles.scss */ .card > * .label, .card > * .label-list:empty:before { opacity: 0.5; } -/* line 906, ../../../scss/_app_styles.scss */ +/* line 905, ../../../scss/_app_styles.scss */ .card > * p { color: #555; height: 80px; background-repeat: no-repeat; font-size: 80%; } -/* line 912, ../../../scss/_app_styles.scss */ +/* line 911, ../../../scss/_app_styles.scss */ .card > * .th { margin: 20px auto; width: 80px; @@ -24243,23 +24242,23 @@ article h1:not(.subheader) div input:hover { overflow: hidden; display: none; } -/* line 918, ../../../scss/_app_styles.scss */ +/* line 917, ../../../scss/_app_styles.scss */ .card > * .th:hover { width: 150px; height: 150px; } -/* line 922, ../../../scss/_app_styles.scss */ +/* line 921, ../../../scss/_app_styles.scss */ .card > * .th img { width: 100%; } -/* line 926, ../../../scss/_app_styles.scss */ +/* line 925, ../../../scss/_app_styles.scss */ .card > * footer { margin-top: 1rem; font-size: 70%; clear: both; color: #e01818; } -/* line 931, ../../../scss/_app_styles.scss */ +/* line 930, ../../../scss/_app_styles.scss */ .card > * footer .age { display: none; position: absolute; @@ -24269,7 +24268,7 @@ article h1:not(.subheader) div input:hover { width: 100%; } -/* line 942, ../../../scss/_app_styles.scss */ +/* line 941, ../../../scss/_app_styles.scss */ .edit-card { position: relative; background-color: white; @@ -24278,40 +24277,40 @@ article h1:not(.subheader) div input:hover { } /* Content Tabs */ -/* line 955, ../../../scss/_app_styles.scss */ +/* line 954, ../../../scss/_app_styles.scss */ article .tabs { display: inline-block; } -/* line 957, ../../../scss/_app_styles.scss */ +/* line 956, ../../../scss/_app_styles.scss */ article .tabs dd a { border-radius: 4px; border: 1px transparent; } -/* line 961, ../../../scss/_app_styles.scss */ +/* line 960, ../../../scss/_app_styles.scss */ article .tabs dd.active a { color: #6152ae; border: 1px solid; } -/* line 965, ../../../scss/_app_styles.scss */ +/* line 964, ../../../scss/_app_styles.scss */ article .tabs dd:hover a { color: #6152ae; } -/* line 969, ../../../scss/_app_styles.scss */ +/* line 968, ../../../scss/_app_styles.scss */ article .tabs i { margin-right: 5px; font-size: 1.6rem; } -/* line 973, ../../../scss/_app_styles.scss */ +/* line 972, ../../../scss/_app_styles.scss */ article .tabs span { font-size: 17px; vertical-align: text-bottom; } -/* line 979, ../../../scss/_app_styles.scss */ +/* line 978, ../../../scss/_app_styles.scss */ article section.content { border: 1px solid #eee; } -/* line 986, ../../../scss/_app_styles.scss */ +/* line 985, ../../../scss/_app_styles.scss */ .card > div:hover { box-shadow: 0 0 10px lightgray; transition: 0.9s; @@ -24320,31 +24319,31 @@ article section.content { } /* Default card */ -/* line 994, ../../../scss/_app_styles.scss */ +/* line 993, ../../../scss/_app_styles.scss */ .card > :hover .label, .card > :hover .label-list:empty:before { opacity: 1; } -/* line 999, ../../../scss/_app_styles.scss */ +/* line 998, ../../../scss/_app_styles.scss */ .gallery .card .th { display: block; } /* Inline label list */ -/* line 1007, ../../../scss/_app_styles.scss */ +/* line 1006, ../../../scss/_app_styles.scss */ .label-list { display: inline-block; text-align: left; margin-bottom: 0.1rem; } -/* line 1011, ../../../scss/_app_styles.scss */ +/* line 1010, ../../../scss/_app_styles.scss */ .label-list:empty:before { content: "UNTAGGED"; opacity: 0.2 !important; padding: 2px; background-color: transparent; } -/* line 1019, ../../../scss/_app_styles.scss */ +/* line 1018, ../../../scss/_app_styles.scss */ .label-list .label, .label-list .label-list:empty:before { background-color: transparent; padding: 2px; @@ -24352,20 +24351,20 @@ article section.content { /*************************** 2. Custom CSS overrides ***********************/ /* Content area */ -/* line 1028, ../../../scss/_app_styles.scss */ +/* line 1027, ../../../scss/_app_styles.scss */ article { padding-bottom: 1rem; } -/* line 1032, ../../../scss/_app_styles.scss */ +/* line 1031, ../../../scss/_app_styles.scss */ article > header { border-bottom: 1px solid #ddd; } -/* line 1036, ../../../scss/_app_styles.scss */ +/* line 1035, ../../../scss/_app_styles.scss */ article > footer { border-top: 1px dotted #ddd; } -/* line 1048, ../../../scss/_app_styles.scss */ +/* line 1047, ../../../scss/_app_styles.scss */ textarea { min-height: 6rem; } @@ -24386,39 +24385,39 @@ textarea { }*/ /*************************** 3. Custom CSS Below ***********************/ /*CSS fix for tables generated via orgitdown*/ -/* line 1068, ../../../scss/_app_styles.scss */ +/* line 1067, ../../../scss/_app_styles.scss */ #content table td, #content colgroup col { float: none !important; } -/* line 1073, ../../../scss/_app_styles.scss */ +/* line 1072, ../../../scss/_app_styles.scss */ .user { color: inherit; } -/* line 1077, ../../../scss/_app_styles.scss */ +/* line 1076, ../../../scss/_app_styles.scss */ .user i { margin-right: 3px; } -/* line 1080, ../../../scss/_app_styles.scss */ +/* line 1079, ../../../scss/_app_styles.scss */ .user:hover i { opacity: 1; } -/* line 1084, ../../../scss/_app_styles.scss */ +/* line 1083, ../../../scss/_app_styles.scss */ a.node { display: block; } -/* line 1088, ../../../scss/_app_styles.scss */ +/* line 1087, ../../../scss/_app_styles.scss */ .button.edit { margin-bottom: 0; } /************ Forms **************/ /* Node edit */ -/* line 1096, ../../../scss/_app_styles.scss */ +/* line 1095, ../../../scss/_app_styles.scss */ input.node-title { font-size: 3rem; height: 4rem; @@ -24426,13 +24425,13 @@ input.node-title { } /* view-graph in node_details_base.html */ -/* line 1103, ../../../scss/_app_styles.scss */ +/* line 1102, ../../../scss/_app_styles.scss */ .graph-height { height: 70%; } /*for graph and location*/ -/* line 1108, ../../../scss/_app_styles.scss */ +/* line 1107, ../../../scss/_app_styles.scss */ .graph-div { height: 90%; width: -webkit-calc(100% - 10px); @@ -24446,13 +24445,13 @@ input.node-title { } /*for graph and location*/ -/* line 1118, ../../../scss/_app_styles.scss */ +/* line 1117, ../../../scss/_app_styles.scss */ .graph-div h3 { border-bottom: 2px inset #154534; padding: 0.25em 0; } -/* line 1123, ../../../scss/_app_styles.scss */ +/* line 1122, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal, #view-map-edit-widget .close-reveal-modal { z-index: 1; background-color: captiontext; @@ -24463,7 +24462,7 @@ input.node-title { box-shadow: 0 1px 10px 2px #A9A9A9; } -/* line 1134, ../../../scss/_app_styles.scss */ +/* line 1133, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal:hover, #view-map-edit-widget .close-reveal-modal:hover { background-color: white; border-radius: 30px; @@ -24476,7 +24475,7 @@ input.node-title { /****************** CUSTOM *********************/ /* UI Button */ -/* line 1149, ../../../scss/_app_styles.scss */ +/* line 1148, ../../../scss/_app_styles.scss */ .ui.button { margin-right: 0.5rem; border: 1px solid rgba(0, 0, 0, 0.2); @@ -24486,102 +24485,102 @@ input.node-title { padding: 0.5vw 0.75vw; z-index: 500; } -/* line 1160, ../../../scss/_app_styles.scss */ +/* line 1159, ../../../scss/_app_styles.scss */ .ui.button label { color: #666; } -/* line 1163, ../../../scss/_app_styles.scss */ +/* line 1162, ../../../scss/_app_styles.scss */ .ui.button small { margin-left: 2px; display: inline; } -/* line 1167, ../../../scss/_app_styles.scss */ +/* line 1166, ../../../scss/_app_styles.scss */ .ui.button:hover, .ui.button:active { border-color: rgba(255, 255, 255, 0.2); background-color: rgba(0, 0, 0, 0.9); } -/* line 1170, ../../../scss/_app_styles.scss */ +/* line 1169, ../../../scss/_app_styles.scss */ .ui.button:hover label, .ui.button:active label { color: #ddd; } -/* line 1173, ../../../scss/_app_styles.scss */ +/* line 1172, ../../../scss/_app_styles.scss */ .ui.button:hover small, .ui.button:active small { display: inline; } -/* line 1176, ../../../scss/_app_styles.scss */ +/* line 1175, ../../../scss/_app_styles.scss */ .ui.button:hover:focus, .ui.button:active:focus { font-weight: bold; } -/* line 1185, ../../../scss/_app_styles.scss */ +/* line 1184, ../../../scss/_app_styles.scss */ aside#help h4 { color: black; } -/* line 1188, ../../../scss/_app_styles.scss */ +/* line 1187, ../../../scss/_app_styles.scss */ aside#help p, aside#help h5, aside#help h6 { color: #ddd; padding: 0.3rem 0.9375rem; } -/* line 1195, ../../../scss/_app_styles.scss */ +/* line 1194, ../../../scss/_app_styles.scss */ .align-center { margin: 0 auto; display: block; } -/* line 1201, ../../../scss/_app_styles.scss */ +/* line 1200, ../../../scss/_app_styles.scss */ #profile-img { height: 40px; margin-right: 5px; } -/* line 1209, ../../../scss/_app_styles.scss */ +/* line 1208, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin-bottom: 20px; } -/* line 1213, ../../../scss/_app_styles.scss */ +/* line 1212, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 1219, ../../../scss/_app_styles.scss */ +/* line 1218, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 1222, ../../../scss/_app_styles.scss */ +/* line 1221, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 1226, ../../../scss/_app_styles.scss */ +/* line 1225, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 1231, ../../../scss/_app_styles.scss */ +/* line 1230, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 1238, ../../../scss/_app_styles.scss */ +/* line 1237, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 1242, ../../../scss/_app_styles.scss */ +/* line 1241, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 1247, ../../../scss/_app_styles.scss */ +/* line 1246, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 1253, ../../../scss/_app_styles.scss */ +/* line 1252, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -24590,16 +24589,16 @@ aside#help p, aside#help h5, aside#help h6 { border-top: 1px solid #B1B1B1; width: 80%; } -/* line 1262, ../../../scss/_app_styles.scss */ +/* line 1261, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 1267, ../../../scss/_app_styles.scss */ +/* line 1266, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 1270, ../../../scss/_app_styles.scss */ +/* line 1269, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { color: #ffffff !important; height: 2em; @@ -24607,7 +24606,7 @@ aside#help p, aside#help h5, aside#help h6 { padding-left: 10px; line-height: 1.5em; } -/* line 1280, ../../../scss/_app_styles.scss */ +/* line 1279, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -24617,12 +24616,12 @@ aside#help p, aside#help h5, aside#help h6 { border-radius: 0px 0px 5px 5px; /*background-color: #f2f2f2;*/ } -/* line 1289, ../../../scss/_app_styles.scss */ +/* line 1288, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 1295, ../../../scss/_app_styles.scss */ +/* line 1294, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -24648,7 +24647,7 @@ aside#help p, aside#help h5, aside#help h6 { } }*/ /* Simple Card CSS*/ -/* line 1323, ../../../scss/_app_styles.scss */ +/* line 1322, ../../../scss/_app_styles.scss */ .scard { background: #FFF; border: 1px solid #AAA; @@ -24660,12 +24659,12 @@ aside#help p, aside#help h5, aside#help h6 { height: 9rem; /*float:left;*/ } -/* line 1332, ../../../scss/_app_styles.scss */ +/* line 1331, ../../../scss/_app_styles.scss */ .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1338, ../../../scss/_app_styles.scss */ +/* line 1337, ../../../scss/_app_styles.scss */ .scard .scard_header { text-align: center; position: fixed; @@ -24683,7 +24682,7 @@ aside#help p, aside#help h5, aside#help h6 { font-weight: bold; } -/* line 1355, ../../../scss/_app_styles.scss */ +/* line 1354, ../../../scss/_app_styles.scss */ .scard-content { height: 2.7em; padding: 0.5rem; @@ -24696,7 +24695,7 @@ aside#help p, aside#help h5, aside#help h6 { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 1366, ../../../scss/_app_styles.scss */ +/* line 1365, ../../../scss/_app_styles.scss */ .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; @@ -24706,7 +24705,7 @@ aside#help p, aside#help h5, aside#help h6 { text-align: center; } -/* line 1379, ../../../scss/_app_styles.scss */ +/* line 1378, ../../../scss/_app_styles.scss */ .scard-action { height: height; font-size: 0.6em; @@ -24720,7 +24719,7 @@ aside#help p, aside#help h5, aside#help h6 { background-color: #CCCCCC; } -/* line 1394, ../../../scss/_app_styles.scss */ +/* line 1393, ../../../scss/_app_styles.scss */ .scard-desc { font-size: 0.7em; color: #333333; @@ -24736,13 +24735,13 @@ aside#help p, aside#help h5, aside#help h6 { display-inline: block; } -/* line 1409, ../../../scss/_app_styles.scss */ +/* line 1408, ../../../scss/_app_styles.scss */ p { margin: 0px; padding: 10px; } -/* line 1414, ../../../scss/_app_styles.scss */ +/* line 1413, ../../../scss/_app_styles.scss */ .scard-image { padding: 0px; margin: 0px; @@ -24753,7 +24752,7 @@ p { overflow: hidden; background-color: #f2f2f2; } -/* line 1423, ../../../scss/_app_styles.scss */ +/* line 1422, ../../../scss/_app_styles.scss */ .scard-image img { border-radius: 2px 2px 0 0; display: block; @@ -24761,7 +24760,7 @@ p { opacity: 0.9; height: 100%; } -/* line 1432, ../../../scss/_app_styles.scss */ +/* line 1431, ../../../scss/_app_styles.scss */ .scard-image i { font-size: 7rem; opacity: 0.75; @@ -24775,83 +24774,83 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1446, ../../../scss/_app_styles.scss */ +/* line 1445, ../../../scss/_app_styles.scss */ .scard-image i.common-icon:before { content: "\f1fb"; } -/* line 1449, ../../../scss/_app_styles.scss */ +/* line 1448, ../../../scss/_app_styles.scss */ .scard-image i.file:before { content: "\f18e"; } -/* line 1452, ../../../scss/_app_styles.scss */ +/* line 1451, ../../../scss/_app_styles.scss */ .scard-image i.page:before { content: "\f18e"; } -/* line 1455, ../../../scss/_app_styles.scss */ +/* line 1454, ../../../scss/_app_styles.scss */ .scard-image i.collection:before { content: "\f18a"; } -/* line 1458, ../../../scss/_app_styles.scss */ +/* line 1457, ../../../scss/_app_styles.scss */ .scard-image i.documents:before { content: "\f18b"; } -/* line 1461, ../../../scss/_app_styles.scss */ +/* line 1460, ../../../scss/_app_styles.scss */ .scard-image i.pdf:before { content: "\f18b"; } -/* line 1464, ../../../scss/_app_styles.scss */ +/* line 1463, ../../../scss/_app_styles.scss */ .scard-image i.text:before { content: "\f18e"; } -/* line 1467, ../../../scss/_app_styles.scss */ +/* line 1466, ../../../scss/_app_styles.scss */ .scard-image i.interactives:before { content: "\f1b2"; } -/* line 1470, ../../../scss/_app_styles.scss */ +/* line 1469, ../../../scss/_app_styles.scss */ .scard-image i.ebooks:before { content: "\f11e"; } -/* line 1473, ../../../scss/_app_styles.scss */ +/* line 1472, ../../../scss/_app_styles.scss */ .scard-image i.images:before { content: "\f125"; } -/* line 1476, ../../../scss/_app_styles.scss */ +/* line 1475, ../../../scss/_app_styles.scss */ .scard-image i.audios:before, .scard-image i.audio:before { content: "\f17b"; } -/* line 1479, ../../../scss/_app_styles.scss */ +/* line 1478, ../../../scss/_app_styles.scss */ .scard-image i.videos:before, .scard-image i.video:before { content: "\f20e"; } -/* line 1485, ../../../scss/_app_styles.scss */ +/* line 1484, ../../../scss/_app_styles.scss */ .published.scard-action { background: #A6D9CB; } -/* line 1489, ../../../scss/_app_styles.scss */ +/* line 1488, ../../../scss/_app_styles.scss */ .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 1495, ../../../scss/_app_styles.scss */ +/* line 1494, ../../../scss/_app_styles.scss */ .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1500, ../../../scss/_app_styles.scss */ +/* line 1499, ../../../scss/_app_styles.scss */ .moderation.scard-action { border-color: transparent #6153ae transparent transparent; border-color: rgba(255, 255, 255, 0) #6153ae rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1504, ../../../scss/_app_styles.scss */ +/* line 1503, ../../../scss/_app_styles.scss */ .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 1508, ../../../scss/_app_styles.scss */ +/* line 1507, ../../../scss/_app_styles.scss */ .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -24862,7 +24861,7 @@ p { /* End Simple Card CSS*/ /* Customized Off-Canvas */ -/* line 1646, ../../../scss/_app_styles.scss */ +/* line 1645, ../../../scss/_app_styles.scss */ #help-canvas-menu { position: fixed; top: 52px; @@ -24875,26 +24874,26 @@ p { height: 100%; } -/* line 1657, ../../../scss/_app_styles.scss */ +/* line 1656, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded { left: 0 !important; z-index: 100000000; left: 150px; } -/* line 1662, ../../../scss/_app_styles.scss */ +/* line 1661, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded .help-button { right: 80px; z-index: -1; } -/* line 1667, ../../../scss/_app_styles.scss */ +/* line 1666, ../../../scss/_app_styles.scss */ #help-canvas-menu.animating .help-button { -webkit-animation: shake 400ms; animation: shake 400ms; } -/* line 1671, ../../../scss/_app_styles.scss */ +/* line 1670, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button { position: absolute; -webkit-transform: rotate(-90deg); @@ -24921,12 +24920,12 @@ p { border-top-right-radius: 5px; } -/* line 1697, ../../../scss/_app_styles.scss */ +/* line 1696, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button-text { font-size: 18px; } -/* line 1700, ../../../scss/_app_styles.scss */ +/* line 1699, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button .text { color: #f9f9f9; letter-spacing: .1em; @@ -24935,7 +24934,7 @@ p { text-shadow: 0 0 1px rgba(0, 0, 0, 0.35); } -/* line 1709, ../../../scss/_app_styles.scss */ +/* line 1708, ../../../scss/_app_styles.scss */ #help-canvas-menu .mainContainer { background: #fff; /*-webkit-box-shadow:3px 3px 17px -1px #7b7b7b; @@ -24949,7 +24948,7 @@ p { } /* End of Customized Off-Canvas */ -/* line 1727, ../../../scss/_app_styles.scss */ +/* line 1726, ../../../scss/_app_styles.scss */ .rcard { overflow: hidden; color: #272727; @@ -24957,56 +24956,56 @@ p { background-color: #f5f5f5; margin: 5px; } -/* line 1738, ../../../scss/_app_styles.scss */ +/* line 1737, ../../../scss/_app_styles.scss */ .rcard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1743, ../../../scss/_app_styles.scss */ +/* line 1742, ../../../scss/_app_styles.scss */ .rcard .title { font-size: 1.1rem; font-weight: bold; } -/* line 1749, ../../../scss/_app_styles.scss */ +/* line 1748, ../../../scss/_app_styles.scss */ .rcard .content { padding: 0.5rem 2rem; border-radius: 0 0 2px 2px; overflow: hidden; height: 7.25rem; } -/* line 1756, ../../../scss/_app_styles.scss */ +/* line 1755, ../../../scss/_app_styles.scss */ .rcard .content .slick-slider { margin-bottom: 0; } -/* line 1760, ../../../scss/_app_styles.scss */ +/* line 1759, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev { left: 0.25rem; } -/* line 1763, ../../../scss/_app_styles.scss */ +/* line 1762, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev:before { color: #ccc; } -/* line 1769, ../../../scss/_app_styles.scss */ +/* line 1768, ../../../scss/_app_styles.scss */ .rcard .content .slick-next { right: 0.25rem; } -/* line 1772, ../../../scss/_app_styles.scss */ +/* line 1771, ../../../scss/_app_styles.scss */ .rcard .content .slick-next:before { color: #ccc; } -/* line 1778, ../../../scss/_app_styles.scss */ +/* line 1777, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title { width: 100%; border-bottom: 1px solid #808080; line-height: 0.25em; margin: 10px 0 20px; } -/* line 1784, ../../../scss/_app_styles.scss */ +/* line 1783, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title small { padding: 0 10px; background-color: #f5f5f5; } -/* line 1791, ../../../scss/_app_styles.scss */ +/* line 1790, ../../../scss/_app_styles.scss */ .rcard .action { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -25014,15 +25013,15 @@ p { font-size: small; height: 2rem; } -/* line 1798, ../../../scss/_app_styles.scss */ +/* line 1797, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection { opacity: 0.5; } -/* line 1801, ../../../scss/_app_styles.scss */ +/* line 1800, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection:hover { opacity: 1; } -/* line 1815, ../../../scss/_app_styles.scss */ +/* line 1814, ../../../scss/_app_styles.scss */ .rcard .image { position: relative; background-color: #ccc; @@ -25030,7 +25029,7 @@ p { height: 8em; overflow: hidden; } -/* line 1825, ../../../scss/_app_styles.scss */ +/* line 1824, ../../../scss/_app_styles.scss */ .rcard .image .title { position: absolute; bottom: 0; @@ -25042,7 +25041,7 @@ p { text-transform: uppercase; text-shadow: 0px 0px 0.5px rgba(0, 0, 0, 0.5); } -/* line 1838, ../../../scss/_app_styles.scss */ +/* line 1837, ../../../scss/_app_styles.scss */ .rcard .image img { border-radius: 2px 2px 0 0; display: block; @@ -25052,14 +25051,14 @@ p { filter: brightness(0.75); -webkit-filter: brightness(0.75); } -/* line 1850, ../../../scss/_app_styles.scss */ +/* line 1849, ../../../scss/_app_styles.scss */ .rcard .image img:hover { filter: brightness(1); -webkit-filter: brightness(1); transform: translate3d(0, 0, 0); transition: all 1.5s ease; } -/* line 1859, ../../../scss/_app_styles.scss */ +/* line 1858, ../../../scss/_app_styles.scss */ .rcard .image i { font-size: 7rem; opacity: 0.75; @@ -25073,51 +25072,51 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1876, ../../../scss/_app_styles.scss */ +/* line 1875, ../../../scss/_app_styles.scss */ .rcard .image i.file:before { content: "\f18e"; } -/* line 1877, ../../../scss/_app_styles.scss */ +/* line 1876, ../../../scss/_app_styles.scss */ .rcard .image i.page:before { content: "\f18e"; } -/* line 1878, ../../../scss/_app_styles.scss */ +/* line 1877, ../../../scss/_app_styles.scss */ .rcard .image i.collection:before { content: "\f18a"; } -/* line 1880, ../../../scss/_app_styles.scss */ +/* line 1879, ../../../scss/_app_styles.scss */ .rcard .image i.documents:before { content: "\f18b"; } -/* line 1881, ../../../scss/_app_styles.scss */ +/* line 1880, ../../../scss/_app_styles.scss */ .rcard .image i.pdf:before { content: "\f18b"; } -/* line 1882, ../../../scss/_app_styles.scss */ +/* line 1881, ../../../scss/_app_styles.scss */ .rcard .image i.text:before { content: "\f18e"; } -/* line 1883, ../../../scss/_app_styles.scss */ +/* line 1882, ../../../scss/_app_styles.scss */ .rcard .image i.interactives:before { content: "\f1b2"; } -/* line 1884, ../../../scss/_app_styles.scss */ +/* line 1883, ../../../scss/_app_styles.scss */ .rcard .image i.ebooks:before { content: "\f11e"; } -/* line 1885, ../../../scss/_app_styles.scss */ +/* line 1884, ../../../scss/_app_styles.scss */ .rcard .image i.images:before { content: "\f125"; } -/* line 1886, ../../../scss/_app_styles.scss */ +/* line 1885, ../../../scss/_app_styles.scss */ .rcard .image i.audios:before, .rcard .image i.audio:before { content: "\f17b"; } -/* line 1887, ../../../scss/_app_styles.scss */ +/* line 1886, ../../../scss/_app_styles.scss */ .rcard .image i.videos:before, .rcard .image i.video:before { content: "\f20e"; } -/* line 1890, ../../../scss/_app_styles.scss */ +/* line 1889, ../../../scss/_app_styles.scss */ .rcard .card-label { border-style: solid; border-width: 0 70px 40px 0; @@ -25130,59 +25129,59 @@ p { z-index: 1; opacity: 0.75; } -/* line 1903, ../../../scss/_app_styles.scss */ +/* line 1902, ../../../scss/_app_styles.scss */ .rcard .card-label { border-color: transparent #333 transparent transparent; border-color: rgba(255, 255, 255, 0) #333 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1908, ../../../scss/_app_styles.scss */ +/* line 1907, ../../../scss/_app_styles.scss */ .rcard .published.card-label { border-color: transparent #43AC6A transparent transparent; border-color: rgba(255, 255, 255, 0) #43AC6A rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1912, ../../../scss/_app_styles.scss */ +/* line 1911, ../../../scss/_app_styles.scss */ .rcard .published.card-label .label-text:before { content: "\221A"; margin-left: 5px; font-size: larger; } -/* line 1920, ../../../scss/_app_styles.scss */ +/* line 1919, ../../../scss/_app_styles.scss */ .rcard .draft.card-label { border-color: transparent #cdcdcd transparent transparent; border-color: rgba(255, 255, 255, 0) #cdcdcd rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1924, ../../../scss/_app_styles.scss */ +/* line 1923, ../../../scss/_app_styles.scss */ .rcard .draft.card-label .label-text:before { content: "Draft"; } -/* line 1929, ../../../scss/_app_styles.scss */ +/* line 1928, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1933, ../../../scss/_app_styles.scss */ +/* line 1932, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label .label-text:before { content: "Deleted"; } -/* line 1938, ../../../scss/_app_styles.scss */ +/* line 1937, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label { border-color: transparent #6153ae transparent transparent; border-color: rgba(255, 255, 255, 0) #6153ae rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1942, ../../../scss/_app_styles.scss */ +/* line 1941, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label .label-text:before { content: "Mod"; } -/* line 1945, ../../../scss/_app_styles.scss */ +/* line 1944, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label { border-color: transparent #000 transparent transparent; border-color: rgba(255, 255, 255, 0) #000 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1949, ../../../scss/_app_styles.scss */ +/* line 1948, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label .label-text:before { content: "hidden"; } -/* line 1952, ../../../scss/_app_styles.scss */ +/* line 1951, ../../../scss/_app_styles.scss */ .rcard .label-text { color: #fff; font-size: 0.75rem; @@ -25193,7 +25192,7 @@ p { transform: rotate(30deg); } -/* line 1966, ../../../scss/_app_styles.scss */ +/* line 1965, ../../../scss/_app_styles.scss */ .compulsory:after { content: '*'; color: red; @@ -25206,12 +25205,12 @@ p { background-repeat:repeat; background-image:url("/static/ndf/images/draft-watermark.png"); }*/ -/* line 1982, ../../../scss/_app_styles.scss */ +/* line 1981, ../../../scss/_app_styles.scss */ .text-gray { color: gray; } -/* line 1987, ../../../scss/_app_styles.scss */ +/* line 1986, ../../../scss/_app_styles.scss */ .repository-title { color: #D7D7D7; font-size: 1.1em; @@ -25224,7 +25223,7 @@ p { text-align: center; } -/* line 1999, ../../../scss/_app_styles.scss */ +/* line 1998, ../../../scss/_app_styles.scss */ .repository-desc { font-size: 1.1em; width: auto; @@ -25236,12 +25235,12 @@ p { margin-left: 4px; } -/* line 2010, ../../../scss/_app_styles.scss */ +/* line 2009, ../../../scss/_app_styles.scss */ .card-holder { padding-left: 2%; } -/* line 2014, ../../../scss/_app_styles.scss */ +/* line 2013, ../../../scss/_app_styles.scss */ .app-card-wrapper { position: relative; margin: auto; @@ -25251,14 +25250,14 @@ p { max-width: calc(70rem + 70px); } -/* line 2023, ../../../scss/_app_styles.scss */ +/* line 2022, ../../../scss/_app_styles.scss */ .app-card-container { display: inline-block; vertical-align: top; margin: 15px; } -/* line 2029, ../../../scss/_app_styles.scss */ +/* line 2028, ../../../scss/_app_styles.scss */ .app-card { width: 19rem; margin: 15px 20px; @@ -25269,7 +25268,7 @@ p { border: thin solid #D3D3D3; } -/* line 2039, ../../../scss/_app_styles.scss */ +/* line 2038, ../../../scss/_app_styles.scss */ .app-card:hover { box-shadow: 0px 0px 15px #808080; border: thin solid #D3D3D3; @@ -25277,26 +25276,26 @@ p { transition: all 0.6s ease 0s; } -/* line 2046, ../../../scss/_app_styles.scss */ +/* line 2045, ../../../scss/_app_styles.scss */ .app-card-icon { color: #4c4c4c; position: relative; font-size: 6em; } -/* line 2052, ../../../scss/_app_styles.scss */ +/* line 2051, ../../../scss/_app_styles.scss */ .app-card-title { padding-bottom: -1em; } -/* line 2056, ../../../scss/_app_styles.scss */ +/* line 2055, ../../../scss/_app_styles.scss */ .app-card-content { color: #4c4c4c; text-align: center; margin-top: 0.5cm; } -/* line 2063, ../../../scss/_app_styles.scss */ +/* line 2062, ../../../scss/_app_styles.scss */ .fullscreen-icon { display: none; } @@ -25312,58 +25311,58 @@ div.show-image:hover div.fullscreen-icon{ font-size:2em; }*/ -/* line 2082, ../../../scss/_app_styles.scss */ +/* line 2081, ../../../scss/_app_styles.scss */ .cke .cke_toolbox .cke_toolbar:last-child { float: right; } -/* line 2088, ../../../scss/_app_styles.scss */ +/* line 2087, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin: 0px 1em; } -/* line 2092, ../../../scss/_app_styles.scss */ +/* line 2091, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 2098, ../../../scss/_app_styles.scss */ +/* line 2097, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 2101, ../../../scss/_app_styles.scss */ +/* line 2100, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 2105, ../../../scss/_app_styles.scss */ +/* line 2104, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 2110, ../../../scss/_app_styles.scss */ +/* line 2109, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 2117, ../../../scss/_app_styles.scss */ +/* line 2116, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 2121, ../../../scss/_app_styles.scss */ +/* line 2120, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 2126, ../../../scss/_app_styles.scss */ +/* line 2125, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 2132, ../../../scss/_app_styles.scss */ +/* line 2131, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -25371,16 +25370,16 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 0em; border-top: 1px solid #B1B1B1; } -/* line 2140, ../../../scss/_app_styles.scss */ +/* line 2139, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 2145, ../../../scss/_app_styles.scss */ +/* line 2144, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 2148, ../../../scss/_app_styles.scss */ +/* line 2147, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { /*background-color: #3e3e3e;*/ color: #ececec !important; @@ -25390,7 +25389,7 @@ div.show-image:hover div.fullscreen-icon{ line-height: 1.5em; border-radius: 5px 5px 0px 0px; } -/* line 2158, ../../../scss/_app_styles.scss */ +/* line 2157, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -25399,12 +25398,12 @@ div.show-image:hover div.fullscreen-icon{ padding-left: 10px; border-radius: 0px 0px 5px 5px; } -/* line 2166, ../../../scss/_app_styles.scss */ +/* line 2165, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 2172, ../../../scss/_app_styles.scss */ +/* line 2171, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -25412,7 +25411,7 @@ div.show-image:hover div.fullscreen-icon{ /* Large desktop */ @media (min-width: 34em) { - /* line 2180, ../../../scss/_app_styles.scss */ + /* line 2179, ../../../scss/_app_styles.scss */ .container { max-width: 34rem; margin: 0px auto; @@ -25420,7 +25419,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 48em) { - /* line 2188, ../../../scss/_app_styles.scss */ + /* line 2187, ../../../scss/_app_styles.scss */ .container { max-width: 45rem; margin: 0px auto; @@ -25428,7 +25427,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 62em) { - /* line 2196, ../../../scss/_app_styles.scss */ + /* line 2195, ../../../scss/_app_styles.scss */ .container { max-width: 60rem; margin: 0px auto; @@ -25436,20 +25435,20 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 75em) { - /* line 2204, ../../../scss/_app_styles.scss */ + /* line 2203, ../../../scss/_app_styles.scss */ .container { max-width: 72.25rem; margin: 0px auto; } } -/* line 2210, ../../../scss/_app_styles.scss */ +/* line 2209, ../../../scss/_app_styles.scss */ .course-page { position: relative; background-size: 100% 100%; height: 100%; margin-top: 10px; } -/* line 2216, ../../../scss/_app_styles.scss */ +/* line 2215, ../../../scss/_app_styles.scss */ .course-page > .container { background-color: #fff; padding: 0px 0px; @@ -25457,7 +25456,7 @@ div.show-image:hover div.fullscreen-icon{ box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3); } -/* line 2224, ../../../scss/_app_styles.scss */ +/* line 2223, ../../../scss/_app_styles.scss */ .course-page-opacity { height: 100%; width: 100%; @@ -25471,12 +25470,12 @@ div.show-image:hover div.fullscreen-icon{ background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 2238, ../../../scss/_app_styles.scss */ +/* line 2237, ../../../scss/_app_styles.scss */ #envelop-cover { /*background: #A0148E;*/ height: 250px; } -/* line 2242, ../../../scss/_app_styles.scss */ +/* line 2241, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header { font-size: 35px; font-weight: 500; @@ -25486,11 +25485,11 @@ div.show-image:hover div.fullscreen-icon{ height: 250px; color: #fff; } -/* line 2251, ../../../scss/_app_styles.scss */ +/* line 2250, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header label { color: #fff; } -/* line 2255, ../../../scss/_app_styles.scss */ +/* line 2254, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background, #envelop-cover .course-page-header .course-header-background-layer { position: absolute; left: 0px; @@ -25499,17 +25498,17 @@ div.show-image:hover div.fullscreen-icon{ bottom: 0px; height: 250px; } -/* line 2262, ../../../scss/_app_styles.scss */ +/* line 2261, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background img, #envelop-cover .course-page-header .course-header-background-layer img { width: auto; height: 250px; } -/* line 2268, ../../../scss/_app_styles.scss */ +/* line 2267, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background-layer { background-color: rgba(0, 0, 0, 0.5); opacity: 0; } -/* line 2273, ../../../scss/_app_styles.scss */ +/* line 2272, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings { margin-left: 15px; position: absolute; @@ -25517,20 +25516,20 @@ div.show-image:hover div.fullscreen-icon{ bottom: 55px; /*width: 170px;*/ } -/* line 2279, ../../../scss/_app_styles.scss */ +/* line 2278, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul { box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); } -/* line 2281, ../../../scss/_app_styles.scss */ +/* line 2280, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul > li:hover { background: rgba(0, 0, 0, 0.9); } -/* line 2285, ../../../scss/_app_styles.scss */ +/* line 2284, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a { font-size: 15px; color: #737373; } -/* line 2286, ../../../scss/_app_styles.scss */ +/* line 2285, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child { background: rgba(50, 50, 50, 0.8); padding: 9px 12px 9px 10px; @@ -25538,11 +25537,11 @@ div.show-image:hover div.fullscreen-icon{ font-size: 12px; margin: 0px; } -/* line 2292, ../../../scss/_app_styles.scss */ +/* line 2291, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child > i { margin-right: 5px; } -/* line 2299, ../../../scss/_app_styles.scss */ +/* line 2298, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span { background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.7); @@ -25553,30 +25552,30 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; border-radius: 3px; } -/* line 2309, ../../../scss/_app_styles.scss */ +/* line 2308, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span i { font-size: 20px; } -/* line 2316, ../../../scss/_app_styles.scss */ +/* line 2315, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a { font-size: 15px; color: #737373; } -/* line 2319, ../../../scss/_app_styles.scss */ +/* line 2318, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a i { font-size: 18px; } -/* line 2326, ../../../scss/_app_styles.scss */ +/* line 2325, ../../../scss/_app_styles.scss */ #envelop-cover .heading { letter-spacing: -1.2px; font-weight: 400; } -/* line 2331, ../../../scss/_app_styles.scss */ +/* line 2330, ../../../scss/_app_styles.scss */ #envelop-cover .meta { line-height: 2.1em; padding-left: 14px; } -/* line 2335, ../../../scss/_app_styles.scss */ +/* line 2334, ../../../scss/_app_styles.scss */ #envelop-cover .meta .key { color: #A7A4A4; font-weight: 500; @@ -25586,27 +25585,27 @@ div.show-image:hover div.fullscreen-icon{ vertical-align: top; margin-right: 10px; } -/* line 2345, ../../../scss/_app_styles.scss */ +/* line 2344, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value { display: inline-block; } -/* line 2348, ../../../scss/_app_styles.scss */ +/* line 2347, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .name { color: #000; } -/* line 2352, ../../../scss/_app_styles.scss */ +/* line 2351, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .time { font-size: 13px; font-weight: 300; color: #000; } -/* line 2359, ../../../scss/_app_styles.scss */ +/* line 2358, ../../../scss/_app_styles.scss */ #envelop-cover .course-title { position: absolute; bottom: 50px; left: 5px; } -/* line 2364, ../../../scss/_app_styles.scss */ +/* line 2363, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs { border: 0 solid silver; border-width: 0px 0px 0px 0px; @@ -25618,7 +25617,7 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; background-color: rgba(255, 255, 255, 0.8); } -/* line 2375, ../../../scss/_app_styles.scss */ +/* line 2374, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title { border: 0 solid silver; border-width: 0 0 0px 0px; @@ -25628,7 +25627,7 @@ div.show-image:hover div.fullscreen-icon{ display: inline-block; border-top: 5px solid transparent; } -/* line 2384, ../../../scss/_app_styles.scss */ +/* line 2383, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title a { color: #6F669E; font-weight: 600; @@ -25636,25 +25635,25 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: -0.3px; padding: 0rem 0.8rem 0.4rem; } -/* line 2392, ../../../scss/_app_styles.scss */ +/* line 2391, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active { border-width: 0px 0px 0px 0px; background: #FFFFFF; border-top: 5px solid #F11FD0; } -/* line 2396, ../../../scss/_app_styles.scss */ +/* line 2395, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active a { color: #6153AE; } -/* line 2409, ../../../scss/_app_styles.scss */ +/* line 2408, ../../../scss/_app_styles.scss */ .note-tags a { background: #ffebb2; padding: 0.2em 0.7em; display: inline-block; } -/* line 2416, ../../../scss/_app_styles.scss */ +/* line 2415, ../../../scss/_app_styles.scss */ .toggleButtons a { padding: 0.5em 1em; margin: 0px; @@ -25663,69 +25662,69 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid #B7B7B7; display: inline; } -/* line 2424, ../../../scss/_app_styles.scss */ +/* line 2423, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { margin-right: -3px; border-right: 0px solid #000; } -/* line 2428, ../../../scss/_app_styles.scss */ +/* line 2427, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { border-radius: 10px 0px 0px 10px; } -/* line 2431, ../../../scss/_app_styles.scss */ +/* line 2430, ../../../scss/_app_styles.scss */ .toggleButtons a:last-child { border-radius: 0px 10px 10px 0px; } -/* line 2434, ../../../scss/_app_styles.scss */ +/* line 2433, ../../../scss/_app_styles.scss */ .toggleButtons a.active { background-color: #908F8F; color: #fff; } -/* line 2441, ../../../scss/_app_styles.scss */ +/* line 2440, ../../../scss/_app_styles.scss */ .explore-header { line-height: 3em; } -/* line 2444, ../../../scss/_app_styles.scss */ +/* line 2443, ../../../scss/_app_styles.scss */ .explore-header > div { vertical-align: middle; display: inline-block; } -/* line 2448, ../../../scss/_app_styles.scss */ +/* line 2447, ../../../scss/_app_styles.scss */ .explore-header .heading { font-size: 2em; } -/* line 2461, ../../../scss/_app_styles.scss */ +/* line 2460, ../../../scss/_app_styles.scss */ #envelop-content { /*background-color: #fff;*/ padding: 0px 10px; overflow-x: hidden; /* For accordian in the mobile view*/ } -/* line 2467, ../../../scss/_app_styles.scss */ +/* line 2466, ../../../scss/_app_styles.scss */ #envelop-content .accordion { margin-left: 0px; } -/* line 2471, ../../../scss/_app_styles.scss */ +/* line 2470, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation a { background-color: #DEDEDE; } -/* line 2474, ../../../scss/_app_styles.scss */ +/* line 2473, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation.active a { background-color: #fff; } -/* line 2481, ../../../scss/_app_styles.scss */ +/* line 2480, ../../../scss/_app_styles.scss */ #envelop-content > div > .tabs-content > .content { background: #FFFFFF; padding: 1em; } -/* line 2488, ../../../scss/_app_styles.scss */ +/* line 2487, ../../../scss/_app_styles.scss */ #envelop-content .course-book #course-dashboard { padding: 0px; } -/* line 2496, ../../../scss/_app_styles.scss */ +/* line 2495, ../../../scss/_app_styles.scss */ .course-overview-container { /*.about-course-heading { display: block; @@ -25760,23 +25759,23 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; }*/ } -/* line 2497, ../../../scss/_app_styles.scss */ +/* line 2496, ../../../scss/_app_styles.scss */ .course-overview-container .course-overview > .columns { padding: 0px 10px; } -/* line 2500, ../../../scss/_app_styles.scss */ +/* line 2499, ../../../scss/_app_styles.scss */ .course-overview-container h5 { text-transform: uppercase; } -/* line 2503, ../../../scss/_app_styles.scss */ +/* line 2502, ../../../scss/_app_styles.scss */ .course-overview-container .correct-count { color: #367714; } -/* line 2506, ../../../scss/_app_styles.scss */ +/* line 2505, ../../../scss/_app_styles.scss */ .course-overview-container .incorrect-count { color: #9b0000; } -/* line 2509, ../../../scss/_app_styles.scss */ +/* line 2508, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-heading { text-transform: uppercase; font-size: 12px; @@ -25785,45 +25784,45 @@ div.show-image:hover div.fullscreen-icon{ color: #8E8E8E; display: block; } -/* line 2517, ../../../scss/_app_styles.scss */ +/* line 2516, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-count { font-size: 30px; font-weight: 500; letter-spacing: 0.5px; display: block; } -/* line 2523, ../../../scss/_app_styles.scss */ +/* line 2522, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session { border-bottom: 1px solid #ccc; margin-bottom: 12px; padding-bottom: 15px; } -/* line 2528, ../../../scss/_app_styles.scss */ +/* line 2527, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session h5, .course-overview-container .ongoing-session h3 { color: #2b78e4; } -/* line 2531, ../../../scss/_app_styles.scss */ +/* line 2530, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session button { font-size: 14px; padding: 7px; margin: 0px; background-color: #2B78E4; } -/* line 2539, ../../../scss/_app_styles.scss */ +/* line 2538, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > h5 { color: #888; } -/* line 2542, ../../../scss/_app_styles.scss */ +/* line 2541, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > .row { margin: 10px 0px; } -/* line 2545, ../../../scss/_app_styles.scss */ +/* line 2544, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2550, ../../../scss/_app_styles.scss */ +/* line 2549, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -25832,17 +25831,17 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2558, ../../../scss/_app_styles.scss */ +/* line 2557, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2568, ../../../scss/_app_styles.scss */ +/* line 2567, ../../../scss/_app_styles.scss */ .course-overview-container .course-notif-logs ul { list-style: none; } -/* line 2572, ../../../scss/_app_styles.scss */ +/* line 2571, ../../../scss/_app_styles.scss */ .course-overview-container .course-section { border: 1px solid #ccc; padding: 10px; @@ -25850,11 +25849,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 40px 0px; position: relative; } -/* line 2579, ../../../scss/_app_styles.scss */ +/* line 2578, ../../../scss/_app_styles.scss */ .course-overview-container .course-section > .row { margin: 20px 0px; } -/* line 2583, ../../../scss/_app_styles.scss */ +/* line 2582, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-heading { text-transform: uppercase; font-weight: 600; @@ -25864,7 +25863,7 @@ div.show-image:hover div.fullscreen-icon{ margin: 2px 0px 15px; color: #888; } -/* line 2593, ../../../scss/_app_styles.scss */ +/* line 2592, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-icon { position: absolute; font-size: 40px; @@ -25873,58 +25872,58 @@ div.show-image:hover div.fullscreen-icon{ color: #aaa; background: #fff; } -/* line 2617, ../../../scss/_app_styles.scss */ +/* line 2616, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning { background-color: #fffdd7; } -/* line 2619, ../../../scss/_app_styles.scss */ +/* line 2618, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning > h5 { color: #c09100; } -/* line 2622, ../../../scss/_app_styles.scss */ +/* line 2621, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning i { padding: 10px; margin-right: 5px; color: #c09100; } -/* line 2627, ../../../scss/_app_styles.scss */ +/* line 2626, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning a { text-decoration: underline; } -/* line 2631, ../../../scss/_app_styles.scss */ +/* line 2630, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data { margin: 20px 0px; } -/* line 2635, ../../../scss/_app_styles.scss */ +/* line 2634, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 2638, ../../../scss/_app_styles.scss */ +/* line 2637, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 2645, ../../../scss/_app_styles.scss */ +/* line 2644, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table { width: 100%; margin: 15px 0px; } -/* line 2649, ../../../scss/_app_styles.scss */ +/* line 2648, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table tr { border: none; } -/* line 2653, ../../../scss/_app_styles.scss */ +/* line 2652, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table .progress .merter-val { margin-left: 5px; } -/* line 2691, ../../../scss/_app_styles.scss */ +/* line 2690, ../../../scss/_app_styles.scss */ .about-course { background-color: #fff; padding: 10px 23px; } -/* line 2694, ../../../scss/_app_styles.scss */ +/* line 2693, ../../../scss/_app_styles.scss */ .about-course > h5 { text-transform: uppercase; font-weight: 600; @@ -25935,7 +25934,7 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 5px; } -/* line 2705, ../../../scss/_app_styles.scss */ +/* line 2704, ../../../scss/_app_styles.scss */ .course-desc { letter-spacing: 0.7px; font-weight: 400; @@ -25945,7 +25944,7 @@ div.show-image:hover div.fullscreen-icon{ margin-top: 5px; } -/* line 2713, ../../../scss/_app_styles.scss */ +/* line 2712, ../../../scss/_app_styles.scss */ .course-highlight { letter-spacing: 0.7px; font-weight: 400; @@ -25956,25 +25955,25 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 4px; margin-bottom: 5px; } -/* line 2723, ../../../scss/_app_styles.scss */ +/* line 2722, ../../../scss/_app_styles.scss */ .course-highlight > span { color: #ce7869; } -/* line 2729, ../../../scss/_app_styles.scss */ +/* line 2728, ../../../scss/_app_styles.scss */ .icon-wid { font-size: 34px !important; color: #a2b1be; margin-right: 10px; } -/* line 2738, ../../../scss/_app_styles.scss */ +/* line 2737, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2743, ../../../scss/_app_styles.scss */ +/* line 2742, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -25983,96 +25982,96 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2751, ../../../scss/_app_styles.scss */ +/* line 2750, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2760, ../../../scss/_app_styles.scss */ +/* line 2759, ../../../scss/_app_styles.scss */ .student-dashboard-header-container { background-color: #90F; padding: 10px 10px; height: 110px; width: 100%; } -/* line 2768, ../../../scss/_app_styles.scss */ +/* line 2767, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header img { height: 75px; width: 75px; vertical-align: top; margin: 0px 10px; } -/* line 2774, ../../../scss/_app_styles.scss */ +/* line 2773, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info { display: inline-block; } -/* line 2776, ../../../scss/_app_styles.scss */ +/* line 2775, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info > span { display: block; color: #fff; } -/* line 2780, ../../../scss/_app_styles.scss */ +/* line 2779, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-name { color: #fff; font-weight: 600; font-size: 22px; letter-spacing: 0.5px; } -/* line 2786, ../../../scss/_app_styles.scss */ +/* line 2785, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-overall-points { font-size: 26px; color: #ffff00; } -/* line 2799, ../../../scss/_app_styles.scss */ +/* line 2798, ../../../scss/_app_styles.scss */ .student-dashboard { background-color: #fff; padding: 10px; } -/* line 2804, ../../../scss/_app_styles.scss */ +/* line 2803, ../../../scss/_app_styles.scss */ .student-dashboard #course-act-logs > span { display: inline-block; vertical-align: top; } -/* line 2813, ../../../scss/_app_styles.scss */ +/* line 2812, ../../../scss/_app_styles.scss */ .rating-star-number { position: relative; display: inline-block; } -/* line 2816, ../../../scss/_app_styles.scss */ +/* line 2815, ../../../scss/_app_styles.scss */ .rating-star-number > span { position: absolute; top: 11px; left: 14px; font-size: 13px; } -/* line 2822, ../../../scss/_app_styles.scss */ +/* line 2821, ../../../scss/_app_styles.scss */ .rating-star-number i { font-size: 40px; color: gold; } -/* line 2829, ../../../scss/_app_styles.scss */ +/* line 2828, ../../../scss/_app_styles.scss */ .course-notif .notif-type img { height: 35px; width: 75%; } -/* line 2833, ../../../scss/_app_styles.scss */ +/* line 2832, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating { position: absolute; right: 15%; top: 0; } -/* line 2837, ../../../scss/_app_styles.scss */ +/* line 2836, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating i { font-size: 40px; right: 10%; color: #f1c233; } -/* line 2842, ../../../scss/_app_styles.scss */ +/* line 2841, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating span { position: absolute; left: 50%; @@ -26081,12 +26080,12 @@ div.show-image:hover div.fullscreen-icon{ font-size: 11px; } -/* line 2856, ../../../scss/_app_styles.scss */ +/* line 2855, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > ul, .course-dashboard .course-notifications > ul, .course-dashboard .course-performance > ul { list-style: none; } -/* line 2860, ../../../scss/_app_styles.scss */ +/* line 2859, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > .row, .course-dashboard .course-notifications > .row, .course-dashboard .course-performance > .row { padding: 0px; @@ -26098,45 +26097,45 @@ div.show-image:hover div.fullscreen-icon{ margin: 0em 0em; border-radius: 10px; } -/* line 2872, ../../../scss/_app_styles.scss */ +/* line 2871, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-heading { padding: 0.2em 0.7em; border-bottom: 1px solid #DADADA; font-weight: 500; font-size: 1.3em; } -/* line 2878, ../../../scss/_app_styles.scss */ +/* line 2877, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row { padding: 1em; } -/* line 2881, ../../../scss/_app_styles.scss */ +/* line 2880, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row:nth-child(n+3) { border-top: 1px solid #DCDCDC; } -/* line 2887, ../../../scss/_app_styles.scss */ +/* line 2886, ../../../scss/_app_styles.scss */ .course-dashboard .course-status .course-update .course-current-state { color: #000; font-weight: bold; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 2897, ../../../scss/_app_styles.scss */ +/* line 2896, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications { position: relative; } -/* line 2902, ../../../scss/_app_styles.scss */ +/* line 2901, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .notification-text { font-size: 0.85em; letter-spacing: 0em; word-spacing: 0.2em; } -/* line 2907, ../../../scss/_app_styles.scss */ +/* line 2906, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .time-elapsed { font-size: 0.6em; color: #424242; cursor: pointer; } -/* line 2914, ../../../scss/_app_styles.scss */ +/* line 2913, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-count { font-size: 1em; position: absolute; @@ -26144,42 +26143,42 @@ div.show-image:hover div.fullscreen-icon{ top: 0.3em; } -/* line 2924, ../../../scss/_app_styles.scss */ +/* line 2923, ../../../scss/_app_styles.scss */ .notebook .notebook-header { border-color: black; border-style: solid; border-width: 1px 0px; padding-top: 1em; } -/* line 2930, ../../../scss/_app_styles.scss */ +/* line 2929, ../../../scss/_app_styles.scss */ .notebook .notebook-header a, .notebook .notebook-header input { margin: 0px; } -/* line 2933, ../../../scss/_app_styles.scss */ +/* line 2932, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count { text-align: center; } -/* line 2938, ../../../scss/_app_styles.scss */ +/* line 2937, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:first-child { font-size: 21px; font-weight: 600; padding: 15px; } -/* line 2943, ../../../scss/_app_styles.scss */ +/* line 2942, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:last-child { background: lightgrey; padding: 2px 5px; vertical-align: text-bottom; } -/* line 2953, ../../../scss/_app_styles.scss */ +/* line 2952, ../../../scss/_app_styles.scss */ .notebook .notebook-body { padding: 0px 0px; } -/* line 2957, ../../../scss/_app_styles.scss */ +/* line 2956, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .row { margin: 30px 0px; } -/* line 2960, ../../../scss/_app_styles.scss */ +/* line 2959, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card, .notebook .notebook-body .note-cards .note-details { border: 1px solid #ccc; padding: 10px 15px; @@ -26189,12 +26188,12 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; position: relative; } -/* line 2969, ../../../scss/_app_styles.scss */ +/* line 2968, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-heading, .notebook .notebook-body .note-cards .note-details .note-heading { font-weight: 800; font-size: 20px; } -/* line 2973, ../../../scss/_app_styles.scss */ +/* line 2972, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-close, .notebook .notebook-body .note-cards .note-details .note-close { position: absolute; right: 7px; @@ -26203,22 +26202,22 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 700; color: #929292; } -/* line 2981, ../../../scss/_app_styles.scss */ +/* line 2980, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-summary, .notebook .notebook-body .note-cards .note-details .note-summary { margin: 15px 0px; } -/* line 2984, ../../../scss/_app_styles.scss */ +/* line 2983, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info, .notebook .notebook-body .note-cards .note-card .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data { color: #989898; font-size: 13px; letter-spacing: 0.9px; font-weight: 500; } -/* line 2990, ../../../scss/_app_styles.scss */ +/* line 2989, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info > span, .notebook .notebook-body .note-cards .note-card .note-extra-data > span, .notebook .notebook-body .note-cards .note-details .note-info > span, .notebook .notebook-body .note-cards .note-details .note-extra-data > span { margin-right: 5px; } -/* line 2995, ../../../scss/_app_styles.scss */ +/* line 2994, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-tags > span, .notebook .notebook-body .note-cards .note-details .note-tags > span { display: inline-block; margin: 10px; @@ -26226,53 +26225,53 @@ div.show-image:hover div.fullscreen-icon{ color: #cba552; padding: 2px 5px; } -/* line 3003, ../../../scss/_app_styles.scss */ +/* line 3002, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions, .notebook .notebook-body .note-cards .note-details .note-actions { color: #989898; cursor: pointer; } -/* line 3007, ../../../scss/_app_styles.scss */ +/* line 3006, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions span, .notebook .notebook-body .note-cards .note-details .note-actions span { margin-right: 10px 5px; } -/* line 3013, ../../../scss/_app_styles.scss */ +/* line 3012, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-tags, .notebook .notebook-body .note-cards .note-details .note-actions { display: inline-block; margin-right: 10px; } -/* line 3020, ../../../scss/_app_styles.scss */ +/* line 3019, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags { float: right; } -/* line 3022, ../../../scss/_app_styles.scss */ +/* line 3021, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags > span { margin: 0px; } -/* line 3031, ../../../scss/_app_styles.scss */ +/* line 3030, ../../../scss/_app_styles.scss */ .notebook .notebook-body > div { padding: 0px; } -/* line 3037, ../../../scss/_app_styles.scss */ +/* line 3036, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index { border-right: 1px solid #AFAEAE; padding: 4px 0px; background-color: #F1F1F1; } -/* line 3042, ../../../scss/_app_styles.scss */ +/* line 3041, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content { padding: 0px; } -/* line 3045, ../../../scss/_app_styles.scss */ +/* line 3044, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content .active { padding: 0px; } -/* line 3049, ../../../scss/_app_styles.scss */ +/* line 3048, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3054, ../../../scss/_app_styles.scss */ +/* line 3053, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title { width: 50%; /*background-color: #DEDEDE;*/ @@ -26280,114 +26279,114 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3061, ../../../scss/_app_styles.scss */ +/* line 3060, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title a { border-radius: inherit; font-size: 0.9rem; text-align: center; color: #989898; } -/* line 3068, ../../../scss/_app_styles.scss */ +/* line 3067, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3072, ../../../scss/_app_styles.scss */ +/* line 3071, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active a { color: #3a3169; } -/* line 3079, ../../../scss/_app_styles.scss */ +/* line 3078, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tab-content { padding: 0px; } -/* line 3084, ../../../scss/_app_styles.scss */ +/* line 3083, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date { font-size: 12px; font-weight: bold; background: #EFEFEF; padding: 7px 10px; } -/* line 3090, ../../../scss/_app_styles.scss */ +/* line 3089, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date .note-count { font-size: 11px; line-height: 2em; } -/* line 3095, ../../../scss/_app_styles.scss */ +/* line 3094, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes > div { border-bottom: 1px solid #AFAEAE; } -/* line 3098, ../../../scss/_app_styles.scss */ +/* line 3097, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note { padding: 5px 15px; background: #FFF; cursor: pointer; color: #A2A2A2; } -/* line 3104, ../../../scss/_app_styles.scss */ +/* line 3103, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-heading { font-weight: 400; font-size: 17px; } -/* line 3109, ../../../scss/_app_styles.scss */ +/* line 3108, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta { font-size: 13px; } -/* line 3112, ../../../scss/_app_styles.scss */ +/* line 3111, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta > span:not(:first-child) { font-size: 11px; font-weight: 600; color: #717171; } -/* line 3119, ../../../scss/_app_styles.scss */ +/* line 3118, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer { color: #888888; } -/* line 3122, ../../../scss/_app_styles.scss */ +/* line 3121, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer span { margin-right: 10px; } -/* line 3127, ../../../scss/_app_styles.scss */ +/* line 3126, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active { border-left: 5px solid #6153AE; background: #F4E7FF; font-weight: 800; color: #6153AE; } -/* line 3133, ../../../scss/_app_styles.scss */ +/* line 3132, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-heading { font-weight: 500; font-size: 17px; } -/* line 3137, ../../../scss/_app_styles.scss */ +/* line 3136, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-meta > span:not(:first-child) { color: #6153AE; } -/* line 3145, ../../../scss/_app_styles.scss */ +/* line 3144, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page { background-color: #fff; padding-bottom: 30px; } -/* line 3152, ../../../scss/_app_styles.scss */ +/* line 3151, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .group_content { margin-top: 5px; margin-left: 0px; } -/* line 3157, ../../../scss/_app_styles.scss */ +/* line 3156, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page > div { background-color: #fff; } -/* line 3161, ../../../scss/_app_styles.scss */ +/* line 3160, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar { padding: 1.8em 1.2em 0em; margin: 0em; background-color: #FFF; } -/* line 3166, ../../../scss/_app_styles.scss */ +/* line 3165, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .note-creator { font-weight: bold; } -/* line 3169, ../../../scss/_app_styles.scss */ +/* line 3168, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-title { text-align: left; color: #C3C3C3; @@ -26395,102 +26394,102 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.3px; margin-top: 5px; } -/* line 3176, ../../../scss/_app_styles.scss */ +/* line 3175, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating { text-align: right; } -/* line 3178, ../../../scss/_app_styles.scss */ +/* line 3177, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating > div { display: inline-block; } -/* line 3183, ../../../scss/_app_styles.scss */ +/* line 3182, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-title { font-size: 2.3em; font-weight: 500; margin-right: 1em; } -/* line 3188, ../../../scss/_app_styles.scss */ +/* line 3187, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content { padding: 2em 2em 1em; background: #fff; margin: 0em; } -/* line 3195, ../../../scss/_app_styles.scss */ +/* line 3194, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-header > div { display: inline-block; } -/* line 3200, ../../../scss/_app_styles.scss */ +/* line 3199, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text { font-size: 19px; letter-spacing: 0.7px; } -/* line 3203, ../../../scss/_app_styles.scss */ +/* line 3202, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text p { padding: 0px; } -/* line 3209, ../../../scss/_app_styles.scss */ +/* line 3208, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections { padding: 0em 1em 0em; } -/* line 3213, ../../../scss/_app_styles.scss */ +/* line 3212, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header span { font-weight: bold; } -/* line 3216, ../../../scss/_app_styles.scss */ +/* line 3215, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { margin-left: 15px; } -/* line 3221, ../../../scss/_app_styles.scss */ +/* line 3220, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment { border-top: 1px solid grey; padding: 15px 10px; margin-top: 5px; } -/* line 3226, ../../../scss/_app_styles.scss */ +/* line 3225, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { min-height: 200px; margin-top: 0px; } -/* line 3232, ../../../scss/_app_styles.scss */ +/* line 3231, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { font-size: 90px; line-height: 0em; } -/* line 3242, ../../../scss/_app_styles.scss */ +/* line 3241, ../../../scss/_app_styles.scss */ #newNoteModal { width: 40%; } -/* line 3245, ../../../scss/_app_styles.scss */ +/* line 3244, ../../../scss/_app_styles.scss */ #newNoteModal > div { margin-bottom: 1em; } -/* line 3249, ../../../scss/_app_styles.scss */ +/* line 3248, ../../../scss/_app_styles.scss */ #newNoteModal input { width: 100%; } -/* line 3252, ../../../scss/_app_styles.scss */ +/* line 3251, ../../../scss/_app_styles.scss */ #newNoteModal .heading { margin-right: 1em; } -/* line 3256, ../../../scss/_app_styles.scss */ +/* line 3255, ../../../scss/_app_styles.scss */ #newNoteModal .note-tags { padding: 1em; border: 1px solid black; } -/* line 3262, ../../../scss/_app_styles.scss */ +/* line 3261, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button { float: left; margin-left: 1em; margin-bottom: 0px; } -/* line 3267, ../../../scss/_app_styles.scss */ +/* line 3266, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button:last-child { float: right; } -/* line 3275, ../../../scss/_app_styles.scss */ +/* line 3274, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header { line-height: 2em; border-top: 1px solid #797979; @@ -26498,33 +26497,33 @@ div.show-image:hover div.fullscreen-icon{ text-align: center; padding: 0.7em 1em; } -/* line 3282, ../../../scss/_app_styles.scss */ +/* line 3281, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input, .gallery-page .gallery-header select, .gallery-page .gallery-header a { border-radius: 4px; margin-bottom: 0em; } -/* line 3286, ../../../scss/_app_styles.scss */ +/* line 3285, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input.prefix, .gallery-page .gallery-header select.prefix, .gallery-page .gallery-header a.prefix { border-radius: 0px; } -/* line 3291, ../../../scss/_app_styles.scss */ +/* line 3290, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header i { font-size: 1em; color: #A29E9E; } -/* line 3297, ../../../scss/_app_styles.scss */ +/* line 3296, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .filters .columns { padding-left: 5px; } -/* line 3303, ../../../scss/_app_styles.scss */ +/* line 3302, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .columns { padding-left: 5px; } -/* line 3307, ../../../scss/_app_styles.scss */ +/* line 3306, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags { text-align: left; } -/* line 3310, ../../../scss/_app_styles.scss */ +/* line 3309, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag { padding: 0px 10px; background: #cccccc; @@ -26534,73 +26533,73 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.8em; color: #757575; } -/* line 3319, ../../../scss/_app_styles.scss */ +/* line 3318, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag span { margin: 0px 2px 0px 6px; cursor: pointer; } -/* line 3324, ../../../scss/_app_styles.scss */ +/* line 3323, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags > div { display: inline-block; } -/* line 3331, ../../../scss/_app_styles.scss */ +/* line 3330, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading { font-size: 19px; } -/* line 3334, ../../../scss/_app_styles.scss */ +/* line 3333, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading a { background: #e7e7e7; border-width: 1px 0px 1px 1px; border-color: #cccccc; border-style: solid; } -/* line 3341, ../../../scss/_app_styles.scss */ +/* line 3340, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading input { border-radius: 0px; box-shadow: none; border-left: 0px; } -/* line 3348, ../../../scss/_app_styles.scss */ +/* line 3347, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel { background: #FFF; } -/* line 3351, ../../../scss/_app_styles.scss */ +/* line 3350, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content { min-height: 250px; } -/* line 3354, ../../../scss/_app_styles.scss */ +/* line 3353, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader { line-height: 3em; padding: 10px 0px; } -/* line 3358, ../../../scss/_app_styles.scss */ +/* line 3357, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader upload-file { margin: 0px; font-size: 1em; } -/* line 3363, ../../../scss/_app_styles.scss */ +/* line 3362, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions { font-size: 1.2em; color: #2a79e4; } -/* line 3367, ../../../scss/_app_styles.scss */ +/* line 3366, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions > div { display: inline-block; margin-right: 10px; } -/* line 3374, ../../../scss/_app_styles.scss */ +/* line 3373, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel { background: #fff; } -/* line 3377, ../../../scss/_app_styles.scss */ +/* line 3376, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row { margin: 10px 0px; } -/* line 3380, ../../../scss/_app_styles.scss */ +/* line 3379, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row > div:first-child { font-weight: 500; } -/* line 3385, ../../../scss/_app_styles.scss */ +/* line 3384, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .file-name { font-size: 20px; font-weight: bold; @@ -26608,11 +26607,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 10px 0px 20px; } -/* line 3396, ../../../scss/_app_styles.scss */ +/* line 3395, ../../../scss/_app_styles.scss */ .gallery-card .select-file { vertical-align: top; } -/* line 3400, ../../../scss/_app_styles.scss */ +/* line 3399, ../../../scss/_app_styles.scss */ .gallery-card .file-item { width: 80%; color: #fff; @@ -26623,17 +26622,17 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid black; overflow: hidden; } -/* line 3410, ../../../scss/_app_styles.scss */ +/* line 3409, ../../../scss/_app_styles.scss */ .gallery-card .file-item .item-thumbnail-image { height: 100%; padding: 1em; } -/* line 3415, ../../../scss/_app_styles.scss */ +/* line 3414, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-details { margin-top: 10%; display: none; } -/* line 3420, ../../../scss/_app_styles.scss */ +/* line 3419, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions { display: none; position: absolute; @@ -26642,11 +26641,11 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; font-size: 25px; } -/* line 3428, ../../../scss/_app_styles.scss */ +/* line 3427, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions i { margin: 0px 10px; } -/* line 3433, ../../../scss/_app_styles.scss */ +/* line 3432, ../../../scss/_app_styles.scss */ .gallery-card .file-item .filename-footer { position: absolute; bottom: 0px; @@ -26657,24 +26656,24 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 600; background: #999999; } -/* line 3444, ../../../scss/_app_styles.scss */ +/* line 3443, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover { background: #999999; } -/* line 3447, ../../../scss/_app_styles.scss */ +/* line 3446, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .item-thumbnail-image { opacity: 0.2; } -/* line 3451, ../../../scss/_app_styles.scss */ +/* line 3450, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .file-details, .gallery-card .file-item:hover .file-actions { display: block; } -/* line 3454, ../../../scss/_app_styles.scss */ +/* line 3453, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .filename-footer { display: none; } -/* line 3462, ../../../scss/_app_styles.scss */ +/* line 3461, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'], dialog[id^='reveal-'] { width: 100vw; height: 100vh; @@ -26738,49 +26737,49 @@ div.show-image:hover div.fullscreen-icon{ } }*/ } -/* line 3526, ../../../scss/_app_styles.scss */ +/* line 3525, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body, dialog[id^='reveal-'] .gmodal-body { position: relative; height: 100%; } -/* line 3529, ../../../scss/_app_styles.scss */ +/* line 3528, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel { background-color: #fff; height: 100%; } -/* line 3531, ../../../scss/_app_styles.scss */ +/* line 3530, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray { display: none; } -/* line 3535, ../../../scss/_app_styles.scss */ +/* line 3534, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe { height: 550px !important; width: 130% !important; } -/* line 3540, ../../../scss/_app_styles.scss */ +/* line 3539, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page { margin-top: -10px !important; } -/* line 3544, ../../../scss/_app_styles.scss */ +/* line 3543, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel span, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel span { display: none !important; } -/* line 3548, ../../../scss/_app_styles.scss */ +/* line 3547, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .button, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .button { display: none !important; } -/* line 3555, ../../../scss/_app_styles.scss */ +/* line 3554, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder { height: 100%; } -/* line 3558, ../../../scss/_app_styles.scss */ +/* line 3557, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item { height: 100%; width: 100%; background: transparent; padding: 0px; } -/* line 3564, ../../../scss/_app_styles.scss */ +/* line 3563, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image { width: auto; margin: 0px auto; @@ -26788,7 +26787,7 @@ div.show-image:hover div.fullscreen-icon{ padding: 1em 0em; height: 100%; } -/* line 3573, ../../../scss/_app_styles.scss */ +/* line 3572, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer { height: 2em; line-height: 2em; @@ -26800,32 +26799,32 @@ div.show-image:hover div.fullscreen-icon{ opacity: 0; background-color: rgba(0, 0, 0, 0.9); } -/* line 3584, ../../../scss/_app_styles.scss */ +/* line 3583, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details), dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details) { cursor: pointer; } -/* line 3588, ../../../scss/_app_styles.scss */ +/* line 3587, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details { text-align: center; width: 100%; } -/* line 3592, ../../../scss/_app_styles.scss */ +/* line 3591, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i { margin-left: 1em; margin-right: 0.5em; cursor: pointer; } -/* line 3600, ../../../scss/_app_styles.scss */ +/* line 3599, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer { opacity: 0.8; transition: opacity 1s; } -/* line 3605, ../../../scss/_app_styles.scss */ +/* line 3604, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel { height: 100%; padding: 0px 25px; } -/* line 3609, ../../../scss/_app_styles.scss */ +/* line 3608, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side { background: #fff; height: 100%; @@ -26846,31 +26845,31 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.9em; }*/ } -/* line 3613, ../../../scss/_app_styles.scss */ +/* line 3612, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div { width: 100%; display: block; margin: 12px 0px; padding: 0px 10px; } -/* line 3620, ../../../scss/_app_styles.scss */ +/* line 3619, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal { font-size: 20px; top: 6px; right: 26px; } -/* line 3627, ../../../scss/_app_styles.scss */ +/* line 3626, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span { vertical-align: top; margin-right: 5px; line-height: 35px; } -/* line 3632, ../../../scss/_app_styles.scss */ +/* line 3631, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating { background: #ccc; padding: 2px 5px; } -/* line 3638, ../../../scss/_app_styles.scss */ +/* line 3637, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a { padding: 3px 7px; background: #fff; @@ -26880,13 +26879,13 @@ div.show-image:hover div.fullscreen-icon{ margin-right: 10px; display: inline-block; } -/* line 3649, ../../../scss/_app_styles.scss */ +/* line 3648, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3654, ../../../scss/_app_styles.scss */ +/* line 3653, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26895,17 +26894,17 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3662, ../../../scss/_app_styles.scss */ +/* line 3661, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a { border-radius: inherit; } -/* line 3666, ../../../scss/_app_styles.scss */ +/* line 3665, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3674, ../../../scss/_app_styles.scss */ +/* line 3673, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span { font-weight: 500; font-size: 16px; @@ -26913,20 +26912,20 @@ div.show-image:hover div.fullscreen-icon{ line-height: 35px; } -/* line 3704, ../../../scss/_app_styles.scss */ +/* line 3703, ../../../scss/_app_styles.scss */ .user-comment { display: inline-flex; width: 100%; } -/* line 3708, ../../../scss/_app_styles.scss */ +/* line 3707, ../../../scss/_app_styles.scss */ .user-comment > div { display: inline-block; } -/* line 3711, ../../../scss/_app_styles.scss */ +/* line 3710, ../../../scss/_app_styles.scss */ .user-comment > div:last-child { width: 100%; } -/* line 3716, ../../../scss/_app_styles.scss */ +/* line 3715, ../../../scss/_app_styles.scss */ .user-comment .comment-heading { color: #9C9C9C; border-bottom: 1px solid grey; @@ -26934,71 +26933,71 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 10px; margin-top: 10px; } -/* line 3724, ../../../scss/_app_styles.scss */ +/* line 3723, ../../../scss/_app_styles.scss */ .user-comment .comment-heading > div { display: inline-block; } -/* line 3728, ../../../scss/_app_styles.scss */ +/* line 3727, ../../../scss/_app_styles.scss */ .user-comment .comment-heading .commentor-name span { font-weight: bold; color: #333333; } -/* line 3733, ../../../scss/_app_styles.scss */ +/* line 3732, ../../../scss/_app_styles.scss */ .user-comment .comment-footer { font-size: 0.9em; font-weight: 400; border: 1px solid #9E9E9E; background: #CCCCCC; } -/* line 3739, ../../../scss/_app_styles.scss */ +/* line 3738, ../../../scss/_app_styles.scss */ .user-comment .comment-footer > div { cursor: pointer; } -/* line 3742, ../../../scss/_app_styles.scss */ +/* line 3741, ../../../scss/_app_styles.scss */ .user-comment .comment-footer i { margin-right: 1em; } -/* line 3748, ../../../scss/_app_styles.scss */ +/* line 3747, ../../../scss/_app_styles.scss */ .user-comment .comment-container .comment-add { margin-top: 0.4em; } -/* line 3752, ../../../scss/_app_styles.scss */ +/* line 3751, ../../../scss/_app_styles.scss */ .user-comment .user-avatar { font-size: 10em; font-size: 5em; line-height: 1em; } -/* line 3759, ../../../scss/_app_styles.scss */ +/* line 3758, ../../../scss/_app_styles.scss */ .course-content { /*border-top: 1px solid #000;*/ } -/* line 3761, ../../../scss/_app_styles.scss */ +/* line 3760, ../../../scss/_app_styles.scss */ .course-content .alert-box { padding: 5px; font-size: 1em; } -/* line 3765, ../../../scss/_app_styles.scss */ +/* line 3764, ../../../scss/_app_styles.scss */ .course-content .alert-box > div { display: inline-block; vertical-align: top; } -/* line 3769, ../../../scss/_app_styles.scss */ +/* line 3768, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note { width: 96%; } -/* line 3772, ../../../scss/_app_styles.scss */ +/* line 3771, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note > div:nth-child(2) { color: #000; margin-top: 5px; padding-top: 5px; border-top: 1px solid #000; } -/* line 3779, ../../../scss/_app_styles.scss */ +/* line 3778, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-icon { margin: 0px 5px; } -/* line 3782, ../../../scss/_app_styles.scss */ +/* line 3781, ../../../scss/_app_styles.scss */ .course-content .alert-box .close { position: relative; top: 0px; @@ -27008,17 +27007,17 @@ div.show-image:hover div.fullscreen-icon{ text-decoration: underline; color: #085394 !important; } -/* line 3793, ../../../scss/_app_styles.scss */ +/* line 3792, ../../../scss/_app_styles.scss */ .course-content .collection { overflow: visible; } -/* line 3796, ../../../scss/_app_styles.scss */ +/* line 3795, ../../../scss/_app_styles.scss */ .course-content .collection .course-module { position: relative; border-bottom: 1px solid #CCC; padding: 1em 0em; } -/* line 3803, ../../../scss/_app_styles.scss */ +/* line 3802, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-header .fa { position: absolute; left: -1.1em; @@ -27027,58 +27026,58 @@ div.show-image:hover div.fullscreen-icon{ background: #EAEAEA; font-size: 1.4em; } -/* line 3821, ../../../scss/_app_styles.scss */ +/* line 3820, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-page:hover span { text-decoration: underline; color: #9900ff !important; } -/* line 3826, ../../../scss/_app_styles.scss */ +/* line 3825, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .jqtree-tree .jqtree-title { cursor: pointer; } -/* line 3830, ../../../scss/_app_styles.scss */ +/* line 3829, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part { margin-left: 1em; } -/* line 3833, ../../../scss/_app_styles.scss */ +/* line 3832, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler { color: #585858; } -/* line 3836, ../../../scss/_app_styles.scss */ +/* line 3835, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler.jqtree-closed { color: #CCC; } -/* line 3840, ../../../scss/_app_styles.scss */ +/* line 3839, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part span { vertical-align: top; } -/* line 3843, ../../../scss/_app_styles.scss */ +/* line 3842, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .fa { display: inline; margin-right: 5px; } -/* line 3853, ../../../scss/_app_styles.scss */ +/* line 3852, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header { font-weight: 400; font-size: 1.3em; border-bottom: 1px solid #707070; color: #797979; } -/* line 3859, ../../../scss/_app_styles.scss */ +/* line 3858, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header > div { padding: 0.3em 0em; } -/* line 3863, ../../../scss/_app_styles.scss */ +/* line 3862, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header a { color: #797979; } -/* line 3867, ../../../scss/_app_styles.scss */ +/* line 3866, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous { cursor: pointer; padding: 0px; } -/* line 3871, ../../../scss/_app_styles.scss */ +/* line 3870, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous a:first-child { border-right: 1px solid grey; padding-right: 5px; @@ -27086,27 +27085,27 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3880, ../../../scss/_app_styles.scss */ +/* line 3879, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header i { margin-right: 0.1em; } -/* line 3884, ../../../scss/_app_styles.scss */ +/* line 3883, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .unit-title { text-align: center; color: #999999; } -/* line 3888, ../../../scss/_app_styles.scss */ +/* line 3887, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-title { text-align: center; color: #000; } -/* line 3892, ../../../scss/_app_styles.scss */ +/* line 3891, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note { color: #2a78e3; cursor: pointer; padding: 0px; } -/* line 3897, ../../../scss/_app_styles.scss */ +/* line 3896, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note a:last-child { border-left: 1px solid grey; padding-left: 5px; @@ -27114,11 +27113,11 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3905, ../../../scss/_app_styles.scss */ +/* line 3904, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note > div { float: right; } -/* line 3910, ../../../scss/_app_styles.scss */ +/* line 3909, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container { border: 1px solid black; height: 100%; @@ -27126,18 +27125,18 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 2em; padding: 0em 1em; } -/* line 3917, ../../../scss/_app_styles.scss */ +/* line 3916, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides { height: 100%; } -/* line 3921, ../../../scss/_app_styles.scss */ +/* line 3920, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 3929, ../../../scss/_app_styles.scss */ +/* line 3928, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -27145,12 +27144,12 @@ div.show-image:hover div.fullscreen-icon{ color: #999999; margin-left: 12%; } -/* line 3937, ../../../scss/_app_styles.scss */ +/* line 3936, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 3943, ../../../scss/_app_styles.scss */ +/* line 3942, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -27159,21 +27158,21 @@ div.show-image:hover div.fullscreen-icon{ display: none; color: #8E8E8E; } -/* line 3952, ../../../scss/_app_styles.scss */ +/* line 3951, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 3957, ../../../scss/_app_styles.scss */ +/* line 3956, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 3959, ../../../scss/_app_styles.scss */ +/* line 3958, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 3962, ../../../scss/_app_styles.scss */ +/* line 3961, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -27184,24 +27183,24 @@ div.show-image:hover div.fullscreen-icon{ color: #757575; margin-right: 20px; } -/* line 3972, ../../../scss/_app_styles.scss */ +/* line 3971, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 3976, ../../../scss/_app_styles.scss */ +/* line 3975, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 3979, ../../../scss/_app_styles.scss */ +/* line 3978, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 3984, ../../../scss/_app_styles.scss */ +/* line 3983, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 3988, ../../../scss/_app_styles.scss */ +/* line 3987, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content { width: 75%; margin: 0px auto; @@ -27212,7 +27211,7 @@ div.show-image:hover div.fullscreen-icon{ min-height: 50px; position: relative; } -/* line 3998, ../../../scss/_app_styles.scss */ +/* line 3997, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -27220,15 +27219,15 @@ div.show-image:hover div.fullscreen-icon{ left: 8px; top: 4px; } -/* line 4006, ../../../scss/_app_styles.scss */ +/* line 4005, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 4008, ../../../scss/_app_styles.scss */ +/* line 4007, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 4011, ../../../scss/_app_styles.scss */ +/* line 4010, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -27238,27 +27237,27 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.8px; color: #999999; } -/* line 4020, ../../../scss/_app_styles.scss */ +/* line 4019, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 4026, ../../../scss/_app_styles.scss */ +/* line 4025, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 4033, ../../../scss/_app_styles.scss */ +/* line 4032, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section { width: 75%; margin: 0px auto; } -/* line 4037, ../../../scss/_app_styles.scss */ +/* line 4036, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section .user-prof-image { font-size: 7em; text-align: center; } -/* line 4042, ../../../scss/_app_styles.scss */ +/* line 4041, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section #postCommentBtn { padding: 2em 3em; } @@ -27279,28 +27278,28 @@ div.show-image:hover div.fullscreen-icon{ position: absolute; } */ -/* line 4063, ../../../scss/_app_styles.scss */ +/* line 4062, ../../../scss/_app_styles.scss */ .rate-scale { cursor: pointer; } -/* line 4066, ../../../scss/_app_styles.scss */ +/* line 4065, ../../../scss/_app_styles.scss */ .rate-scale i { margin-right: 0em !important; padding-right: 0.5em; } -/* line 4070, ../../../scss/_app_styles.scss */ +/* line 4069, ../../../scss/_app_styles.scss */ .rate-scale .hover-rating, .rate-scale .rated { color: yellow; } -/* line 4076, ../../../scss/_app_styles.scss */ +/* line 4075, ../../../scss/_app_styles.scss */ #left-tab { position: absolute; left: 0px; bottom: 0px; } -/* line 4081, ../../../scss/_app_styles.scss */ +/* line 4080, ../../../scss/_app_styles.scss */ #right-tab { position: absolute; right: 0px; @@ -27308,12 +27307,12 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 6px; } -/* line 4087, ../../../scss/_app_styles.scss */ +/* line 4086, ../../../scss/_app_styles.scss */ #enrolled-btn { margin-bottom: 0px; } -/* line 4090, ../../../scss/_app_styles.scss */ +/* line 4089, ../../../scss/_app_styles.scss */ div.absol-descrip { position: absolute; top: 190px; @@ -27324,14 +27323,14 @@ div.absol-descrip { } /*overview-summary styling*/ -/* line 4100, ../../../scss/_app_styles.scss */ +/* line 4099, ../../../scss/_app_styles.scss */ .course-title, .course-date { color: white; padding-top: 0px; padding-bottom: 0px; } -/* line 4105, ../../../scss/_app_styles.scss */ +/* line 4104, ../../../scss/_app_styles.scss */ .course-description { color: #cccccc; padding-top: 0px; @@ -27343,48 +27342,48 @@ div.absol-descrip { overflow: hidden; } -/* line 4115, ../../../scss/_app_styles.scss */ +/* line 4114, ../../../scss/_app_styles.scss */ .course-para { padding: 0; } -/* line 4119, ../../../scss/_app_styles.scss */ +/* line 4118, ../../../scss/_app_styles.scss */ course-title { padding-left: 10px; } -/* line 4122, ../../../scss/_app_styles.scss */ +/* line 4121, ../../../scss/_app_styles.scss */ .enroll-status-margin { margin-bottom: 0; } -/* line 4126, ../../../scss/_app_styles.scss */ +/* line 4125, ../../../scss/_app_styles.scss */ .progress-summery { color: white; margin-top: 20px; } -/* line 4130, ../../../scss/_app_styles.scss */ +/* line 4129, ../../../scss/_app_styles.scss */ .course-description-thumbnails { margin: 0; padding: 0; } -/* line 4135, ../../../scss/_app_styles.scss */ +/* line 4134, ../../../scss/_app_styles.scss */ .left-shift { padding: 0; color: white !important; } /*course overview for Small screens*/ -/* line 4141, ../../../scss/_app_styles.scss */ +/* line 4140, ../../../scss/_app_styles.scss */ .course { /*position:relative;*/ border: 1px solid black; background-color: #999999; } -/* line 4147, ../../../scss/_app_styles.scss */ +/* line 4146, ../../../scss/_app_styles.scss */ .course-contents { /*position:absolute;*/ width: 100%; @@ -27392,7 +27391,7 @@ course-title { /*Medium screens*/ @media only screen and (min-width: 40.063em) { - /* line 4154, ../../../scss/_app_styles.scss */ + /* line 4153, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27400,7 +27399,7 @@ course-title { background-color: #999999; } - /* line 4160, ../../../scss/_app_styles.scss */ + /* line 4159, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27410,7 +27409,7 @@ course-title { /* min-width 641px, medium screens */ /* Large screens*/ @media only screen and (min-width: 64.063em) { - /* line 4170, ../../../scss/_app_styles.scss */ + /* line 4169, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27418,7 +27417,7 @@ course-title { background-color: #999999; } - /* line 4176, ../../../scss/_app_styles.scss */ + /* line 4175, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27427,14 +27426,14 @@ course-title { } /* min-width 1025px, large screens */ /*General config css*/ -/* line 4183, ../../../scss/_app_styles.scss */ +/* line 4182, ../../../scss/_app_styles.scss */ .alert-box.warning { background: #ffe7c0; border-color: #bf9000; color: #966000; } -/* line 4190, ../../../scss/_app_styles.scss */ +/* line 4189, ../../../scss/_app_styles.scss */ .badge { display: inline-block; line-height: 22px; @@ -27451,7 +27450,7 @@ course-title { font-size: 1.8em; } -/* line 4206, ../../../scss/_app_styles.scss */ +/* line 4205, ../../../scss/_app_styles.scss */ .badge { background: #67c1ef; border-color: #30aae9; @@ -27461,7 +27460,7 @@ course-title { background-image: linear-gradient(to bottom, #acddf6, #67c1ef); } -/* line 4215, ../../../scss/_app_styles.scss */ +/* line 4214, ../../../scss/_app_styles.scss */ .badge.green { background: #77cc51; border-color: #59ad33; @@ -27471,7 +27470,7 @@ course-title { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 4224, ../../../scss/_app_styles.scss */ +/* line 4223, ../../../scss/_app_styles.scss */ .badge.yellow { background: #faba3e; border-color: #f4a306; @@ -27481,7 +27480,7 @@ course-title { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 4234, ../../../scss/_app_styles.scss */ +/* line 4233, ../../../scss/_app_styles.scss */ .badge.red { background: #fa623f; border-color: #fa5a35; @@ -27492,12 +27491,12 @@ course-title { } /* Course/ Event Card CSS*/ -/* line 4250, ../../../scss/_app_styles.scss */ +/* line 4249, ../../../scss/_app_styles.scss */ .card-image-wrapper { position: relative; } -/* line 4254, ../../../scss/_app_styles.scss */ +/* line 4253, ../../../scss/_app_styles.scss */ .event-card { padding: 0px; min-height: 22rem; @@ -27506,12 +27505,12 @@ course-title { border-radius: 10px; background-color: #fff; } -/* line 4262, ../../../scss/_app_styles.scss */ +/* line 4261, ../../../scss/_app_styles.scss */ .event-card:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 4267, ../../../scss/_app_styles.scss */ +/* line 4266, ../../../scss/_app_styles.scss */ .event-card .event-card-status { z-index: 99; width: auto; @@ -27526,31 +27525,31 @@ course-title { border-radius: 4px; letter-spacing: 0.3px; } -/* line 4281, ../../../scss/_app_styles.scss */ +/* line 4280, ../../../scss/_app_styles.scss */ .event-card .event-card-status.open { background-color: #00b300; } -/* line 4284, ../../../scss/_app_styles.scss */ +/* line 4283, ../../../scss/_app_styles.scss */ .event-card .event-card-status.closed { background-color: red; } -/* line 4287, ../../../scss/_app_styles.scss */ +/* line 4286, ../../../scss/_app_styles.scss */ .event-card .event-card-status.in-progress { background-color: #00b300; } -/* line 4290, ../../../scss/_app_styles.scss */ +/* line 4289, ../../../scss/_app_styles.scss */ .event-card .event-card-status.forthcoming { background-color: #F2910D; } -/* line 4293, ../../../scss/_app_styles.scss */ +/* line 4292, ../../../scss/_app_styles.scss */ .event-card .event-card-status.upcoming { background-color: #F2910D; } -/* line 4297, ../../../scss/_app_styles.scss */ +/* line 4296, ../../../scss/_app_styles.scss */ .event-card .event-card-status.completed { background-color: #4d4d4d; } -/* line 4302, ../../../scss/_app_styles.scss */ +/* line 4301, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications { position: absolute; top: 2px; @@ -27559,46 +27558,46 @@ course-title { color: #F04124; font-weight: 600; } -/* line 4310, ../../../scss/_app_styles.scss */ +/* line 4309, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications .badge { padding: 0px 5px; font-size: 1.4em; font-weight: 600; } -/* line 4317, ../../../scss/_app_styles.scss */ +/* line 4316, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status { font-weight: 500; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 4322, ../../../scss/_app_styles.scss */ +/* line 4321, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.open { color: #00b300; } -/* line 4326, ../../../scss/_app_styles.scss */ +/* line 4325, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.closed { color: red; } -/* line 4330, ../../../scss/_app_styles.scss */ +/* line 4329, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.in-progress { color: #000; } -/* line 4333, ../../../scss/_app_styles.scss */ +/* line 4332, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.forthcoming { color: #F2910D; } -/* line 4337, ../../../scss/_app_styles.scss */ +/* line 4336, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.completed { color: #4d4d4d; } -/* line 4341, ../../../scss/_app_styles.scss */ +/* line 4340, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status .event-time { font-size: 0.7em; display: block; font-weight: 400; display: inline; } -/* line 4349, ../../../scss/_app_styles.scss */ +/* line 4348, ../../../scss/_app_styles.scss */ .event-card .event-card-title { color: #0d0d0d; display: inline-block; @@ -27609,19 +27608,19 @@ course-title { font-size: 2em; font-weight: 400; } -/* line 4360, ../../../scss/_app_styles.scss */ +/* line 4359, ../../../scss/_app_styles.scss */ .event-card .event-card-desc { word-wrap: break-word; font-size: 0.6em; color: #333333; padding-left: 4px; } -/* line 4366, ../../../scss/_app_styles.scss */ +/* line 4365, ../../../scss/_app_styles.scss */ .event-card p { margin: 0px; padding: 10px; } -/* line 4372, ../../../scss/_app_styles.scss */ +/* line 4371, ../../../scss/_app_styles.scss */ .event-card .event-card-image { padding: 0px; margin: 0px; @@ -27633,7 +27632,7 @@ course-title { background-color: #e5e5e5; border-radius: 10px 10px 0px 0px; } -/* line 4383, ../../../scss/_app_styles.scss */ +/* line 4382, ../../../scss/_app_styles.scss */ .event-card .event-card-image img { border-radius: 2px 2px 0 0; display: block; @@ -27642,7 +27641,7 @@ course-title { opacity: 0.25; height: 100%; } -/* line 4392, ../../../scss/_app_styles.scss */ +/* line 4391, ../../../scss/_app_styles.scss */ .event-card .event-card-image i { font-size: 7rem; opacity: 0.75; @@ -27656,51 +27655,51 @@ course-title { text-transform: none; text-decoration: inherit; } -/* line 4406, ../../../scss/_app_styles.scss */ +/* line 4405, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.file:before { content: "\f18e"; } -/* line 4409, ../../../scss/_app_styles.scss */ +/* line 4408, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.page:before { content: "\f18e"; } -/* line 4412, ../../../scss/_app_styles.scss */ +/* line 4411, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.collection:before { content: "\f18a"; } -/* line 4415, ../../../scss/_app_styles.scss */ +/* line 4414, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.documents:before { content: "\f18b"; } -/* line 4418, ../../../scss/_app_styles.scss */ +/* line 4417, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.pdf:before { content: "\f18b"; } -/* line 4421, ../../../scss/_app_styles.scss */ +/* line 4420, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.text:before { content: "\f18e"; } -/* line 4424, ../../../scss/_app_styles.scss */ +/* line 4423, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.interactives:before { content: "\f1b2"; } -/* line 4427, ../../../scss/_app_styles.scss */ +/* line 4426, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.ebooks:before { content: "\f11e"; } -/* line 4430, ../../../scss/_app_styles.scss */ +/* line 4429, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.images:before { content: "\f125"; } -/* line 4433, ../../../scss/_app_styles.scss */ +/* line 4432, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.audios:before, .event-card .event-card-image i.audio:before { content: "\f17b"; } -/* line 4436, ../../../scss/_app_styles.scss */ +/* line 4435, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.videos:before, .event-card .event-card-image i.video:before { content: "\f20e"; } -/* line 4440, ../../../scss/_app_styles.scss */ +/* line 4439, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer { padding: 0.7em 1em; border-top: 1px solid #DCDCDC; @@ -27711,7 +27710,7 @@ course-title { background-color: #F3F3F3; border-radius: 0px 0px 10px 10px; } -/* line 4450, ../../../scss/_app_styles.scss */ +/* line 4449, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .footer-label { text-transform: uppercase; font-size: 10px; @@ -27719,54 +27718,54 @@ course-title { margin-bottom: 2px; color: #ADADAD; } -/* line 4458, ../../../scss/_app_styles.scss */ +/* line 4457, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date { color: #929292; font-size: 0.85em; letter-spacing: 0.5px; } -/* line 4463, ../../../scss/_app_styles.scss */ +/* line 4462, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date i:not(.edit-course-duration, .edit-course-enrollment) { margin-right: 0.3em; } -/* line 4467, ../../../scss/_app_styles.scss */ +/* line 4466, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .row { margin: 10px 0px 0px; } -/* line 4471, ../../../scss/_app_styles.scss */ +/* line 4470, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration, .event-card .edit-course-enrollment { float: right; font-size: 1.5em; color: #DADADA; } -/* line 4475, ../../../scss/_app_styles.scss */ +/* line 4474, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration:hover, .event-card .edit-course-enrollment:hover { color: #565656; } -/* line 4479, ../../../scss/_app_styles.scss */ +/* line 4478, ../../../scss/_app_styles.scss */ .event-card .published.scard-action { background: #A6D9CB; } -/* line 4483, ../../../scss/_app_styles.scss */ +/* line 4482, ../../../scss/_app_styles.scss */ .event-card .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 4488, ../../../scss/_app_styles.scss */ +/* line 4487, ../../../scss/_app_styles.scss */ .event-card .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4493, ../../../scss/_app_styles.scss */ +/* line 4492, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action { border-color: transparent #6153ae transparent transparent; border-color: rgba(255, 255, 255, 0) #6153ae rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4497, ../../../scss/_app_styles.scss */ +/* line 4496, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 4501, ../../../scss/_app_styles.scss */ +/* line 4500, ../../../scss/_app_styles.scss */ .event-card .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -27777,17 +27776,17 @@ course-title { /* End Course/events Card CSS*/ /* Landing page */ -/* line 4513, ../../../scss/_app_styles.scss */ +/* line 4512, ../../../scss/_app_styles.scss */ .landing_page { position: relative; text-align: center; } -/* line 4517, ../../../scss/_app_styles.scss */ +/* line 4516, ../../../scss/_app_styles.scss */ .landing_page .panel { background-color: inherit; border: none; } -/* line 4522, ../../../scss/_app_styles.scss */ +/* line 4521, ../../../scss/_app_styles.scss */ .landing_page .landing_page_background { height: 100%; width: 100%; @@ -27799,24 +27798,24 @@ course-title { background: -ms-linear-gradient(left, #E9A900, #B0108D); background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 4534, ../../../scss/_app_styles.scss */ +/* line 4533, ../../../scss/_app_styles.scss */ .landing_page .clix_brief { text-align: left; padding: 20px 5%; } -/* line 4538, ../../../scss/_app_styles.scss */ +/* line 4537, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 30px 20px; height: 70px; } @media screen and (max-width: 450px) { - /* line 4538, ../../../scss/_app_styles.scss */ + /* line 4537, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 25px 10px; height: 55px; } } -/* line 4546, ../../../scss/_app_styles.scss */ +/* line 4545, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { color: #fff; font-size: 26px; @@ -27824,12 +27823,12 @@ course-title { font-family: 'ubuntu-light'; } @media screen and (max-width: 450px) { - /* line 4546, ../../../scss/_app_styles.scss */ + /* line 4545, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { font-size: 18px; } } -/* line 4557, ../../../scss/_app_styles.scss */ +/* line 4556, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { background-color: rgba(255, 255, 255, 0.92); border-radius: 10px; @@ -27840,12 +27839,12 @@ course-title { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); } @media screen and (min-width: 1025px) { - /* line 4557, ../../../scss/_app_styles.scss */ + /* line 4556, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { margin: 200px auto; } } -/* line 4569, ../../../scss/_app_styles.scss */ +/* line 4568, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix > span { font-family: 'ubuntu-bold'; color: #6658af; @@ -27856,7 +27855,7 @@ course-title { display: inline-block; vertical-align: middle; } -/* line 4579, ../../../scss/_app_styles.scss */ +/* line 4578, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix p { color: #b0108d; font-size: 21px; @@ -27864,28 +27863,28 @@ course-title { font-weight: 300; font-family: 'ubuntu-light'; } -/* line 4587, ../../../scss/_app_styles.scss */ +/* line 4586, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix img { height: 30px; } -/* line 4590, ../../../scss/_app_styles.scss */ +/* line 4589, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form { margin-top: 30px; } -/* line 4593, ../../../scss/_app_styles.scss */ +/* line 4592, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form input { font-size: 24px; height: 45px; margin: 5px 0px 24px; } -/* line 4600, ../../../scss/_app_styles.scss */ +/* line 4599, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix input.button { font-size: 15px; border-radius: 5px; font-family: 'ubuntu-bold'; text-transform: uppercase; } -/* line 4606, ../../../scss/_app_styles.scss */ +/* line 4605, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix a.grey { color: #999; /*display: inline-block; @@ -27896,7 +27895,7 @@ course-title { font-family: 'ubuntu-bold'; text-transform: uppercase;*/ } -/* line 4617, ../../../scss/_app_styles.scss */ +/* line 4616, ../../../scss/_app_styles.scss */ .landing_page .flowers { left: 50px; height: 500px; @@ -27904,18 +27903,18 @@ course-title { opacity: 0.6; } @media screen and (max-width: 450px) { - /* line 4617, ../../../scss/_app_styles.scss */ + /* line 4616, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 250px; } } @media screen and (min-width: 451px) and (max-width: 1025px) { - /* line 4617, ../../../scss/_app_styles.scss */ + /* line 4616, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 350px; } } -/* line 4629, ../../../scss/_app_styles.scss */ +/* line 4628, ../../../scss/_app_styles.scss */ .landing_page .bees { position: absolute; top: 5px; @@ -27923,40 +27922,40 @@ course-title { height: 150px; } @media screen and (max-width: 450px) { - /* line 4629, ../../../scss/_app_styles.scss */ + /* line 4628, ../../../scss/_app_styles.scss */ .landing_page .bees { right: 15px; height: 100px; } } -/* line 4639, ../../../scss/_app_styles.scss */ +/* line 4638, ../../../scss/_app_styles.scss */ .landing_page h2 { color: #A0148E; font-weight: 600; } -/* line 4643, ../../../scss/_app_styles.scss */ +/* line 4642, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text { color: #6153ae; } -/* line 4646, ../../../scss/_app_styles.scss */ +/* line 4645, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text p { font-size: 18px; } /* END of Landing page */ -/* line 4652, ../../../scss/_app_styles.scss */ +/* line 4651, ../../../scss/_app_styles.scss */ .audio-caption { cursor: pointer; } -/* line 4656, ../../../scss/_app_styles.scss */ +/* line 4655, ../../../scss/_app_styles.scss */ .gallery-image { cursor: pointer; max-height: 100px; border: 1px solid !important; } -/* line 4662, ../../../scss/_app_styles.scss */ +/* line 4661, ../../../scss/_app_styles.scss */ .show-collection { color: black !important; font-size: 1.1em; @@ -27969,25 +27968,25 @@ course-title { border: 1px solid #eee; } -/* line 4674, ../../../scss/_app_styles.scss */ +/* line 4673, ../../../scss/_app_styles.scss */ .processing-screen { background-color: #6153ae !important; } -/* line 4678, ../../../scss/_app_styles.scss */ +/* line 4677, ../../../scss/_app_styles.scss */ .processing-screen-label { width: 500px !important; font-style: normal !important; } -/* line 4682, ../../../scss/_app_styles.scss */ +/* line 4681, ../../../scss/_app_styles.scss */ h3 { font-size: 20px; color: #164A7B; font-family: 'OpenSans-Semibold'; } -/* line 4688, ../../../scss/_app_styles.scss */ +/* line 4687, ../../../scss/_app_styles.scss */ h5 { color: #99aaba; font-size: 10px; @@ -27996,7 +27995,7 @@ h5 { margin-left: 5px; } -/* line 4696, ../../../scss/_app_styles.scss */ +/* line 4695, ../../../scss/_app_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28005,12 +28004,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4703, ../../../scss/_app_styles.scss */ +/* line 4702, ../../../scss/_app_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 4707, ../../../scss/_app_styles.scss */ +/* line 4706, ../../../scss/_app_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28019,12 +28018,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4714, ../../../scss/_app_styles.scss */ +/* line 4713, ../../../scss/_app_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 4720, ../../../scss/_app_styles.scss */ +/* line 4719, ../../../scss/_app_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28036,7 +28035,7 @@ h5 { color: #6153AE; } -/* line 4731, ../../../scss/_app_styles.scss */ +/* line 4730, ../../../scss/_app_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28049,14 +28048,14 @@ h5 { display: inline-block; color: #6153AE; } -/* line 4743, ../../../scss/_app_styles.scss */ +/* line 4742, ../../../scss/_app_styles.scss */ .add-note-btn:hover { cursor: pointer; color: #6153AE; background-color: #ffffff; } -/* line 4751, ../../../scss/_app_styles.scss */ +/* line 4750, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -28068,7 +28067,7 @@ h5 { border: 2px solid #6153ae; background-color: #dbd4e1; } -/* line 4762, ../../../scss/_app_styles.scss */ +/* line 4761, ../../../scss/_app_styles.scss */ .explore-button:hover { cursor: pointer; } @@ -28076,12 +28075,12 @@ h5 { /*Blue color variable*/ /*Orange color variables*/ /* module detail settings drop */ -/* line 4793, ../../../scss/_app_styles.scss */ +/* line 4792, ../../../scss/_app_styles.scss */ .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4796, ../../../scss/_app_styles.scss */ +/* line 4795, ../../../scss/_app_styles.scss */ .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28094,17 +28093,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4807, ../../../scss/_app_styles.scss */ +/* line 4806, ../../../scss/_app_styles.scss */ .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4813, ../../../scss/_app_styles.scss */ +/* line 4812, ../../../scss/_app_styles.scss */ .explore-settings-drop a { font-size: 16px; } -/* line 4816, ../../../scss/_app_styles.scss */ +/* line 4815, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28112,12 +28111,12 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4816, ../../../scss/_app_styles.scss */ +/* line 4815, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4819, ../../../scss/_app_styles.scss */ +/* line 4818, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28130,17 +28129,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4830, ../../../scss/_app_styles.scss */ +/* line 4829, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4836, ../../../scss/_app_styles.scss */ +/* line 4835, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop a { font-size: 16px; } -/* line 4839, ../../../scss/_app_styles.scss */ +/* line 4838, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28148,33 +28147,33 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4847, ../../../scss/_app_styles.scss */ +/* line 4846, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4851, ../../../scss/_app_styles.scss */ +/* line 4850, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4864, ../../../scss/_app_styles.scss */ +/* line 4863, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4868, ../../../scss/_app_styles.scss */ +/* line 4867, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4875, ../../../scss/_app_styles.scss */ +/* line 4874, ../../../scss/_app_styles.scss */ .edit_button { color: #717171; } -/* line 4877, ../../../scss/_app_styles.scss */ +/* line 4876, ../../../scss/_app_styles.scss */ .edit_button:hover { border-left: 2px solid #ce7869; } -/* line 4883, ../../../scss/_app_styles.scss */ +/* line 4882, ../../../scss/_app_styles.scss */ .left-btn { margin-top: 0px; margin-right: 0px; @@ -28186,7 +28185,7 @@ h5 { color: #555555; font-size: 11px; } -/* line 4893, ../../../scss/_app_styles.scss */ +/* line 4892, ../../../scss/_app_styles.scss */ .left-btn:hover { display: block; padding: 0.5rem; @@ -28194,7 +28193,7 @@ h5 { border-left: 2px solid #ce7869; } -/* line 4902, ../../../scss/_app_styles.scss */ +/* line 4901, ../../../scss/_app_styles.scss */ .chnge-img:hover { display: block; padding: 0.5rem; @@ -28202,14 +28201,14 @@ h5 { border-left: 2px solid #ce7869; } -/* line 4913, ../../../scss/_app_styles.scss */ +/* line 4912, ../../../scss/_app_styles.scss */ .lms_page .lms_banner { width: 100%; height: 150px; background-size: 100% 100%; position: relative; } -/* line 4921, ../../../scss/_app_styles.scss */ +/* line 4920, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -28222,27 +28221,27 @@ h5 { bottom: 0; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 4934, ../../../scss/_app_styles.scss */ +/* line 4933, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before a { cursor: pointer; } -/* line 4939, ../../../scss/_app_styles.scss */ +/* line 4938, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .div-height { height: 150px !important; background-size: 100% 100%; position: absolute !important; } -/* line 4947, ../../../scss/_app_styles.scss */ +/* line 4946, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .enroll_unit > a { cursor: pointer; } -/* line 4951, ../../../scss/_app_styles.scss */ +/* line 4950, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 4957, ../../../scss/_app_styles.scss */ +/* line 4956, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .unit_name { font-size: 36px; font-family: OpenSans-Semibold; @@ -28253,17 +28252,17 @@ h5 { transition: border-radius .2s; text-shadow: 3px 2px #164a7b; } -/* line 4968, ../../../scss/_app_styles.scss */ +/* line 4967, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .right-margin { margin-right: 46px; } -/* line 4977, ../../../scss/_app_styles.scss */ +/* line 4976, ../../../scss/_app_styles.scss */ .border-bottom-lms-header { border-bottom: 1px solid #00000029; } -/* line 4982, ../../../scss/_app_styles.scss */ +/* line 4981, ../../../scss/_app_styles.scss */ .lms_secondary_header { width: 100%; position: relative; @@ -28271,11 +28270,11 @@ h5 { box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 4988, ../../../scss/_app_styles.scss */ +/* line 4987, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions { margin-top: 8px; } -/* line 4991, ../../../scss/_app_styles.scss */ +/* line 4990, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28287,11 +28286,11 @@ h5 { opacity: 0.8; } @media screen and (min-width: 980px) and (max-width: 1000px) { - /* line 5005, ../../../scss/_app_styles.scss */ + /* line 5004, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions { margin-top: 8px; } - /* line 5008, ../../../scss/_app_styles.scss */ + /* line 5007, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions > span { margin-left: 50px; background: #2e3f51; @@ -28305,16 +28304,16 @@ h5 { } } -/* line 5028, ../../../scss/_app_styles.scss */ +/* line 5027, ../../../scss/_app_styles.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; } -/* line 5031, ../../../scss/_app_styles.scss */ +/* line 5030, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 5034, ../../../scss/_app_styles.scss */ +/* line 5033, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a { list-style-type: none; display: inline-block; @@ -28325,23 +28324,23 @@ ul.nav_menu_1 > li > a { letter-spacing: 0.8px; border-bottom: 3px solid transparent; } -/* line 5045, ../../../scss/_app_styles.scss */ +/* line 5044, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-bottom: 3px solid #a2238d; } -/* line 5056, ../../../scss/_app_styles.scss */ +/* line 5055, ../../../scss/_app_styles.scss */ ul.authoring-tab { margin-bottom: 0px; display: inline; width: 50%; } -/* line 5060, ../../../scss/_app_styles.scss */ +/* line 5059, ../../../scss/_app_styles.scss */ ul.authoring-tab > li { display: inline-block; background-color: #164a7b; } -/* line 5063, ../../../scss/_app_styles.scss */ +/* line 5062, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a { list-style-type: none; margin-right: -4px; @@ -28354,13 +28353,13 @@ ul.authoring-tab > li > a { border-bottom: 3px solid transparent; color: #ffffff !important; } -/* line 5074, ../../../scss/_app_styles.scss */ +/* line 5073, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-bottom: 3px solid #a2238d; } /* Secondary Top Bar */ -/* line 5083, ../../../scss/_app_styles.scss */ +/* line 5082, ../../../scss/_app_styles.scss */ .secondary-header-tabs { color: #719dc7; font-weight: 400; @@ -28370,11 +28369,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -webkit-transition: color 1s ease, border-color 1s ease; display: inline-block; } -/* line 5092, ../../../scss/_app_styles.scss */ +/* line 5091, ../../../scss/_app_styles.scss */ .secondary-header-tabs:hover { color: #164A7B; } -/* line 5096, ../../../scss/_app_styles.scss */ +/* line 5095, ../../../scss/_app_styles.scss */ .secondary-header-tabs.active { color: #164A7B; border-bottom: 2px solid #164A7B; @@ -28382,7 +28381,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: 600; } -/* line 5106, ../../../scss/_app_styles.scss */ +/* line 5105, ../../../scss/_app_styles.scss */ .secondary-header-button { color: #3c556d; font-weight: 700; @@ -28395,12 +28394,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-size: 13px; letter-spacing: 1.2px; } -/* line 5118, ../../../scss/_app_styles.scss */ +/* line 5117, ../../../scss/_app_styles.scss */ .secondary-header-button:hover { opacity: 0.5; } -/* line 5125, ../../../scss/_app_styles.scss */ +/* line 5124, ../../../scss/_app_styles.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -28409,34 +28408,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: -8px; } -/* line 5136, ../../../scss/_app_styles.scss */ +/* line 5135, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 5141, ../../../scss/_app_styles.scss */ +/* line 5140, ../../../scss/_app_styles.scss */ .top-bar-second .name { text-align: center; } -/* line 5144, ../../../scss/_app_styles.scss */ +/* line 5143, ../../../scss/_app_styles.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 5154, ../../../scss/_app_styles.scss */ +/* line 5153, ../../../scss/_app_styles.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 5162, ../../../scss/_app_styles.scss */ +/* line 5161, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 5164, ../../../scss/_app_styles.scss */ +/* line 5163, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -28445,31 +28444,31 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; letter-spacing: 0.5px; } -/* line 5175, ../../../scss/_app_styles.scss */ +/* line 5174, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 5183, ../../../scss/_app_styles.scss */ +/* line 5182, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 5189, ../../../scss/_app_styles.scss */ +/* line 5188, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 5200, ../../../scss/_app_styles.scss */ + /* line 5199, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 5202, ../../../scss/_app_styles.scss */ + /* line 5201, ../../../scss/_app_styles.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 5209, ../../../scss/_app_styles.scss */ + /* line 5208, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -28477,32 +28476,32 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { line-height: 52px; border-left-width: 0px; } - /* line 5216, ../../../scss/_app_styles.scss */ + /* line 5215, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5222, ../../../scss/_app_styles.scss */ + /* line 5221, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5230, ../../../scss/_app_styles.scss */ + /* line 5229, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 5240, ../../../scss/_app_styles.scss */ + /* line 5239, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 5249, ../../../scss/_app_styles.scss */ + /* line 5248, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 5256, ../../../scss/_app_styles.scss */ + /* line 5255, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; @@ -28517,7 +28516,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { /** * Sass styles related to unit cards */ -/* line 5284, ../../../scss/_app_styles.scss */ +/* line 5283, ../../../scss/_app_styles.scss */ .unit_card { width: 300px; color: #000; @@ -28529,7 +28528,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { position: relative; height: 210px; } -/* line 5298, ../../../scss/_app_styles.scss */ +/* line 5297, ../../../scss/_app_styles.scss */ .unit_card .unit_status { position: absolute; right: 0px; @@ -28540,11 +28539,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-radius: 3px; letter-spacing: 0.6px; } -/* line 5309, ../../../scss/_app_styles.scss */ +/* line 5308, ../../../scss/_app_styles.scss */ .unit_card .unit_header { display: table; } -/* line 5311, ../../../scss/_app_styles.scss */ +/* line 5310, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_banner { display: table-cell; border-radius: 5px; @@ -28553,7 +28552,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-right: 10px; color: #333333; } -/* line 5319, ../../../scss/_app_styles.scss */ +/* line 5318, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_title { display: table-cell; font-size: 20px; @@ -28567,7 +28566,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { vertical-align: middle; color: #333333; } -/* line 5333, ../../../scss/_app_styles.scss */ +/* line 5332, ../../../scss/_app_styles.scss */ .unit_card .unit_desc { display: block; /* Fallback for non-webkit */ @@ -28584,16 +28583,16 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin: 10px 0px 20px; color: #333333; } -/* line 5349, ../../../scss/_app_styles.scss */ +/* line 5348, ../../../scss/_app_styles.scss */ .unit_card .unit_breif .unit_breif_row i { margin-right: 10px; color: #99aaba; } -/* line 5355, ../../../scss/_app_styles.scss */ +/* line 5354, ../../../scss/_app_styles.scss */ .unit_card .unit_actions { padding: 5px 0px; } -/* line 5360, ../../../scss/_app_styles.scss */ +/* line 5359, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol { background: #a2238d; height: 37px; @@ -28606,11 +28605,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5372, ../../../scss/_app_styles.scss */ +/* line 5371, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 5377, ../../../scss/_app_styles.scss */ +/* line 5376, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics { color: #a2238d; font-weight: 500; @@ -28618,7 +28617,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.3px; border-bottom: 2px solid #a2238d; } -/* line 5385, ../../../scss/_app_styles.scss */ +/* line 5384, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics-points { background: #ffffff; color: #a2238d; @@ -28629,7 +28628,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; cursor: default; } -/* line 5396, ../../../scss/_app_styles.scss */ +/* line 5395, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit { height: 37px; text-align: center; @@ -28638,13 +28637,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5404, ../../../scss/_app_styles.scss */ +/* line 5403, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit:hover { border-bottom: 2px solid #ffc14e; } /* unit cards labels */ -/* line 5414, ../../../scss/_app_styles.scss */ +/* line 5413, ../../../scss/_app_styles.scss */ .status-completed { width: auto; top: -1.15em; @@ -28661,7 +28660,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5430, ../../../scss/_app_styles.scss */ +/* line 5429, ../../../scss/_app_styles.scss */ .status-in-progress { width: auto; top: -1.15em; @@ -28678,7 +28677,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5447, ../../../scss/_app_styles.scss */ +/* line 5446, ../../../scss/_app_styles.scss */ .status-upcoming { width: auto; top: -1.15em; @@ -28695,7 +28694,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5464, ../../../scss/_app_styles.scss */ +/* line 5463, ../../../scss/_app_styles.scss */ .status-draft { width: auto; top: -1.15em; @@ -28712,7 +28711,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5482, ../../../scss/_app_styles.scss */ +/* line 5481, ../../../scss/_app_styles.scss */ .status-workspace { width: auto; top: -1.15em; @@ -28729,48 +28728,48 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5499, ../../../scss/_app_styles.scss */ +/* line 5498, ../../../scss/_app_styles.scss */ .icon-widget { font-size: 24px; } /* module detail css */ -/* line 5508, ../../../scss/_app_styles.scss */ +/* line 5507, ../../../scss/_app_styles.scss */ .thumbnail_style { margin-left: -30px; } -/* line 5512, ../../../scss/_app_styles.scss */ +/* line 5511, ../../../scss/_app_styles.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 5518, ../../../scss/_app_styles.scss */ +/* line 5517, ../../../scss/_app_styles.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); padding-left: 10px; height: auto; min-height: 143px; } -/* line 5524, ../../../scss/_app_styles.scss */ +/* line 5523, ../../../scss/_app_styles.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 5534, ../../../scss/_app_styles.scss */ +/* line 5533, ../../../scss/_app_styles.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 5539, ../../../scss/_app_styles.scss */ +/* line 5538, ../../../scss/_app_styles.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 5542, ../../../scss/_app_styles.scss */ +/* line 5541, ../../../scss/_app_styles.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28784,7 +28783,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 5559, ../../../scss/_app_styles.scss */ +/* line 5558, ../../../scss/_app_styles.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -28798,7 +28797,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* Creating and editing course Structure */ -/* line 5576, ../../../scss/_app_styles.scss */ +/* line 5575, ../../../scss/_app_styles.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -28809,34 +28808,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 5585, ../../../scss/_app_styles.scss */ +/* line 5584, ../../../scss/_app_styles.scss */ .group_tile:hover { opacity: 0.7; } -/* line 5588, ../../../scss/_app_styles.scss */ +/* line 5587, ../../../scss/_app_styles.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 5595, ../../../scss/_app_styles.scss */ +/* line 5594, ../../../scss/_app_styles.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 5602, ../../../scss/_app_styles.scss */ +/* line 5601, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 5605, ../../../scss/_app_styles.scss */ +/* line 5604, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 5608, ../../../scss/_app_styles.scss */ +/* line 5607, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -28844,15 +28843,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 5616, ../../../scss/_app_styles.scss */ +/* line 5615, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 5620, ../../../scss/_app_styles.scss */ +/* line 5619, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 5622, ../../../scss/_app_styles.scss */ +/* line 5621, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -28863,27 +28862,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 5632, ../../../scss/_app_styles.scss */ +/* line 5631, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 5637, ../../../scss/_app_styles.scss */ +/* line 5636, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 5643, ../../../scss/_app_styles.scss */ +/* line 5642, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 5650, ../../../scss/_app_styles.scss */ +/* line 5649, ../../../scss/_app_styles.scss */ .max-width { max-width: 100%; } -/* line 5656, ../../../scss/_app_styles.scss */ +/* line 5655, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28893,7 +28892,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 5665, ../../../scss/_app_styles.scss */ +/* line 5664, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -28910,7 +28909,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 5678, ../../../scss/_app_styles.scss */ +/* line 5677, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -28920,28 +28919,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 5687, ../../../scss/_app_styles.scss */ +/* line 5686, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 5692, ../../../scss/_app_styles.scss */ +/* line 5691, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background-color: #ffffff; } -/* line 5697, ../../../scss/_app_styles.scss */ +/* line 5696, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 5703, ../../../scss/_app_styles.scss */ +/* line 5702, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 5707, ../../../scss/_app_styles.scss */ +/* line 5706, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -28954,7 +28953,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 5720, ../../../scss/_app_styles.scss */ +/* line 5719, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -28969,7 +28968,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Unit_Structure styles */ -/* line 5738, ../../../scss/_app_styles.scss */ +/* line 5737, ../../../scss/_app_styles.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -28977,12 +28976,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 5746, ../../../scss/_app_styles.scss */ +/* line 5745, ../../../scss/_app_styles.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 5750, ../../../scss/_app_styles.scss */ +/* line 5749, ../../../scss/_app_styles.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -28990,17 +28989,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 5756, ../../../scss/_app_styles.scss */ +/* line 5755, ../../../scss/_app_styles.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 5762, ../../../scss/_app_styles.scss */ +/* line 5761, ../../../scss/_app_styles.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 5767, ../../../scss/_app_styles.scss */ +/* line 5766, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29010,25 +29009,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 5776, ../../../scss/_app_styles.scss */ +/* line 5775, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5780, ../../../scss/_app_styles.scss */ +/* line 5779, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 5785, ../../../scss/_app_styles.scss */ +/* line 5784, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 5794, ../../../scss/_app_styles.scss */ +/* line 5793, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29037,7 +29036,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5801, ../../../scss/_app_styles.scss */ +/* line 5800, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29046,15 +29045,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 5810, ../../../scss/_app_styles.scss */ +/* line 5809, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 5815, ../../../scss/_app_styles.scss */ +/* line 5814, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 5818, ../../../scss/_app_styles.scss */ +/* line 5817, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29062,21 +29061,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 5828, ../../../scss/_app_styles.scss */ +/* line 5827, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 5834, ../../../scss/_app_styles.scss */ +/* line 5833, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 5842, ../../../scss/_app_styles.scss */ +/* line 5841, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 5844, ../../../scss/_app_styles.scss */ +/* line 5843, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29085,7 +29084,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5851, ../../../scss/_app_styles.scss */ +/* line 5850, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29093,11 +29092,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5860, ../../../scss/_app_styles.scss */ +/* line 5859, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 5869, ../../../scss/_app_styles.scss */ +/* line 5868, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29109,49 +29108,49 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 5879, ../../../scss/_app_styles.scss */ +/* line 5878, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 5885, ../../../scss/_app_styles.scss */ +/* line 5884, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 5888, ../../../scss/_app_styles.scss */ +/* line 5887, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 5897, ../../../scss/_app_styles.scss */ +/* line 5896, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 5902, ../../../scss/_app_styles.scss */ +/* line 5901, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 5906, ../../../scss/_app_styles.scss */ +/* line 5905, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 5908, ../../../scss/_app_styles.scss */ +/* line 5907, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 5911, ../../../scss/_app_styles.scss */ +/* line 5910, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 5917, ../../../scss/_app_styles.scss */ +/* line 5916, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29159,29 +29158,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 15px 5px; cursor: pointer; } -/* line 5932, ../../../scss/_app_styles.scss */ +/* line 5931, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 5940, ../../../scss/_app_styles.scss */ +/* line 5939, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 5946, ../../../scss/_app_styles.scss */ +/* line 5945, ../../../scss/_app_styles.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 5955, ../../../scss/_app_styles.scss */ +/* line 5954, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 5960, ../../../scss/_app_styles.scss */ +/* line 5959, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29189,28 +29188,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 5967, ../../../scss/_app_styles.scss */ +/* line 5966, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5972, ../../../scss/_app_styles.scss */ +/* line 5971, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5977, ../../../scss/_app_styles.scss */ +/* line 5976, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 5979, ../../../scss/_app_styles.scss */ +/* line 5978, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 5983, ../../../scss/_app_styles.scss */ +/* line 5982, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -29222,21 +29221,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; border-radius: 3px; } -/* line 5994, ../../../scss/_app_styles.scss */ +/* line 5993, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 5999, ../../../scss/_app_styles.scss */ +/* line 5998, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 6005, ../../../scss/_app_styles.scss */ +/* line 6004, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 6011, ../../../scss/_app_styles.scss */ +/* line 6010, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -29244,19 +29243,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 6018, ../../../scss/_app_styles.scss */ +/* line 6017, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 6025, ../../../scss/_app_styles.scss */ +/* line 6024, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6036, ../../../scss/_app_styles.scss */ +/* line 6035, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -29267,7 +29266,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 6053, ../../../scss/_app_styles.scss */ +/* line 6052, ../../../scss/_app_styles.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -29282,66 +29281,66 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* lesspn listing LMS */ -/* line 6069, ../../../scss/_app_styles.scss */ +/* line 6068, ../../../scss/_app_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 6077, ../../../scss/_app_styles.scss */ +/* line 6076, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 6080, ../../../scss/_app_styles.scss */ +/* line 6079, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 6082, ../../../scss/_app_styles.scss */ +/* line 6081, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 6089, ../../../scss/_app_styles.scss */ +/* line 6088, ../../../scss/_app_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 6091, ../../../scss/_app_styles.scss */ +/* line 6090, ../../../scss/_app_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 6096, ../../../scss/_app_styles.scss */ +/* line 6095, ../../../scss/_app_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 6104, ../../../scss/_app_styles.scss */ +/* line 6103, ../../../scss/_app_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6110, ../../../scss/_app_styles.scss */ +/* line 6109, ../../../scss/_app_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6117, ../../../scss/_app_styles.scss */ +/* line 6116, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 6120, ../../../scss/_app_styles.scss */ +/* line 6119, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 6123, ../../../scss/_app_styles.scss */ +/* line 6122, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 6126, ../../../scss/_app_styles.scss */ +/* line 6125, ../../../scss/_app_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; @@ -29351,23 +29350,23 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Styling for the Secondary header 2 */ -/* line 6145, ../../../scss/_app_styles.scss */ +/* line 6144, ../../../scss/_app_styles.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 6148, ../../../scss/_app_styles.scss */ +/* line 6147, ../../../scss/_app_styles.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6156, ../../../scss/_app_styles.scss */ +/* line 6155, ../../../scss/_app_styles.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 6165, ../../../scss/_app_styles.scss */ +/* line 6164, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { position: relative; color: #fff; @@ -29378,56 +29377,56 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: -2px; border-right: 1px solid white; } -/* line 6174, ../../../scss/_app_styles.scss */ +/* line 6173, ../../../scss/_app_styles.scss */ .activity_player_header .header_title a { color: #ffc14f; } @media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6164, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 938px); } } @media only screen and (min-device-width: 2131px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6164, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 970px); } } @media only screen and (max-device-width: 1024px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6164, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 753px); } } -/* line 6251, ../../../scss/_app_styles.scss */ +/* line 6250, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon { font-size: 16px; line-height: 45px; color: #ffc14f; } -/* line 6257, ../../../scss/_app_styles.scss */ +/* line 6256, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 6263, ../../../scss/_app_styles.scss */ +/* line 6262, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 10px; } @media screen and (min-width: 1025px) { - /* line 6263, ../../../scss/_app_styles.scss */ + /* line 6262, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 15px; } } @media screen and (min-width: 1025px) { - /* line 6270, ../../../scss/_app_styles.scss */ + /* line 6269, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { float: right; margin-right: 70px; @@ -29435,73 +29434,73 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media screen and (max-width: 1024px) { - /* line 6270, ../../../scss/_app_styles.scss */ + /* line 6269, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { background-color: rgba(107, 0, 84, 0.97); } } -/* line 6283, ../../../scss/_app_styles.scss */ +/* line 6282, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6289, ../../../scss/_app_styles.scss */ +/* line 6288, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block { padding: 0px 15px; margin-left: -2px; border-right: 1px solid white; } -/* line 6293, ../../../scss/_app_styles.scss */ +/* line 6292, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block a { color: #ffc14f; } -/* line 6299, ../../../scss/_app_styles.scss */ +/* line 6298, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 9px; } @media screen and (min-width: 1025px) { - /* line 6299, ../../../scss/_app_styles.scss */ + /* line 6298, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 15px; } } -/* line 6307, ../../../scss/_app_styles.scss */ +/* line 6306, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 7px; } @media screen and (min-width: 1025px) { - /* line 6307, ../../../scss/_app_styles.scss */ + /* line 6306, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 15px; } } -/* line 6316, ../../../scss/_app_styles.scss */ +/* line 6315, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 6319, ../../../scss/_app_styles.scss */ +/* line 6318, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button i { color: #71318b; } -/* line 6325, ../../../scss/_app_styles.scss */ +/* line 6324, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 6329, ../../../scss/_app_styles.scss */ +/* line 6328, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 6335, ../../../scss/_app_styles.scss */ +/* line 6334, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .pagination:not(i) { color: #a983b9; } -/* line 6343, ../../../scss/_app_styles.scss */ +/* line 6342, ../../../scss/_app_styles.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -29509,29 +29508,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 6350, ../../../scss/_app_styles.scss */ +/* line 6349, ../../../scss/_app_styles.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 6354, ../../../scss/_app_styles.scss */ +/* line 6353, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6360, ../../../scss/_app_styles.scss */ +/* line 6359, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6366, ../../../scss/_app_styles.scss */ +/* line 6365, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 6371, ../../../scss/_app_styles.scss */ +/* line 6370, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29541,25 +29540,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 6380, ../../../scss/_app_styles.scss */ +/* line 6379, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6384, ../../../scss/_app_styles.scss */ +/* line 6383, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6389, ../../../scss/_app_styles.scss */ +/* line 6388, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6398, ../../../scss/_app_styles.scss */ +/* line 6397, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29568,7 +29567,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6405, ../../../scss/_app_styles.scss */ +/* line 6404, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29577,15 +29576,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 6414, ../../../scss/_app_styles.scss */ +/* line 6413, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6419, ../../../scss/_app_styles.scss */ +/* line 6418, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6422, ../../../scss/_app_styles.scss */ +/* line 6421, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29593,21 +29592,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 6432, ../../../scss/_app_styles.scss */ +/* line 6431, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6438, ../../../scss/_app_styles.scss */ +/* line 6437, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6446, ../../../scss/_app_styles.scss */ +/* line 6445, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6448, ../../../scss/_app_styles.scss */ +/* line 6447, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29616,7 +29615,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6455, ../../../scss/_app_styles.scss */ +/* line 6454, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29624,11 +29623,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6464, ../../../scss/_app_styles.scss */ +/* line 6463, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6473, ../../../scss/_app_styles.scss */ +/* line 6472, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29640,48 +29639,48 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 6483, ../../../scss/_app_styles.scss */ +/* line 6482, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6488, ../../../scss/_app_styles.scss */ +/* line 6487, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6491, ../../../scss/_app_styles.scss */ +/* line 6490, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6500, ../../../scss/_app_styles.scss */ +/* line 6499, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6505, ../../../scss/_app_styles.scss */ +/* line 6504, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6509, ../../../scss/_app_styles.scss */ +/* line 6508, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6511, ../../../scss/_app_styles.scss */ +/* line 6510, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6514, ../../../scss/_app_styles.scss */ +/* line 6513, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6520, ../../../scss/_app_styles.scss */ +/* line 6519, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29690,7 +29689,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; } -/* line 6538, ../../../scss/_app_styles.scss */ +/* line 6537, ../../../scss/_app_styles.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -29698,26 +29697,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 10px; padding-right: 4px; } -/* line 6544, ../../../scss/_app_styles.scss */ +/* line 6543, ../../../scss/_app_styles.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 6549, ../../../scss/_app_styles.scss */ +/* line 6548, ../../../scss/_app_styles.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6555, ../../../scss/_app_styles.scss */ +/* line 6554, ../../../scss/_app_styles.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 6561, ../../../scss/_app_styles.scss */ +/* line 6560, ../../../scss/_app_styles.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29727,29 +29726,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 6570, ../../../scss/_app_styles.scss */ +/* line 6569, ../../../scss/_app_styles.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 6574, ../../../scss/_app_styles.scss */ +/* line 6573, ../../../scss/_app_styles.scss */ .activity-title > li > a { color: black; } -/* line 6583, ../../../scss/_app_styles.scss */ +/* line 6582, ../../../scss/_app_styles.scss */ .activity_page_rendered { margin-left: 20px; max-width: 900px; } /* Rating css */ -/* line 6591, ../../../scss/_app_styles.scss */ +/* line 6590, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 6593, ../../../scss/_app_styles.scss */ +/* line 6592, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -29757,19 +29756,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { unicode-bidi: bidi-override; direction: rtl; } -/* line 6601, ../../../scss/_app_styles.scss */ +/* line 6600, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 6603, ../../../scss/_app_styles.scss */ +/* line 6602, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 6609, ../../../scss/_app_styles.scss */ +/* line 6608, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 6611, ../../../scss/_app_styles.scss */ +/* line 6610, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -29782,7 +29781,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0; vertical-align: bottom; } -/* line 6623, ../../../scss/_app_styles.scss */ +/* line 6622, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -29790,32 +29789,32 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* WHITE STAR */ color: #888; } -/* line 6630, ../../../scss/_app_styles.scss */ +/* line 6629, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 6641, ../../../scss/_app_styles.scss */ +/* line 6640, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 6648, ../../../scss/_app_styles.scss */ +/* line 6647, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 6656, ../../../scss/_app_styles.scss */ +/* line 6655, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 6661, ../../../scss/_app_styles.scss */ +/* line 6660, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -29824,29 +29823,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-shadow: 0 0 1px #333; } -/* line 6671, ../../../scss/_app_styles.scss */ +/* line 6670, ../../../scss/_app_styles.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 6675, ../../../scss/_app_styles.scss */ +/* line 6674, ../../../scss/_app_styles.scss */ .input_links { margin-left: 10px; } -/* line 6677, ../../../scss/_app_styles.scss */ +/* line 6676, ../../../scss/_app_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 6683, ../../../scss/_app_styles.scss */ +/* line 6682, ../../../scss/_app_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 6691, ../../../scss/_app_styles.scss */ +/* line 6690, ../../../scss/_app_styles.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -29855,19 +29854,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 6700, ../../../scss/_app_styles.scss */ +/* line 6699, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 6704, ../../../scss/_app_styles.scss */ +/* line 6703, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 6710, ../../../scss/_app_styles.scss */ +/* line 6709, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -29875,12 +29874,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; margin-left: 12%; } -/* line 6718, ../../../scss/_app_styles.scss */ +/* line 6717, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 6724, ../../../scss/_app_styles.scss */ +/* line 6723, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -29889,21 +29888,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: none; color: #8E8E8E; } -/* line 6733, ../../../scss/_app_styles.scss */ +/* line 6732, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 6738, ../../../scss/_app_styles.scss */ +/* line 6737, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 6740, ../../../scss/_app_styles.scss */ +/* line 6739, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 6743, ../../../scss/_app_styles.scss */ +/* line 6742, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -29914,24 +29913,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #757575; margin-right: 20px; } -/* line 6753, ../../../scss/_app_styles.scss */ +/* line 6752, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 6757, ../../../scss/_app_styles.scss */ +/* line 6756, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 6760, ../../../scss/_app_styles.scss */ +/* line 6759, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 6765, ../../../scss/_app_styles.scss */ +/* line 6764, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 6769, ../../../scss/_app_styles.scss */ +/* line 6768, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -29943,7 +29942,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; color: #222222; } -/* line 6780, ../../../scss/_app_styles.scss */ +/* line 6779, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -29951,15 +29950,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 8px; top: 4px; } -/* line 6788, ../../../scss/_app_styles.scss */ +/* line 6787, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 6790, ../../../scss/_app_styles.scss */ +/* line 6789, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 6793, ../../../scss/_app_styles.scss */ +/* line 6792, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -29969,25 +29968,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { letter-spacing: 0.8px; color: #999999; } -/* line 6802, ../../../scss/_app_styles.scss */ +/* line 6801, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 6808, ../../../scss/_app_styles.scss */ +/* line 6807, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 6817, ../../../scss/_app_styles.scss */ +/* line 6816, ../../../scss/_app_styles.scss */ .icon-color { color: #2e3f51 !important; padding: right; } /* The asset tile */ -/* line 6827, ../../../scss/_app_styles.scss */ +/* line 6826, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29997,7 +29996,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 6836, ../../../scss/_app_styles.scss */ +/* line 6835, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -30014,7 +30013,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 6849, ../../../scss/_app_styles.scss */ +/* line 6848, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -30024,28 +30023,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 6858, ../../../scss/_app_styles.scss */ +/* line 6857, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 6863, ../../../scss/_app_styles.scss */ +/* line 6862, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 6868, ../../../scss/_app_styles.scss */ +/* line 6867, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 6874, ../../../scss/_app_styles.scss */ +/* line 6873, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 6878, ../../../scss/_app_styles.scss */ +/* line 6877, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -30058,7 +30057,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 6891, ../../../scss/_app_styles.scss */ +/* line 6890, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -30072,7 +30071,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 6906, ../../../scss/_app_styles.scss */ +/* line 6905, ../../../scss/_app_styles.scss */ .orange-button-subtitle { color: #ce7869; padding: 4px 5px; @@ -30085,13 +30084,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 6917, ../../../scss/_app_styles.scss */ +/* line 6916, ../../../scss/_app_styles.scss */ .orange-button-subtitle:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 6923, ../../../scss/_app_styles.scss */ +/* line 6922, ../../../scss/_app_styles.scss */ .transcript-toggler { display: block; width: 155px !important; @@ -30107,12 +30106,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; } -/* line 6938, ../../../scss/_app_styles.scss */ +/* line 6937, ../../../scss/_app_styles.scss */ .asset_list { margin-left: 12px; } -/* line 6942, ../../../scss/_app_styles.scss */ +/* line 6941, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -30121,22 +30120,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6951, ../../../scss/_app_styles.scss */ +/* line 6950, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6958, ../../../scss/_app_styles.scss */ +/* line 6957, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6964, ../../../scss/_app_styles.scss */ +/* line 6963, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6966, ../../../scss/_app_styles.scss */ +/* line 6965, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -30145,15 +30144,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6973, ../../../scss/_app_styles.scss */ +/* line 6972, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6977, ../../../scss/_app_styles.scss */ +/* line 6976, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6983, ../../../scss/_app_styles.scss */ +/* line 6982, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30162,7 +30161,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6994, ../../../scss/_app_styles.scss */ +/* line 6993, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -30171,24 +30170,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 280px; border: 1px solid #164A7B; } -/* line 7003, ../../../scss/_app_styles.scss */ +/* line 7002, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 7010, ../../../scss/_app_styles.scss */ +/* line 7009, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 7015, ../../../scss/_app_styles.scss */ +/* line 7014, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 7019, ../../../scss/_app_styles.scss */ +/* line 7018, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -30199,14 +30198,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 7029, ../../../scss/_app_styles.scss */ +/* line 7028, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 7036, ../../../scss/_app_styles.scss */ + /* line 7035, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30214,7 +30213,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7045, ../../../scss/_app_styles.scss */ + /* line 7044, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30222,7 +30221,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7052, ../../../scss/_app_styles.scss */ + /* line 7051, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30230,14 +30229,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7059, ../../../scss/_app_styles.scss */ + /* line 7058, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 7067, ../../../scss/_app_styles.scss */ +/* line 7066, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30252,14 +30251,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7083, ../../../scss/_app_styles.scss */ +/* line 7082, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 7090, ../../../scss/_app_styles.scss */ + /* line 7089, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30270,7 +30269,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7101, ../../../scss/_app_styles.scss */ + /* line 7100, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30281,7 +30280,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7112, ../../../scss/_app_styles.scss */ + /* line 7111, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30292,7 +30291,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7123, ../../../scss/_app_styles.scss */ + /* line 7122, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30302,7 +30301,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7134, ../../../scss/_app_styles.scss */ +/* line 7133, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30317,14 +30316,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7150, ../../../scss/_app_styles.scss */ +/* line 7149, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 7157, ../../../scss/_app_styles.scss */ + /* line 7156, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30335,7 +30334,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7168, ../../../scss/_app_styles.scss */ + /* line 7167, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30346,7 +30345,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7179, ../../../scss/_app_styles.scss */ + /* line 7178, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30357,7 +30356,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7190, ../../../scss/_app_styles.scss */ + /* line 7189, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30367,11 +30366,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7201, ../../../scss/_app_styles.scss */ +/* line 7200, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 7203, ../../../scss/_app_styles.scss */ +/* line 7202, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30380,11 +30379,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 7211, ../../../scss/_app_styles.scss */ +/* line 7210, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 7217, ../../../scss/_app_styles.scss */ +/* line 7216, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30393,7 +30392,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7228, ../../../scss/_app_styles.scss */ +/* line 7227, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30404,22 +30403,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7238, ../../../scss/_app_styles.scss */ +/* line 7237, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7241, ../../../scss/_app_styles.scss */ +/* line 7240, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7246, ../../../scss/_app_styles.scss */ +/* line 7245, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7257, ../../../scss/_app_styles.scss */ +/* line 7256, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30430,26 +30429,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7267, ../../../scss/_app_styles.scss */ +/* line 7266, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7270, ../../../scss/_app_styles.scss */ +/* line 7269, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7274, ../../../scss/_app_styles.scss */ +/* line 7273, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7280, ../../../scss/_app_styles.scss */ +/* line 7279, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7282, ../../../scss/_app_styles.scss */ +/* line 7281, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30458,7 +30457,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7291, ../../../scss/_app_styles.scss */ +/* line 7290, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30467,7 +30466,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7305, ../../../scss/_app_styles.scss */ +/* line 7304, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -30477,19 +30476,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Asset detail */ -/* line 7316, ../../../scss/_app_styles.scss */ +/* line 7315, ../../../scss/_app_styles.scss */ .overlay-head { height: 60px; margin-bottom: 20px; } -/* line 7322, ../../../scss/_app_styles.scss */ +/* line 7321, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7327, ../../../scss/_app_styles.scss */ +/* line 7326, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30503,13 +30502,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7339, ../../../scss/_app_styles.scss */ +/* line 7338, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7346, ../../../scss/_app_styles.scss */ +/* line 7345, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; padding: 7px 14px; @@ -30522,22 +30521,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7357, ../../../scss/_app_styles.scss */ +/* line 7356, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7362, ../../../scss/_app_styles.scss */ +/* line 7361, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; background: #fff; } -/* line 7365, ../../../scss/_app_styles.scss */ +/* line 7364, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: #fff; } -/* line 7368, ../../../scss/_app_styles.scss */ +/* line 7367, ../../../scss/_app_styles.scss */ .orange-button-template > a { color: #ce7869; padding: 7px 14px; @@ -30550,13 +30549,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7379, ../../../scss/_app_styles.scss */ +/* line 7378, ../../../scss/_app_styles.scss */ .orange-button-template > a:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7386, ../../../scss/_app_styles.scss */ +/* line 7385, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30568,7 +30567,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7397, ../../../scss/_app_styles.scss */ +/* line 7396, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30576,18 +30575,18 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7406, ../../../scss/_app_styles.scss */ +/* line 7405, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7413, ../../../scss/_app_styles.scss */ +/* line 7412, ../../../scss/_app_styles.scss */ .page-name { margin-top: 8px; } -/* line 7417, ../../../scss/_app_styles.scss */ +/* line 7416, ../../../scss/_app_styles.scss */ .tag-ele { font-weight: normal; text-align: center; @@ -30606,7 +30605,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: none; } -/* line 7435, ../../../scss/_app_styles.scss */ +/* line 7434, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30624,12 +30623,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7451, ../../../scss/_app_styles.scss */ +/* line 7450, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7456, ../../../scss/_app_styles.scss */ +/* line 7455, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30641,13 +30640,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7466, ../../../scss/_app_styles.scss */ +/* line 7465, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7474, ../../../scss/_app_styles.scss */ +/* line 7473, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30664,13 +30663,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7489, ../../../scss/_app_styles.scss */ +/* line 7488, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* line 7500, ../../../scss/_app_styles.scss */ +/* line 7499, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -30678,7 +30677,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-size: 100% 100%; position: relative; } -/* line 7507, ../../../scss/_app_styles.scss */ +/* line 7506, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -30692,13 +30691,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7521, ../../../scss/_app_styles.scss */ +/* line 7520, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 7526, ../../../scss/_app_styles.scss */ +/* line 7525, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -30707,79 +30706,79 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow: hidden; background-color: #fff; } -/* line 7534, ../../../scss/_app_styles.scss */ +/* line 7533, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 7539, ../../../scss/_app_styles.scss */ +/* line 7538, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 7544, ../../../scss/_app_styles.scss */ +/* line 7543, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 7549, ../../../scss/_app_styles.scss */ +/* line 7548, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 7557, ../../../scss/_app_styles.scss */ +/* line 7556, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 7561, ../../../scss/_app_styles.scss */ +/* line 7560, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 7570, ../../../scss/_app_styles.scss */ +/* line 7569, ../../../scss/_app_styles.scss */ .lms_explore_head_unit { width: 100%; height: 50px; background-color: #fff; color: #164A7B; } -/* line 7575, ../../../scss/_app_styles.scss */ +/* line 7574, ../../../scss/_app_styles.scss */ .lms_explore_head_unit > p { margin-left: 81px; padding: 0px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 7581, ../../../scss/_app_styles.scss */ +/* line 7580, ../../../scss/_app_styles.scss */ .lms_explore_head_unit > a { padding: 0px 85px 3px 0px; } -/* line 7587, ../../../scss/_app_styles.scss */ +/* line 7586, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -19.3px; } -/* line 7594, ../../../scss/_app_styles.scss */ +/* line 7593, ../../../scss/_app_styles.scss */ .course-students-data { margin: 2px 2px 2px 2px; border: 2px solid #164a7b; padding: 19px 14px 0px 5px; } -/* line 7601, ../../../scss/_app_styles.scss */ +/* line 7600, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 7604, ../../../scss/_app_styles.scss */ +/* line 7603, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 7612, ../../../scss/_app_styles.scss */ +/* line 7611, ../../../scss/_app_styles.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -30795,7 +30794,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7631, ../../../scss/_app_styles.scss */ +/* line 7630, ../../../scss/_app_styles.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -30805,7 +30804,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7640, ../../../scss/_app_styles.scss */ +/* line 7639, ../../../scss/_app_styles.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -30815,7 +30814,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 7649, ../../../scss/_app_styles.scss */ +/* line 7648, ../../../scss/_app_styles.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; @@ -30835,13 +30834,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #A6D7F5; } }*/ -/* line 7672, ../../../scss/_app_styles.scss */ +/* line 7671, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 7677, ../../../scss/_app_styles.scss */ +/* line 7676, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title { width: 43%; /* background-color: blue;*/ @@ -30851,7 +30850,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; color: #fff; } -/* line 7686, ../../../scss/_app_styles.scss */ +/* line 7685, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title.active { background-color: #719dc7; border: 1px solid #CCC; @@ -30859,7 +30858,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; } -/* line 7699, ../../../scss/_app_styles.scss */ +/* line 7698, ../../../scss/_app_styles.scss */ .create_unit { background: #fff; box-shadow: 0px 2px 3px #000; @@ -30867,7 +30866,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 10px; } -/* line 7707, ../../../scss/_app_styles.scss */ +/* line 7706, ../../../scss/_app_styles.scss */ .asset-unit-button { color: #ce7869; padding: 7px 14px; @@ -30879,13 +30878,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 30px; margin-bottom: 8px; } -/* line 7718, ../../../scss/_app_styles.scss */ +/* line 7717, ../../../scss/_app_styles.scss */ .asset-unit-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7724, ../../../scss/_app_styles.scss */ +/* line 7723, ../../../scss/_app_styles.scss */ .course_creator_header { width: 100%; height: 70px; @@ -30893,7 +30892,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7731, ../../../scss/_app_styles.scss */ +/* line 7730, ../../../scss/_app_styles.scss */ .course_creator_header .unit_editor { width: 100%; height: 320px; @@ -30901,13 +30900,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7740, ../../../scss/_app_styles.scss */ +/* line 7739, ../../../scss/_app_styles.scss */ .course_creator_header .back_to_group { padding: 0px 15px 0px 10px; border-right: 1px solid #ccc; margin-right: 15px; } -/* line 7746, ../../../scss/_app_styles.scss */ +/* line 7745, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit { width: 500px; height: 40px; @@ -30916,24 +30915,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7755, ../../../scss/_app_styles.scss */ +/* line 7754, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit:focus { border: 1px solid #74b3dc; } -/* line 7759, ../../../scss/_app_styles.scss */ +/* line 7758, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7767, ../../../scss/_app_styles.scss */ +/* line 7766, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit select { font-size: 14px; font-family: 'OpenSans-Regular', sans-serif; color: gray; border: 0px solid #74b3dc; } -/* line 7778, ../../../scss/_app_styles.scss */ +/* line 7777, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input { width: 500px; height: 40px; @@ -30942,31 +30941,31 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7786, ../../../scss/_app_styles.scss */ +/* line 7785, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input:focus { border: 1px solid #74b3dc; } -/* line 7790, ../../../scss/_app_styles.scss */ +/* line 7789, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7800, ../../../scss/_app_styles.scss */ +/* line 7799, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading h5 { margin-top: 15px; } -/* line 7805, ../../../scss/_app_styles.scss */ +/* line 7804, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading span { letter-spacing: 0.9px; font-weight: 600; line-height: 50px; } -/* line 7813, ../../../scss/_app_styles.scss */ +/* line 7812, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul { margin: 0px; } -/* line 7816, ../../../scss/_app_styles.scss */ +/* line 7815, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li { list-style-type: none; display: inline-block; @@ -30975,11 +30974,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; letter-spacing: 0.8px; } -/* line 7825, ../../../scss/_app_styles.scss */ +/* line 7824, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { border-bottom: 3px solid #ffc14e; } -/* line 7830, ../../../scss/_app_styles.scss */ +/* line 7829, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions span { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -30991,7 +30990,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; border-radius: 3px; } -/* line 7842, ../../../scss/_app_styles.scss */ +/* line 7841, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -31004,20 +31003,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; } -/* line 7859, ../../../scss/_app_styles.scss */ +/* line 7858, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: 2.7px; } -/* line 7864, ../../../scss/_app_styles.scss */ +/* line 7863, ../../../scss/_app_styles.scss */ .empty-dashboard-message { border: 3px solid #e4e4e4; background: #f8f8f8; padding: 40px 0; text-align: center; } -/* line 7870, ../../../scss/_app_styles.scss */ +/* line 7869, ../../../scss/_app_styles.scss */ .empty-dashboard-message > a { background-color: #164a7b; border: 1px solid #164a7b; @@ -31031,7 +31030,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 5px; padding: 15px 20px; } -/* line 7884, ../../../scss/_app_styles.scss */ +/* line 7883, ../../../scss/_app_styles.scss */ .empty-dashboard-message .button-explore-courses { font-size: 20px; font-weight: normal; @@ -31041,7 +31040,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 170px; } -/* line 7899, ../../../scss/_app_styles.scss */ +/* line 7898, ../../../scss/_app_styles.scss */ .module_card { display: table; height: 290px; @@ -31052,16 +31051,16 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); } -/* line 7909, ../../../scss/_app_styles.scss */ +/* line 7908, ../../../scss/_app_styles.scss */ .module_card:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 7913, ../../../scss/_app_styles.scss */ +/* line 7912, ../../../scss/_app_styles.scss */ .module_card > div { display: table-cell; height: 290px; } -/* line 7918, ../../../scss/_app_styles.scss */ +/* line 7917, ../../../scss/_app_styles.scss */ .module_card .card_banner { width: 250px; height: 290px; @@ -31075,14 +31074,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-radius .2s; transition: border-radius .2s; } -/* line 7931, ../../../scss/_app_styles.scss */ +/* line 7930, ../../../scss/_app_styles.scss */ .module_card .card_banner > img { height: 100%; width: 100%; border-radius: 4px; -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); } -/* line 7936, ../../../scss/_app_styles.scss */ +/* line 7935, ../../../scss/_app_styles.scss */ .module_card .card_banner > img:hover { -webkit-transform: scale(1.03); -moz-transform: scale(1.03); @@ -31091,7 +31090,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transform: scale(1.03); opacity: 0.8; } -/* line 7948, ../../../scss/_app_styles.scss */ +/* line 7947, ../../../scss/_app_styles.scss */ .module_card .card_banner > h4 { position: absolute; top: 100px; @@ -31100,7 +31099,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #ffffff !important; text-shadow: 2px 0px 8px black; } -/* line 7963, ../../../scss/_app_styles.scss */ +/* line 7962, ../../../scss/_app_styles.scss */ .module_card .card_title { display: block; width: 230px; @@ -31110,27 +31109,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px auto; letter-spacing: 1px; } -/* line 7974, ../../../scss/_app_styles.scss */ +/* line 7973, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_banner { border-radius: 8px; } -/* line 7977, ../../../scss/_app_styles.scss */ +/* line 7976, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7982, ../../../scss/_app_styles.scss */ +/* line 7981, ../../../scss/_app_styles.scss */ .module_card.animated_card.isOpen .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7986, ../../../scss/_app_styles.scss */ +/* line 7985, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_summary { left: 30px; } -/* line 7989, ../../../scss/_app_styles.scss */ +/* line 7988, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_summary { left: 5px; } -/* line 7993, ../../../scss/_app_styles.scss */ +/* line 7992, ../../../scss/_app_styles.scss */ .module_card .card_summary { width: 290px; padding: 0px 15px; @@ -31146,35 +31145,35 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Safari */ transition-property: left; } -/* line 8007, ../../../scss/_app_styles.scss */ +/* line 8006, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_label { font-weight: 500; font-size: 12.5px; letter-spacing: 1px; color: black; } -/* line 8013, ../../../scss/_app_styles.scss */ +/* line 8012, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section { margin: 5px 0px; padding: 5px 0px; } -/* line 8017, ../../../scss/_app_styles.scss */ +/* line 8016, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section:not(:last-child) { border-bottom: 1px solid #ccc; } -/* line 8020, ../../../scss/_app_styles.scss */ +/* line 8019, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section p { margin-bottom: 7px; font-size: 12.5px; } -/* line 8024, ../../../scss/_app_styles.scss */ +/* line 8023, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .ellipsis { width: 245px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -/* line 8032, ../../../scss/_app_styles.scss */ +/* line 8031, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol { background: #a2238d; height: 37px; @@ -31188,11 +31187,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 8045, ../../../scss/_app_styles.scss */ +/* line 8044, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 8051, ../../../scss/_app_styles.scss */ +/* line 8050, ../../../scss/_app_styles.scss */ .module_card .card_summary .module_brief { display: block; /* Fallback for non-webkit */ @@ -31209,12 +31208,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: black; } -/* line 8068, ../../../scss/_app_styles.scss */ +/* line 8067, ../../../scss/_app_styles.scss */ .inner { display: inline-block !important; } -/* line 8075, ../../../scss/_app_styles.scss */ +/* line 8074, ../../../scss/_app_styles.scss */ .enroll-btn { width: 90px; opacity: 1; @@ -31230,7 +31229,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #4b4852; } -/* line 8095, ../../../scss/_app_styles.scss */ +/* line 8094, ../../../scss/_app_styles.scss */ .enrollBtn { background: #a2238d; height: 37px; @@ -31245,51 +31244,51 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /*****Toolbar CSS******/ -/* line 8110, ../../../scss/_app_styles.scss */ +/* line 8109, ../../../scss/_app_styles.scss */ #toolbar { background-color: #3e3e3e; } -/* line 8113, ../../../scss/_app_styles.scss */ +/* line 8112, ../../../scss/_app_styles.scss */ .datetime { color: #eaeaea; padding: 4px 0px 2px 5px; font-size: 11px; } -/* line 8118, ../../../scss/_app_styles.scss */ +/* line 8117, ../../../scss/_app_styles.scss */ .changefont { text-align: right; padding: 2px 5px 1px 0px; } -/* line 8122, ../../../scss/_app_styles.scss */ +/* line 8121, ../../../scss/_app_styles.scss */ .changefont .minus { font-size: 60%; color: #eaeaea; } -/* line 8125, ../../../scss/_app_styles.scss */ +/* line 8124, ../../../scss/_app_styles.scss */ .changefont .normal { font-size: 80%; color: #eaeaea; } -/* line 8128, ../../../scss/_app_styles.scss */ +/* line 8127, ../../../scss/_app_styles.scss */ .changefont .plus { font-size: 100%; color: #eaeaea; } /***********Landing page***************/ -/* line 8137, ../../../scss/_app_styles.scss */ +/* line 8136, ../../../scss/_app_styles.scss */ .about_us { background: #20ade0; } -/* line 8140, ../../../scss/_app_styles.scss */ +/* line 8139, ../../../scss/_app_styles.scss */ .analytics { margin-top: 20px; } -/* line 8143, ../../../scss/_app_styles.scss */ +/* line 8142, ../../../scss/_app_styles.scss */ .square { border: 4px solid #ffffff; position: relative; @@ -31300,14 +31299,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 30px; } -/* line 8153, ../../../scss/_app_styles.scss */ +/* line 8152, ../../../scss/_app_styles.scss */ .square:after { content: ""; display: block; padding-bottom: 100%; } -/* line 8159, ../../../scss/_app_styles.scss */ +/* line 8158, ../../../scss/_app_styles.scss */ .box-content { position: absolute; width: 100%; @@ -31316,7 +31315,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 20%; } -/* line 8172, ../../../scss/_app_styles.scss */ +/* line 8171, ../../../scss/_app_styles.scss */ .activity-slider { font-family: Arial; width: 800px; @@ -31324,7 +31323,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0 auto; } -/* line 8179, ../../../scss/_app_styles.scss */ +/* line 8178, ../../../scss/_app_styles.scss */ .activity-slider h3 { background: #fff; color: #3498db; @@ -31352,12 +31351,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .action a:hover{ background:#000; }*/ -/* line 8205, ../../../scss/_app_styles.scss */ +/* line 8204, ../../../scss/_app_styles.scss */ .footer_link_cont h4 { color: #999; } -/* line 8209, ../../../scss/_app_styles.scss */ +/* line 8208, ../../../scss/_app_styles.scss */ .about_content { color: #ececec; margin-bottom: 30px; @@ -31365,18 +31364,18 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { font-size: 18px; } -/* line 8217, ../../../scss/_app_styles.scss */ +/* line 8216, ../../../scss/_app_styles.scss */ .about-blog { height: 100%; background: #107aa1; } -/* line 8222, ../../../scss/_app_styles.scss */ +/* line 8221, ../../../scss/_app_styles.scss */ .searchbar { margin: 0.8rem; } -/* line 8226, ../../../scss/_app_styles.scss */ +/* line 8225, ../../../scss/_app_styles.scss */ .search-field { width: 0; height: 40px; @@ -31387,7 +31386,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all 0.5s ease; } -/* line 8236, ../../../scss/_app_styles.scss */ +/* line 8235, ../../../scss/_app_styles.scss */ .expand-search { width: 80%; max-width: calc(80% - 3rem); @@ -31395,35 +31394,81 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: .5rem; } -/* line 8243, ../../../scss/_app_styles.scss */ +/* line 8242, ../../../scss/_app_styles.scss */ svg { width: 20px; height: 20px; } -/* line 8248, ../../../scss/_app_styles.scss */ +/* line 8247, ../../../scss/_app_styles.scss */ .button { border-radius: 50px; } -/* line 8253, ../../../scss/_app_styles.scss */ +/* line 8252, ../../../scss/_app_styles.scss */ #page_content { display: table; height: auto; display: table-row; } -/* line 8261, ../../../scss/_app_styles.scss */ +/* line 8260, ../../../scss/_app_styles.scss */ .footer_container { height: auto; display: table-row; } -/* line 8268, ../../../scss/_app_styles.scss */ +/* line 8267, ../../../scss/_app_styles.scss */ #footer { height: 1px; } +/* ----New Footer For NROER -------*/ +/* line 8276, ../../../scss/_app_styles.scss */ +.footer-nav { + margin-right: auto; + margin-left: auto; + margin-top: 60px; + display: table-row; + height: 1px; + display: flex; + flex-flow: row wrap; + flex-direction: row; + flex-wrap: row; + align-items: center; + background-color: rgba(0, 0, 0, 0.8); + padding: 1.8rem; + width: 100%; + justify-content: center; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} + +/* line 8294, ../../../scss/_app_styles.scss */ +.footer-nav-center { + flex: 1 1 0px; +} + +/* line 8297, ../../../scss/_app_styles.scss */ +.footer-nav-menu { + list-style: none; + margin-bottom: 0; + text-align: center; +} + +/* line 8302, ../../../scss/_app_styles.scss */ +.footer-nav-menu-item { + display: inline-block; + margin-right: 1.5rem; + font-size: 1.2rem; + padding: 0.4rem 0; +} + +/* line 8308, ../../../scss/_app_styles.scss */ +.footer-copyright { + margin-top: -70px; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} + /* * CLIx Platform Stylesheet */ diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css index 28ab49e862..51568b5fb4 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/metastudio/styles.css @@ -23920,107 +23920,106 @@ body > footer .myfooter .links_collapse ul { body > footer .myfooter .footer_link_cont { display: inline-block; vertical-align: top; - /*margin: 20px;*/ text-align: left; } -/* line 562, ../../../scss/_app_styles.scss */ +/* line 561, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .links_show { max-height: 600px; } -/* line 566, ../../../scss/_app_styles.scss */ +/* line 565, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .flinks { font-size: 22px; color: #999; } -/* line 570, ../../../scss/_app_styles.scss */ +/* line 569, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .social_links a { font-size: 24px; margin-right: 5px; } -/* line 575, ../../../scss/_app_styles.scss */ +/* line 574, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links { color: #777777; cursor: pointer; } -/* line 578, ../../../scss/_app_styles.scss */ +/* line 577, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links i { font-size: 24px; margin-right: 5px; } -/* line 581, ../../../scss/_app_styles.scss */ +/* line 580, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links:hover { text-decoration: underline; } -/* line 588, ../../../scss/_app_styles.scss */ +/* line 587, ../../../scss/_app_styles.scss */ body > footer hr.footerlogo-divider { border-color: #555; margin-top: 10px; } -/* line 594, ../../../scss/_app_styles.scss */ +/* line 593, ../../../scss/_app_styles.scss */ body > footer ul#footerlogo li { margin: 0px 5px; display: inline; } -/* line 600, ../../../scss/_app_styles.scss */ +/* line 599, ../../../scss/_app_styles.scss */ .no-gap ul { margin-left: 0rem; } -/* line 606, ../../../scss/_app_styles.scss */ +/* line 605, ../../../scss/_app_styles.scss */ body > footer ul#poweredlogos { margin-left: 0px; } -/* line 610, ../../../scss/_app_styles.scss */ +/* line 609, ../../../scss/_app_styles.scss */ #poweredlogos li { margin: 0px 5px; display: inline; } -/* line 616, ../../../scss/_app_styles.scss */ +/* line 615, ../../../scss/_app_styles.scss */ .no-gap ul { margin-left: 0rem; } -/* line 621, ../../../scss/_app_styles.scss */ +/* line 620, ../../../scss/_app_styles.scss */ .coll-arrows { cursor: pointer; display: block; padding: 0.5rem; } -/* line 626, ../../../scss/_app_styles.scss */ +/* line 625, ../../../scss/_app_styles.scss */ .coll-arrows:hover { background-color: #D3D3D3; } /* Sections */ -/* line 633, ../../../scss/_app_styles.scss */ +/* line 632, ../../../scss/_app_styles.scss */ main > article { padding: 0px; } -/* line 636, ../../../scss/_app_styles.scss */ +/* line 635, ../../../scss/_app_styles.scss */ main > nav { border-top: 3px solid black; position: relative; z-index: 10; } -/* line 640, ../../../scss/_app_styles.scss */ +/* line 639, ../../../scss/_app_styles.scss */ main > nav > .button-bar { background-color: #10c1cb; /* Hide icons till we can retreive custom icons from the system */ } -/* line 642, ../../../scss/_app_styles.scss */ +/* line 641, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group { margin: 0; } -/* line 644, ../../../scss/_app_styles.scss */ +/* line 643, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group.tools { padding: 5px; } -/* line 650, ../../../scss/_app_styles.scss */ +/* line 649, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button { border: none; font-size: 0.8rem; @@ -24029,135 +24028,135 @@ main > nav > .button-bar li .button { color: black; margin: 0; } -/* line 654, ../../../scss/_app_styles.scss */ +/* line 653, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.home { font-weight: bold; } -/* line 657, ../../../scss/_app_styles.scss */ +/* line 656, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings, main > nav > .button-bar li .button#toggle-help { padding: 6px 10px; color: #333; background-color: rgba(255, 255, 255, 0.3); } -/* line 662, ../../../scss/_app_styles.scss */ +/* line 661, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:hover, main > nav > .button-bar li .button#toggle-help:hover { background-color: rgba(0, 0, 0, 0.2); color: white; } -/* line 667, ../../../scss/_app_styles.scss */ +/* line 666, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button#toggle-help { background-color: inherit; } -/* line 671, ../../../scss/_app_styles.scss */ +/* line 670, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:after { border: none; } -/* line 679, ../../../scss/_app_styles.scss */ +/* line 678, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button:hover { color: white; } -/* line 685, ../../../scss/_app_styles.scss */ +/* line 684, ../../../scss/_app_styles.scss */ main > nav > .button-bar li.active .button { background-color: #0eacb5; color: white; } -/* line 693, ../../../scss/_app_styles.scss */ +/* line 692, ../../../scss/_app_styles.scss */ main > nav > .button-bar .app i { display: none !important; } -/* line 703, ../../../scss/_app_styles.scss */ +/* line 702, ../../../scss/_app_styles.scss */ main > aside > div h2 { color: #111; } -/* line 706, ../../../scss/_app_styles.scss */ +/* line 705, ../../../scss/_app_styles.scss */ main > aside > div h3 { font-size: 1.2rem; font-weight: normal; color: #222; } -/* line 711, ../../../scss/_app_styles.scss */ +/* line 710, ../../../scss/_app_styles.scss */ main > aside > div h4 { font-size: 1rem; color: #222; } -/* line 714, ../../../scss/_app_styles.scss */ +/* line 713, ../../../scss/_app_styles.scss */ main > aside > div h4 span { display: none; } -/* line 717, ../../../scss/_app_styles.scss */ +/* line 716, ../../../scss/_app_styles.scss */ main > aside > div h4:hover span { display: inline; } -/* line 721, ../../../scss/_app_styles.scss */ +/* line 720, ../../../scss/_app_styles.scss */ main > aside > div h5, main > aside > div h6 { margin: 0; } -/* line 725, ../../../scss/_app_styles.scss */ +/* line 724, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content { width: auto; padding: 0; border: 1px solid #222; } -/* line 729, ../../../scss/_app_styles.scss */ +/* line 728, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content .item { width: 70px; } -/* line 736, ../../../scss/_app_styles.scss */ +/* line 735, ../../../scss/_app_styles.scss */ main > aside > div footer { background-color: #222; min-height: 1rem; } -/* line 739, ../../../scss/_app_styles.scss */ +/* line 738, ../../../scss/_app_styles.scss */ main > aside > div footer label { font-size: 0.7rem; } -/* line 752, ../../../scss/_app_styles.scss */ +/* line 751, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection { background-color: #444; padding: 0; border-bottom: 2px solid #10c1cb; margin: 0; } -/* line 757, ../../../scss/_app_styles.scss */ +/* line 756, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li { border-bottom: 1px solid #555; } -/* line 759, ../../../scss/_app_styles.scss */ +/* line 758, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li a { border-left: 2px solid black; } -/* line 762, ../../../scss/_app_styles.scss */ +/* line 761, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li.active a, main > aside > div .side-nav.collection li a:hover { color: white !important; border-left: 2px solid #10c1cb; background-color: #10c1cb; } -/* line 775, ../../../scss/_app_styles.scss */ +/* line 774, ../../../scss/_app_styles.scss */ article { position: relative; z-index: 1; min-height: 400px; overflow-x: visible; } -/* line 780, ../../../scss/_app_styles.scss */ +/* line 779, ../../../scss/_app_styles.scss */ article > header, article form > header { padding: 15px; background-color: #f0f0f0; } -/* line 793, ../../../scss/_app_styles.scss */ +/* line 792, ../../../scss/_app_styles.scss */ article h1:not(.subheader) .tabs { display: inline-block; position: relative; bottom: -0.5rem; } -/* line 799, ../../../scss/_app_styles.scss */ +/* line 798, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div, article h1:not(.subheader) div input:not(.subheader) div { display: inline-block; position: relative; } -/* line 802, ../../../scss/_app_styles.scss */ +/* line 801, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input { height: 200%; font-style: italic; @@ -24167,13 +24166,13 @@ article h1:not(.subheader) div input { border-bottom: 2px dotted #222; background-color: inherit; } -/* line 812, ../../../scss/_app_styles.scss */ +/* line 811, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input:hover { background-color: white; } /* Card block */ -/* line 822, ../../../scss/_app_styles.scss */ +/* line 821, ../../../scss/_app_styles.scss */ .card > * { position: relative; background-color: white; @@ -24184,51 +24183,51 @@ article h1:not(.subheader) div input:hover { opacity: 0.9; overflow: hidden; } -/* line 834, ../../../scss/_app_styles.scss */ +/* line 833, ../../../scss/_app_styles.scss */ .card > * > a { color: inherit; display: block; position: relative; z-index: 200; } -/* line 845, ../../../scss/_app_styles.scss */ +/* line 844, ../../../scss/_app_styles.scss */ .card > *.published { opacity: 1; background-color: #e6f9ee; } -/* line 850, ../../../scss/_app_styles.scss */ +/* line 849, ../../../scss/_app_styles.scss */ .card > *.published hr { border-color: #7ee2a8; } -/* line 855, ../../../scss/_app_styles.scss */ +/* line 854, ../../../scss/_app_styles.scss */ .card > *.moderation { opacity: 1; background-color: #efefef; } -/* line 860, ../../../scss/_app_styles.scss */ +/* line 859, ../../../scss/_app_styles.scss */ .card > *.moderation hr { border-color: #bcbcbc; } -/* line 865, ../../../scss/_app_styles.scss */ +/* line 864, ../../../scss/_app_styles.scss */ .card > *.unapproved { opacity: 1; border-style: solid; border-color: #f04124; } -/* line 871, ../../../scss/_app_styles.scss */ +/* line 870, ../../../scss/_app_styles.scss */ .card > *:hover { border-style: solid; opacity: 1; } -/* line 877, ../../../scss/_app_styles.scss */ +/* line 876, ../../../scss/_app_styles.scss */ .card > *:hover i { opacity: 0.3; } -/* line 880, ../../../scss/_app_styles.scss */ +/* line 879, ../../../scss/_app_styles.scss */ .card > *:hover footer .age { display: block; } -/* line 885, ../../../scss/_app_styles.scss */ +/* line 884, ../../../scss/_app_styles.scss */ .card > * > i { position: absolute; top: -10px; @@ -24237,28 +24236,28 @@ article h1:not(.subheader) div input:hover { color: #0eacb5; opacity: 0.3; } -/* line 894, ../../../scss/_app_styles.scss */ +/* line 893, ../../../scss/_app_styles.scss */ .card > * .preview { float: left; padding-right: 5px; padding-top: 4px; } -/* line 899, ../../../scss/_app_styles.scss */ +/* line 898, ../../../scss/_app_styles.scss */ .card > * header { overflow: hidden; } -/* line 903, ../../../scss/_app_styles.scss */ +/* line 902, ../../../scss/_app_styles.scss */ .card > * .label, .card > * .label-list:empty:before { opacity: 0.5; } -/* line 906, ../../../scss/_app_styles.scss */ +/* line 905, ../../../scss/_app_styles.scss */ .card > * p { color: #555; height: 80px; background-repeat: no-repeat; font-size: 80%; } -/* line 912, ../../../scss/_app_styles.scss */ +/* line 911, ../../../scss/_app_styles.scss */ .card > * .th { margin: 20px auto; width: 80px; @@ -24266,23 +24265,23 @@ article h1:not(.subheader) div input:hover { overflow: hidden; display: none; } -/* line 918, ../../../scss/_app_styles.scss */ +/* line 917, ../../../scss/_app_styles.scss */ .card > * .th:hover { width: 150px; height: 150px; } -/* line 922, ../../../scss/_app_styles.scss */ +/* line 921, ../../../scss/_app_styles.scss */ .card > * .th img { width: 100%; } -/* line 926, ../../../scss/_app_styles.scss */ +/* line 925, ../../../scss/_app_styles.scss */ .card > * footer { margin-top: 1rem; font-size: 70%; clear: both; color: #e01818; } -/* line 931, ../../../scss/_app_styles.scss */ +/* line 930, ../../../scss/_app_styles.scss */ .card > * footer .age { display: none; position: absolute; @@ -24292,7 +24291,7 @@ article h1:not(.subheader) div input:hover { width: 100%; } -/* line 942, ../../../scss/_app_styles.scss */ +/* line 941, ../../../scss/_app_styles.scss */ .edit-card { position: relative; background-color: white; @@ -24301,40 +24300,40 @@ article h1:not(.subheader) div input:hover { } /* Content Tabs */ -/* line 955, ../../../scss/_app_styles.scss */ +/* line 954, ../../../scss/_app_styles.scss */ article .tabs { display: inline-block; } -/* line 957, ../../../scss/_app_styles.scss */ +/* line 956, ../../../scss/_app_styles.scss */ article .tabs dd a { border-radius: 4px; border: 1px transparent; } -/* line 961, ../../../scss/_app_styles.scss */ +/* line 960, ../../../scss/_app_styles.scss */ article .tabs dd.active a { color: #10c1cb; border: 1px solid; } -/* line 965, ../../../scss/_app_styles.scss */ +/* line 964, ../../../scss/_app_styles.scss */ article .tabs dd:hover a { color: #10c1cb; } -/* line 969, ../../../scss/_app_styles.scss */ +/* line 968, ../../../scss/_app_styles.scss */ article .tabs i { margin-right: 5px; font-size: 1.6rem; } -/* line 973, ../../../scss/_app_styles.scss */ +/* line 972, ../../../scss/_app_styles.scss */ article .tabs span { font-size: 17px; vertical-align: text-bottom; } -/* line 979, ../../../scss/_app_styles.scss */ +/* line 978, ../../../scss/_app_styles.scss */ article section.content { border: 1px solid #eee; } -/* line 986, ../../../scss/_app_styles.scss */ +/* line 985, ../../../scss/_app_styles.scss */ .card > div:hover { box-shadow: 0 0 10px lightgray; transition: 0.9s; @@ -24343,31 +24342,31 @@ article section.content { } /* Default card */ -/* line 994, ../../../scss/_app_styles.scss */ +/* line 993, ../../../scss/_app_styles.scss */ .card > :hover .label, .card > :hover .label-list:empty:before { opacity: 1; } -/* line 999, ../../../scss/_app_styles.scss */ +/* line 998, ../../../scss/_app_styles.scss */ .gallery .card .th { display: block; } /* Inline label list */ -/* line 1007, ../../../scss/_app_styles.scss */ +/* line 1006, ../../../scss/_app_styles.scss */ .label-list { display: inline-block; text-align: left; margin-bottom: 0.1rem; } -/* line 1011, ../../../scss/_app_styles.scss */ +/* line 1010, ../../../scss/_app_styles.scss */ .label-list:empty:before { content: "UNTAGGED"; opacity: 0.2 !important; padding: 2px; background-color: transparent; } -/* line 1019, ../../../scss/_app_styles.scss */ +/* line 1018, ../../../scss/_app_styles.scss */ .label-list .label, .label-list .label-list:empty:before { background-color: transparent; padding: 2px; @@ -24375,20 +24374,20 @@ article section.content { /*************************** 2. Custom CSS overrides ***********************/ /* Content area */ -/* line 1028, ../../../scss/_app_styles.scss */ +/* line 1027, ../../../scss/_app_styles.scss */ article { padding-bottom: 1rem; } -/* line 1032, ../../../scss/_app_styles.scss */ +/* line 1031, ../../../scss/_app_styles.scss */ article > header { border-bottom: 1px solid #ddd; } -/* line 1036, ../../../scss/_app_styles.scss */ +/* line 1035, ../../../scss/_app_styles.scss */ article > footer { border-top: 1px dotted #ddd; } -/* line 1048, ../../../scss/_app_styles.scss */ +/* line 1047, ../../../scss/_app_styles.scss */ textarea { min-height: 6rem; } @@ -24409,39 +24408,39 @@ textarea { }*/ /*************************** 3. Custom CSS Below ***********************/ /*CSS fix for tables generated via orgitdown*/ -/* line 1068, ../../../scss/_app_styles.scss */ +/* line 1067, ../../../scss/_app_styles.scss */ #content table td, #content colgroup col { float: none !important; } -/* line 1073, ../../../scss/_app_styles.scss */ +/* line 1072, ../../../scss/_app_styles.scss */ .user { color: inherit; } -/* line 1077, ../../../scss/_app_styles.scss */ +/* line 1076, ../../../scss/_app_styles.scss */ .user i { margin-right: 3px; } -/* line 1080, ../../../scss/_app_styles.scss */ +/* line 1079, ../../../scss/_app_styles.scss */ .user:hover i { opacity: 1; } -/* line 1084, ../../../scss/_app_styles.scss */ +/* line 1083, ../../../scss/_app_styles.scss */ a.node { display: block; } -/* line 1088, ../../../scss/_app_styles.scss */ +/* line 1087, ../../../scss/_app_styles.scss */ .button.edit { margin-bottom: 0; } /************ Forms **************/ /* Node edit */ -/* line 1096, ../../../scss/_app_styles.scss */ +/* line 1095, ../../../scss/_app_styles.scss */ input.node-title { font-size: 3rem; height: 4rem; @@ -24449,13 +24448,13 @@ input.node-title { } /* view-graph in node_details_base.html */ -/* line 1103, ../../../scss/_app_styles.scss */ +/* line 1102, ../../../scss/_app_styles.scss */ .graph-height { height: 70%; } /*for graph and location*/ -/* line 1108, ../../../scss/_app_styles.scss */ +/* line 1107, ../../../scss/_app_styles.scss */ .graph-div { height: 90%; width: -webkit-calc(100% - 10px); @@ -24469,13 +24468,13 @@ input.node-title { } /*for graph and location*/ -/* line 1118, ../../../scss/_app_styles.scss */ +/* line 1117, ../../../scss/_app_styles.scss */ .graph-div h3 { border-bottom: 2px inset #154534; padding: 0.25em 0; } -/* line 1123, ../../../scss/_app_styles.scss */ +/* line 1122, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal, #view-map-edit-widget .close-reveal-modal { z-index: 1; background-color: captiontext; @@ -24486,7 +24485,7 @@ input.node-title { box-shadow: 0 1px 10px 2px #A9A9A9; } -/* line 1134, ../../../scss/_app_styles.scss */ +/* line 1133, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal:hover, #view-map-edit-widget .close-reveal-modal:hover { background-color: white; border-radius: 30px; @@ -24499,7 +24498,7 @@ input.node-title { /****************** CUSTOM *********************/ /* UI Button */ -/* line 1149, ../../../scss/_app_styles.scss */ +/* line 1148, ../../../scss/_app_styles.scss */ .ui.button { margin-right: 0.5rem; border: 1px solid rgba(0, 0, 0, 0.2); @@ -24509,102 +24508,102 @@ input.node-title { padding: 0.5vw 0.75vw; z-index: 500; } -/* line 1160, ../../../scss/_app_styles.scss */ +/* line 1159, ../../../scss/_app_styles.scss */ .ui.button label { color: #666; } -/* line 1163, ../../../scss/_app_styles.scss */ +/* line 1162, ../../../scss/_app_styles.scss */ .ui.button small { margin-left: 2px; display: inline; } -/* line 1167, ../../../scss/_app_styles.scss */ +/* line 1166, ../../../scss/_app_styles.scss */ .ui.button:hover, .ui.button:active { border-color: rgba(255, 255, 255, 0.2); background-color: rgba(0, 0, 0, 0.9); } -/* line 1170, ../../../scss/_app_styles.scss */ +/* line 1169, ../../../scss/_app_styles.scss */ .ui.button:hover label, .ui.button:active label { color: #ddd; } -/* line 1173, ../../../scss/_app_styles.scss */ +/* line 1172, ../../../scss/_app_styles.scss */ .ui.button:hover small, .ui.button:active small { display: inline; } -/* line 1176, ../../../scss/_app_styles.scss */ +/* line 1175, ../../../scss/_app_styles.scss */ .ui.button:hover:focus, .ui.button:active:focus { font-weight: bold; } -/* line 1185, ../../../scss/_app_styles.scss */ +/* line 1184, ../../../scss/_app_styles.scss */ aside#help h4 { color: black; } -/* line 1188, ../../../scss/_app_styles.scss */ +/* line 1187, ../../../scss/_app_styles.scss */ aside#help p, aside#help h5, aside#help h6 { color: #ddd; padding: 0.3rem 0.9375rem; } -/* line 1195, ../../../scss/_app_styles.scss */ +/* line 1194, ../../../scss/_app_styles.scss */ .align-center { margin: 0 auto; display: block; } -/* line 1201, ../../../scss/_app_styles.scss */ +/* line 1200, ../../../scss/_app_styles.scss */ #profile-img { height: 40px; margin-right: 5px; } -/* line 1209, ../../../scss/_app_styles.scss */ +/* line 1208, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin-bottom: 20px; } -/* line 1213, ../../../scss/_app_styles.scss */ +/* line 1212, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 1219, ../../../scss/_app_styles.scss */ +/* line 1218, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 1222, ../../../scss/_app_styles.scss */ +/* line 1221, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 1226, ../../../scss/_app_styles.scss */ +/* line 1225, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 1231, ../../../scss/_app_styles.scss */ +/* line 1230, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 1238, ../../../scss/_app_styles.scss */ +/* line 1237, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 1242, ../../../scss/_app_styles.scss */ +/* line 1241, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 1247, ../../../scss/_app_styles.scss */ +/* line 1246, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 1253, ../../../scss/_app_styles.scss */ +/* line 1252, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -24613,16 +24612,16 @@ aside#help p, aside#help h5, aside#help h6 { border-top: 1px solid #B1B1B1; width: 80%; } -/* line 1262, ../../../scss/_app_styles.scss */ +/* line 1261, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 1267, ../../../scss/_app_styles.scss */ +/* line 1266, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 1270, ../../../scss/_app_styles.scss */ +/* line 1269, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { color: #ffffff !important; height: 2em; @@ -24630,7 +24629,7 @@ aside#help p, aside#help h5, aside#help h6 { padding-left: 10px; line-height: 1.5em; } -/* line 1280, ../../../scss/_app_styles.scss */ +/* line 1279, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -24640,12 +24639,12 @@ aside#help p, aside#help h5, aside#help h6 { border-radius: 0px 0px 5px 5px; /*background-color: #f2f2f2;*/ } -/* line 1289, ../../../scss/_app_styles.scss */ +/* line 1288, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 1295, ../../../scss/_app_styles.scss */ +/* line 1294, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -24671,7 +24670,7 @@ aside#help p, aside#help h5, aside#help h6 { } }*/ /* Simple Card CSS*/ -/* line 1323, ../../../scss/_app_styles.scss */ +/* line 1322, ../../../scss/_app_styles.scss */ .scard { background: #FFF; border: 1px solid #AAA; @@ -24683,12 +24682,12 @@ aside#help p, aside#help h5, aside#help h6 { height: 9rem; /*float:left;*/ } -/* line 1332, ../../../scss/_app_styles.scss */ +/* line 1331, ../../../scss/_app_styles.scss */ .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1338, ../../../scss/_app_styles.scss */ +/* line 1337, ../../../scss/_app_styles.scss */ .scard .scard_header { text-align: center; position: fixed; @@ -24706,7 +24705,7 @@ aside#help p, aside#help h5, aside#help h6 { font-weight: bold; } -/* line 1355, ../../../scss/_app_styles.scss */ +/* line 1354, ../../../scss/_app_styles.scss */ .scard-content { height: 2.7em; padding: 0.5rem; @@ -24719,7 +24718,7 @@ aside#help p, aside#help h5, aside#help h6 { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 1366, ../../../scss/_app_styles.scss */ +/* line 1365, ../../../scss/_app_styles.scss */ .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; @@ -24729,7 +24728,7 @@ aside#help p, aside#help h5, aside#help h6 { text-align: center; } -/* line 1379, ../../../scss/_app_styles.scss */ +/* line 1378, ../../../scss/_app_styles.scss */ .scard-action { height: height; font-size: 0.6em; @@ -24743,7 +24742,7 @@ aside#help p, aside#help h5, aside#help h6 { background-color: #CCCCCC; } -/* line 1394, ../../../scss/_app_styles.scss */ +/* line 1393, ../../../scss/_app_styles.scss */ .scard-desc { font-size: 0.7em; color: #333333; @@ -24759,13 +24758,13 @@ aside#help p, aside#help h5, aside#help h6 { display-inline: block; } -/* line 1409, ../../../scss/_app_styles.scss */ +/* line 1408, ../../../scss/_app_styles.scss */ p { margin: 0px; padding: 10px; } -/* line 1414, ../../../scss/_app_styles.scss */ +/* line 1413, ../../../scss/_app_styles.scss */ .scard-image { padding: 0px; margin: 0px; @@ -24776,7 +24775,7 @@ p { overflow: hidden; background-color: #f2f2f2; } -/* line 1423, ../../../scss/_app_styles.scss */ +/* line 1422, ../../../scss/_app_styles.scss */ .scard-image img { border-radius: 2px 2px 0 0; display: block; @@ -24784,7 +24783,7 @@ p { opacity: 0.9; height: 100%; } -/* line 1432, ../../../scss/_app_styles.scss */ +/* line 1431, ../../../scss/_app_styles.scss */ .scard-image i { font-size: 7rem; opacity: 0.75; @@ -24798,83 +24797,83 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1446, ../../../scss/_app_styles.scss */ +/* line 1445, ../../../scss/_app_styles.scss */ .scard-image i.common-icon:before { content: "\f1fb"; } -/* line 1449, ../../../scss/_app_styles.scss */ +/* line 1448, ../../../scss/_app_styles.scss */ .scard-image i.file:before { content: "\f18e"; } -/* line 1452, ../../../scss/_app_styles.scss */ +/* line 1451, ../../../scss/_app_styles.scss */ .scard-image i.page:before { content: "\f18e"; } -/* line 1455, ../../../scss/_app_styles.scss */ +/* line 1454, ../../../scss/_app_styles.scss */ .scard-image i.collection:before { content: "\f18a"; } -/* line 1458, ../../../scss/_app_styles.scss */ +/* line 1457, ../../../scss/_app_styles.scss */ .scard-image i.documents:before { content: "\f18b"; } -/* line 1461, ../../../scss/_app_styles.scss */ +/* line 1460, ../../../scss/_app_styles.scss */ .scard-image i.pdf:before { content: "\f18b"; } -/* line 1464, ../../../scss/_app_styles.scss */ +/* line 1463, ../../../scss/_app_styles.scss */ .scard-image i.text:before { content: "\f18e"; } -/* line 1467, ../../../scss/_app_styles.scss */ +/* line 1466, ../../../scss/_app_styles.scss */ .scard-image i.interactives:before { content: "\f1b2"; } -/* line 1470, ../../../scss/_app_styles.scss */ +/* line 1469, ../../../scss/_app_styles.scss */ .scard-image i.ebooks:before { content: "\f11e"; } -/* line 1473, ../../../scss/_app_styles.scss */ +/* line 1472, ../../../scss/_app_styles.scss */ .scard-image i.images:before { content: "\f125"; } -/* line 1476, ../../../scss/_app_styles.scss */ +/* line 1475, ../../../scss/_app_styles.scss */ .scard-image i.audios:before, .scard-image i.audio:before { content: "\f17b"; } -/* line 1479, ../../../scss/_app_styles.scss */ +/* line 1478, ../../../scss/_app_styles.scss */ .scard-image i.videos:before, .scard-image i.video:before { content: "\f20e"; } -/* line 1485, ../../../scss/_app_styles.scss */ +/* line 1484, ../../../scss/_app_styles.scss */ .published.scard-action { background: #A6D9CB; } -/* line 1489, ../../../scss/_app_styles.scss */ +/* line 1488, ../../../scss/_app_styles.scss */ .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 1495, ../../../scss/_app_styles.scss */ +/* line 1494, ../../../scss/_app_styles.scss */ .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1500, ../../../scss/_app_styles.scss */ +/* line 1499, ../../../scss/_app_styles.scss */ .moderation.scard-action { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1504, ../../../scss/_app_styles.scss */ +/* line 1503, ../../../scss/_app_styles.scss */ .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 1508, ../../../scss/_app_styles.scss */ +/* line 1507, ../../../scss/_app_styles.scss */ .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -24885,7 +24884,7 @@ p { /* End Simple Card CSS*/ /* Customized Off-Canvas */ -/* line 1646, ../../../scss/_app_styles.scss */ +/* line 1645, ../../../scss/_app_styles.scss */ #help-canvas-menu { position: fixed; top: 52px; @@ -24898,26 +24897,26 @@ p { height: 100%; } -/* line 1657, ../../../scss/_app_styles.scss */ +/* line 1656, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded { left: 0 !important; z-index: 100000000; left: 150px; } -/* line 1662, ../../../scss/_app_styles.scss */ +/* line 1661, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded .help-button { right: 80px; z-index: -1; } -/* line 1667, ../../../scss/_app_styles.scss */ +/* line 1666, ../../../scss/_app_styles.scss */ #help-canvas-menu.animating .help-button { -webkit-animation: shake 400ms; animation: shake 400ms; } -/* line 1671, ../../../scss/_app_styles.scss */ +/* line 1670, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button { position: absolute; -webkit-transform: rotate(-90deg); @@ -24944,12 +24943,12 @@ p { border-top-right-radius: 5px; } -/* line 1697, ../../../scss/_app_styles.scss */ +/* line 1696, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button-text { font-size: 18px; } -/* line 1700, ../../../scss/_app_styles.scss */ +/* line 1699, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button .text { color: #f9f9f9; letter-spacing: .1em; @@ -24958,7 +24957,7 @@ p { text-shadow: 0 0 1px rgba(0, 0, 0, 0.35); } -/* line 1709, ../../../scss/_app_styles.scss */ +/* line 1708, ../../../scss/_app_styles.scss */ #help-canvas-menu .mainContainer { background: #fff; /*-webkit-box-shadow:3px 3px 17px -1px #7b7b7b; @@ -24972,7 +24971,7 @@ p { } /* End of Customized Off-Canvas */ -/* line 1727, ../../../scss/_app_styles.scss */ +/* line 1726, ../../../scss/_app_styles.scss */ .rcard { overflow: hidden; color: #272727; @@ -24980,56 +24979,56 @@ p { background-color: #f5f5f5; margin: 5px; } -/* line 1738, ../../../scss/_app_styles.scss */ +/* line 1737, ../../../scss/_app_styles.scss */ .rcard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1743, ../../../scss/_app_styles.scss */ +/* line 1742, ../../../scss/_app_styles.scss */ .rcard .title { font-size: 1.1rem; font-weight: bold; } -/* line 1749, ../../../scss/_app_styles.scss */ +/* line 1748, ../../../scss/_app_styles.scss */ .rcard .content { padding: 0.5rem 2rem; border-radius: 0 0 2px 2px; overflow: hidden; height: 7.25rem; } -/* line 1756, ../../../scss/_app_styles.scss */ +/* line 1755, ../../../scss/_app_styles.scss */ .rcard .content .slick-slider { margin-bottom: 0; } -/* line 1760, ../../../scss/_app_styles.scss */ +/* line 1759, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev { left: 0.25rem; } -/* line 1763, ../../../scss/_app_styles.scss */ +/* line 1762, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev:before { color: #ccc; } -/* line 1769, ../../../scss/_app_styles.scss */ +/* line 1768, ../../../scss/_app_styles.scss */ .rcard .content .slick-next { right: 0.25rem; } -/* line 1772, ../../../scss/_app_styles.scss */ +/* line 1771, ../../../scss/_app_styles.scss */ .rcard .content .slick-next:before { color: #ccc; } -/* line 1778, ../../../scss/_app_styles.scss */ +/* line 1777, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title { width: 100%; border-bottom: 1px solid #808080; line-height: 0.25em; margin: 10px 0 20px; } -/* line 1784, ../../../scss/_app_styles.scss */ +/* line 1783, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title small { padding: 0 10px; background-color: #f5f5f5; } -/* line 1791, ../../../scss/_app_styles.scss */ +/* line 1790, ../../../scss/_app_styles.scss */ .rcard .action { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -25037,15 +25036,15 @@ p { font-size: small; height: 2rem; } -/* line 1798, ../../../scss/_app_styles.scss */ +/* line 1797, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection { opacity: 0.5; } -/* line 1801, ../../../scss/_app_styles.scss */ +/* line 1800, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection:hover { opacity: 1; } -/* line 1815, ../../../scss/_app_styles.scss */ +/* line 1814, ../../../scss/_app_styles.scss */ .rcard .image { position: relative; background-color: #ccc; @@ -25053,7 +25052,7 @@ p { height: 8em; overflow: hidden; } -/* line 1825, ../../../scss/_app_styles.scss */ +/* line 1824, ../../../scss/_app_styles.scss */ .rcard .image .title { position: absolute; bottom: 0; @@ -25065,7 +25064,7 @@ p { text-transform: uppercase; text-shadow: 0px 0px 0.5px rgba(0, 0, 0, 0.5); } -/* line 1838, ../../../scss/_app_styles.scss */ +/* line 1837, ../../../scss/_app_styles.scss */ .rcard .image img { border-radius: 2px 2px 0 0; display: block; @@ -25075,14 +25074,14 @@ p { filter: brightness(0.75); -webkit-filter: brightness(0.75); } -/* line 1850, ../../../scss/_app_styles.scss */ +/* line 1849, ../../../scss/_app_styles.scss */ .rcard .image img:hover { filter: brightness(1); -webkit-filter: brightness(1); transform: translate3d(0, 0, 0); transition: all 1.5s ease; } -/* line 1859, ../../../scss/_app_styles.scss */ +/* line 1858, ../../../scss/_app_styles.scss */ .rcard .image i { font-size: 7rem; opacity: 0.75; @@ -25096,51 +25095,51 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1876, ../../../scss/_app_styles.scss */ +/* line 1875, ../../../scss/_app_styles.scss */ .rcard .image i.file:before { content: "\f18e"; } -/* line 1877, ../../../scss/_app_styles.scss */ +/* line 1876, ../../../scss/_app_styles.scss */ .rcard .image i.page:before { content: "\f18e"; } -/* line 1878, ../../../scss/_app_styles.scss */ +/* line 1877, ../../../scss/_app_styles.scss */ .rcard .image i.collection:before { content: "\f18a"; } -/* line 1880, ../../../scss/_app_styles.scss */ +/* line 1879, ../../../scss/_app_styles.scss */ .rcard .image i.documents:before { content: "\f18b"; } -/* line 1881, ../../../scss/_app_styles.scss */ +/* line 1880, ../../../scss/_app_styles.scss */ .rcard .image i.pdf:before { content: "\f18b"; } -/* line 1882, ../../../scss/_app_styles.scss */ +/* line 1881, ../../../scss/_app_styles.scss */ .rcard .image i.text:before { content: "\f18e"; } -/* line 1883, ../../../scss/_app_styles.scss */ +/* line 1882, ../../../scss/_app_styles.scss */ .rcard .image i.interactives:before { content: "\f1b2"; } -/* line 1884, ../../../scss/_app_styles.scss */ +/* line 1883, ../../../scss/_app_styles.scss */ .rcard .image i.ebooks:before { content: "\f11e"; } -/* line 1885, ../../../scss/_app_styles.scss */ +/* line 1884, ../../../scss/_app_styles.scss */ .rcard .image i.images:before { content: "\f125"; } -/* line 1886, ../../../scss/_app_styles.scss */ +/* line 1885, ../../../scss/_app_styles.scss */ .rcard .image i.audios:before, .rcard .image i.audio:before { content: "\f17b"; } -/* line 1887, ../../../scss/_app_styles.scss */ +/* line 1886, ../../../scss/_app_styles.scss */ .rcard .image i.videos:before, .rcard .image i.video:before { content: "\f20e"; } -/* line 1890, ../../../scss/_app_styles.scss */ +/* line 1889, ../../../scss/_app_styles.scss */ .rcard .card-label { border-style: solid; border-width: 0 70px 40px 0; @@ -25153,59 +25152,59 @@ p { z-index: 1; opacity: 0.75; } -/* line 1903, ../../../scss/_app_styles.scss */ +/* line 1902, ../../../scss/_app_styles.scss */ .rcard .card-label { border-color: transparent #333 transparent transparent; border-color: rgba(255, 255, 255, 0) #333 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1908, ../../../scss/_app_styles.scss */ +/* line 1907, ../../../scss/_app_styles.scss */ .rcard .published.card-label { border-color: transparent #43AC6A transparent transparent; border-color: rgba(255, 255, 255, 0) #43AC6A rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1912, ../../../scss/_app_styles.scss */ +/* line 1911, ../../../scss/_app_styles.scss */ .rcard .published.card-label .label-text:before { content: "\221A"; margin-left: 5px; font-size: larger; } -/* line 1920, ../../../scss/_app_styles.scss */ +/* line 1919, ../../../scss/_app_styles.scss */ .rcard .draft.card-label { border-color: transparent #a9b2b3 transparent transparent; border-color: rgba(255, 255, 255, 0) #a9b2b3 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1924, ../../../scss/_app_styles.scss */ +/* line 1923, ../../../scss/_app_styles.scss */ .rcard .draft.card-label .label-text:before { content: "Draft"; } -/* line 1929, ../../../scss/_app_styles.scss */ +/* line 1928, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1933, ../../../scss/_app_styles.scss */ +/* line 1932, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label .label-text:before { content: "Deleted"; } -/* line 1938, ../../../scss/_app_styles.scss */ +/* line 1937, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1942, ../../../scss/_app_styles.scss */ +/* line 1941, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label .label-text:before { content: "Mod"; } -/* line 1945, ../../../scss/_app_styles.scss */ +/* line 1944, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label { border-color: transparent #000 transparent transparent; border-color: rgba(255, 255, 255, 0) #000 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1949, ../../../scss/_app_styles.scss */ +/* line 1948, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label .label-text:before { content: "hidden"; } -/* line 1952, ../../../scss/_app_styles.scss */ +/* line 1951, ../../../scss/_app_styles.scss */ .rcard .label-text { color: #fff; font-size: 0.75rem; @@ -25216,7 +25215,7 @@ p { transform: rotate(30deg); } -/* line 1966, ../../../scss/_app_styles.scss */ +/* line 1965, ../../../scss/_app_styles.scss */ .compulsory:after { content: '*'; color: red; @@ -25229,12 +25228,12 @@ p { background-repeat:repeat; background-image:url("/static/ndf/images/draft-watermark.png"); }*/ -/* line 1982, ../../../scss/_app_styles.scss */ +/* line 1981, ../../../scss/_app_styles.scss */ .text-gray { color: gray; } -/* line 1987, ../../../scss/_app_styles.scss */ +/* line 1986, ../../../scss/_app_styles.scss */ .repository-title { color: #D7D7D7; font-size: 1.1em; @@ -25247,7 +25246,7 @@ p { text-align: center; } -/* line 1999, ../../../scss/_app_styles.scss */ +/* line 1998, ../../../scss/_app_styles.scss */ .repository-desc { font-size: 1.1em; width: auto; @@ -25259,12 +25258,12 @@ p { margin-left: 4px; } -/* line 2010, ../../../scss/_app_styles.scss */ +/* line 2009, ../../../scss/_app_styles.scss */ .card-holder { padding-left: 2%; } -/* line 2014, ../../../scss/_app_styles.scss */ +/* line 2013, ../../../scss/_app_styles.scss */ .app-card-wrapper { position: relative; margin: auto; @@ -25274,14 +25273,14 @@ p { max-width: calc(70rem + 70px); } -/* line 2023, ../../../scss/_app_styles.scss */ +/* line 2022, ../../../scss/_app_styles.scss */ .app-card-container { display: inline-block; vertical-align: top; margin: 15px; } -/* line 2029, ../../../scss/_app_styles.scss */ +/* line 2028, ../../../scss/_app_styles.scss */ .app-card { width: 19rem; margin: 15px 20px; @@ -25292,7 +25291,7 @@ p { border: thin solid #D3D3D3; } -/* line 2039, ../../../scss/_app_styles.scss */ +/* line 2038, ../../../scss/_app_styles.scss */ .app-card:hover { box-shadow: 0px 0px 15px #808080; border: thin solid #D3D3D3; @@ -25300,26 +25299,26 @@ p { transition: all 0.6s ease 0s; } -/* line 2046, ../../../scss/_app_styles.scss */ +/* line 2045, ../../../scss/_app_styles.scss */ .app-card-icon { color: #4c4c4c; position: relative; font-size: 6em; } -/* line 2052, ../../../scss/_app_styles.scss */ +/* line 2051, ../../../scss/_app_styles.scss */ .app-card-title { padding-bottom: -1em; } -/* line 2056, ../../../scss/_app_styles.scss */ +/* line 2055, ../../../scss/_app_styles.scss */ .app-card-content { color: #4c4c4c; text-align: center; margin-top: 0.5cm; } -/* line 2063, ../../../scss/_app_styles.scss */ +/* line 2062, ../../../scss/_app_styles.scss */ .fullscreen-icon { display: none; } @@ -25335,58 +25334,58 @@ div.show-image:hover div.fullscreen-icon{ font-size:2em; }*/ -/* line 2082, ../../../scss/_app_styles.scss */ +/* line 2081, ../../../scss/_app_styles.scss */ .cke .cke_toolbox .cke_toolbar:last-child { float: right; } -/* line 2088, ../../../scss/_app_styles.scss */ +/* line 2087, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin: 0px 1em; } -/* line 2092, ../../../scss/_app_styles.scss */ +/* line 2091, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 2098, ../../../scss/_app_styles.scss */ +/* line 2097, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 2101, ../../../scss/_app_styles.scss */ +/* line 2100, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 2105, ../../../scss/_app_styles.scss */ +/* line 2104, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 2110, ../../../scss/_app_styles.scss */ +/* line 2109, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 2117, ../../../scss/_app_styles.scss */ +/* line 2116, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 2121, ../../../scss/_app_styles.scss */ +/* line 2120, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 2126, ../../../scss/_app_styles.scss */ +/* line 2125, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 2132, ../../../scss/_app_styles.scss */ +/* line 2131, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -25394,16 +25393,16 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 0em; border-top: 1px solid #B1B1B1; } -/* line 2140, ../../../scss/_app_styles.scss */ +/* line 2139, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 2145, ../../../scss/_app_styles.scss */ +/* line 2144, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 2148, ../../../scss/_app_styles.scss */ +/* line 2147, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { /*background-color: #3e3e3e;*/ color: #ececec !important; @@ -25413,7 +25412,7 @@ div.show-image:hover div.fullscreen-icon{ line-height: 1.5em; border-radius: 5px 5px 0px 0px; } -/* line 2158, ../../../scss/_app_styles.scss */ +/* line 2157, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -25422,12 +25421,12 @@ div.show-image:hover div.fullscreen-icon{ padding-left: 10px; border-radius: 0px 0px 5px 5px; } -/* line 2166, ../../../scss/_app_styles.scss */ +/* line 2165, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 2172, ../../../scss/_app_styles.scss */ +/* line 2171, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -25435,7 +25434,7 @@ div.show-image:hover div.fullscreen-icon{ /* Large desktop */ @media (min-width: 34em) { - /* line 2180, ../../../scss/_app_styles.scss */ + /* line 2179, ../../../scss/_app_styles.scss */ .container { max-width: 34rem; margin: 0px auto; @@ -25443,7 +25442,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 48em) { - /* line 2188, ../../../scss/_app_styles.scss */ + /* line 2187, ../../../scss/_app_styles.scss */ .container { max-width: 45rem; margin: 0px auto; @@ -25451,7 +25450,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 62em) { - /* line 2196, ../../../scss/_app_styles.scss */ + /* line 2195, ../../../scss/_app_styles.scss */ .container { max-width: 60rem; margin: 0px auto; @@ -25459,20 +25458,20 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 75em) { - /* line 2204, ../../../scss/_app_styles.scss */ + /* line 2203, ../../../scss/_app_styles.scss */ .container { max-width: 72.25rem; margin: 0px auto; } } -/* line 2210, ../../../scss/_app_styles.scss */ +/* line 2209, ../../../scss/_app_styles.scss */ .course-page { position: relative; background-size: 100% 100%; height: 100%; margin-top: 10px; } -/* line 2216, ../../../scss/_app_styles.scss */ +/* line 2215, ../../../scss/_app_styles.scss */ .course-page > .container { background-color: #fff; padding: 0px 0px; @@ -25480,7 +25479,7 @@ div.show-image:hover div.fullscreen-icon{ box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3); } -/* line 2224, ../../../scss/_app_styles.scss */ +/* line 2223, ../../../scss/_app_styles.scss */ .course-page-opacity { height: 100%; width: 100%; @@ -25494,12 +25493,12 @@ div.show-image:hover div.fullscreen-icon{ background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 2238, ../../../scss/_app_styles.scss */ +/* line 2237, ../../../scss/_app_styles.scss */ #envelop-cover { /*background: #A0148E;*/ height: 250px; } -/* line 2242, ../../../scss/_app_styles.scss */ +/* line 2241, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header { font-size: 35px; font-weight: 500; @@ -25509,11 +25508,11 @@ div.show-image:hover div.fullscreen-icon{ height: 250px; color: #fff; } -/* line 2251, ../../../scss/_app_styles.scss */ +/* line 2250, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header label { color: #fff; } -/* line 2255, ../../../scss/_app_styles.scss */ +/* line 2254, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background, #envelop-cover .course-page-header .course-header-background-layer { position: absolute; left: 0px; @@ -25522,17 +25521,17 @@ div.show-image:hover div.fullscreen-icon{ bottom: 0px; height: 250px; } -/* line 2262, ../../../scss/_app_styles.scss */ +/* line 2261, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background img, #envelop-cover .course-page-header .course-header-background-layer img { width: auto; height: 250px; } -/* line 2268, ../../../scss/_app_styles.scss */ +/* line 2267, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background-layer { background-color: rgba(0, 0, 0, 0.5); opacity: 0; } -/* line 2273, ../../../scss/_app_styles.scss */ +/* line 2272, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings { margin-left: 15px; position: absolute; @@ -25540,20 +25539,20 @@ div.show-image:hover div.fullscreen-icon{ bottom: 55px; /*width: 170px;*/ } -/* line 2279, ../../../scss/_app_styles.scss */ +/* line 2278, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul { box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); } -/* line 2281, ../../../scss/_app_styles.scss */ +/* line 2280, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul > li:hover { background: rgba(0, 0, 0, 0.9); } -/* line 2285, ../../../scss/_app_styles.scss */ +/* line 2284, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a { font-size: 15px; color: #737373; } -/* line 2286, ../../../scss/_app_styles.scss */ +/* line 2285, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child { background: rgba(50, 50, 50, 0.8); padding: 9px 12px 9px 10px; @@ -25561,11 +25560,11 @@ div.show-image:hover div.fullscreen-icon{ font-size: 12px; margin: 0px; } -/* line 2292, ../../../scss/_app_styles.scss */ +/* line 2291, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child > i { margin-right: 5px; } -/* line 2299, ../../../scss/_app_styles.scss */ +/* line 2298, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span { background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.7); @@ -25576,30 +25575,30 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; border-radius: 3px; } -/* line 2309, ../../../scss/_app_styles.scss */ +/* line 2308, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span i { font-size: 20px; } -/* line 2316, ../../../scss/_app_styles.scss */ +/* line 2315, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a { font-size: 15px; color: #737373; } -/* line 2319, ../../../scss/_app_styles.scss */ +/* line 2318, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a i { font-size: 18px; } -/* line 2326, ../../../scss/_app_styles.scss */ +/* line 2325, ../../../scss/_app_styles.scss */ #envelop-cover .heading { letter-spacing: -1.2px; font-weight: 400; } -/* line 2331, ../../../scss/_app_styles.scss */ +/* line 2330, ../../../scss/_app_styles.scss */ #envelop-cover .meta { line-height: 2.1em; padding-left: 14px; } -/* line 2335, ../../../scss/_app_styles.scss */ +/* line 2334, ../../../scss/_app_styles.scss */ #envelop-cover .meta .key { color: #A7A4A4; font-weight: 500; @@ -25609,27 +25608,27 @@ div.show-image:hover div.fullscreen-icon{ vertical-align: top; margin-right: 10px; } -/* line 2345, ../../../scss/_app_styles.scss */ +/* line 2344, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value { display: inline-block; } -/* line 2348, ../../../scss/_app_styles.scss */ +/* line 2347, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .name { color: #000; } -/* line 2352, ../../../scss/_app_styles.scss */ +/* line 2351, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .time { font-size: 13px; font-weight: 300; color: #000; } -/* line 2359, ../../../scss/_app_styles.scss */ +/* line 2358, ../../../scss/_app_styles.scss */ #envelop-cover .course-title { position: absolute; bottom: 50px; left: 5px; } -/* line 2364, ../../../scss/_app_styles.scss */ +/* line 2363, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs { border: 0 solid silver; border-width: 0px 0px 0px 0px; @@ -25641,7 +25640,7 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; background-color: rgba(255, 255, 255, 0.8); } -/* line 2375, ../../../scss/_app_styles.scss */ +/* line 2374, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title { border: 0 solid silver; border-width: 0 0 0px 0px; @@ -25651,7 +25650,7 @@ div.show-image:hover div.fullscreen-icon{ display: inline-block; border-top: 5px solid transparent; } -/* line 2384, ../../../scss/_app_styles.scss */ +/* line 2383, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title a { color: #6F669E; font-weight: 600; @@ -25659,25 +25658,25 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: -0.3px; padding: 0rem 0.8rem 0.4rem; } -/* line 2392, ../../../scss/_app_styles.scss */ +/* line 2391, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active { border-width: 0px 0px 0px 0px; background: #FFFFFF; border-top: 5px solid #F11FD0; } -/* line 2396, ../../../scss/_app_styles.scss */ +/* line 2395, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active a { color: #6153AE; } -/* line 2409, ../../../scss/_app_styles.scss */ +/* line 2408, ../../../scss/_app_styles.scss */ .note-tags a { background: #ffebb2; padding: 0.2em 0.7em; display: inline-block; } -/* line 2416, ../../../scss/_app_styles.scss */ +/* line 2415, ../../../scss/_app_styles.scss */ .toggleButtons a { padding: 0.5em 1em; margin: 0px; @@ -25686,69 +25685,69 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid #B7B7B7; display: inline; } -/* line 2424, ../../../scss/_app_styles.scss */ +/* line 2423, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { margin-right: -3px; border-right: 0px solid #000; } -/* line 2428, ../../../scss/_app_styles.scss */ +/* line 2427, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { border-radius: 10px 0px 0px 10px; } -/* line 2431, ../../../scss/_app_styles.scss */ +/* line 2430, ../../../scss/_app_styles.scss */ .toggleButtons a:last-child { border-radius: 0px 10px 10px 0px; } -/* line 2434, ../../../scss/_app_styles.scss */ +/* line 2433, ../../../scss/_app_styles.scss */ .toggleButtons a.active { background-color: #908F8F; color: #fff; } -/* line 2441, ../../../scss/_app_styles.scss */ +/* line 2440, ../../../scss/_app_styles.scss */ .explore-header { line-height: 3em; } -/* line 2444, ../../../scss/_app_styles.scss */ +/* line 2443, ../../../scss/_app_styles.scss */ .explore-header > div { vertical-align: middle; display: inline-block; } -/* line 2448, ../../../scss/_app_styles.scss */ +/* line 2447, ../../../scss/_app_styles.scss */ .explore-header .heading { font-size: 2em; } -/* line 2461, ../../../scss/_app_styles.scss */ +/* line 2460, ../../../scss/_app_styles.scss */ #envelop-content { /*background-color: #fff;*/ padding: 0px 10px; overflow-x: hidden; /* For accordian in the mobile view*/ } -/* line 2467, ../../../scss/_app_styles.scss */ +/* line 2466, ../../../scss/_app_styles.scss */ #envelop-content .accordion { margin-left: 0px; } -/* line 2471, ../../../scss/_app_styles.scss */ +/* line 2470, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation a { background-color: #DEDEDE; } -/* line 2474, ../../../scss/_app_styles.scss */ +/* line 2473, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation.active a { background-color: #fff; } -/* line 2481, ../../../scss/_app_styles.scss */ +/* line 2480, ../../../scss/_app_styles.scss */ #envelop-content > div > .tabs-content > .content { background: #FFFFFF; padding: 1em; } -/* line 2488, ../../../scss/_app_styles.scss */ +/* line 2487, ../../../scss/_app_styles.scss */ #envelop-content .course-book #course-dashboard { padding: 0px; } -/* line 2496, ../../../scss/_app_styles.scss */ +/* line 2495, ../../../scss/_app_styles.scss */ .course-overview-container { /*.about-course-heading { display: block; @@ -25783,23 +25782,23 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; }*/ } -/* line 2497, ../../../scss/_app_styles.scss */ +/* line 2496, ../../../scss/_app_styles.scss */ .course-overview-container .course-overview > .columns { padding: 0px 10px; } -/* line 2500, ../../../scss/_app_styles.scss */ +/* line 2499, ../../../scss/_app_styles.scss */ .course-overview-container h5 { text-transform: uppercase; } -/* line 2503, ../../../scss/_app_styles.scss */ +/* line 2502, ../../../scss/_app_styles.scss */ .course-overview-container .correct-count { color: #367714; } -/* line 2506, ../../../scss/_app_styles.scss */ +/* line 2505, ../../../scss/_app_styles.scss */ .course-overview-container .incorrect-count { color: #9b0000; } -/* line 2509, ../../../scss/_app_styles.scss */ +/* line 2508, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-heading { text-transform: uppercase; font-size: 12px; @@ -25808,45 +25807,45 @@ div.show-image:hover div.fullscreen-icon{ color: #8E8E8E; display: block; } -/* line 2517, ../../../scss/_app_styles.scss */ +/* line 2516, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-count { font-size: 30px; font-weight: 500; letter-spacing: 0.5px; display: block; } -/* line 2523, ../../../scss/_app_styles.scss */ +/* line 2522, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session { border-bottom: 1px solid #ccc; margin-bottom: 12px; padding-bottom: 15px; } -/* line 2528, ../../../scss/_app_styles.scss */ +/* line 2527, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session h5, .course-overview-container .ongoing-session h3 { color: #2b78e4; } -/* line 2531, ../../../scss/_app_styles.scss */ +/* line 2530, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session button { font-size: 14px; padding: 7px; margin: 0px; background-color: #2B78E4; } -/* line 2539, ../../../scss/_app_styles.scss */ +/* line 2538, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > h5 { color: #888; } -/* line 2542, ../../../scss/_app_styles.scss */ +/* line 2541, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > .row { margin: 10px 0px; } -/* line 2545, ../../../scss/_app_styles.scss */ +/* line 2544, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2550, ../../../scss/_app_styles.scss */ +/* line 2549, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -25855,17 +25854,17 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2558, ../../../scss/_app_styles.scss */ +/* line 2557, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2568, ../../../scss/_app_styles.scss */ +/* line 2567, ../../../scss/_app_styles.scss */ .course-overview-container .course-notif-logs ul { list-style: none; } -/* line 2572, ../../../scss/_app_styles.scss */ +/* line 2571, ../../../scss/_app_styles.scss */ .course-overview-container .course-section { border: 1px solid #ccc; padding: 10px; @@ -25873,11 +25872,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 40px 0px; position: relative; } -/* line 2579, ../../../scss/_app_styles.scss */ +/* line 2578, ../../../scss/_app_styles.scss */ .course-overview-container .course-section > .row { margin: 20px 0px; } -/* line 2583, ../../../scss/_app_styles.scss */ +/* line 2582, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-heading { text-transform: uppercase; font-weight: 600; @@ -25887,7 +25886,7 @@ div.show-image:hover div.fullscreen-icon{ margin: 2px 0px 15px; color: #888; } -/* line 2593, ../../../scss/_app_styles.scss */ +/* line 2592, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-icon { position: absolute; font-size: 40px; @@ -25896,58 +25895,58 @@ div.show-image:hover div.fullscreen-icon{ color: #aaa; background: #fff; } -/* line 2617, ../../../scss/_app_styles.scss */ +/* line 2616, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning { background-color: #fffdd7; } -/* line 2619, ../../../scss/_app_styles.scss */ +/* line 2618, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning > h5 { color: #c09100; } -/* line 2622, ../../../scss/_app_styles.scss */ +/* line 2621, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning i { padding: 10px; margin-right: 5px; color: #c09100; } -/* line 2627, ../../../scss/_app_styles.scss */ +/* line 2626, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning a { text-decoration: underline; } -/* line 2631, ../../../scss/_app_styles.scss */ +/* line 2630, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data { margin: 20px 0px; } -/* line 2635, ../../../scss/_app_styles.scss */ +/* line 2634, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 2638, ../../../scss/_app_styles.scss */ +/* line 2637, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 2645, ../../../scss/_app_styles.scss */ +/* line 2644, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table { width: 100%; margin: 15px 0px; } -/* line 2649, ../../../scss/_app_styles.scss */ +/* line 2648, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table tr { border: none; } -/* line 2653, ../../../scss/_app_styles.scss */ +/* line 2652, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table .progress .merter-val { margin-left: 5px; } -/* line 2691, ../../../scss/_app_styles.scss */ +/* line 2690, ../../../scss/_app_styles.scss */ .about-course { background-color: #fff; padding: 10px 23px; } -/* line 2694, ../../../scss/_app_styles.scss */ +/* line 2693, ../../../scss/_app_styles.scss */ .about-course > h5 { text-transform: uppercase; font-weight: 600; @@ -25958,7 +25957,7 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 5px; } -/* line 2705, ../../../scss/_app_styles.scss */ +/* line 2704, ../../../scss/_app_styles.scss */ .course-desc { letter-spacing: 0.7px; font-weight: 400; @@ -25968,7 +25967,7 @@ div.show-image:hover div.fullscreen-icon{ margin-top: 5px; } -/* line 2713, ../../../scss/_app_styles.scss */ +/* line 2712, ../../../scss/_app_styles.scss */ .course-highlight { letter-spacing: 0.7px; font-weight: 400; @@ -25979,25 +25978,25 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 4px; margin-bottom: 5px; } -/* line 2723, ../../../scss/_app_styles.scss */ +/* line 2722, ../../../scss/_app_styles.scss */ .course-highlight > span { color: #ce7869; } -/* line 2729, ../../../scss/_app_styles.scss */ +/* line 2728, ../../../scss/_app_styles.scss */ .icon-wid { font-size: 34px !important; color: #a2b1be; margin-right: 10px; } -/* line 2738, ../../../scss/_app_styles.scss */ +/* line 2737, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2743, ../../../scss/_app_styles.scss */ +/* line 2742, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26006,96 +26005,96 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2751, ../../../scss/_app_styles.scss */ +/* line 2750, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2760, ../../../scss/_app_styles.scss */ +/* line 2759, ../../../scss/_app_styles.scss */ .student-dashboard-header-container { background-color: #90F; padding: 10px 10px; height: 110px; width: 100%; } -/* line 2768, ../../../scss/_app_styles.scss */ +/* line 2767, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header img { height: 75px; width: 75px; vertical-align: top; margin: 0px 10px; } -/* line 2774, ../../../scss/_app_styles.scss */ +/* line 2773, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info { display: inline-block; } -/* line 2776, ../../../scss/_app_styles.scss */ +/* line 2775, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info > span { display: block; color: #fff; } -/* line 2780, ../../../scss/_app_styles.scss */ +/* line 2779, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-name { color: #fff; font-weight: 600; font-size: 22px; letter-spacing: 0.5px; } -/* line 2786, ../../../scss/_app_styles.scss */ +/* line 2785, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-overall-points { font-size: 26px; color: #ffff00; } -/* line 2799, ../../../scss/_app_styles.scss */ +/* line 2798, ../../../scss/_app_styles.scss */ .student-dashboard { background-color: #fff; padding: 10px; } -/* line 2804, ../../../scss/_app_styles.scss */ +/* line 2803, ../../../scss/_app_styles.scss */ .student-dashboard #course-act-logs > span { display: inline-block; vertical-align: top; } -/* line 2813, ../../../scss/_app_styles.scss */ +/* line 2812, ../../../scss/_app_styles.scss */ .rating-star-number { position: relative; display: inline-block; } -/* line 2816, ../../../scss/_app_styles.scss */ +/* line 2815, ../../../scss/_app_styles.scss */ .rating-star-number > span { position: absolute; top: 11px; left: 14px; font-size: 13px; } -/* line 2822, ../../../scss/_app_styles.scss */ +/* line 2821, ../../../scss/_app_styles.scss */ .rating-star-number i { font-size: 40px; color: gold; } -/* line 2829, ../../../scss/_app_styles.scss */ +/* line 2828, ../../../scss/_app_styles.scss */ .course-notif .notif-type img { height: 35px; width: 75%; } -/* line 2833, ../../../scss/_app_styles.scss */ +/* line 2832, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating { position: absolute; right: 15%; top: 0; } -/* line 2837, ../../../scss/_app_styles.scss */ +/* line 2836, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating i { font-size: 40px; right: 10%; color: #f1c233; } -/* line 2842, ../../../scss/_app_styles.scss */ +/* line 2841, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating span { position: absolute; left: 50%; @@ -26104,12 +26103,12 @@ div.show-image:hover div.fullscreen-icon{ font-size: 11px; } -/* line 2856, ../../../scss/_app_styles.scss */ +/* line 2855, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > ul, .course-dashboard .course-notifications > ul, .course-dashboard .course-performance > ul { list-style: none; } -/* line 2860, ../../../scss/_app_styles.scss */ +/* line 2859, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > .row, .course-dashboard .course-notifications > .row, .course-dashboard .course-performance > .row { padding: 0px; @@ -26121,45 +26120,45 @@ div.show-image:hover div.fullscreen-icon{ margin: 0em 0em; border-radius: 10px; } -/* line 2872, ../../../scss/_app_styles.scss */ +/* line 2871, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-heading { padding: 0.2em 0.7em; border-bottom: 1px solid #DADADA; font-weight: 500; font-size: 1.3em; } -/* line 2878, ../../../scss/_app_styles.scss */ +/* line 2877, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row { padding: 1em; } -/* line 2881, ../../../scss/_app_styles.scss */ +/* line 2880, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row:nth-child(n+3) { border-top: 1px solid #DCDCDC; } -/* line 2887, ../../../scss/_app_styles.scss */ +/* line 2886, ../../../scss/_app_styles.scss */ .course-dashboard .course-status .course-update .course-current-state { color: #000; font-weight: bold; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 2897, ../../../scss/_app_styles.scss */ +/* line 2896, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications { position: relative; } -/* line 2902, ../../../scss/_app_styles.scss */ +/* line 2901, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .notification-text { font-size: 0.85em; letter-spacing: 0em; word-spacing: 0.2em; } -/* line 2907, ../../../scss/_app_styles.scss */ +/* line 2906, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .time-elapsed { font-size: 0.6em; color: #424242; cursor: pointer; } -/* line 2914, ../../../scss/_app_styles.scss */ +/* line 2913, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-count { font-size: 1em; position: absolute; @@ -26167,42 +26166,42 @@ div.show-image:hover div.fullscreen-icon{ top: 0.3em; } -/* line 2924, ../../../scss/_app_styles.scss */ +/* line 2923, ../../../scss/_app_styles.scss */ .notebook .notebook-header { border-color: black; border-style: solid; border-width: 1px 0px; padding-top: 1em; } -/* line 2930, ../../../scss/_app_styles.scss */ +/* line 2929, ../../../scss/_app_styles.scss */ .notebook .notebook-header a, .notebook .notebook-header input { margin: 0px; } -/* line 2933, ../../../scss/_app_styles.scss */ +/* line 2932, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count { text-align: center; } -/* line 2938, ../../../scss/_app_styles.scss */ +/* line 2937, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:first-child { font-size: 21px; font-weight: 600; padding: 15px; } -/* line 2943, ../../../scss/_app_styles.scss */ +/* line 2942, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:last-child { background: lightgrey; padding: 2px 5px; vertical-align: text-bottom; } -/* line 2953, ../../../scss/_app_styles.scss */ +/* line 2952, ../../../scss/_app_styles.scss */ .notebook .notebook-body { padding: 0px 0px; } -/* line 2957, ../../../scss/_app_styles.scss */ +/* line 2956, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .row { margin: 30px 0px; } -/* line 2960, ../../../scss/_app_styles.scss */ +/* line 2959, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card, .notebook .notebook-body .note-cards .note-details { border: 1px solid #ccc; padding: 10px 15px; @@ -26212,12 +26211,12 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; position: relative; } -/* line 2969, ../../../scss/_app_styles.scss */ +/* line 2968, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-heading, .notebook .notebook-body .note-cards .note-details .note-heading { font-weight: 800; font-size: 20px; } -/* line 2973, ../../../scss/_app_styles.scss */ +/* line 2972, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-close, .notebook .notebook-body .note-cards .note-details .note-close { position: absolute; right: 7px; @@ -26226,22 +26225,22 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 700; color: #929292; } -/* line 2981, ../../../scss/_app_styles.scss */ +/* line 2980, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-summary, .notebook .notebook-body .note-cards .note-details .note-summary { margin: 15px 0px; } -/* line 2984, ../../../scss/_app_styles.scss */ +/* line 2983, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info, .notebook .notebook-body .note-cards .note-card .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data { color: #989898; font-size: 13px; letter-spacing: 0.9px; font-weight: 500; } -/* line 2990, ../../../scss/_app_styles.scss */ +/* line 2989, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info > span, .notebook .notebook-body .note-cards .note-card .note-extra-data > span, .notebook .notebook-body .note-cards .note-details .note-info > span, .notebook .notebook-body .note-cards .note-details .note-extra-data > span { margin-right: 5px; } -/* line 2995, ../../../scss/_app_styles.scss */ +/* line 2994, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-tags > span, .notebook .notebook-body .note-cards .note-details .note-tags > span { display: inline-block; margin: 10px; @@ -26249,53 +26248,53 @@ div.show-image:hover div.fullscreen-icon{ color: #cba552; padding: 2px 5px; } -/* line 3003, ../../../scss/_app_styles.scss */ +/* line 3002, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions, .notebook .notebook-body .note-cards .note-details .note-actions { color: #989898; cursor: pointer; } -/* line 3007, ../../../scss/_app_styles.scss */ +/* line 3006, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions span, .notebook .notebook-body .note-cards .note-details .note-actions span { margin-right: 10px 5px; } -/* line 3013, ../../../scss/_app_styles.scss */ +/* line 3012, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-tags, .notebook .notebook-body .note-cards .note-details .note-actions { display: inline-block; margin-right: 10px; } -/* line 3020, ../../../scss/_app_styles.scss */ +/* line 3019, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags { float: right; } -/* line 3022, ../../../scss/_app_styles.scss */ +/* line 3021, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags > span { margin: 0px; } -/* line 3031, ../../../scss/_app_styles.scss */ +/* line 3030, ../../../scss/_app_styles.scss */ .notebook .notebook-body > div { padding: 0px; } -/* line 3037, ../../../scss/_app_styles.scss */ +/* line 3036, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index { border-right: 1px solid #AFAEAE; padding: 4px 0px; background-color: #F1F1F1; } -/* line 3042, ../../../scss/_app_styles.scss */ +/* line 3041, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content { padding: 0px; } -/* line 3045, ../../../scss/_app_styles.scss */ +/* line 3044, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content .active { padding: 0px; } -/* line 3049, ../../../scss/_app_styles.scss */ +/* line 3048, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3054, ../../../scss/_app_styles.scss */ +/* line 3053, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title { width: 50%; /*background-color: #DEDEDE;*/ @@ -26303,114 +26302,114 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3061, ../../../scss/_app_styles.scss */ +/* line 3060, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title a { border-radius: inherit; font-size: 0.9rem; text-align: center; color: #989898; } -/* line 3068, ../../../scss/_app_styles.scss */ +/* line 3067, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3072, ../../../scss/_app_styles.scss */ +/* line 3071, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active a { color: #3a3169; } -/* line 3079, ../../../scss/_app_styles.scss */ +/* line 3078, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tab-content { padding: 0px; } -/* line 3084, ../../../scss/_app_styles.scss */ +/* line 3083, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date { font-size: 12px; font-weight: bold; background: #EFEFEF; padding: 7px 10px; } -/* line 3090, ../../../scss/_app_styles.scss */ +/* line 3089, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date .note-count { font-size: 11px; line-height: 2em; } -/* line 3095, ../../../scss/_app_styles.scss */ +/* line 3094, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes > div { border-bottom: 1px solid #AFAEAE; } -/* line 3098, ../../../scss/_app_styles.scss */ +/* line 3097, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note { padding: 5px 15px; background: #FFF; cursor: pointer; color: #A2A2A2; } -/* line 3104, ../../../scss/_app_styles.scss */ +/* line 3103, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-heading { font-weight: 400; font-size: 17px; } -/* line 3109, ../../../scss/_app_styles.scss */ +/* line 3108, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta { font-size: 13px; } -/* line 3112, ../../../scss/_app_styles.scss */ +/* line 3111, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta > span:not(:first-child) { font-size: 11px; font-weight: 600; color: #717171; } -/* line 3119, ../../../scss/_app_styles.scss */ +/* line 3118, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer { color: #888888; } -/* line 3122, ../../../scss/_app_styles.scss */ +/* line 3121, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer span { margin-right: 10px; } -/* line 3127, ../../../scss/_app_styles.scss */ +/* line 3126, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active { border-left: 5px solid #6153AE; background: #F4E7FF; font-weight: 800; color: #6153AE; } -/* line 3133, ../../../scss/_app_styles.scss */ +/* line 3132, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-heading { font-weight: 500; font-size: 17px; } -/* line 3137, ../../../scss/_app_styles.scss */ +/* line 3136, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-meta > span:not(:first-child) { color: #6153AE; } -/* line 3145, ../../../scss/_app_styles.scss */ +/* line 3144, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page { background-color: #fff; padding-bottom: 30px; } -/* line 3152, ../../../scss/_app_styles.scss */ +/* line 3151, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .group_content { margin-top: 5px; margin-left: 0px; } -/* line 3157, ../../../scss/_app_styles.scss */ +/* line 3156, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page > div { background-color: #fff; } -/* line 3161, ../../../scss/_app_styles.scss */ +/* line 3160, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar { padding: 1.8em 1.2em 0em; margin: 0em; background-color: #FFF; } -/* line 3166, ../../../scss/_app_styles.scss */ +/* line 3165, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .note-creator { font-weight: bold; } -/* line 3169, ../../../scss/_app_styles.scss */ +/* line 3168, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-title { text-align: left; color: #C3C3C3; @@ -26418,102 +26417,102 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.3px; margin-top: 5px; } -/* line 3176, ../../../scss/_app_styles.scss */ +/* line 3175, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating { text-align: right; } -/* line 3178, ../../../scss/_app_styles.scss */ +/* line 3177, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating > div { display: inline-block; } -/* line 3183, ../../../scss/_app_styles.scss */ +/* line 3182, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-title { font-size: 2.3em; font-weight: 500; margin-right: 1em; } -/* line 3188, ../../../scss/_app_styles.scss */ +/* line 3187, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content { padding: 2em 2em 1em; background: #fff; margin: 0em; } -/* line 3195, ../../../scss/_app_styles.scss */ +/* line 3194, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-header > div { display: inline-block; } -/* line 3200, ../../../scss/_app_styles.scss */ +/* line 3199, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text { font-size: 19px; letter-spacing: 0.7px; } -/* line 3203, ../../../scss/_app_styles.scss */ +/* line 3202, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text p { padding: 0px; } -/* line 3209, ../../../scss/_app_styles.scss */ +/* line 3208, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections { padding: 0em 1em 0em; } -/* line 3213, ../../../scss/_app_styles.scss */ +/* line 3212, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header span { font-weight: bold; } -/* line 3216, ../../../scss/_app_styles.scss */ +/* line 3215, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { margin-left: 15px; } -/* line 3221, ../../../scss/_app_styles.scss */ +/* line 3220, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment { border-top: 1px solid grey; padding: 15px 10px; margin-top: 5px; } -/* line 3226, ../../../scss/_app_styles.scss */ +/* line 3225, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { min-height: 200px; margin-top: 0px; } -/* line 3232, ../../../scss/_app_styles.scss */ +/* line 3231, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { font-size: 90px; line-height: 0em; } -/* line 3242, ../../../scss/_app_styles.scss */ +/* line 3241, ../../../scss/_app_styles.scss */ #newNoteModal { width: 40%; } -/* line 3245, ../../../scss/_app_styles.scss */ +/* line 3244, ../../../scss/_app_styles.scss */ #newNoteModal > div { margin-bottom: 1em; } -/* line 3249, ../../../scss/_app_styles.scss */ +/* line 3248, ../../../scss/_app_styles.scss */ #newNoteModal input { width: 100%; } -/* line 3252, ../../../scss/_app_styles.scss */ +/* line 3251, ../../../scss/_app_styles.scss */ #newNoteModal .heading { margin-right: 1em; } -/* line 3256, ../../../scss/_app_styles.scss */ +/* line 3255, ../../../scss/_app_styles.scss */ #newNoteModal .note-tags { padding: 1em; border: 1px solid black; } -/* line 3262, ../../../scss/_app_styles.scss */ +/* line 3261, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button { float: left; margin-left: 1em; margin-bottom: 0px; } -/* line 3267, ../../../scss/_app_styles.scss */ +/* line 3266, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button:last-child { float: right; } -/* line 3275, ../../../scss/_app_styles.scss */ +/* line 3274, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header { line-height: 2em; border-top: 1px solid #797979; @@ -26521,33 +26520,33 @@ div.show-image:hover div.fullscreen-icon{ text-align: center; padding: 0.7em 1em; } -/* line 3282, ../../../scss/_app_styles.scss */ +/* line 3281, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input, .gallery-page .gallery-header select, .gallery-page .gallery-header a { border-radius: 4px; margin-bottom: 0em; } -/* line 3286, ../../../scss/_app_styles.scss */ +/* line 3285, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input.prefix, .gallery-page .gallery-header select.prefix, .gallery-page .gallery-header a.prefix { border-radius: 0px; } -/* line 3291, ../../../scss/_app_styles.scss */ +/* line 3290, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header i { font-size: 1em; color: #A29E9E; } -/* line 3297, ../../../scss/_app_styles.scss */ +/* line 3296, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .filters .columns { padding-left: 5px; } -/* line 3303, ../../../scss/_app_styles.scss */ +/* line 3302, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .columns { padding-left: 5px; } -/* line 3307, ../../../scss/_app_styles.scss */ +/* line 3306, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags { text-align: left; } -/* line 3310, ../../../scss/_app_styles.scss */ +/* line 3309, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag { padding: 0px 10px; background: #cccccc; @@ -26557,73 +26556,73 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.8em; color: #757575; } -/* line 3319, ../../../scss/_app_styles.scss */ +/* line 3318, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag span { margin: 0px 2px 0px 6px; cursor: pointer; } -/* line 3324, ../../../scss/_app_styles.scss */ +/* line 3323, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags > div { display: inline-block; } -/* line 3331, ../../../scss/_app_styles.scss */ +/* line 3330, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading { font-size: 19px; } -/* line 3334, ../../../scss/_app_styles.scss */ +/* line 3333, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading a { background: #e7e7e7; border-width: 1px 0px 1px 1px; border-color: #cccccc; border-style: solid; } -/* line 3341, ../../../scss/_app_styles.scss */ +/* line 3340, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading input { border-radius: 0px; box-shadow: none; border-left: 0px; } -/* line 3348, ../../../scss/_app_styles.scss */ +/* line 3347, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel { background: #FFF; } -/* line 3351, ../../../scss/_app_styles.scss */ +/* line 3350, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content { min-height: 250px; } -/* line 3354, ../../../scss/_app_styles.scss */ +/* line 3353, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader { line-height: 3em; padding: 10px 0px; } -/* line 3358, ../../../scss/_app_styles.scss */ +/* line 3357, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader upload-file { margin: 0px; font-size: 1em; } -/* line 3363, ../../../scss/_app_styles.scss */ +/* line 3362, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions { font-size: 1.2em; color: #2a79e4; } -/* line 3367, ../../../scss/_app_styles.scss */ +/* line 3366, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions > div { display: inline-block; margin-right: 10px; } -/* line 3374, ../../../scss/_app_styles.scss */ +/* line 3373, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel { background: #fff; } -/* line 3377, ../../../scss/_app_styles.scss */ +/* line 3376, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row { margin: 10px 0px; } -/* line 3380, ../../../scss/_app_styles.scss */ +/* line 3379, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row > div:first-child { font-weight: 500; } -/* line 3385, ../../../scss/_app_styles.scss */ +/* line 3384, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .file-name { font-size: 20px; font-weight: bold; @@ -26631,11 +26630,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 10px 0px 20px; } -/* line 3396, ../../../scss/_app_styles.scss */ +/* line 3395, ../../../scss/_app_styles.scss */ .gallery-card .select-file { vertical-align: top; } -/* line 3400, ../../../scss/_app_styles.scss */ +/* line 3399, ../../../scss/_app_styles.scss */ .gallery-card .file-item { width: 80%; color: #fff; @@ -26646,17 +26645,17 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid black; overflow: hidden; } -/* line 3410, ../../../scss/_app_styles.scss */ +/* line 3409, ../../../scss/_app_styles.scss */ .gallery-card .file-item .item-thumbnail-image { height: 100%; padding: 1em; } -/* line 3415, ../../../scss/_app_styles.scss */ +/* line 3414, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-details { margin-top: 10%; display: none; } -/* line 3420, ../../../scss/_app_styles.scss */ +/* line 3419, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions { display: none; position: absolute; @@ -26665,11 +26664,11 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; font-size: 25px; } -/* line 3428, ../../../scss/_app_styles.scss */ +/* line 3427, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions i { margin: 0px 10px; } -/* line 3433, ../../../scss/_app_styles.scss */ +/* line 3432, ../../../scss/_app_styles.scss */ .gallery-card .file-item .filename-footer { position: absolute; bottom: 0px; @@ -26680,24 +26679,24 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 600; background: #999999; } -/* line 3444, ../../../scss/_app_styles.scss */ +/* line 3443, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover { background: #999999; } -/* line 3447, ../../../scss/_app_styles.scss */ +/* line 3446, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .item-thumbnail-image { opacity: 0.2; } -/* line 3451, ../../../scss/_app_styles.scss */ +/* line 3450, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .file-details, .gallery-card .file-item:hover .file-actions { display: block; } -/* line 3454, ../../../scss/_app_styles.scss */ +/* line 3453, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .filename-footer { display: none; } -/* line 3462, ../../../scss/_app_styles.scss */ +/* line 3461, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'], dialog[id^='reveal-'] { width: 100vw; height: 100vh; @@ -26761,49 +26760,49 @@ div.show-image:hover div.fullscreen-icon{ } }*/ } -/* line 3526, ../../../scss/_app_styles.scss */ +/* line 3525, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body, dialog[id^='reveal-'] .gmodal-body { position: relative; height: 100%; } -/* line 3529, ../../../scss/_app_styles.scss */ +/* line 3528, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel { background-color: #fff; height: 100%; } -/* line 3531, ../../../scss/_app_styles.scss */ +/* line 3530, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray { display: none; } -/* line 3535, ../../../scss/_app_styles.scss */ +/* line 3534, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe { height: 550px !important; width: 130% !important; } -/* line 3540, ../../../scss/_app_styles.scss */ +/* line 3539, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page { margin-top: -10px !important; } -/* line 3544, ../../../scss/_app_styles.scss */ +/* line 3543, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel span, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel span { display: none !important; } -/* line 3548, ../../../scss/_app_styles.scss */ +/* line 3547, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .button, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .button { display: none !important; } -/* line 3555, ../../../scss/_app_styles.scss */ +/* line 3554, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder { height: 100%; } -/* line 3558, ../../../scss/_app_styles.scss */ +/* line 3557, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item { height: 100%; width: 100%; background: transparent; padding: 0px; } -/* line 3564, ../../../scss/_app_styles.scss */ +/* line 3563, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image { width: auto; margin: 0px auto; @@ -26811,7 +26810,7 @@ div.show-image:hover div.fullscreen-icon{ padding: 1em 0em; height: 100%; } -/* line 3573, ../../../scss/_app_styles.scss */ +/* line 3572, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer { height: 2em; line-height: 2em; @@ -26823,32 +26822,32 @@ div.show-image:hover div.fullscreen-icon{ opacity: 0; background-color: rgba(0, 0, 0, 0.9); } -/* line 3584, ../../../scss/_app_styles.scss */ +/* line 3583, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details), dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details) { cursor: pointer; } -/* line 3588, ../../../scss/_app_styles.scss */ +/* line 3587, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details { text-align: center; width: 100%; } -/* line 3592, ../../../scss/_app_styles.scss */ +/* line 3591, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i { margin-left: 1em; margin-right: 0.5em; cursor: pointer; } -/* line 3600, ../../../scss/_app_styles.scss */ +/* line 3599, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer { opacity: 0.8; transition: opacity 1s; } -/* line 3605, ../../../scss/_app_styles.scss */ +/* line 3604, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel { height: 100%; padding: 0px 25px; } -/* line 3609, ../../../scss/_app_styles.scss */ +/* line 3608, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side { background: #fff; height: 100%; @@ -26869,31 +26868,31 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.9em; }*/ } -/* line 3613, ../../../scss/_app_styles.scss */ +/* line 3612, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div { width: 100%; display: block; margin: 12px 0px; padding: 0px 10px; } -/* line 3620, ../../../scss/_app_styles.scss */ +/* line 3619, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal { font-size: 20px; top: 6px; right: 26px; } -/* line 3627, ../../../scss/_app_styles.scss */ +/* line 3626, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span { vertical-align: top; margin-right: 5px; line-height: 35px; } -/* line 3632, ../../../scss/_app_styles.scss */ +/* line 3631, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating { background: #ccc; padding: 2px 5px; } -/* line 3638, ../../../scss/_app_styles.scss */ +/* line 3637, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a { padding: 3px 7px; background: #fff; @@ -26903,13 +26902,13 @@ div.show-image:hover div.fullscreen-icon{ margin-right: 10px; display: inline-block; } -/* line 3649, ../../../scss/_app_styles.scss */ +/* line 3648, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3654, ../../../scss/_app_styles.scss */ +/* line 3653, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26918,17 +26917,17 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3662, ../../../scss/_app_styles.scss */ +/* line 3661, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a { border-radius: inherit; } -/* line 3666, ../../../scss/_app_styles.scss */ +/* line 3665, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3674, ../../../scss/_app_styles.scss */ +/* line 3673, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span { font-weight: 500; font-size: 16px; @@ -26936,20 +26935,20 @@ div.show-image:hover div.fullscreen-icon{ line-height: 35px; } -/* line 3704, ../../../scss/_app_styles.scss */ +/* line 3703, ../../../scss/_app_styles.scss */ .user-comment { display: inline-flex; width: 100%; } -/* line 3708, ../../../scss/_app_styles.scss */ +/* line 3707, ../../../scss/_app_styles.scss */ .user-comment > div { display: inline-block; } -/* line 3711, ../../../scss/_app_styles.scss */ +/* line 3710, ../../../scss/_app_styles.scss */ .user-comment > div:last-child { width: 100%; } -/* line 3716, ../../../scss/_app_styles.scss */ +/* line 3715, ../../../scss/_app_styles.scss */ .user-comment .comment-heading { color: #9C9C9C; border-bottom: 1px solid grey; @@ -26957,71 +26956,71 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 10px; margin-top: 10px; } -/* line 3724, ../../../scss/_app_styles.scss */ +/* line 3723, ../../../scss/_app_styles.scss */ .user-comment .comment-heading > div { display: inline-block; } -/* line 3728, ../../../scss/_app_styles.scss */ +/* line 3727, ../../../scss/_app_styles.scss */ .user-comment .comment-heading .commentor-name span { font-weight: bold; color: #333333; } -/* line 3733, ../../../scss/_app_styles.scss */ +/* line 3732, ../../../scss/_app_styles.scss */ .user-comment .comment-footer { font-size: 0.9em; font-weight: 400; border: 1px solid #9E9E9E; background: #CCCCCC; } -/* line 3739, ../../../scss/_app_styles.scss */ +/* line 3738, ../../../scss/_app_styles.scss */ .user-comment .comment-footer > div { cursor: pointer; } -/* line 3742, ../../../scss/_app_styles.scss */ +/* line 3741, ../../../scss/_app_styles.scss */ .user-comment .comment-footer i { margin-right: 1em; } -/* line 3748, ../../../scss/_app_styles.scss */ +/* line 3747, ../../../scss/_app_styles.scss */ .user-comment .comment-container .comment-add { margin-top: 0.4em; } -/* line 3752, ../../../scss/_app_styles.scss */ +/* line 3751, ../../../scss/_app_styles.scss */ .user-comment .user-avatar { font-size: 10em; font-size: 5em; line-height: 1em; } -/* line 3759, ../../../scss/_app_styles.scss */ +/* line 3758, ../../../scss/_app_styles.scss */ .course-content { /*border-top: 1px solid #000;*/ } -/* line 3761, ../../../scss/_app_styles.scss */ +/* line 3760, ../../../scss/_app_styles.scss */ .course-content .alert-box { padding: 5px; font-size: 1em; } -/* line 3765, ../../../scss/_app_styles.scss */ +/* line 3764, ../../../scss/_app_styles.scss */ .course-content .alert-box > div { display: inline-block; vertical-align: top; } -/* line 3769, ../../../scss/_app_styles.scss */ +/* line 3768, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note { width: 96%; } -/* line 3772, ../../../scss/_app_styles.scss */ +/* line 3771, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note > div:nth-child(2) { color: #000; margin-top: 5px; padding-top: 5px; border-top: 1px solid #000; } -/* line 3779, ../../../scss/_app_styles.scss */ +/* line 3778, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-icon { margin: 0px 5px; } -/* line 3782, ../../../scss/_app_styles.scss */ +/* line 3781, ../../../scss/_app_styles.scss */ .course-content .alert-box .close { position: relative; top: 0px; @@ -27031,17 +27030,17 @@ div.show-image:hover div.fullscreen-icon{ text-decoration: underline; color: #085394 !important; } -/* line 3793, ../../../scss/_app_styles.scss */ +/* line 3792, ../../../scss/_app_styles.scss */ .course-content .collection { overflow: visible; } -/* line 3796, ../../../scss/_app_styles.scss */ +/* line 3795, ../../../scss/_app_styles.scss */ .course-content .collection .course-module { position: relative; border-bottom: 1px solid #CCC; padding: 1em 0em; } -/* line 3803, ../../../scss/_app_styles.scss */ +/* line 3802, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-header .fa { position: absolute; left: -1.1em; @@ -27050,58 +27049,58 @@ div.show-image:hover div.fullscreen-icon{ background: #EAEAEA; font-size: 1.4em; } -/* line 3821, ../../../scss/_app_styles.scss */ +/* line 3820, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-page:hover span { text-decoration: underline; color: #9900ff !important; } -/* line 3826, ../../../scss/_app_styles.scss */ +/* line 3825, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .jqtree-tree .jqtree-title { cursor: pointer; } -/* line 3830, ../../../scss/_app_styles.scss */ +/* line 3829, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part { margin-left: 1em; } -/* line 3833, ../../../scss/_app_styles.scss */ +/* line 3832, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler { color: #585858; } -/* line 3836, ../../../scss/_app_styles.scss */ +/* line 3835, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler.jqtree-closed { color: #CCC; } -/* line 3840, ../../../scss/_app_styles.scss */ +/* line 3839, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part span { vertical-align: top; } -/* line 3843, ../../../scss/_app_styles.scss */ +/* line 3842, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .fa { display: inline; margin-right: 5px; } -/* line 3853, ../../../scss/_app_styles.scss */ +/* line 3852, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header { font-weight: 400; font-size: 1.3em; border-bottom: 1px solid #707070; color: #797979; } -/* line 3859, ../../../scss/_app_styles.scss */ +/* line 3858, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header > div { padding: 0.3em 0em; } -/* line 3863, ../../../scss/_app_styles.scss */ +/* line 3862, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header a { color: #797979; } -/* line 3867, ../../../scss/_app_styles.scss */ +/* line 3866, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous { cursor: pointer; padding: 0px; } -/* line 3871, ../../../scss/_app_styles.scss */ +/* line 3870, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous a:first-child { border-right: 1px solid grey; padding-right: 5px; @@ -27109,27 +27108,27 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3880, ../../../scss/_app_styles.scss */ +/* line 3879, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header i { margin-right: 0.1em; } -/* line 3884, ../../../scss/_app_styles.scss */ +/* line 3883, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .unit-title { text-align: center; color: #999999; } -/* line 3888, ../../../scss/_app_styles.scss */ +/* line 3887, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-title { text-align: center; color: #000; } -/* line 3892, ../../../scss/_app_styles.scss */ +/* line 3891, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note { color: #2a78e3; cursor: pointer; padding: 0px; } -/* line 3897, ../../../scss/_app_styles.scss */ +/* line 3896, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note a:last-child { border-left: 1px solid grey; padding-left: 5px; @@ -27137,11 +27136,11 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3905, ../../../scss/_app_styles.scss */ +/* line 3904, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note > div { float: right; } -/* line 3910, ../../../scss/_app_styles.scss */ +/* line 3909, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container { border: 1px solid black; height: 100%; @@ -27149,18 +27148,18 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 2em; padding: 0em 1em; } -/* line 3917, ../../../scss/_app_styles.scss */ +/* line 3916, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides { height: 100%; } -/* line 3921, ../../../scss/_app_styles.scss */ +/* line 3920, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 3929, ../../../scss/_app_styles.scss */ +/* line 3928, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -27168,12 +27167,12 @@ div.show-image:hover div.fullscreen-icon{ color: #999999; margin-left: 12%; } -/* line 3937, ../../../scss/_app_styles.scss */ +/* line 3936, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 3943, ../../../scss/_app_styles.scss */ +/* line 3942, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -27182,21 +27181,21 @@ div.show-image:hover div.fullscreen-icon{ display: none; color: #8E8E8E; } -/* line 3952, ../../../scss/_app_styles.scss */ +/* line 3951, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 3957, ../../../scss/_app_styles.scss */ +/* line 3956, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 3959, ../../../scss/_app_styles.scss */ +/* line 3958, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 3962, ../../../scss/_app_styles.scss */ +/* line 3961, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -27207,24 +27206,24 @@ div.show-image:hover div.fullscreen-icon{ color: #757575; margin-right: 20px; } -/* line 3972, ../../../scss/_app_styles.scss */ +/* line 3971, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 3976, ../../../scss/_app_styles.scss */ +/* line 3975, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 3979, ../../../scss/_app_styles.scss */ +/* line 3978, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 3984, ../../../scss/_app_styles.scss */ +/* line 3983, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 3988, ../../../scss/_app_styles.scss */ +/* line 3987, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content { width: 75%; margin: 0px auto; @@ -27235,7 +27234,7 @@ div.show-image:hover div.fullscreen-icon{ min-height: 50px; position: relative; } -/* line 3998, ../../../scss/_app_styles.scss */ +/* line 3997, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -27243,15 +27242,15 @@ div.show-image:hover div.fullscreen-icon{ left: 8px; top: 4px; } -/* line 4006, ../../../scss/_app_styles.scss */ +/* line 4005, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 4008, ../../../scss/_app_styles.scss */ +/* line 4007, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 4011, ../../../scss/_app_styles.scss */ +/* line 4010, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -27261,27 +27260,27 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.8px; color: #999999; } -/* line 4020, ../../../scss/_app_styles.scss */ +/* line 4019, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 4026, ../../../scss/_app_styles.scss */ +/* line 4025, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 4033, ../../../scss/_app_styles.scss */ +/* line 4032, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section { width: 75%; margin: 0px auto; } -/* line 4037, ../../../scss/_app_styles.scss */ +/* line 4036, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section .user-prof-image { font-size: 7em; text-align: center; } -/* line 4042, ../../../scss/_app_styles.scss */ +/* line 4041, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section #postCommentBtn { padding: 2em 3em; } @@ -27302,28 +27301,28 @@ div.show-image:hover div.fullscreen-icon{ position: absolute; } */ -/* line 4063, ../../../scss/_app_styles.scss */ +/* line 4062, ../../../scss/_app_styles.scss */ .rate-scale { cursor: pointer; } -/* line 4066, ../../../scss/_app_styles.scss */ +/* line 4065, ../../../scss/_app_styles.scss */ .rate-scale i { margin-right: 0em !important; padding-right: 0.5em; } -/* line 4070, ../../../scss/_app_styles.scss */ +/* line 4069, ../../../scss/_app_styles.scss */ .rate-scale .hover-rating, .rate-scale .rated { color: yellow; } -/* line 4076, ../../../scss/_app_styles.scss */ +/* line 4075, ../../../scss/_app_styles.scss */ #left-tab { position: absolute; left: 0px; bottom: 0px; } -/* line 4081, ../../../scss/_app_styles.scss */ +/* line 4080, ../../../scss/_app_styles.scss */ #right-tab { position: absolute; right: 0px; @@ -27331,12 +27330,12 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 6px; } -/* line 4087, ../../../scss/_app_styles.scss */ +/* line 4086, ../../../scss/_app_styles.scss */ #enrolled-btn { margin-bottom: 0px; } -/* line 4090, ../../../scss/_app_styles.scss */ +/* line 4089, ../../../scss/_app_styles.scss */ div.absol-descrip { position: absolute; top: 190px; @@ -27347,14 +27346,14 @@ div.absol-descrip { } /*overview-summary styling*/ -/* line 4100, ../../../scss/_app_styles.scss */ +/* line 4099, ../../../scss/_app_styles.scss */ .course-title, .course-date { color: white; padding-top: 0px; padding-bottom: 0px; } -/* line 4105, ../../../scss/_app_styles.scss */ +/* line 4104, ../../../scss/_app_styles.scss */ .course-description { color: #cccccc; padding-top: 0px; @@ -27366,48 +27365,48 @@ div.absol-descrip { overflow: hidden; } -/* line 4115, ../../../scss/_app_styles.scss */ +/* line 4114, ../../../scss/_app_styles.scss */ .course-para { padding: 0; } -/* line 4119, ../../../scss/_app_styles.scss */ +/* line 4118, ../../../scss/_app_styles.scss */ course-title { padding-left: 10px; } -/* line 4122, ../../../scss/_app_styles.scss */ +/* line 4121, ../../../scss/_app_styles.scss */ .enroll-status-margin { margin-bottom: 0; } -/* line 4126, ../../../scss/_app_styles.scss */ +/* line 4125, ../../../scss/_app_styles.scss */ .progress-summery { color: white; margin-top: 20px; } -/* line 4130, ../../../scss/_app_styles.scss */ +/* line 4129, ../../../scss/_app_styles.scss */ .course-description-thumbnails { margin: 0; padding: 0; } -/* line 4135, ../../../scss/_app_styles.scss */ +/* line 4134, ../../../scss/_app_styles.scss */ .left-shift { padding: 0; color: white !important; } /*course overview for Small screens*/ -/* line 4141, ../../../scss/_app_styles.scss */ +/* line 4140, ../../../scss/_app_styles.scss */ .course { /*position:relative;*/ border: 1px solid black; background-color: #999999; } -/* line 4147, ../../../scss/_app_styles.scss */ +/* line 4146, ../../../scss/_app_styles.scss */ .course-contents { /*position:absolute;*/ width: 100%; @@ -27415,7 +27414,7 @@ course-title { /*Medium screens*/ @media only screen and (min-width: 40.063em) { - /* line 4154, ../../../scss/_app_styles.scss */ + /* line 4153, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27423,7 +27422,7 @@ course-title { background-color: #999999; } - /* line 4160, ../../../scss/_app_styles.scss */ + /* line 4159, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27433,7 +27432,7 @@ course-title { /* min-width 641px, medium screens */ /* Large screens*/ @media only screen and (min-width: 64.063em) { - /* line 4170, ../../../scss/_app_styles.scss */ + /* line 4169, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27441,7 +27440,7 @@ course-title { background-color: #999999; } - /* line 4176, ../../../scss/_app_styles.scss */ + /* line 4175, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27450,14 +27449,14 @@ course-title { } /* min-width 1025px, large screens */ /*General config css*/ -/* line 4183, ../../../scss/_app_styles.scss */ +/* line 4182, ../../../scss/_app_styles.scss */ .alert-box.warning { background: #ffe7c0; border-color: #bf9000; color: #966000; } -/* line 4190, ../../../scss/_app_styles.scss */ +/* line 4189, ../../../scss/_app_styles.scss */ .badge { display: inline-block; line-height: 22px; @@ -27474,7 +27473,7 @@ course-title { font-size: 1.8em; } -/* line 4206, ../../../scss/_app_styles.scss */ +/* line 4205, ../../../scss/_app_styles.scss */ .badge { background: #67c1ef; border-color: #30aae9; @@ -27484,7 +27483,7 @@ course-title { background-image: linear-gradient(to bottom, #acddf6, #67c1ef); } -/* line 4215, ../../../scss/_app_styles.scss */ +/* line 4214, ../../../scss/_app_styles.scss */ .badge.green { background: #77cc51; border-color: #59ad33; @@ -27494,7 +27493,7 @@ course-title { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 4224, ../../../scss/_app_styles.scss */ +/* line 4223, ../../../scss/_app_styles.scss */ .badge.yellow { background: #faba3e; border-color: #f4a306; @@ -27504,7 +27503,7 @@ course-title { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 4234, ../../../scss/_app_styles.scss */ +/* line 4233, ../../../scss/_app_styles.scss */ .badge.red { background: #fa623f; border-color: #fa5a35; @@ -27515,12 +27514,12 @@ course-title { } /* Course/ Event Card CSS*/ -/* line 4250, ../../../scss/_app_styles.scss */ +/* line 4249, ../../../scss/_app_styles.scss */ .card-image-wrapper { position: relative; } -/* line 4254, ../../../scss/_app_styles.scss */ +/* line 4253, ../../../scss/_app_styles.scss */ .event-card { padding: 0px; min-height: 22rem; @@ -27529,12 +27528,12 @@ course-title { border-radius: 10px; background-color: #fff; } -/* line 4262, ../../../scss/_app_styles.scss */ +/* line 4261, ../../../scss/_app_styles.scss */ .event-card:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 4267, ../../../scss/_app_styles.scss */ +/* line 4266, ../../../scss/_app_styles.scss */ .event-card .event-card-status { z-index: 99; width: auto; @@ -27549,31 +27548,31 @@ course-title { border-radius: 4px; letter-spacing: 0.3px; } -/* line 4281, ../../../scss/_app_styles.scss */ +/* line 4280, ../../../scss/_app_styles.scss */ .event-card .event-card-status.open { background-color: #00b300; } -/* line 4284, ../../../scss/_app_styles.scss */ +/* line 4283, ../../../scss/_app_styles.scss */ .event-card .event-card-status.closed { background-color: red; } -/* line 4287, ../../../scss/_app_styles.scss */ +/* line 4286, ../../../scss/_app_styles.scss */ .event-card .event-card-status.in-progress { background-color: #00b300; } -/* line 4290, ../../../scss/_app_styles.scss */ +/* line 4289, ../../../scss/_app_styles.scss */ .event-card .event-card-status.forthcoming { background-color: #F2910D; } -/* line 4293, ../../../scss/_app_styles.scss */ +/* line 4292, ../../../scss/_app_styles.scss */ .event-card .event-card-status.upcoming { background-color: #F2910D; } -/* line 4297, ../../../scss/_app_styles.scss */ +/* line 4296, ../../../scss/_app_styles.scss */ .event-card .event-card-status.completed { background-color: #4d4d4d; } -/* line 4302, ../../../scss/_app_styles.scss */ +/* line 4301, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications { position: absolute; top: 2px; @@ -27582,46 +27581,46 @@ course-title { color: #F04124; font-weight: 600; } -/* line 4310, ../../../scss/_app_styles.scss */ +/* line 4309, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications .badge { padding: 0px 5px; font-size: 1.4em; font-weight: 600; } -/* line 4317, ../../../scss/_app_styles.scss */ +/* line 4316, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status { font-weight: 500; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 4322, ../../../scss/_app_styles.scss */ +/* line 4321, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.open { color: #00b300; } -/* line 4326, ../../../scss/_app_styles.scss */ +/* line 4325, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.closed { color: red; } -/* line 4330, ../../../scss/_app_styles.scss */ +/* line 4329, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.in-progress { color: #000; } -/* line 4333, ../../../scss/_app_styles.scss */ +/* line 4332, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.forthcoming { color: #F2910D; } -/* line 4337, ../../../scss/_app_styles.scss */ +/* line 4336, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.completed { color: #4d4d4d; } -/* line 4341, ../../../scss/_app_styles.scss */ +/* line 4340, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status .event-time { font-size: 0.7em; display: block; font-weight: 400; display: inline; } -/* line 4349, ../../../scss/_app_styles.scss */ +/* line 4348, ../../../scss/_app_styles.scss */ .event-card .event-card-title { color: #0d0d0d; display: inline-block; @@ -27632,19 +27631,19 @@ course-title { font-size: 2em; font-weight: 400; } -/* line 4360, ../../../scss/_app_styles.scss */ +/* line 4359, ../../../scss/_app_styles.scss */ .event-card .event-card-desc { word-wrap: break-word; font-size: 0.6em; color: #333333; padding-left: 4px; } -/* line 4366, ../../../scss/_app_styles.scss */ +/* line 4365, ../../../scss/_app_styles.scss */ .event-card p { margin: 0px; padding: 10px; } -/* line 4372, ../../../scss/_app_styles.scss */ +/* line 4371, ../../../scss/_app_styles.scss */ .event-card .event-card-image { padding: 0px; margin: 0px; @@ -27656,7 +27655,7 @@ course-title { background-color: #e5e5e5; border-radius: 10px 10px 0px 0px; } -/* line 4383, ../../../scss/_app_styles.scss */ +/* line 4382, ../../../scss/_app_styles.scss */ .event-card .event-card-image img { border-radius: 2px 2px 0 0; display: block; @@ -27665,7 +27664,7 @@ course-title { opacity: 0.25; height: 100%; } -/* line 4392, ../../../scss/_app_styles.scss */ +/* line 4391, ../../../scss/_app_styles.scss */ .event-card .event-card-image i { font-size: 7rem; opacity: 0.75; @@ -27679,51 +27678,51 @@ course-title { text-transform: none; text-decoration: inherit; } -/* line 4406, ../../../scss/_app_styles.scss */ +/* line 4405, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.file:before { content: "\f18e"; } -/* line 4409, ../../../scss/_app_styles.scss */ +/* line 4408, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.page:before { content: "\f18e"; } -/* line 4412, ../../../scss/_app_styles.scss */ +/* line 4411, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.collection:before { content: "\f18a"; } -/* line 4415, ../../../scss/_app_styles.scss */ +/* line 4414, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.documents:before { content: "\f18b"; } -/* line 4418, ../../../scss/_app_styles.scss */ +/* line 4417, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.pdf:before { content: "\f18b"; } -/* line 4421, ../../../scss/_app_styles.scss */ +/* line 4420, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.text:before { content: "\f18e"; } -/* line 4424, ../../../scss/_app_styles.scss */ +/* line 4423, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.interactives:before { content: "\f1b2"; } -/* line 4427, ../../../scss/_app_styles.scss */ +/* line 4426, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.ebooks:before { content: "\f11e"; } -/* line 4430, ../../../scss/_app_styles.scss */ +/* line 4429, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.images:before { content: "\f125"; } -/* line 4433, ../../../scss/_app_styles.scss */ +/* line 4432, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.audios:before, .event-card .event-card-image i.audio:before { content: "\f17b"; } -/* line 4436, ../../../scss/_app_styles.scss */ +/* line 4435, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.videos:before, .event-card .event-card-image i.video:before { content: "\f20e"; } -/* line 4440, ../../../scss/_app_styles.scss */ +/* line 4439, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer { padding: 0.7em 1em; border-top: 1px solid #DCDCDC; @@ -27734,7 +27733,7 @@ course-title { background-color: #F3F3F3; border-radius: 0px 0px 10px 10px; } -/* line 4450, ../../../scss/_app_styles.scss */ +/* line 4449, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .footer-label { text-transform: uppercase; font-size: 10px; @@ -27742,54 +27741,54 @@ course-title { margin-bottom: 2px; color: #ADADAD; } -/* line 4458, ../../../scss/_app_styles.scss */ +/* line 4457, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date { color: #929292; font-size: 0.85em; letter-spacing: 0.5px; } -/* line 4463, ../../../scss/_app_styles.scss */ +/* line 4462, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date i:not(.edit-course-duration, .edit-course-enrollment) { margin-right: 0.3em; } -/* line 4467, ../../../scss/_app_styles.scss */ +/* line 4466, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .row { margin: 10px 0px 0px; } -/* line 4471, ../../../scss/_app_styles.scss */ +/* line 4470, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration, .event-card .edit-course-enrollment { float: right; font-size: 1.5em; color: #DADADA; } -/* line 4475, ../../../scss/_app_styles.scss */ +/* line 4474, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration:hover, .event-card .edit-course-enrollment:hover { color: #565656; } -/* line 4479, ../../../scss/_app_styles.scss */ +/* line 4478, ../../../scss/_app_styles.scss */ .event-card .published.scard-action { background: #A6D9CB; } -/* line 4483, ../../../scss/_app_styles.scss */ +/* line 4482, ../../../scss/_app_styles.scss */ .event-card .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 4488, ../../../scss/_app_styles.scss */ +/* line 4487, ../../../scss/_app_styles.scss */ .event-card .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4493, ../../../scss/_app_styles.scss */ +/* line 4492, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4497, ../../../scss/_app_styles.scss */ +/* line 4496, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 4501, ../../../scss/_app_styles.scss */ +/* line 4500, ../../../scss/_app_styles.scss */ .event-card .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -27800,17 +27799,17 @@ course-title { /* End Course/events Card CSS*/ /* Landing page */ -/* line 4513, ../../../scss/_app_styles.scss */ +/* line 4512, ../../../scss/_app_styles.scss */ .landing_page { position: relative; text-align: center; } -/* line 4517, ../../../scss/_app_styles.scss */ +/* line 4516, ../../../scss/_app_styles.scss */ .landing_page .panel { background-color: inherit; border: none; } -/* line 4522, ../../../scss/_app_styles.scss */ +/* line 4521, ../../../scss/_app_styles.scss */ .landing_page .landing_page_background { height: 100%; width: 100%; @@ -27822,24 +27821,24 @@ course-title { background: -ms-linear-gradient(left, #E9A900, #B0108D); background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 4534, ../../../scss/_app_styles.scss */ +/* line 4533, ../../../scss/_app_styles.scss */ .landing_page .clix_brief { text-align: left; padding: 20px 5%; } -/* line 4538, ../../../scss/_app_styles.scss */ +/* line 4537, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 30px 20px; height: 70px; } @media screen and (max-width: 450px) { - /* line 4538, ../../../scss/_app_styles.scss */ + /* line 4537, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 25px 10px; height: 55px; } } -/* line 4546, ../../../scss/_app_styles.scss */ +/* line 4545, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { color: #fff; font-size: 26px; @@ -27847,12 +27846,12 @@ course-title { font-family: 'ubuntu-light'; } @media screen and (max-width: 450px) { - /* line 4546, ../../../scss/_app_styles.scss */ + /* line 4545, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { font-size: 18px; } } -/* line 4557, ../../../scss/_app_styles.scss */ +/* line 4556, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { background-color: rgba(255, 255, 255, 0.92); border-radius: 10px; @@ -27863,12 +27862,12 @@ course-title { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); } @media screen and (min-width: 1025px) { - /* line 4557, ../../../scss/_app_styles.scss */ + /* line 4556, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { margin: 200px auto; } } -/* line 4569, ../../../scss/_app_styles.scss */ +/* line 4568, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix > span { font-family: 'ubuntu-bold'; color: #6658af; @@ -27879,7 +27878,7 @@ course-title { display: inline-block; vertical-align: middle; } -/* line 4579, ../../../scss/_app_styles.scss */ +/* line 4578, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix p { color: #b0108d; font-size: 21px; @@ -27887,28 +27886,28 @@ course-title { font-weight: 300; font-family: 'ubuntu-light'; } -/* line 4587, ../../../scss/_app_styles.scss */ +/* line 4586, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix img { height: 30px; } -/* line 4590, ../../../scss/_app_styles.scss */ +/* line 4589, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form { margin-top: 30px; } -/* line 4593, ../../../scss/_app_styles.scss */ +/* line 4592, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form input { font-size: 24px; height: 45px; margin: 5px 0px 24px; } -/* line 4600, ../../../scss/_app_styles.scss */ +/* line 4599, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix input.button { font-size: 15px; border-radius: 5px; font-family: 'ubuntu-bold'; text-transform: uppercase; } -/* line 4606, ../../../scss/_app_styles.scss */ +/* line 4605, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix a.grey { color: #999; /*display: inline-block; @@ -27919,7 +27918,7 @@ course-title { font-family: 'ubuntu-bold'; text-transform: uppercase;*/ } -/* line 4617, ../../../scss/_app_styles.scss */ +/* line 4616, ../../../scss/_app_styles.scss */ .landing_page .flowers { left: 50px; height: 500px; @@ -27927,18 +27926,18 @@ course-title { opacity: 0.6; } @media screen and (max-width: 450px) { - /* line 4617, ../../../scss/_app_styles.scss */ + /* line 4616, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 250px; } } @media screen and (min-width: 451px) and (max-width: 1025px) { - /* line 4617, ../../../scss/_app_styles.scss */ + /* line 4616, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 350px; } } -/* line 4629, ../../../scss/_app_styles.scss */ +/* line 4628, ../../../scss/_app_styles.scss */ .landing_page .bees { position: absolute; top: 5px; @@ -27946,40 +27945,40 @@ course-title { height: 150px; } @media screen and (max-width: 450px) { - /* line 4629, ../../../scss/_app_styles.scss */ + /* line 4628, ../../../scss/_app_styles.scss */ .landing_page .bees { right: 15px; height: 100px; } } -/* line 4639, ../../../scss/_app_styles.scss */ +/* line 4638, ../../../scss/_app_styles.scss */ .landing_page h2 { color: #A0148E; font-weight: 600; } -/* line 4643, ../../../scss/_app_styles.scss */ +/* line 4642, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text { color: #6153ae; } -/* line 4646, ../../../scss/_app_styles.scss */ +/* line 4645, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text p { font-size: 18px; } /* END of Landing page */ -/* line 4652, ../../../scss/_app_styles.scss */ +/* line 4651, ../../../scss/_app_styles.scss */ .audio-caption { cursor: pointer; } -/* line 4656, ../../../scss/_app_styles.scss */ +/* line 4655, ../../../scss/_app_styles.scss */ .gallery-image { cursor: pointer; max-height: 100px; border: 1px solid !important; } -/* line 4662, ../../../scss/_app_styles.scss */ +/* line 4661, ../../../scss/_app_styles.scss */ .show-collection { color: black !important; font-size: 1.1em; @@ -27992,25 +27991,25 @@ course-title { border: 1px solid #eee; } -/* line 4674, ../../../scss/_app_styles.scss */ +/* line 4673, ../../../scss/_app_styles.scss */ .processing-screen { background-color: #0eacb5 !important; } -/* line 4678, ../../../scss/_app_styles.scss */ +/* line 4677, ../../../scss/_app_styles.scss */ .processing-screen-label { width: 500px !important; font-style: normal !important; } -/* line 4682, ../../../scss/_app_styles.scss */ +/* line 4681, ../../../scss/_app_styles.scss */ h3 { font-size: 20px; color: #164A7B; font-family: 'OpenSans-Semibold'; } -/* line 4688, ../../../scss/_app_styles.scss */ +/* line 4687, ../../../scss/_app_styles.scss */ h5 { color: #99aaba; font-size: 10px; @@ -28019,7 +28018,7 @@ h5 { margin-left: 5px; } -/* line 4696, ../../../scss/_app_styles.scss */ +/* line 4695, ../../../scss/_app_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28028,12 +28027,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4703, ../../../scss/_app_styles.scss */ +/* line 4702, ../../../scss/_app_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 4707, ../../../scss/_app_styles.scss */ +/* line 4706, ../../../scss/_app_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28042,12 +28041,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4714, ../../../scss/_app_styles.scss */ +/* line 4713, ../../../scss/_app_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 4720, ../../../scss/_app_styles.scss */ +/* line 4719, ../../../scss/_app_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28059,7 +28058,7 @@ h5 { color: #6153AE; } -/* line 4731, ../../../scss/_app_styles.scss */ +/* line 4730, ../../../scss/_app_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28072,14 +28071,14 @@ h5 { display: inline-block; color: #6153AE; } -/* line 4743, ../../../scss/_app_styles.scss */ +/* line 4742, ../../../scss/_app_styles.scss */ .add-note-btn:hover { cursor: pointer; color: #6153AE; background-color: #ffffff; } -/* line 4751, ../../../scss/_app_styles.scss */ +/* line 4750, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -28091,7 +28090,7 @@ h5 { border: 2px solid #6153ae; background-color: #dbd4e1; } -/* line 4762, ../../../scss/_app_styles.scss */ +/* line 4761, ../../../scss/_app_styles.scss */ .explore-button:hover { cursor: pointer; } @@ -28099,12 +28098,12 @@ h5 { /*Blue color variable*/ /*Orange color variables*/ /* module detail settings drop */ -/* line 4793, ../../../scss/_app_styles.scss */ +/* line 4792, ../../../scss/_app_styles.scss */ .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4796, ../../../scss/_app_styles.scss */ +/* line 4795, ../../../scss/_app_styles.scss */ .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28117,17 +28116,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4807, ../../../scss/_app_styles.scss */ +/* line 4806, ../../../scss/_app_styles.scss */ .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4813, ../../../scss/_app_styles.scss */ +/* line 4812, ../../../scss/_app_styles.scss */ .explore-settings-drop a { font-size: 16px; } -/* line 4816, ../../../scss/_app_styles.scss */ +/* line 4815, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28135,12 +28134,12 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4816, ../../../scss/_app_styles.scss */ +/* line 4815, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4819, ../../../scss/_app_styles.scss */ +/* line 4818, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28153,17 +28152,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4830, ../../../scss/_app_styles.scss */ +/* line 4829, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4836, ../../../scss/_app_styles.scss */ +/* line 4835, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop a { font-size: 16px; } -/* line 4839, ../../../scss/_app_styles.scss */ +/* line 4838, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28171,33 +28170,33 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4847, ../../../scss/_app_styles.scss */ +/* line 4846, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4851, ../../../scss/_app_styles.scss */ +/* line 4850, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4864, ../../../scss/_app_styles.scss */ +/* line 4863, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4868, ../../../scss/_app_styles.scss */ +/* line 4867, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4875, ../../../scss/_app_styles.scss */ +/* line 4874, ../../../scss/_app_styles.scss */ .edit_button { color: #717171; } -/* line 4877, ../../../scss/_app_styles.scss */ +/* line 4876, ../../../scss/_app_styles.scss */ .edit_button:hover { border-left: 2px solid #ce7869; } -/* line 4883, ../../../scss/_app_styles.scss */ +/* line 4882, ../../../scss/_app_styles.scss */ .left-btn { margin-top: 0px; margin-right: 0px; @@ -28209,7 +28208,7 @@ h5 { color: #555555; font-size: 11px; } -/* line 4893, ../../../scss/_app_styles.scss */ +/* line 4892, ../../../scss/_app_styles.scss */ .left-btn:hover { display: block; padding: 0.5rem; @@ -28217,7 +28216,7 @@ h5 { border-left: 2px solid #ce7869; } -/* line 4902, ../../../scss/_app_styles.scss */ +/* line 4901, ../../../scss/_app_styles.scss */ .chnge-img:hover { display: block; padding: 0.5rem; @@ -28225,14 +28224,14 @@ h5 { border-left: 2px solid #ce7869; } -/* line 4913, ../../../scss/_app_styles.scss */ +/* line 4912, ../../../scss/_app_styles.scss */ .lms_page .lms_banner { width: 100%; height: 150px; background-size: 100% 100%; position: relative; } -/* line 4921, ../../../scss/_app_styles.scss */ +/* line 4920, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -28245,27 +28244,27 @@ h5 { bottom: 0; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 4934, ../../../scss/_app_styles.scss */ +/* line 4933, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before a { cursor: pointer; } -/* line 4939, ../../../scss/_app_styles.scss */ +/* line 4938, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .div-height { height: 150px !important; background-size: 100% 100%; position: absolute !important; } -/* line 4947, ../../../scss/_app_styles.scss */ +/* line 4946, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .enroll_unit > a { cursor: pointer; } -/* line 4951, ../../../scss/_app_styles.scss */ +/* line 4950, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 4957, ../../../scss/_app_styles.scss */ +/* line 4956, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .unit_name { font-size: 36px; font-family: OpenSans-Semibold; @@ -28276,17 +28275,17 @@ h5 { transition: border-radius .2s; text-shadow: 3px 2px #164a7b; } -/* line 4968, ../../../scss/_app_styles.scss */ +/* line 4967, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .right-margin { margin-right: 46px; } -/* line 4977, ../../../scss/_app_styles.scss */ +/* line 4976, ../../../scss/_app_styles.scss */ .border-bottom-lms-header { border-bottom: 1px solid #00000029; } -/* line 4982, ../../../scss/_app_styles.scss */ +/* line 4981, ../../../scss/_app_styles.scss */ .lms_secondary_header { width: 100%; position: relative; @@ -28294,11 +28293,11 @@ h5 { box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 4988, ../../../scss/_app_styles.scss */ +/* line 4987, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions { margin-top: 8px; } -/* line 4991, ../../../scss/_app_styles.scss */ +/* line 4990, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28310,11 +28309,11 @@ h5 { opacity: 0.8; } @media screen and (min-width: 980px) and (max-width: 1000px) { - /* line 5005, ../../../scss/_app_styles.scss */ + /* line 5004, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions { margin-top: 8px; } - /* line 5008, ../../../scss/_app_styles.scss */ + /* line 5007, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions > span { margin-left: 50px; background: #2e3f51; @@ -28328,16 +28327,16 @@ h5 { } } -/* line 5028, ../../../scss/_app_styles.scss */ +/* line 5027, ../../../scss/_app_styles.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; } -/* line 5031, ../../../scss/_app_styles.scss */ +/* line 5030, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 5034, ../../../scss/_app_styles.scss */ +/* line 5033, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a { list-style-type: none; display: inline-block; @@ -28348,23 +28347,23 @@ ul.nav_menu_1 > li > a { letter-spacing: 0.8px; border-bottom: 3px solid transparent; } -/* line 5045, ../../../scss/_app_styles.scss */ +/* line 5044, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-bottom: 3px solid #a2238d; } -/* line 5056, ../../../scss/_app_styles.scss */ +/* line 5055, ../../../scss/_app_styles.scss */ ul.authoring-tab { margin-bottom: 0px; display: inline; width: 50%; } -/* line 5060, ../../../scss/_app_styles.scss */ +/* line 5059, ../../../scss/_app_styles.scss */ ul.authoring-tab > li { display: inline-block; background-color: #164a7b; } -/* line 5063, ../../../scss/_app_styles.scss */ +/* line 5062, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a { list-style-type: none; margin-right: -4px; @@ -28377,13 +28376,13 @@ ul.authoring-tab > li > a { border-bottom: 3px solid transparent; color: #ffffff !important; } -/* line 5074, ../../../scss/_app_styles.scss */ +/* line 5073, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-bottom: 3px solid #a2238d; } /* Secondary Top Bar */ -/* line 5083, ../../../scss/_app_styles.scss */ +/* line 5082, ../../../scss/_app_styles.scss */ .secondary-header-tabs { color: #719dc7; font-weight: 400; @@ -28393,11 +28392,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -webkit-transition: color 1s ease, border-color 1s ease; display: inline-block; } -/* line 5092, ../../../scss/_app_styles.scss */ +/* line 5091, ../../../scss/_app_styles.scss */ .secondary-header-tabs:hover { color: #164A7B; } -/* line 5096, ../../../scss/_app_styles.scss */ +/* line 5095, ../../../scss/_app_styles.scss */ .secondary-header-tabs.active { color: #164A7B; border-bottom: 2px solid #164A7B; @@ -28405,7 +28404,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: 600; } -/* line 5106, ../../../scss/_app_styles.scss */ +/* line 5105, ../../../scss/_app_styles.scss */ .secondary-header-button { color: #3c556d; font-weight: 700; @@ -28418,12 +28417,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-size: 13px; letter-spacing: 1.2px; } -/* line 5118, ../../../scss/_app_styles.scss */ +/* line 5117, ../../../scss/_app_styles.scss */ .secondary-header-button:hover { opacity: 0.5; } -/* line 5125, ../../../scss/_app_styles.scss */ +/* line 5124, ../../../scss/_app_styles.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -28432,34 +28431,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: -8px; } -/* line 5136, ../../../scss/_app_styles.scss */ +/* line 5135, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 5141, ../../../scss/_app_styles.scss */ +/* line 5140, ../../../scss/_app_styles.scss */ .top-bar-second .name { text-align: center; } -/* line 5144, ../../../scss/_app_styles.scss */ +/* line 5143, ../../../scss/_app_styles.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 5154, ../../../scss/_app_styles.scss */ +/* line 5153, ../../../scss/_app_styles.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 5162, ../../../scss/_app_styles.scss */ +/* line 5161, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 5164, ../../../scss/_app_styles.scss */ +/* line 5163, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -28468,31 +28467,31 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; letter-spacing: 0.5px; } -/* line 5175, ../../../scss/_app_styles.scss */ +/* line 5174, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 5183, ../../../scss/_app_styles.scss */ +/* line 5182, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 5189, ../../../scss/_app_styles.scss */ +/* line 5188, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 5200, ../../../scss/_app_styles.scss */ + /* line 5199, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 5202, ../../../scss/_app_styles.scss */ + /* line 5201, ../../../scss/_app_styles.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 5209, ../../../scss/_app_styles.scss */ + /* line 5208, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -28500,32 +28499,32 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { line-height: 52px; border-left-width: 0px; } - /* line 5216, ../../../scss/_app_styles.scss */ + /* line 5215, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5222, ../../../scss/_app_styles.scss */ + /* line 5221, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5230, ../../../scss/_app_styles.scss */ + /* line 5229, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 5240, ../../../scss/_app_styles.scss */ + /* line 5239, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 5249, ../../../scss/_app_styles.scss */ + /* line 5248, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 5256, ../../../scss/_app_styles.scss */ + /* line 5255, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; @@ -28540,7 +28539,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { /** * Sass styles related to unit cards */ -/* line 5284, ../../../scss/_app_styles.scss */ +/* line 5283, ../../../scss/_app_styles.scss */ .unit_card { width: 300px; color: #000; @@ -28552,7 +28551,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { position: relative; height: 210px; } -/* line 5298, ../../../scss/_app_styles.scss */ +/* line 5297, ../../../scss/_app_styles.scss */ .unit_card .unit_status { position: absolute; right: 0px; @@ -28563,11 +28562,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-radius: 3px; letter-spacing: 0.6px; } -/* line 5309, ../../../scss/_app_styles.scss */ +/* line 5308, ../../../scss/_app_styles.scss */ .unit_card .unit_header { display: table; } -/* line 5311, ../../../scss/_app_styles.scss */ +/* line 5310, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_banner { display: table-cell; border-radius: 5px; @@ -28576,7 +28575,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-right: 10px; color: #333333; } -/* line 5319, ../../../scss/_app_styles.scss */ +/* line 5318, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_title { display: table-cell; font-size: 20px; @@ -28590,7 +28589,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { vertical-align: middle; color: #333333; } -/* line 5333, ../../../scss/_app_styles.scss */ +/* line 5332, ../../../scss/_app_styles.scss */ .unit_card .unit_desc { display: block; /* Fallback for non-webkit */ @@ -28607,16 +28606,16 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin: 10px 0px 20px; color: #333333; } -/* line 5349, ../../../scss/_app_styles.scss */ +/* line 5348, ../../../scss/_app_styles.scss */ .unit_card .unit_breif .unit_breif_row i { margin-right: 10px; color: #99aaba; } -/* line 5355, ../../../scss/_app_styles.scss */ +/* line 5354, ../../../scss/_app_styles.scss */ .unit_card .unit_actions { padding: 5px 0px; } -/* line 5360, ../../../scss/_app_styles.scss */ +/* line 5359, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol { background: #a2238d; height: 37px; @@ -28629,11 +28628,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5372, ../../../scss/_app_styles.scss */ +/* line 5371, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 5377, ../../../scss/_app_styles.scss */ +/* line 5376, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics { color: #a2238d; font-weight: 500; @@ -28641,7 +28640,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.3px; border-bottom: 2px solid #a2238d; } -/* line 5385, ../../../scss/_app_styles.scss */ +/* line 5384, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics-points { background: #ffffff; color: #a2238d; @@ -28652,7 +28651,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; cursor: default; } -/* line 5396, ../../../scss/_app_styles.scss */ +/* line 5395, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit { height: 37px; text-align: center; @@ -28661,13 +28660,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5404, ../../../scss/_app_styles.scss */ +/* line 5403, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit:hover { border-bottom: 2px solid #ffc14e; } /* unit cards labels */ -/* line 5414, ../../../scss/_app_styles.scss */ +/* line 5413, ../../../scss/_app_styles.scss */ .status-completed { width: auto; top: -1.15em; @@ -28684,7 +28683,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5430, ../../../scss/_app_styles.scss */ +/* line 5429, ../../../scss/_app_styles.scss */ .status-in-progress { width: auto; top: -1.15em; @@ -28701,7 +28700,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5447, ../../../scss/_app_styles.scss */ +/* line 5446, ../../../scss/_app_styles.scss */ .status-upcoming { width: auto; top: -1.15em; @@ -28718,7 +28717,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5464, ../../../scss/_app_styles.scss */ +/* line 5463, ../../../scss/_app_styles.scss */ .status-draft { width: auto; top: -1.15em; @@ -28735,7 +28734,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5482, ../../../scss/_app_styles.scss */ +/* line 5481, ../../../scss/_app_styles.scss */ .status-workspace { width: auto; top: -1.15em; @@ -28752,48 +28751,48 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5499, ../../../scss/_app_styles.scss */ +/* line 5498, ../../../scss/_app_styles.scss */ .icon-widget { font-size: 24px; } /* module detail css */ -/* line 5508, ../../../scss/_app_styles.scss */ +/* line 5507, ../../../scss/_app_styles.scss */ .thumbnail_style { margin-left: -30px; } -/* line 5512, ../../../scss/_app_styles.scss */ +/* line 5511, ../../../scss/_app_styles.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 5518, ../../../scss/_app_styles.scss */ +/* line 5517, ../../../scss/_app_styles.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); padding-left: 10px; height: auto; min-height: 143px; } -/* line 5524, ../../../scss/_app_styles.scss */ +/* line 5523, ../../../scss/_app_styles.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 5534, ../../../scss/_app_styles.scss */ +/* line 5533, ../../../scss/_app_styles.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 5539, ../../../scss/_app_styles.scss */ +/* line 5538, ../../../scss/_app_styles.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 5542, ../../../scss/_app_styles.scss */ +/* line 5541, ../../../scss/_app_styles.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28807,7 +28806,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 5559, ../../../scss/_app_styles.scss */ +/* line 5558, ../../../scss/_app_styles.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -28821,7 +28820,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* Creating and editing course Structure */ -/* line 5576, ../../../scss/_app_styles.scss */ +/* line 5575, ../../../scss/_app_styles.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -28832,34 +28831,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 5585, ../../../scss/_app_styles.scss */ +/* line 5584, ../../../scss/_app_styles.scss */ .group_tile:hover { opacity: 0.7; } -/* line 5588, ../../../scss/_app_styles.scss */ +/* line 5587, ../../../scss/_app_styles.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 5595, ../../../scss/_app_styles.scss */ +/* line 5594, ../../../scss/_app_styles.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 5602, ../../../scss/_app_styles.scss */ +/* line 5601, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 5605, ../../../scss/_app_styles.scss */ +/* line 5604, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 5608, ../../../scss/_app_styles.scss */ +/* line 5607, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -28867,15 +28866,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 5616, ../../../scss/_app_styles.scss */ +/* line 5615, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 5620, ../../../scss/_app_styles.scss */ +/* line 5619, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 5622, ../../../scss/_app_styles.scss */ +/* line 5621, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -28886,27 +28885,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 5632, ../../../scss/_app_styles.scss */ +/* line 5631, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 5637, ../../../scss/_app_styles.scss */ +/* line 5636, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 5643, ../../../scss/_app_styles.scss */ +/* line 5642, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 5650, ../../../scss/_app_styles.scss */ +/* line 5649, ../../../scss/_app_styles.scss */ .max-width { max-width: 100%; } -/* line 5656, ../../../scss/_app_styles.scss */ +/* line 5655, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28916,7 +28915,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 5665, ../../../scss/_app_styles.scss */ +/* line 5664, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -28933,7 +28932,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 5678, ../../../scss/_app_styles.scss */ +/* line 5677, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -28943,28 +28942,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 5687, ../../../scss/_app_styles.scss */ +/* line 5686, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 5692, ../../../scss/_app_styles.scss */ +/* line 5691, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background-color: #ffffff; } -/* line 5697, ../../../scss/_app_styles.scss */ +/* line 5696, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 5703, ../../../scss/_app_styles.scss */ +/* line 5702, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 5707, ../../../scss/_app_styles.scss */ +/* line 5706, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -28977,7 +28976,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 5720, ../../../scss/_app_styles.scss */ +/* line 5719, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -28992,7 +28991,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Unit_Structure styles */ -/* line 5738, ../../../scss/_app_styles.scss */ +/* line 5737, ../../../scss/_app_styles.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -29000,12 +28999,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 5746, ../../../scss/_app_styles.scss */ +/* line 5745, ../../../scss/_app_styles.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 5750, ../../../scss/_app_styles.scss */ +/* line 5749, ../../../scss/_app_styles.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -29013,17 +29012,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 5756, ../../../scss/_app_styles.scss */ +/* line 5755, ../../../scss/_app_styles.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 5762, ../../../scss/_app_styles.scss */ +/* line 5761, ../../../scss/_app_styles.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 5767, ../../../scss/_app_styles.scss */ +/* line 5766, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29033,25 +29032,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 5776, ../../../scss/_app_styles.scss */ +/* line 5775, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5780, ../../../scss/_app_styles.scss */ +/* line 5779, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 5785, ../../../scss/_app_styles.scss */ +/* line 5784, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 5794, ../../../scss/_app_styles.scss */ +/* line 5793, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29060,7 +29059,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5801, ../../../scss/_app_styles.scss */ +/* line 5800, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29069,15 +29068,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 5810, ../../../scss/_app_styles.scss */ +/* line 5809, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 5815, ../../../scss/_app_styles.scss */ +/* line 5814, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 5818, ../../../scss/_app_styles.scss */ +/* line 5817, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29085,21 +29084,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 5828, ../../../scss/_app_styles.scss */ +/* line 5827, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 5834, ../../../scss/_app_styles.scss */ +/* line 5833, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 5842, ../../../scss/_app_styles.scss */ +/* line 5841, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 5844, ../../../scss/_app_styles.scss */ +/* line 5843, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29108,7 +29107,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5851, ../../../scss/_app_styles.scss */ +/* line 5850, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29116,11 +29115,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5860, ../../../scss/_app_styles.scss */ +/* line 5859, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 5869, ../../../scss/_app_styles.scss */ +/* line 5868, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29132,49 +29131,49 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 5879, ../../../scss/_app_styles.scss */ +/* line 5878, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 5885, ../../../scss/_app_styles.scss */ +/* line 5884, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 5888, ../../../scss/_app_styles.scss */ +/* line 5887, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 5897, ../../../scss/_app_styles.scss */ +/* line 5896, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 5902, ../../../scss/_app_styles.scss */ +/* line 5901, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 5906, ../../../scss/_app_styles.scss */ +/* line 5905, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 5908, ../../../scss/_app_styles.scss */ +/* line 5907, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 5911, ../../../scss/_app_styles.scss */ +/* line 5910, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 5917, ../../../scss/_app_styles.scss */ +/* line 5916, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29182,29 +29181,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 15px 5px; cursor: pointer; } -/* line 5932, ../../../scss/_app_styles.scss */ +/* line 5931, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 5940, ../../../scss/_app_styles.scss */ +/* line 5939, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 5946, ../../../scss/_app_styles.scss */ +/* line 5945, ../../../scss/_app_styles.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 5955, ../../../scss/_app_styles.scss */ +/* line 5954, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 5960, ../../../scss/_app_styles.scss */ +/* line 5959, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29212,28 +29211,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 5967, ../../../scss/_app_styles.scss */ +/* line 5966, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5972, ../../../scss/_app_styles.scss */ +/* line 5971, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5977, ../../../scss/_app_styles.scss */ +/* line 5976, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 5979, ../../../scss/_app_styles.scss */ +/* line 5978, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 5983, ../../../scss/_app_styles.scss */ +/* line 5982, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -29245,21 +29244,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; border-radius: 3px; } -/* line 5994, ../../../scss/_app_styles.scss */ +/* line 5993, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 5999, ../../../scss/_app_styles.scss */ +/* line 5998, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 6005, ../../../scss/_app_styles.scss */ +/* line 6004, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 6011, ../../../scss/_app_styles.scss */ +/* line 6010, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -29267,19 +29266,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 6018, ../../../scss/_app_styles.scss */ +/* line 6017, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 6025, ../../../scss/_app_styles.scss */ +/* line 6024, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6036, ../../../scss/_app_styles.scss */ +/* line 6035, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -29290,7 +29289,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 6053, ../../../scss/_app_styles.scss */ +/* line 6052, ../../../scss/_app_styles.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -29305,66 +29304,66 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* lesspn listing LMS */ -/* line 6069, ../../../scss/_app_styles.scss */ +/* line 6068, ../../../scss/_app_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 6077, ../../../scss/_app_styles.scss */ +/* line 6076, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 6080, ../../../scss/_app_styles.scss */ +/* line 6079, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 6082, ../../../scss/_app_styles.scss */ +/* line 6081, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 6089, ../../../scss/_app_styles.scss */ +/* line 6088, ../../../scss/_app_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 6091, ../../../scss/_app_styles.scss */ +/* line 6090, ../../../scss/_app_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 6096, ../../../scss/_app_styles.scss */ +/* line 6095, ../../../scss/_app_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 6104, ../../../scss/_app_styles.scss */ +/* line 6103, ../../../scss/_app_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6110, ../../../scss/_app_styles.scss */ +/* line 6109, ../../../scss/_app_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6117, ../../../scss/_app_styles.scss */ +/* line 6116, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 6120, ../../../scss/_app_styles.scss */ +/* line 6119, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 6123, ../../../scss/_app_styles.scss */ +/* line 6122, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 6126, ../../../scss/_app_styles.scss */ +/* line 6125, ../../../scss/_app_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; @@ -29374,23 +29373,23 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Styling for the Secondary header 2 */ -/* line 6145, ../../../scss/_app_styles.scss */ +/* line 6144, ../../../scss/_app_styles.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 6148, ../../../scss/_app_styles.scss */ +/* line 6147, ../../../scss/_app_styles.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6156, ../../../scss/_app_styles.scss */ +/* line 6155, ../../../scss/_app_styles.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 6165, ../../../scss/_app_styles.scss */ +/* line 6164, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { position: relative; color: #fff; @@ -29401,56 +29400,56 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: -2px; border-right: 1px solid white; } -/* line 6174, ../../../scss/_app_styles.scss */ +/* line 6173, ../../../scss/_app_styles.scss */ .activity_player_header .header_title a { color: #ffc14f; } @media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6164, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 938px); } } @media only screen and (min-device-width: 2131px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6164, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 970px); } } @media only screen and (max-device-width: 1024px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6164, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 753px); } } -/* line 6251, ../../../scss/_app_styles.scss */ +/* line 6250, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon { font-size: 16px; line-height: 45px; color: #ffc14f; } -/* line 6257, ../../../scss/_app_styles.scss */ +/* line 6256, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 6263, ../../../scss/_app_styles.scss */ +/* line 6262, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 10px; } @media screen and (min-width: 1025px) { - /* line 6263, ../../../scss/_app_styles.scss */ + /* line 6262, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 15px; } } @media screen and (min-width: 1025px) { - /* line 6270, ../../../scss/_app_styles.scss */ + /* line 6269, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { float: right; margin-right: 70px; @@ -29458,73 +29457,73 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media screen and (max-width: 1024px) { - /* line 6270, ../../../scss/_app_styles.scss */ + /* line 6269, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { background-color: rgba(107, 0, 84, 0.97); } } -/* line 6283, ../../../scss/_app_styles.scss */ +/* line 6282, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6289, ../../../scss/_app_styles.scss */ +/* line 6288, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block { padding: 0px 15px; margin-left: -2px; border-right: 1px solid white; } -/* line 6293, ../../../scss/_app_styles.scss */ +/* line 6292, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block a { color: #ffc14f; } -/* line 6299, ../../../scss/_app_styles.scss */ +/* line 6298, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 9px; } @media screen and (min-width: 1025px) { - /* line 6299, ../../../scss/_app_styles.scss */ + /* line 6298, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 15px; } } -/* line 6307, ../../../scss/_app_styles.scss */ +/* line 6306, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 7px; } @media screen and (min-width: 1025px) { - /* line 6307, ../../../scss/_app_styles.scss */ + /* line 6306, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 15px; } } -/* line 6316, ../../../scss/_app_styles.scss */ +/* line 6315, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 6319, ../../../scss/_app_styles.scss */ +/* line 6318, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button i { color: #71318b; } -/* line 6325, ../../../scss/_app_styles.scss */ +/* line 6324, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 6329, ../../../scss/_app_styles.scss */ +/* line 6328, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 6335, ../../../scss/_app_styles.scss */ +/* line 6334, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .pagination:not(i) { color: #a983b9; } -/* line 6343, ../../../scss/_app_styles.scss */ +/* line 6342, ../../../scss/_app_styles.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -29532,29 +29531,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 6350, ../../../scss/_app_styles.scss */ +/* line 6349, ../../../scss/_app_styles.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 6354, ../../../scss/_app_styles.scss */ +/* line 6353, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6360, ../../../scss/_app_styles.scss */ +/* line 6359, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6366, ../../../scss/_app_styles.scss */ +/* line 6365, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 6371, ../../../scss/_app_styles.scss */ +/* line 6370, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29564,25 +29563,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 6380, ../../../scss/_app_styles.scss */ +/* line 6379, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6384, ../../../scss/_app_styles.scss */ +/* line 6383, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6389, ../../../scss/_app_styles.scss */ +/* line 6388, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6398, ../../../scss/_app_styles.scss */ +/* line 6397, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29591,7 +29590,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6405, ../../../scss/_app_styles.scss */ +/* line 6404, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29600,15 +29599,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 6414, ../../../scss/_app_styles.scss */ +/* line 6413, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6419, ../../../scss/_app_styles.scss */ +/* line 6418, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6422, ../../../scss/_app_styles.scss */ +/* line 6421, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29616,21 +29615,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 6432, ../../../scss/_app_styles.scss */ +/* line 6431, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6438, ../../../scss/_app_styles.scss */ +/* line 6437, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6446, ../../../scss/_app_styles.scss */ +/* line 6445, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6448, ../../../scss/_app_styles.scss */ +/* line 6447, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29639,7 +29638,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6455, ../../../scss/_app_styles.scss */ +/* line 6454, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29647,11 +29646,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6464, ../../../scss/_app_styles.scss */ +/* line 6463, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6473, ../../../scss/_app_styles.scss */ +/* line 6472, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29663,48 +29662,48 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 6483, ../../../scss/_app_styles.scss */ +/* line 6482, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6488, ../../../scss/_app_styles.scss */ +/* line 6487, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6491, ../../../scss/_app_styles.scss */ +/* line 6490, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6500, ../../../scss/_app_styles.scss */ +/* line 6499, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6505, ../../../scss/_app_styles.scss */ +/* line 6504, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6509, ../../../scss/_app_styles.scss */ +/* line 6508, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6511, ../../../scss/_app_styles.scss */ +/* line 6510, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6514, ../../../scss/_app_styles.scss */ +/* line 6513, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6520, ../../../scss/_app_styles.scss */ +/* line 6519, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29713,7 +29712,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; } -/* line 6538, ../../../scss/_app_styles.scss */ +/* line 6537, ../../../scss/_app_styles.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -29721,26 +29720,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 10px; padding-right: 4px; } -/* line 6544, ../../../scss/_app_styles.scss */ +/* line 6543, ../../../scss/_app_styles.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 6549, ../../../scss/_app_styles.scss */ +/* line 6548, ../../../scss/_app_styles.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6555, ../../../scss/_app_styles.scss */ +/* line 6554, ../../../scss/_app_styles.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 6561, ../../../scss/_app_styles.scss */ +/* line 6560, ../../../scss/_app_styles.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29750,29 +29749,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 6570, ../../../scss/_app_styles.scss */ +/* line 6569, ../../../scss/_app_styles.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 6574, ../../../scss/_app_styles.scss */ +/* line 6573, ../../../scss/_app_styles.scss */ .activity-title > li > a { color: black; } -/* line 6583, ../../../scss/_app_styles.scss */ +/* line 6582, ../../../scss/_app_styles.scss */ .activity_page_rendered { margin-left: 20px; max-width: 900px; } /* Rating css */ -/* line 6591, ../../../scss/_app_styles.scss */ +/* line 6590, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 6593, ../../../scss/_app_styles.scss */ +/* line 6592, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -29780,19 +29779,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { unicode-bidi: bidi-override; direction: rtl; } -/* line 6601, ../../../scss/_app_styles.scss */ +/* line 6600, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 6603, ../../../scss/_app_styles.scss */ +/* line 6602, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 6609, ../../../scss/_app_styles.scss */ +/* line 6608, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 6611, ../../../scss/_app_styles.scss */ +/* line 6610, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -29805,7 +29804,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0; vertical-align: bottom; } -/* line 6623, ../../../scss/_app_styles.scss */ +/* line 6622, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -29813,32 +29812,32 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* WHITE STAR */ color: #888; } -/* line 6630, ../../../scss/_app_styles.scss */ +/* line 6629, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 6641, ../../../scss/_app_styles.scss */ +/* line 6640, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 6648, ../../../scss/_app_styles.scss */ +/* line 6647, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 6656, ../../../scss/_app_styles.scss */ +/* line 6655, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 6661, ../../../scss/_app_styles.scss */ +/* line 6660, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -29847,29 +29846,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-shadow: 0 0 1px #333; } -/* line 6671, ../../../scss/_app_styles.scss */ +/* line 6670, ../../../scss/_app_styles.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 6675, ../../../scss/_app_styles.scss */ +/* line 6674, ../../../scss/_app_styles.scss */ .input_links { margin-left: 10px; } -/* line 6677, ../../../scss/_app_styles.scss */ +/* line 6676, ../../../scss/_app_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 6683, ../../../scss/_app_styles.scss */ +/* line 6682, ../../../scss/_app_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 6691, ../../../scss/_app_styles.scss */ +/* line 6690, ../../../scss/_app_styles.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -29878,19 +29877,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 6700, ../../../scss/_app_styles.scss */ +/* line 6699, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 6704, ../../../scss/_app_styles.scss */ +/* line 6703, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 6710, ../../../scss/_app_styles.scss */ +/* line 6709, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -29898,12 +29897,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; margin-left: 12%; } -/* line 6718, ../../../scss/_app_styles.scss */ +/* line 6717, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 6724, ../../../scss/_app_styles.scss */ +/* line 6723, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -29912,21 +29911,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: none; color: #8E8E8E; } -/* line 6733, ../../../scss/_app_styles.scss */ +/* line 6732, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 6738, ../../../scss/_app_styles.scss */ +/* line 6737, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 6740, ../../../scss/_app_styles.scss */ +/* line 6739, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 6743, ../../../scss/_app_styles.scss */ +/* line 6742, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -29937,24 +29936,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #757575; margin-right: 20px; } -/* line 6753, ../../../scss/_app_styles.scss */ +/* line 6752, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 6757, ../../../scss/_app_styles.scss */ +/* line 6756, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 6760, ../../../scss/_app_styles.scss */ +/* line 6759, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 6765, ../../../scss/_app_styles.scss */ +/* line 6764, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 6769, ../../../scss/_app_styles.scss */ +/* line 6768, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -29966,7 +29965,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; color: #222222; } -/* line 6780, ../../../scss/_app_styles.scss */ +/* line 6779, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -29974,15 +29973,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 8px; top: 4px; } -/* line 6788, ../../../scss/_app_styles.scss */ +/* line 6787, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 6790, ../../../scss/_app_styles.scss */ +/* line 6789, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 6793, ../../../scss/_app_styles.scss */ +/* line 6792, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -29992,25 +29991,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { letter-spacing: 0.8px; color: #999999; } -/* line 6802, ../../../scss/_app_styles.scss */ +/* line 6801, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 6808, ../../../scss/_app_styles.scss */ +/* line 6807, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 6817, ../../../scss/_app_styles.scss */ +/* line 6816, ../../../scss/_app_styles.scss */ .icon-color { color: #2e3f51 !important; padding: right; } /* The asset tile */ -/* line 6827, ../../../scss/_app_styles.scss */ +/* line 6826, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -30020,7 +30019,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 6836, ../../../scss/_app_styles.scss */ +/* line 6835, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -30037,7 +30036,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 6849, ../../../scss/_app_styles.scss */ +/* line 6848, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -30047,28 +30046,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 6858, ../../../scss/_app_styles.scss */ +/* line 6857, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 6863, ../../../scss/_app_styles.scss */ +/* line 6862, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 6868, ../../../scss/_app_styles.scss */ +/* line 6867, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 6874, ../../../scss/_app_styles.scss */ +/* line 6873, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 6878, ../../../scss/_app_styles.scss */ +/* line 6877, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -30081,7 +30080,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 6891, ../../../scss/_app_styles.scss */ +/* line 6890, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -30095,7 +30094,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 6906, ../../../scss/_app_styles.scss */ +/* line 6905, ../../../scss/_app_styles.scss */ .orange-button-subtitle { color: #ce7869; padding: 4px 5px; @@ -30108,13 +30107,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 6917, ../../../scss/_app_styles.scss */ +/* line 6916, ../../../scss/_app_styles.scss */ .orange-button-subtitle:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 6923, ../../../scss/_app_styles.scss */ +/* line 6922, ../../../scss/_app_styles.scss */ .transcript-toggler { display: block; width: 155px !important; @@ -30130,12 +30129,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; } -/* line 6938, ../../../scss/_app_styles.scss */ +/* line 6937, ../../../scss/_app_styles.scss */ .asset_list { margin-left: 12px; } -/* line 6942, ../../../scss/_app_styles.scss */ +/* line 6941, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -30144,22 +30143,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6951, ../../../scss/_app_styles.scss */ +/* line 6950, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6958, ../../../scss/_app_styles.scss */ +/* line 6957, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6964, ../../../scss/_app_styles.scss */ +/* line 6963, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6966, ../../../scss/_app_styles.scss */ +/* line 6965, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -30168,15 +30167,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6973, ../../../scss/_app_styles.scss */ +/* line 6972, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6977, ../../../scss/_app_styles.scss */ +/* line 6976, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6983, ../../../scss/_app_styles.scss */ +/* line 6982, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30185,7 +30184,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6994, ../../../scss/_app_styles.scss */ +/* line 6993, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -30194,24 +30193,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 280px; border: 1px solid #164A7B; } -/* line 7003, ../../../scss/_app_styles.scss */ +/* line 7002, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 7010, ../../../scss/_app_styles.scss */ +/* line 7009, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 7015, ../../../scss/_app_styles.scss */ +/* line 7014, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 7019, ../../../scss/_app_styles.scss */ +/* line 7018, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -30222,14 +30221,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 7029, ../../../scss/_app_styles.scss */ +/* line 7028, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 7036, ../../../scss/_app_styles.scss */ + /* line 7035, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30237,7 +30236,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7045, ../../../scss/_app_styles.scss */ + /* line 7044, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30245,7 +30244,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7052, ../../../scss/_app_styles.scss */ + /* line 7051, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30253,14 +30252,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7059, ../../../scss/_app_styles.scss */ + /* line 7058, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 7067, ../../../scss/_app_styles.scss */ +/* line 7066, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30275,14 +30274,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7083, ../../../scss/_app_styles.scss */ +/* line 7082, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 7090, ../../../scss/_app_styles.scss */ + /* line 7089, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30293,7 +30292,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7101, ../../../scss/_app_styles.scss */ + /* line 7100, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30304,7 +30303,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7112, ../../../scss/_app_styles.scss */ + /* line 7111, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30315,7 +30314,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7123, ../../../scss/_app_styles.scss */ + /* line 7122, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30325,7 +30324,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7134, ../../../scss/_app_styles.scss */ +/* line 7133, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30340,14 +30339,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7150, ../../../scss/_app_styles.scss */ +/* line 7149, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 7157, ../../../scss/_app_styles.scss */ + /* line 7156, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30358,7 +30357,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7168, ../../../scss/_app_styles.scss */ + /* line 7167, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30369,7 +30368,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7179, ../../../scss/_app_styles.scss */ + /* line 7178, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30380,7 +30379,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7190, ../../../scss/_app_styles.scss */ + /* line 7189, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30390,11 +30389,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7201, ../../../scss/_app_styles.scss */ +/* line 7200, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 7203, ../../../scss/_app_styles.scss */ +/* line 7202, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30403,11 +30402,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 7211, ../../../scss/_app_styles.scss */ +/* line 7210, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 7217, ../../../scss/_app_styles.scss */ +/* line 7216, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30416,7 +30415,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7228, ../../../scss/_app_styles.scss */ +/* line 7227, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30427,22 +30426,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7238, ../../../scss/_app_styles.scss */ +/* line 7237, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7241, ../../../scss/_app_styles.scss */ +/* line 7240, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7246, ../../../scss/_app_styles.scss */ +/* line 7245, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7257, ../../../scss/_app_styles.scss */ +/* line 7256, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30453,26 +30452,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7267, ../../../scss/_app_styles.scss */ +/* line 7266, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7270, ../../../scss/_app_styles.scss */ +/* line 7269, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7274, ../../../scss/_app_styles.scss */ +/* line 7273, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7280, ../../../scss/_app_styles.scss */ +/* line 7279, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7282, ../../../scss/_app_styles.scss */ +/* line 7281, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30481,7 +30480,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7291, ../../../scss/_app_styles.scss */ +/* line 7290, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30490,7 +30489,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7305, ../../../scss/_app_styles.scss */ +/* line 7304, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -30500,19 +30499,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Asset detail */ -/* line 7316, ../../../scss/_app_styles.scss */ +/* line 7315, ../../../scss/_app_styles.scss */ .overlay-head { height: 60px; margin-bottom: 20px; } -/* line 7322, ../../../scss/_app_styles.scss */ +/* line 7321, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7327, ../../../scss/_app_styles.scss */ +/* line 7326, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30526,13 +30525,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7339, ../../../scss/_app_styles.scss */ +/* line 7338, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7346, ../../../scss/_app_styles.scss */ +/* line 7345, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; padding: 7px 14px; @@ -30545,22 +30544,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7357, ../../../scss/_app_styles.scss */ +/* line 7356, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7362, ../../../scss/_app_styles.scss */ +/* line 7361, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; background: #fff; } -/* line 7365, ../../../scss/_app_styles.scss */ +/* line 7364, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: #fff; } -/* line 7368, ../../../scss/_app_styles.scss */ +/* line 7367, ../../../scss/_app_styles.scss */ .orange-button-template > a { color: #ce7869; padding: 7px 14px; @@ -30573,13 +30572,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7379, ../../../scss/_app_styles.scss */ +/* line 7378, ../../../scss/_app_styles.scss */ .orange-button-template > a:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7386, ../../../scss/_app_styles.scss */ +/* line 7385, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30591,7 +30590,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7397, ../../../scss/_app_styles.scss */ +/* line 7396, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30599,18 +30598,18 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7406, ../../../scss/_app_styles.scss */ +/* line 7405, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7413, ../../../scss/_app_styles.scss */ +/* line 7412, ../../../scss/_app_styles.scss */ .page-name { margin-top: 8px; } -/* line 7417, ../../../scss/_app_styles.scss */ +/* line 7416, ../../../scss/_app_styles.scss */ .tag-ele { font-weight: normal; text-align: center; @@ -30629,7 +30628,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: none; } -/* line 7435, ../../../scss/_app_styles.scss */ +/* line 7434, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30647,12 +30646,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7451, ../../../scss/_app_styles.scss */ +/* line 7450, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7456, ../../../scss/_app_styles.scss */ +/* line 7455, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30664,13 +30663,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7466, ../../../scss/_app_styles.scss */ +/* line 7465, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7474, ../../../scss/_app_styles.scss */ +/* line 7473, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30687,13 +30686,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7489, ../../../scss/_app_styles.scss */ +/* line 7488, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* line 7500, ../../../scss/_app_styles.scss */ +/* line 7499, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -30701,7 +30700,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-size: 100% 100%; position: relative; } -/* line 7507, ../../../scss/_app_styles.scss */ +/* line 7506, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -30715,13 +30714,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7521, ../../../scss/_app_styles.scss */ +/* line 7520, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 7526, ../../../scss/_app_styles.scss */ +/* line 7525, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -30730,79 +30729,79 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow: hidden; background-color: #fff; } -/* line 7534, ../../../scss/_app_styles.scss */ +/* line 7533, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 7539, ../../../scss/_app_styles.scss */ +/* line 7538, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 7544, ../../../scss/_app_styles.scss */ +/* line 7543, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 7549, ../../../scss/_app_styles.scss */ +/* line 7548, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 7557, ../../../scss/_app_styles.scss */ +/* line 7556, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 7561, ../../../scss/_app_styles.scss */ +/* line 7560, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 7570, ../../../scss/_app_styles.scss */ +/* line 7569, ../../../scss/_app_styles.scss */ .lms_explore_head_unit { width: 100%; height: 50px; background-color: #fff; color: #164A7B; } -/* line 7575, ../../../scss/_app_styles.scss */ +/* line 7574, ../../../scss/_app_styles.scss */ .lms_explore_head_unit > p { margin-left: 81px; padding: 0px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 7581, ../../../scss/_app_styles.scss */ +/* line 7580, ../../../scss/_app_styles.scss */ .lms_explore_head_unit > a { padding: 0px 85px 3px 0px; } -/* line 7587, ../../../scss/_app_styles.scss */ +/* line 7586, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -19.3px; } -/* line 7594, ../../../scss/_app_styles.scss */ +/* line 7593, ../../../scss/_app_styles.scss */ .course-students-data { margin: 2px 2px 2px 2px; border: 2px solid #164a7b; padding: 19px 14px 0px 5px; } -/* line 7601, ../../../scss/_app_styles.scss */ +/* line 7600, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 7604, ../../../scss/_app_styles.scss */ +/* line 7603, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 7612, ../../../scss/_app_styles.scss */ +/* line 7611, ../../../scss/_app_styles.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -30818,7 +30817,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7631, ../../../scss/_app_styles.scss */ +/* line 7630, ../../../scss/_app_styles.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -30828,7 +30827,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7640, ../../../scss/_app_styles.scss */ +/* line 7639, ../../../scss/_app_styles.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -30838,7 +30837,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 7649, ../../../scss/_app_styles.scss */ +/* line 7648, ../../../scss/_app_styles.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; @@ -30858,13 +30857,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #A6D7F5; } }*/ -/* line 7672, ../../../scss/_app_styles.scss */ +/* line 7671, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 7677, ../../../scss/_app_styles.scss */ +/* line 7676, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title { width: 43%; /* background-color: blue;*/ @@ -30874,7 +30873,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; color: #fff; } -/* line 7686, ../../../scss/_app_styles.scss */ +/* line 7685, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title.active { background-color: #719dc7; border: 1px solid #CCC; @@ -30882,7 +30881,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; } -/* line 7699, ../../../scss/_app_styles.scss */ +/* line 7698, ../../../scss/_app_styles.scss */ .create_unit { background: #fff; box-shadow: 0px 2px 3px #000; @@ -30890,7 +30889,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 10px; } -/* line 7707, ../../../scss/_app_styles.scss */ +/* line 7706, ../../../scss/_app_styles.scss */ .asset-unit-button { color: #ce7869; padding: 7px 14px; @@ -30902,13 +30901,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 30px; margin-bottom: 8px; } -/* line 7718, ../../../scss/_app_styles.scss */ +/* line 7717, ../../../scss/_app_styles.scss */ .asset-unit-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7724, ../../../scss/_app_styles.scss */ +/* line 7723, ../../../scss/_app_styles.scss */ .course_creator_header { width: 100%; height: 70px; @@ -30916,7 +30915,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7731, ../../../scss/_app_styles.scss */ +/* line 7730, ../../../scss/_app_styles.scss */ .course_creator_header .unit_editor { width: 100%; height: 320px; @@ -30924,13 +30923,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7740, ../../../scss/_app_styles.scss */ +/* line 7739, ../../../scss/_app_styles.scss */ .course_creator_header .back_to_group { padding: 0px 15px 0px 10px; border-right: 1px solid #ccc; margin-right: 15px; } -/* line 7746, ../../../scss/_app_styles.scss */ +/* line 7745, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit { width: 500px; height: 40px; @@ -30939,24 +30938,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7755, ../../../scss/_app_styles.scss */ +/* line 7754, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit:focus { border: 1px solid #74b3dc; } -/* line 7759, ../../../scss/_app_styles.scss */ +/* line 7758, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7767, ../../../scss/_app_styles.scss */ +/* line 7766, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit select { font-size: 14px; font-family: 'OpenSans-Regular', sans-serif; color: gray; border: 0px solid #74b3dc; } -/* line 7778, ../../../scss/_app_styles.scss */ +/* line 7777, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input { width: 500px; height: 40px; @@ -30965,31 +30964,31 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7786, ../../../scss/_app_styles.scss */ +/* line 7785, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input:focus { border: 1px solid #74b3dc; } -/* line 7790, ../../../scss/_app_styles.scss */ +/* line 7789, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7800, ../../../scss/_app_styles.scss */ +/* line 7799, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading h5 { margin-top: 15px; } -/* line 7805, ../../../scss/_app_styles.scss */ +/* line 7804, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading span { letter-spacing: 0.9px; font-weight: 600; line-height: 50px; } -/* line 7813, ../../../scss/_app_styles.scss */ +/* line 7812, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul { margin: 0px; } -/* line 7816, ../../../scss/_app_styles.scss */ +/* line 7815, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li { list-style-type: none; display: inline-block; @@ -30998,11 +30997,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; letter-spacing: 0.8px; } -/* line 7825, ../../../scss/_app_styles.scss */ +/* line 7824, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { border-bottom: 3px solid #ffc14e; } -/* line 7830, ../../../scss/_app_styles.scss */ +/* line 7829, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions span { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -31014,7 +31013,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; border-radius: 3px; } -/* line 7842, ../../../scss/_app_styles.scss */ +/* line 7841, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -31027,20 +31026,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; } -/* line 7859, ../../../scss/_app_styles.scss */ +/* line 7858, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: 2.7px; } -/* line 7864, ../../../scss/_app_styles.scss */ +/* line 7863, ../../../scss/_app_styles.scss */ .empty-dashboard-message { border: 3px solid #e4e4e4; background: #f8f8f8; padding: 40px 0; text-align: center; } -/* line 7870, ../../../scss/_app_styles.scss */ +/* line 7869, ../../../scss/_app_styles.scss */ .empty-dashboard-message > a { background-color: #164a7b; border: 1px solid #164a7b; @@ -31054,7 +31053,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 5px; padding: 15px 20px; } -/* line 7884, ../../../scss/_app_styles.scss */ +/* line 7883, ../../../scss/_app_styles.scss */ .empty-dashboard-message .button-explore-courses { font-size: 20px; font-weight: normal; @@ -31064,7 +31063,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 170px; } -/* line 7899, ../../../scss/_app_styles.scss */ +/* line 7898, ../../../scss/_app_styles.scss */ .module_card { display: table; height: 290px; @@ -31075,16 +31074,16 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); } -/* line 7909, ../../../scss/_app_styles.scss */ +/* line 7908, ../../../scss/_app_styles.scss */ .module_card:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 7913, ../../../scss/_app_styles.scss */ +/* line 7912, ../../../scss/_app_styles.scss */ .module_card > div { display: table-cell; height: 290px; } -/* line 7918, ../../../scss/_app_styles.scss */ +/* line 7917, ../../../scss/_app_styles.scss */ .module_card .card_banner { width: 250px; height: 290px; @@ -31098,14 +31097,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-radius .2s; transition: border-radius .2s; } -/* line 7931, ../../../scss/_app_styles.scss */ +/* line 7930, ../../../scss/_app_styles.scss */ .module_card .card_banner > img { height: 100%; width: 100%; border-radius: 4px; -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); } -/* line 7936, ../../../scss/_app_styles.scss */ +/* line 7935, ../../../scss/_app_styles.scss */ .module_card .card_banner > img:hover { -webkit-transform: scale(1.03); -moz-transform: scale(1.03); @@ -31114,7 +31113,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transform: scale(1.03); opacity: 0.8; } -/* line 7948, ../../../scss/_app_styles.scss */ +/* line 7947, ../../../scss/_app_styles.scss */ .module_card .card_banner > h4 { position: absolute; top: 100px; @@ -31123,7 +31122,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #ffffff !important; text-shadow: 2px 0px 8px black; } -/* line 7963, ../../../scss/_app_styles.scss */ +/* line 7962, ../../../scss/_app_styles.scss */ .module_card .card_title { display: block; width: 230px; @@ -31133,27 +31132,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px auto; letter-spacing: 1px; } -/* line 7974, ../../../scss/_app_styles.scss */ +/* line 7973, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_banner { border-radius: 8px; } -/* line 7977, ../../../scss/_app_styles.scss */ +/* line 7976, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7982, ../../../scss/_app_styles.scss */ +/* line 7981, ../../../scss/_app_styles.scss */ .module_card.animated_card.isOpen .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7986, ../../../scss/_app_styles.scss */ +/* line 7985, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_summary { left: 30px; } -/* line 7989, ../../../scss/_app_styles.scss */ +/* line 7988, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_summary { left: 5px; } -/* line 7993, ../../../scss/_app_styles.scss */ +/* line 7992, ../../../scss/_app_styles.scss */ .module_card .card_summary { width: 290px; padding: 0px 15px; @@ -31169,35 +31168,35 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Safari */ transition-property: left; } -/* line 8007, ../../../scss/_app_styles.scss */ +/* line 8006, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_label { font-weight: 500; font-size: 12.5px; letter-spacing: 1px; color: black; } -/* line 8013, ../../../scss/_app_styles.scss */ +/* line 8012, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section { margin: 5px 0px; padding: 5px 0px; } -/* line 8017, ../../../scss/_app_styles.scss */ +/* line 8016, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section:not(:last-child) { border-bottom: 1px solid #ccc; } -/* line 8020, ../../../scss/_app_styles.scss */ +/* line 8019, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section p { margin-bottom: 7px; font-size: 12.5px; } -/* line 8024, ../../../scss/_app_styles.scss */ +/* line 8023, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .ellipsis { width: 245px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -/* line 8032, ../../../scss/_app_styles.scss */ +/* line 8031, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol { background: #a2238d; height: 37px; @@ -31211,11 +31210,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 8045, ../../../scss/_app_styles.scss */ +/* line 8044, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 8051, ../../../scss/_app_styles.scss */ +/* line 8050, ../../../scss/_app_styles.scss */ .module_card .card_summary .module_brief { display: block; /* Fallback for non-webkit */ @@ -31232,12 +31231,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: black; } -/* line 8068, ../../../scss/_app_styles.scss */ +/* line 8067, ../../../scss/_app_styles.scss */ .inner { display: inline-block !important; } -/* line 8075, ../../../scss/_app_styles.scss */ +/* line 8074, ../../../scss/_app_styles.scss */ .enroll-btn { width: 90px; opacity: 1; @@ -31253,7 +31252,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #4b4852; } -/* line 8095, ../../../scss/_app_styles.scss */ +/* line 8094, ../../../scss/_app_styles.scss */ .enrollBtn { background: #a2238d; height: 37px; @@ -31268,51 +31267,51 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /*****Toolbar CSS******/ -/* line 8110, ../../../scss/_app_styles.scss */ +/* line 8109, ../../../scss/_app_styles.scss */ #toolbar { background-color: #3e3e3e; } -/* line 8113, ../../../scss/_app_styles.scss */ +/* line 8112, ../../../scss/_app_styles.scss */ .datetime { color: #eaeaea; padding: 4px 0px 2px 5px; font-size: 11px; } -/* line 8118, ../../../scss/_app_styles.scss */ +/* line 8117, ../../../scss/_app_styles.scss */ .changefont { text-align: right; padding: 2px 5px 1px 0px; } -/* line 8122, ../../../scss/_app_styles.scss */ +/* line 8121, ../../../scss/_app_styles.scss */ .changefont .minus { font-size: 60%; color: #eaeaea; } -/* line 8125, ../../../scss/_app_styles.scss */ +/* line 8124, ../../../scss/_app_styles.scss */ .changefont .normal { font-size: 80%; color: #eaeaea; } -/* line 8128, ../../../scss/_app_styles.scss */ +/* line 8127, ../../../scss/_app_styles.scss */ .changefont .plus { font-size: 100%; color: #eaeaea; } /***********Landing page***************/ -/* line 8137, ../../../scss/_app_styles.scss */ +/* line 8136, ../../../scss/_app_styles.scss */ .about_us { background: #20ade0; } -/* line 8140, ../../../scss/_app_styles.scss */ +/* line 8139, ../../../scss/_app_styles.scss */ .analytics { margin-top: 20px; } -/* line 8143, ../../../scss/_app_styles.scss */ +/* line 8142, ../../../scss/_app_styles.scss */ .square { border: 4px solid #ffffff; position: relative; @@ -31323,14 +31322,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 30px; } -/* line 8153, ../../../scss/_app_styles.scss */ +/* line 8152, ../../../scss/_app_styles.scss */ .square:after { content: ""; display: block; padding-bottom: 100%; } -/* line 8159, ../../../scss/_app_styles.scss */ +/* line 8158, ../../../scss/_app_styles.scss */ .box-content { position: absolute; width: 100%; @@ -31339,7 +31338,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 20%; } -/* line 8172, ../../../scss/_app_styles.scss */ +/* line 8171, ../../../scss/_app_styles.scss */ .activity-slider { font-family: Arial; width: 800px; @@ -31347,7 +31346,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0 auto; } -/* line 8179, ../../../scss/_app_styles.scss */ +/* line 8178, ../../../scss/_app_styles.scss */ .activity-slider h3 { background: #fff; color: #3498db; @@ -31375,12 +31374,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .action a:hover{ background:#000; }*/ -/* line 8205, ../../../scss/_app_styles.scss */ +/* line 8204, ../../../scss/_app_styles.scss */ .footer_link_cont h4 { color: #999; } -/* line 8209, ../../../scss/_app_styles.scss */ +/* line 8208, ../../../scss/_app_styles.scss */ .about_content { color: #ececec; margin-bottom: 30px; @@ -31388,18 +31387,18 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { font-size: 18px; } -/* line 8217, ../../../scss/_app_styles.scss */ +/* line 8216, ../../../scss/_app_styles.scss */ .about-blog { height: 100%; background: #107aa1; } -/* line 8222, ../../../scss/_app_styles.scss */ +/* line 8221, ../../../scss/_app_styles.scss */ .searchbar { margin: 0.8rem; } -/* line 8226, ../../../scss/_app_styles.scss */ +/* line 8225, ../../../scss/_app_styles.scss */ .search-field { width: 0; height: 40px; @@ -31410,7 +31409,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all 0.5s ease; } -/* line 8236, ../../../scss/_app_styles.scss */ +/* line 8235, ../../../scss/_app_styles.scss */ .expand-search { width: 80%; max-width: calc(80% - 3rem); @@ -31418,31 +31417,77 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: .5rem; } -/* line 8243, ../../../scss/_app_styles.scss */ +/* line 8242, ../../../scss/_app_styles.scss */ svg { width: 20px; height: 20px; } -/* line 8248, ../../../scss/_app_styles.scss */ +/* line 8247, ../../../scss/_app_styles.scss */ .button { border-radius: 50px; } -/* line 8253, ../../../scss/_app_styles.scss */ +/* line 8252, ../../../scss/_app_styles.scss */ #page_content { display: table; height: auto; display: table-row; } -/* line 8261, ../../../scss/_app_styles.scss */ +/* line 8260, ../../../scss/_app_styles.scss */ .footer_container { height: auto; display: table-row; } -/* line 8268, ../../../scss/_app_styles.scss */ +/* line 8267, ../../../scss/_app_styles.scss */ #footer { height: 1px; } + +/* ----New Footer For NROER -------*/ +/* line 8276, ../../../scss/_app_styles.scss */ +.footer-nav { + margin-right: auto; + margin-left: auto; + margin-top: 60px; + display: table-row; + height: 1px; + display: flex; + flex-flow: row wrap; + flex-direction: row; + flex-wrap: row; + align-items: center; + background-color: rgba(0, 0, 0, 0.8); + padding: 1.8rem; + width: 100%; + justify-content: center; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} + +/* line 8294, ../../../scss/_app_styles.scss */ +.footer-nav-center { + flex: 1 1 0px; +} + +/* line 8297, ../../../scss/_app_styles.scss */ +.footer-nav-menu { + list-style: none; + margin-bottom: 0; + text-align: center; +} + +/* line 8302, ../../../scss/_app_styles.scss */ +.footer-nav-menu-item { + display: inline-block; + margin-right: 1.5rem; + font-size: 1.2rem; + padding: 0.4rem 0; +} + +/* line 8308, ../../../scss/_app_styles.scss */ +.footer-copyright { + margin-top: -70px; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css index 386c335d1b..11c24242c8 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/nroer/styles.css @@ -24221,107 +24221,106 @@ body > footer .myfooter .links_collapse ul { body > footer .myfooter .footer_link_cont { display: inline-block; vertical-align: top; - /*margin: 20px;*/ text-align: left; } -/* line 562, ../../../scss/_app_styles.scss */ +/* line 561, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .links_show { max-height: 600px; } -/* line 566, ../../../scss/_app_styles.scss */ +/* line 565, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .flinks { font-size: 22px; color: #999; } -/* line 570, ../../../scss/_app_styles.scss */ +/* line 569, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .social_links a { font-size: 24px; margin-right: 5px; } -/* line 575, ../../../scss/_app_styles.scss */ +/* line 574, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links { color: #777777; cursor: pointer; } -/* line 578, ../../../scss/_app_styles.scss */ +/* line 577, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links i { font-size: 24px; margin-right: 5px; } -/* line 581, ../../../scss/_app_styles.scss */ +/* line 580, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links:hover { text-decoration: underline; } -/* line 588, ../../../scss/_app_styles.scss */ +/* line 587, ../../../scss/_app_styles.scss */ body > footer hr.footerlogo-divider { border-color: #555; margin-top: 10px; } -/* line 594, ../../../scss/_app_styles.scss */ +/* line 593, ../../../scss/_app_styles.scss */ body > footer ul#footerlogo li { margin: 0px 5px; display: inline; } -/* line 600, ../../../scss/_app_styles.scss */ +/* line 599, ../../../scss/_app_styles.scss */ .no-gap ul { margin-left: 0rem; } -/* line 606, ../../../scss/_app_styles.scss */ +/* line 605, ../../../scss/_app_styles.scss */ body > footer ul#poweredlogos { margin-left: 0px; } -/* line 610, ../../../scss/_app_styles.scss */ +/* line 609, ../../../scss/_app_styles.scss */ #poweredlogos li { margin: 0px 5px; display: inline; } -/* line 616, ../../../scss/_app_styles.scss */ +/* line 615, ../../../scss/_app_styles.scss */ .no-gap ul { margin-left: 0rem; } -/* line 621, ../../../scss/_app_styles.scss */ +/* line 620, ../../../scss/_app_styles.scss */ .coll-arrows { cursor: pointer; display: block; padding: 0.5rem; } -/* line 626, ../../../scss/_app_styles.scss */ +/* line 625, ../../../scss/_app_styles.scss */ .coll-arrows:hover { background-color: #D3D3D3; } /* Sections */ -/* line 633, ../../../scss/_app_styles.scss */ +/* line 632, ../../../scss/_app_styles.scss */ main > article { padding: 0px; } -/* line 636, ../../../scss/_app_styles.scss */ +/* line 635, ../../../scss/_app_styles.scss */ main > nav { border-top: 3px solid black; position: relative; z-index: 10; } -/* line 640, ../../../scss/_app_styles.scss */ +/* line 639, ../../../scss/_app_styles.scss */ main > nav > .button-bar { background-color: #03abf7; /* Hide icons till we can retreive custom icons from the system */ } -/* line 642, ../../../scss/_app_styles.scss */ +/* line 641, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group { margin: 0; } -/* line 644, ../../../scss/_app_styles.scss */ +/* line 643, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group.tools { padding: 5px; } -/* line 650, ../../../scss/_app_styles.scss */ +/* line 649, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button { border: none; font-size: 0.8rem; @@ -24330,135 +24329,135 @@ main > nav > .button-bar li .button { color: black; margin: 0; } -/* line 654, ../../../scss/_app_styles.scss */ +/* line 653, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.home { font-weight: bold; } -/* line 657, ../../../scss/_app_styles.scss */ +/* line 656, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings, main > nav > .button-bar li .button#toggle-help { padding: 6px 10px; color: #333; background-color: rgba(255, 255, 255, 0.3); } -/* line 662, ../../../scss/_app_styles.scss */ +/* line 661, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:hover, main > nav > .button-bar li .button#toggle-help:hover { background-color: rgba(0, 0, 0, 0.2); color: white; } -/* line 667, ../../../scss/_app_styles.scss */ +/* line 666, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button#toggle-help { background-color: inherit; } -/* line 671, ../../../scss/_app_styles.scss */ +/* line 670, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:after { border: none; } -/* line 679, ../../../scss/_app_styles.scss */ +/* line 678, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button:hover { color: white; } -/* line 685, ../../../scss/_app_styles.scss */ +/* line 684, ../../../scss/_app_styles.scss */ main > nav > .button-bar li.active .button { background-color: #03a9f4; color: white; } -/* line 693, ../../../scss/_app_styles.scss */ +/* line 692, ../../../scss/_app_styles.scss */ main > nav > .button-bar .app i { display: none !important; } -/* line 703, ../../../scss/_app_styles.scss */ +/* line 702, ../../../scss/_app_styles.scss */ main > aside > div h2 { color: #111; } -/* line 706, ../../../scss/_app_styles.scss */ +/* line 705, ../../../scss/_app_styles.scss */ main > aside > div h3 { font-size: 1.2rem; font-weight: normal; color: #222; } -/* line 711, ../../../scss/_app_styles.scss */ +/* line 710, ../../../scss/_app_styles.scss */ main > aside > div h4 { font-size: 1rem; color: #222; } -/* line 714, ../../../scss/_app_styles.scss */ +/* line 713, ../../../scss/_app_styles.scss */ main > aside > div h4 span { display: none; } -/* line 717, ../../../scss/_app_styles.scss */ +/* line 716, ../../../scss/_app_styles.scss */ main > aside > div h4:hover span { display: inline; } -/* line 721, ../../../scss/_app_styles.scss */ +/* line 720, ../../../scss/_app_styles.scss */ main > aside > div h5, main > aside > div h6 { margin: 0; } -/* line 725, ../../../scss/_app_styles.scss */ +/* line 724, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content { width: auto; padding: 0; border: 1px solid #222; } -/* line 729, ../../../scss/_app_styles.scss */ +/* line 728, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content .item { width: 70px; } -/* line 736, ../../../scss/_app_styles.scss */ +/* line 735, ../../../scss/_app_styles.scss */ main > aside > div footer { background-color: #222; min-height: 1rem; } -/* line 739, ../../../scss/_app_styles.scss */ +/* line 738, ../../../scss/_app_styles.scss */ main > aside > div footer label { font-size: 0.7rem; } -/* line 752, ../../../scss/_app_styles.scss */ +/* line 751, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection { background-color: #444; padding: 0; border-bottom: 2px solid #03abf7; margin: 0; } -/* line 757, ../../../scss/_app_styles.scss */ +/* line 756, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li { border-bottom: 1px solid #555; } -/* line 759, ../../../scss/_app_styles.scss */ +/* line 758, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li a { border-left: 2px solid black; } -/* line 762, ../../../scss/_app_styles.scss */ +/* line 761, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li.active a, main > aside > div .side-nav.collection li a:hover { color: white !important; border-left: 2px solid #03abf7; background-color: #03abf7; } -/* line 775, ../../../scss/_app_styles.scss */ +/* line 774, ../../../scss/_app_styles.scss */ article { position: relative; z-index: 1; min-height: 400px; overflow-x: visible; } -/* line 780, ../../../scss/_app_styles.scss */ +/* line 779, ../../../scss/_app_styles.scss */ article > header, article form > header { padding: 15px; background-color: #f0f0f0; } -/* line 793, ../../../scss/_app_styles.scss */ +/* line 792, ../../../scss/_app_styles.scss */ article h1:not(.subheader) .tabs { display: inline-block; position: relative; bottom: -0.5rem; } -/* line 799, ../../../scss/_app_styles.scss */ +/* line 798, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div, article h1:not(.subheader) div input:not(.subheader) div { display: inline-block; position: relative; } -/* line 802, ../../../scss/_app_styles.scss */ +/* line 801, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input { height: 200%; font-style: italic; @@ -24468,13 +24467,13 @@ article h1:not(.subheader) div input { border-bottom: 2px dotted #222; background-color: inherit; } -/* line 812, ../../../scss/_app_styles.scss */ +/* line 811, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input:hover { background-color: white; } /* Card block */ -/* line 822, ../../../scss/_app_styles.scss */ +/* line 821, ../../../scss/_app_styles.scss */ .card > * { position: relative; background-color: white; @@ -24485,51 +24484,51 @@ article h1:not(.subheader) div input:hover { opacity: 0.9; overflow: hidden; } -/* line 834, ../../../scss/_app_styles.scss */ +/* line 833, ../../../scss/_app_styles.scss */ .card > * > a { color: inherit; display: block; position: relative; z-index: 200; } -/* line 845, ../../../scss/_app_styles.scss */ +/* line 844, ../../../scss/_app_styles.scss */ .card > *.published { opacity: 1; background-color: #e6f9ee; } -/* line 850, ../../../scss/_app_styles.scss */ +/* line 849, ../../../scss/_app_styles.scss */ .card > *.published hr { border-color: #7ee2a8; } -/* line 855, ../../../scss/_app_styles.scss */ +/* line 854, ../../../scss/_app_styles.scss */ .card > *.moderation { opacity: 1; background-color: #efefef; } -/* line 860, ../../../scss/_app_styles.scss */ +/* line 859, ../../../scss/_app_styles.scss */ .card > *.moderation hr { border-color: #bcbcbc; } -/* line 865, ../../../scss/_app_styles.scss */ +/* line 864, ../../../scss/_app_styles.scss */ .card > *.unapproved { opacity: 1; border-style: solid; border-color: #f04124; } -/* line 871, ../../../scss/_app_styles.scss */ +/* line 870, ../../../scss/_app_styles.scss */ .card > *:hover { border-style: solid; opacity: 1; } -/* line 877, ../../../scss/_app_styles.scss */ +/* line 876, ../../../scss/_app_styles.scss */ .card > *:hover i { opacity: 0.3; } -/* line 880, ../../../scss/_app_styles.scss */ +/* line 879, ../../../scss/_app_styles.scss */ .card > *:hover footer .age { display: block; } -/* line 885, ../../../scss/_app_styles.scss */ +/* line 884, ../../../scss/_app_styles.scss */ .card > * > i { position: absolute; top: -10px; @@ -24538,28 +24537,28 @@ article h1:not(.subheader) div input:hover { color: #03a9f4; opacity: 0.3; } -/* line 894, ../../../scss/_app_styles.scss */ +/* line 893, ../../../scss/_app_styles.scss */ .card > * .preview { float: left; padding-right: 5px; padding-top: 4px; } -/* line 899, ../../../scss/_app_styles.scss */ +/* line 898, ../../../scss/_app_styles.scss */ .card > * header { overflow: hidden; } -/* line 903, ../../../scss/_app_styles.scss */ +/* line 902, ../../../scss/_app_styles.scss */ .card > * .label, .card > * .label-list:empty:before { opacity: 0.5; } -/* line 906, ../../../scss/_app_styles.scss */ +/* line 905, ../../../scss/_app_styles.scss */ .card > * p { color: #555; height: 80px; background-repeat: no-repeat; font-size: 80%; } -/* line 912, ../../../scss/_app_styles.scss */ +/* line 911, ../../../scss/_app_styles.scss */ .card > * .th { margin: 20px auto; width: 80px; @@ -24567,23 +24566,23 @@ article h1:not(.subheader) div input:hover { overflow: hidden; display: none; } -/* line 918, ../../../scss/_app_styles.scss */ +/* line 917, ../../../scss/_app_styles.scss */ .card > * .th:hover { width: 150px; height: 150px; } -/* line 922, ../../../scss/_app_styles.scss */ +/* line 921, ../../../scss/_app_styles.scss */ .card > * .th img { width: 100%; } -/* line 926, ../../../scss/_app_styles.scss */ +/* line 925, ../../../scss/_app_styles.scss */ .card > * footer { margin-top: 1rem; font-size: 70%; clear: both; color: #e01818; } -/* line 931, ../../../scss/_app_styles.scss */ +/* line 930, ../../../scss/_app_styles.scss */ .card > * footer .age { display: none; position: absolute; @@ -24593,7 +24592,7 @@ article h1:not(.subheader) div input:hover { width: 100%; } -/* line 942, ../../../scss/_app_styles.scss */ +/* line 941, ../../../scss/_app_styles.scss */ .edit-card { position: relative; background-color: white; @@ -24602,40 +24601,40 @@ article h1:not(.subheader) div input:hover { } /* Content Tabs */ -/* line 955, ../../../scss/_app_styles.scss */ +/* line 954, ../../../scss/_app_styles.scss */ article .tabs { display: inline-block; } -/* line 957, ../../../scss/_app_styles.scss */ +/* line 956, ../../../scss/_app_styles.scss */ article .tabs dd a { border-radius: 4px; border: 1px transparent; } -/* line 961, ../../../scss/_app_styles.scss */ +/* line 960, ../../../scss/_app_styles.scss */ article .tabs dd.active a { color: #03abf7; border: 1px solid; } -/* line 965, ../../../scss/_app_styles.scss */ +/* line 964, ../../../scss/_app_styles.scss */ article .tabs dd:hover a { color: #03abf7; } -/* line 969, ../../../scss/_app_styles.scss */ +/* line 968, ../../../scss/_app_styles.scss */ article .tabs i { margin-right: 5px; font-size: 1.6rem; } -/* line 973, ../../../scss/_app_styles.scss */ +/* line 972, ../../../scss/_app_styles.scss */ article .tabs span { font-size: 17px; vertical-align: text-bottom; } -/* line 979, ../../../scss/_app_styles.scss */ +/* line 978, ../../../scss/_app_styles.scss */ article section.content { border: 1px solid #eee; } -/* line 986, ../../../scss/_app_styles.scss */ +/* line 985, ../../../scss/_app_styles.scss */ .card > div:hover { box-shadow: 0 0 10px lightgray; transition: 0.9s; @@ -24644,31 +24643,31 @@ article section.content { } /* Default card */ -/* line 994, ../../../scss/_app_styles.scss */ +/* line 993, ../../../scss/_app_styles.scss */ .card > :hover .label, .card > :hover .label-list:empty:before { opacity: 1; } -/* line 999, ../../../scss/_app_styles.scss */ +/* line 998, ../../../scss/_app_styles.scss */ .gallery .card .th { display: block; } /* Inline label list */ -/* line 1007, ../../../scss/_app_styles.scss */ +/* line 1006, ../../../scss/_app_styles.scss */ .label-list { display: inline-block; text-align: left; margin-bottom: 0.1rem; } -/* line 1011, ../../../scss/_app_styles.scss */ +/* line 1010, ../../../scss/_app_styles.scss */ .label-list:empty:before { content: "UNTAGGED"; opacity: 0.2 !important; padding: 2px; background-color: transparent; } -/* line 1019, ../../../scss/_app_styles.scss */ +/* line 1018, ../../../scss/_app_styles.scss */ .label-list .label, .label-list .label-list:empty:before { background-color: transparent; padding: 2px; @@ -24676,20 +24675,20 @@ article section.content { /*************************** 2. Custom CSS overrides ***********************/ /* Content area */ -/* line 1028, ../../../scss/_app_styles.scss */ +/* line 1027, ../../../scss/_app_styles.scss */ article { padding-bottom: 1rem; } -/* line 1032, ../../../scss/_app_styles.scss */ +/* line 1031, ../../../scss/_app_styles.scss */ article > header { border-bottom: 1px solid #ddd; } -/* line 1036, ../../../scss/_app_styles.scss */ +/* line 1035, ../../../scss/_app_styles.scss */ article > footer { border-top: 1px dotted #ddd; } -/* line 1048, ../../../scss/_app_styles.scss */ +/* line 1047, ../../../scss/_app_styles.scss */ textarea { min-height: 6rem; } @@ -24710,39 +24709,39 @@ textarea { }*/ /*************************** 3. Custom CSS Below ***********************/ /*CSS fix for tables generated via orgitdown*/ -/* line 1068, ../../../scss/_app_styles.scss */ +/* line 1067, ../../../scss/_app_styles.scss */ #content table td, #content colgroup col { float: none !important; } -/* line 1073, ../../../scss/_app_styles.scss */ +/* line 1072, ../../../scss/_app_styles.scss */ .user { color: inherit; } -/* line 1077, ../../../scss/_app_styles.scss */ +/* line 1076, ../../../scss/_app_styles.scss */ .user i { margin-right: 3px; } -/* line 1080, ../../../scss/_app_styles.scss */ +/* line 1079, ../../../scss/_app_styles.scss */ .user:hover i { opacity: 1; } -/* line 1084, ../../../scss/_app_styles.scss */ +/* line 1083, ../../../scss/_app_styles.scss */ a.node { display: block; } -/* line 1088, ../../../scss/_app_styles.scss */ +/* line 1087, ../../../scss/_app_styles.scss */ .button.edit { margin-bottom: 0; } /************ Forms **************/ /* Node edit */ -/* line 1096, ../../../scss/_app_styles.scss */ +/* line 1095, ../../../scss/_app_styles.scss */ input.node-title { font-size: 3rem; height: 4rem; @@ -24750,13 +24749,13 @@ input.node-title { } /* view-graph in node_details_base.html */ -/* line 1103, ../../../scss/_app_styles.scss */ +/* line 1102, ../../../scss/_app_styles.scss */ .graph-height { height: 70%; } /*for graph and location*/ -/* line 1108, ../../../scss/_app_styles.scss */ +/* line 1107, ../../../scss/_app_styles.scss */ .graph-div { height: 90%; width: -webkit-calc(100% - 10px); @@ -24770,13 +24769,13 @@ input.node-title { } /*for graph and location*/ -/* line 1118, ../../../scss/_app_styles.scss */ +/* line 1117, ../../../scss/_app_styles.scss */ .graph-div h3 { border-bottom: 2px inset #154534; padding: 0.25em 0; } -/* line 1123, ../../../scss/_app_styles.scss */ +/* line 1122, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal, #view-map-edit-widget .close-reveal-modal { z-index: 1; background-color: captiontext; @@ -24787,7 +24786,7 @@ input.node-title { box-shadow: 0 1px 10px 2px #A9A9A9; } -/* line 1134, ../../../scss/_app_styles.scss */ +/* line 1133, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal:hover, #view-map-edit-widget .close-reveal-modal:hover { background-color: white; border-radius: 30px; @@ -24800,7 +24799,7 @@ input.node-title { /****************** CUSTOM *********************/ /* UI Button */ -/* line 1149, ../../../scss/_app_styles.scss */ +/* line 1148, ../../../scss/_app_styles.scss */ .ui.button { margin-right: 0.5rem; border: 1px solid rgba(0, 0, 0, 0.2); @@ -24810,102 +24809,102 @@ input.node-title { padding: 0.5vw 0.75vw; z-index: 500; } -/* line 1160, ../../../scss/_app_styles.scss */ +/* line 1159, ../../../scss/_app_styles.scss */ .ui.button label { color: #666; } -/* line 1163, ../../../scss/_app_styles.scss */ +/* line 1162, ../../../scss/_app_styles.scss */ .ui.button small { margin-left: 2px; display: inline; } -/* line 1167, ../../../scss/_app_styles.scss */ +/* line 1166, ../../../scss/_app_styles.scss */ .ui.button:hover, .ui.button:active { border-color: rgba(255, 255, 255, 0.2); background-color: rgba(0, 0, 0, 0.9); } -/* line 1170, ../../../scss/_app_styles.scss */ +/* line 1169, ../../../scss/_app_styles.scss */ .ui.button:hover label, .ui.button:active label { color: #ddd; } -/* line 1173, ../../../scss/_app_styles.scss */ +/* line 1172, ../../../scss/_app_styles.scss */ .ui.button:hover small, .ui.button:active small { display: inline; } -/* line 1176, ../../../scss/_app_styles.scss */ +/* line 1175, ../../../scss/_app_styles.scss */ .ui.button:hover:focus, .ui.button:active:focus { font-weight: bold; } -/* line 1185, ../../../scss/_app_styles.scss */ +/* line 1184, ../../../scss/_app_styles.scss */ aside#help h4 { color: black; } -/* line 1188, ../../../scss/_app_styles.scss */ +/* line 1187, ../../../scss/_app_styles.scss */ aside#help p, aside#help h5, aside#help h6 { color: #ddd; padding: 0.3rem 0.9375rem; } -/* line 1195, ../../../scss/_app_styles.scss */ +/* line 1194, ../../../scss/_app_styles.scss */ .align-center { margin: 0 auto; display: block; } -/* line 1201, ../../../scss/_app_styles.scss */ +/* line 1200, ../../../scss/_app_styles.scss */ #profile-img { height: 40px; margin-right: 5px; } -/* line 1209, ../../../scss/_app_styles.scss */ +/* line 1208, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin-bottom: 20px; } -/* line 1213, ../../../scss/_app_styles.scss */ +/* line 1212, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 1219, ../../../scss/_app_styles.scss */ +/* line 1218, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 1222, ../../../scss/_app_styles.scss */ +/* line 1221, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 1226, ../../../scss/_app_styles.scss */ +/* line 1225, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 1231, ../../../scss/_app_styles.scss */ +/* line 1230, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 1238, ../../../scss/_app_styles.scss */ +/* line 1237, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 1242, ../../../scss/_app_styles.scss */ +/* line 1241, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 1247, ../../../scss/_app_styles.scss */ +/* line 1246, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 1253, ../../../scss/_app_styles.scss */ +/* line 1252, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -24914,16 +24913,16 @@ aside#help p, aside#help h5, aside#help h6 { border-top: 1px solid #B1B1B1; width: 80%; } -/* line 1262, ../../../scss/_app_styles.scss */ +/* line 1261, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 1267, ../../../scss/_app_styles.scss */ +/* line 1266, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 1270, ../../../scss/_app_styles.scss */ +/* line 1269, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { color: #ffffff !important; height: 2em; @@ -24931,7 +24930,7 @@ aside#help p, aside#help h5, aside#help h6 { padding-left: 10px; line-height: 1.5em; } -/* line 1280, ../../../scss/_app_styles.scss */ +/* line 1279, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -24941,12 +24940,12 @@ aside#help p, aside#help h5, aside#help h6 { border-radius: 0px 0px 5px 5px; /*background-color: #f2f2f2;*/ } -/* line 1289, ../../../scss/_app_styles.scss */ +/* line 1288, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 1295, ../../../scss/_app_styles.scss */ +/* line 1294, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -24972,7 +24971,7 @@ aside#help p, aside#help h5, aside#help h6 { } }*/ /* Simple Card CSS*/ -/* line 1323, ../../../scss/_app_styles.scss */ +/* line 1322, ../../../scss/_app_styles.scss */ .scard { background: #FFF; border: 1px solid #AAA; @@ -24984,12 +24983,12 @@ aside#help p, aside#help h5, aside#help h6 { height: 9rem; /*float:left;*/ } -/* line 1332, ../../../scss/_app_styles.scss */ +/* line 1331, ../../../scss/_app_styles.scss */ .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1338, ../../../scss/_app_styles.scss */ +/* line 1337, ../../../scss/_app_styles.scss */ .scard .scard_header { text-align: center; position: fixed; @@ -25007,7 +25006,7 @@ aside#help p, aside#help h5, aside#help h6 { font-weight: bold; } -/* line 1355, ../../../scss/_app_styles.scss */ +/* line 1354, ../../../scss/_app_styles.scss */ .scard-content { height: 2.7em; padding: 0.5rem; @@ -25020,7 +25019,7 @@ aside#help p, aside#help h5, aside#help h6 { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 1366, ../../../scss/_app_styles.scss */ +/* line 1365, ../../../scss/_app_styles.scss */ .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; @@ -25030,7 +25029,7 @@ aside#help p, aside#help h5, aside#help h6 { text-align: center; } -/* line 1379, ../../../scss/_app_styles.scss */ +/* line 1378, ../../../scss/_app_styles.scss */ .scard-action { height: height; font-size: 0.6em; @@ -25044,7 +25043,7 @@ aside#help p, aside#help h5, aside#help h6 { background-color: #CCCCCC; } -/* line 1394, ../../../scss/_app_styles.scss */ +/* line 1393, ../../../scss/_app_styles.scss */ .scard-desc { font-size: 0.7em; color: #333333; @@ -25060,13 +25059,13 @@ aside#help p, aside#help h5, aside#help h6 { display-inline: block; } -/* line 1409, ../../../scss/_app_styles.scss */ +/* line 1408, ../../../scss/_app_styles.scss */ p { margin: 0px; padding: 10px; } -/* line 1414, ../../../scss/_app_styles.scss */ +/* line 1413, ../../../scss/_app_styles.scss */ .scard-image { padding: 0px; margin: 0px; @@ -25077,7 +25076,7 @@ p { overflow: hidden; background-color: #f2f2f2; } -/* line 1423, ../../../scss/_app_styles.scss */ +/* line 1422, ../../../scss/_app_styles.scss */ .scard-image img { border-radius: 2px 2px 0 0; display: block; @@ -25085,7 +25084,7 @@ p { opacity: 0.9; height: 100%; } -/* line 1432, ../../../scss/_app_styles.scss */ +/* line 1431, ../../../scss/_app_styles.scss */ .scard-image i { font-size: 7rem; opacity: 0.75; @@ -25099,83 +25098,83 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1446, ../../../scss/_app_styles.scss */ +/* line 1445, ../../../scss/_app_styles.scss */ .scard-image i.common-icon:before { content: "\f1fb"; } -/* line 1449, ../../../scss/_app_styles.scss */ +/* line 1448, ../../../scss/_app_styles.scss */ .scard-image i.file:before { content: "\f18e"; } -/* line 1452, ../../../scss/_app_styles.scss */ +/* line 1451, ../../../scss/_app_styles.scss */ .scard-image i.page:before { content: "\f18e"; } -/* line 1455, ../../../scss/_app_styles.scss */ +/* line 1454, ../../../scss/_app_styles.scss */ .scard-image i.collection:before { content: "\f18a"; } -/* line 1458, ../../../scss/_app_styles.scss */ +/* line 1457, ../../../scss/_app_styles.scss */ .scard-image i.documents:before { content: "\f18b"; } -/* line 1461, ../../../scss/_app_styles.scss */ +/* line 1460, ../../../scss/_app_styles.scss */ .scard-image i.pdf:before { content: "\f18b"; } -/* line 1464, ../../../scss/_app_styles.scss */ +/* line 1463, ../../../scss/_app_styles.scss */ .scard-image i.text:before { content: "\f18e"; } -/* line 1467, ../../../scss/_app_styles.scss */ +/* line 1466, ../../../scss/_app_styles.scss */ .scard-image i.interactives:before { content: "\f1b2"; } -/* line 1470, ../../../scss/_app_styles.scss */ +/* line 1469, ../../../scss/_app_styles.scss */ .scard-image i.ebooks:before { content: "\f11e"; } -/* line 1473, ../../../scss/_app_styles.scss */ +/* line 1472, ../../../scss/_app_styles.scss */ .scard-image i.images:before { content: "\f125"; } -/* line 1476, ../../../scss/_app_styles.scss */ +/* line 1475, ../../../scss/_app_styles.scss */ .scard-image i.audios:before, .scard-image i.audio:before { content: "\f17b"; } -/* line 1479, ../../../scss/_app_styles.scss */ +/* line 1478, ../../../scss/_app_styles.scss */ .scard-image i.videos:before, .scard-image i.video:before { content: "\f20e"; } -/* line 1485, ../../../scss/_app_styles.scss */ +/* line 1484, ../../../scss/_app_styles.scss */ .published.scard-action { background: #A6D9CB; } -/* line 1489, ../../../scss/_app_styles.scss */ +/* line 1488, ../../../scss/_app_styles.scss */ .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 1495, ../../../scss/_app_styles.scss */ +/* line 1494, ../../../scss/_app_styles.scss */ .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1500, ../../../scss/_app_styles.scss */ +/* line 1499, ../../../scss/_app_styles.scss */ .moderation.scard-action { border-color: transparent #03a9f4 transparent transparent; border-color: rgba(255, 255, 255, 0) #03a9f4 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1504, ../../../scss/_app_styles.scss */ +/* line 1503, ../../../scss/_app_styles.scss */ .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 1508, ../../../scss/_app_styles.scss */ +/* line 1507, ../../../scss/_app_styles.scss */ .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -25186,7 +25185,7 @@ p { /* End Simple Card CSS*/ /* Customized Off-Canvas */ -/* line 1646, ../../../scss/_app_styles.scss */ +/* line 1645, ../../../scss/_app_styles.scss */ #help-canvas-menu { position: fixed; top: 52px; @@ -25199,26 +25198,26 @@ p { height: 100%; } -/* line 1657, ../../../scss/_app_styles.scss */ +/* line 1656, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded { left: 0 !important; z-index: 100000000; left: 150px; } -/* line 1662, ../../../scss/_app_styles.scss */ +/* line 1661, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded .help-button { right: 80px; z-index: -1; } -/* line 1667, ../../../scss/_app_styles.scss */ +/* line 1666, ../../../scss/_app_styles.scss */ #help-canvas-menu.animating .help-button { -webkit-animation: shake 400ms; animation: shake 400ms; } -/* line 1671, ../../../scss/_app_styles.scss */ +/* line 1670, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button { position: absolute; -webkit-transform: rotate(-90deg); @@ -25245,12 +25244,12 @@ p { border-top-right-radius: 5px; } -/* line 1697, ../../../scss/_app_styles.scss */ +/* line 1696, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button-text { font-size: 18px; } -/* line 1700, ../../../scss/_app_styles.scss */ +/* line 1699, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button .text { color: #f9f9f9; letter-spacing: .1em; @@ -25259,7 +25258,7 @@ p { text-shadow: 0 0 1px rgba(0, 0, 0, 0.35); } -/* line 1709, ../../../scss/_app_styles.scss */ +/* line 1708, ../../../scss/_app_styles.scss */ #help-canvas-menu .mainContainer { background: #fff; /*-webkit-box-shadow:3px 3px 17px -1px #7b7b7b; @@ -25273,7 +25272,7 @@ p { } /* End of Customized Off-Canvas */ -/* line 1727, ../../../scss/_app_styles.scss */ +/* line 1726, ../../../scss/_app_styles.scss */ .rcard { overflow: hidden; color: #272727; @@ -25281,56 +25280,56 @@ p { background-color: #f5f5f5; margin: 5px; } -/* line 1738, ../../../scss/_app_styles.scss */ +/* line 1737, ../../../scss/_app_styles.scss */ .rcard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1743, ../../../scss/_app_styles.scss */ +/* line 1742, ../../../scss/_app_styles.scss */ .rcard .title { font-size: 1.1rem; font-weight: bold; } -/* line 1749, ../../../scss/_app_styles.scss */ +/* line 1748, ../../../scss/_app_styles.scss */ .rcard .content { padding: 0.5rem 2rem; border-radius: 0 0 2px 2px; overflow: hidden; height: 7.25rem; } -/* line 1756, ../../../scss/_app_styles.scss */ +/* line 1755, ../../../scss/_app_styles.scss */ .rcard .content .slick-slider { margin-bottom: 0; } -/* line 1760, ../../../scss/_app_styles.scss */ +/* line 1759, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev { left: 0.25rem; } -/* line 1763, ../../../scss/_app_styles.scss */ +/* line 1762, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev:before { color: #ccc; } -/* line 1769, ../../../scss/_app_styles.scss */ +/* line 1768, ../../../scss/_app_styles.scss */ .rcard .content .slick-next { right: 0.25rem; } -/* line 1772, ../../../scss/_app_styles.scss */ +/* line 1771, ../../../scss/_app_styles.scss */ .rcard .content .slick-next:before { color: #ccc; } -/* line 1778, ../../../scss/_app_styles.scss */ +/* line 1777, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title { width: 100%; border-bottom: 1px solid #808080; line-height: 0.25em; margin: 10px 0 20px; } -/* line 1784, ../../../scss/_app_styles.scss */ +/* line 1783, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title small { padding: 0 10px; background-color: #f5f5f5; } -/* line 1791, ../../../scss/_app_styles.scss */ +/* line 1790, ../../../scss/_app_styles.scss */ .rcard .action { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -25338,15 +25337,15 @@ p { font-size: small; height: 2rem; } -/* line 1798, ../../../scss/_app_styles.scss */ +/* line 1797, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection { opacity: 0.5; } -/* line 1801, ../../../scss/_app_styles.scss */ +/* line 1800, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection:hover { opacity: 1; } -/* line 1815, ../../../scss/_app_styles.scss */ +/* line 1814, ../../../scss/_app_styles.scss */ .rcard .image { position: relative; background-color: #ccc; @@ -25354,7 +25353,7 @@ p { height: 8em; overflow: hidden; } -/* line 1825, ../../../scss/_app_styles.scss */ +/* line 1824, ../../../scss/_app_styles.scss */ .rcard .image .title { position: absolute; bottom: 0; @@ -25366,7 +25365,7 @@ p { text-transform: uppercase; text-shadow: 0px 0px 0.5px rgba(0, 0, 0, 0.5); } -/* line 1838, ../../../scss/_app_styles.scss */ +/* line 1837, ../../../scss/_app_styles.scss */ .rcard .image img { border-radius: 2px 2px 0 0; display: block; @@ -25376,14 +25375,14 @@ p { filter: brightness(0.75); -webkit-filter: brightness(0.75); } -/* line 1850, ../../../scss/_app_styles.scss */ +/* line 1849, ../../../scss/_app_styles.scss */ .rcard .image img:hover { filter: brightness(1); -webkit-filter: brightness(1); transform: translate3d(0, 0, 0); transition: all 1.5s ease; } -/* line 1859, ../../../scss/_app_styles.scss */ +/* line 1858, ../../../scss/_app_styles.scss */ .rcard .image i { font-size: 7rem; opacity: 0.75; @@ -25397,51 +25396,51 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1876, ../../../scss/_app_styles.scss */ +/* line 1875, ../../../scss/_app_styles.scss */ .rcard .image i.file:before { content: "\f18e"; } -/* line 1877, ../../../scss/_app_styles.scss */ +/* line 1876, ../../../scss/_app_styles.scss */ .rcard .image i.page:before { content: "\f18e"; } -/* line 1878, ../../../scss/_app_styles.scss */ +/* line 1877, ../../../scss/_app_styles.scss */ .rcard .image i.collection:before { content: "\f18a"; } -/* line 1880, ../../../scss/_app_styles.scss */ +/* line 1879, ../../../scss/_app_styles.scss */ .rcard .image i.documents:before { content: "\f18b"; } -/* line 1881, ../../../scss/_app_styles.scss */ +/* line 1880, ../../../scss/_app_styles.scss */ .rcard .image i.pdf:before { content: "\f18b"; } -/* line 1882, ../../../scss/_app_styles.scss */ +/* line 1881, ../../../scss/_app_styles.scss */ .rcard .image i.text:before { content: "\f18e"; } -/* line 1883, ../../../scss/_app_styles.scss */ +/* line 1882, ../../../scss/_app_styles.scss */ .rcard .image i.interactives:before { content: "\f1b2"; } -/* line 1884, ../../../scss/_app_styles.scss */ +/* line 1883, ../../../scss/_app_styles.scss */ .rcard .image i.ebooks:before { content: "\f11e"; } -/* line 1885, ../../../scss/_app_styles.scss */ +/* line 1884, ../../../scss/_app_styles.scss */ .rcard .image i.images:before { content: "\f125"; } -/* line 1886, ../../../scss/_app_styles.scss */ +/* line 1885, ../../../scss/_app_styles.scss */ .rcard .image i.audios:before, .rcard .image i.audio:before { content: "\f17b"; } -/* line 1887, ../../../scss/_app_styles.scss */ +/* line 1886, ../../../scss/_app_styles.scss */ .rcard .image i.videos:before, .rcard .image i.video:before { content: "\f20e"; } -/* line 1890, ../../../scss/_app_styles.scss */ +/* line 1889, ../../../scss/_app_styles.scss */ .rcard .card-label { border-style: solid; border-width: 0 70px 40px 0; @@ -25454,59 +25453,59 @@ p { z-index: 1; opacity: 0.75; } -/* line 1903, ../../../scss/_app_styles.scss */ +/* line 1902, ../../../scss/_app_styles.scss */ .rcard .card-label { border-color: transparent #333 transparent transparent; border-color: rgba(255, 255, 255, 0) #333 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1908, ../../../scss/_app_styles.scss */ +/* line 1907, ../../../scss/_app_styles.scss */ .rcard .published.card-label { border-color: transparent #43AC6A transparent transparent; border-color: rgba(255, 255, 255, 0) #43AC6A rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1912, ../../../scss/_app_styles.scss */ +/* line 1911, ../../../scss/_app_styles.scss */ .rcard .published.card-label .label-text:before { content: "\221A"; margin-left: 5px; font-size: larger; } -/* line 1920, ../../../scss/_app_styles.scss */ +/* line 1919, ../../../scss/_app_styles.scss */ .rcard .draft.card-label { border-color: transparent #beccd2 transparent transparent; border-color: rgba(255, 255, 255, 0) #beccd2 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1924, ../../../scss/_app_styles.scss */ +/* line 1923, ../../../scss/_app_styles.scss */ .rcard .draft.card-label .label-text:before { content: "Draft"; } -/* line 1929, ../../../scss/_app_styles.scss */ +/* line 1928, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1933, ../../../scss/_app_styles.scss */ +/* line 1932, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label .label-text:before { content: "Deleted"; } -/* line 1938, ../../../scss/_app_styles.scss */ +/* line 1937, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label { border-color: transparent #03a9f4 transparent transparent; border-color: rgba(255, 255, 255, 0) #03a9f4 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1942, ../../../scss/_app_styles.scss */ +/* line 1941, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label .label-text:before { content: "Mod"; } -/* line 1945, ../../../scss/_app_styles.scss */ +/* line 1944, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label { border-color: transparent #000 transparent transparent; border-color: rgba(255, 255, 255, 0) #000 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1949, ../../../scss/_app_styles.scss */ +/* line 1948, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label .label-text:before { content: "hidden"; } -/* line 1952, ../../../scss/_app_styles.scss */ +/* line 1951, ../../../scss/_app_styles.scss */ .rcard .label-text { color: #fff; font-size: 0.75rem; @@ -25517,7 +25516,7 @@ p { transform: rotate(30deg); } -/* line 1966, ../../../scss/_app_styles.scss */ +/* line 1965, ../../../scss/_app_styles.scss */ .compulsory:after { content: '*'; color: red; @@ -25530,12 +25529,12 @@ p { background-repeat:repeat; background-image:url("/static/ndf/images/draft-watermark.png"); }*/ -/* line 1982, ../../../scss/_app_styles.scss */ +/* line 1981, ../../../scss/_app_styles.scss */ .text-gray { color: gray; } -/* line 1987, ../../../scss/_app_styles.scss */ +/* line 1986, ../../../scss/_app_styles.scss */ .repository-title { color: #D7D7D7; font-size: 1.1em; @@ -25548,7 +25547,7 @@ p { text-align: center; } -/* line 1999, ../../../scss/_app_styles.scss */ +/* line 1998, ../../../scss/_app_styles.scss */ .repository-desc { font-size: 1.1em; width: auto; @@ -25560,12 +25559,12 @@ p { margin-left: 4px; } -/* line 2010, ../../../scss/_app_styles.scss */ +/* line 2009, ../../../scss/_app_styles.scss */ .card-holder { padding-left: 2%; } -/* line 2014, ../../../scss/_app_styles.scss */ +/* line 2013, ../../../scss/_app_styles.scss */ .app-card-wrapper { position: relative; margin: auto; @@ -25575,14 +25574,14 @@ p { max-width: calc(70rem + 70px); } -/* line 2023, ../../../scss/_app_styles.scss */ +/* line 2022, ../../../scss/_app_styles.scss */ .app-card-container { display: inline-block; vertical-align: top; margin: 15px; } -/* line 2029, ../../../scss/_app_styles.scss */ +/* line 2028, ../../../scss/_app_styles.scss */ .app-card { width: 19rem; margin: 15px 20px; @@ -25593,7 +25592,7 @@ p { border: thin solid #D3D3D3; } -/* line 2039, ../../../scss/_app_styles.scss */ +/* line 2038, ../../../scss/_app_styles.scss */ .app-card:hover { box-shadow: 0px 0px 15px #808080; border: thin solid #D3D3D3; @@ -25601,26 +25600,26 @@ p { transition: all 0.6s ease 0s; } -/* line 2046, ../../../scss/_app_styles.scss */ +/* line 2045, ../../../scss/_app_styles.scss */ .app-card-icon { color: #4c4c4c; position: relative; font-size: 6em; } -/* line 2052, ../../../scss/_app_styles.scss */ +/* line 2051, ../../../scss/_app_styles.scss */ .app-card-title { padding-bottom: -1em; } -/* line 2056, ../../../scss/_app_styles.scss */ +/* line 2055, ../../../scss/_app_styles.scss */ .app-card-content { color: #4c4c4c; text-align: center; margin-top: 0.5cm; } -/* line 2063, ../../../scss/_app_styles.scss */ +/* line 2062, ../../../scss/_app_styles.scss */ .fullscreen-icon { display: none; } @@ -25636,58 +25635,58 @@ div.show-image:hover div.fullscreen-icon{ font-size:2em; }*/ -/* line 2082, ../../../scss/_app_styles.scss */ +/* line 2081, ../../../scss/_app_styles.scss */ .cke .cke_toolbox .cke_toolbar:last-child { float: right; } -/* line 2088, ../../../scss/_app_styles.scss */ +/* line 2087, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin: 0px 1em; } -/* line 2092, ../../../scss/_app_styles.scss */ +/* line 2091, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 2098, ../../../scss/_app_styles.scss */ +/* line 2097, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 2101, ../../../scss/_app_styles.scss */ +/* line 2100, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 2105, ../../../scss/_app_styles.scss */ +/* line 2104, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 2110, ../../../scss/_app_styles.scss */ +/* line 2109, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 2117, ../../../scss/_app_styles.scss */ +/* line 2116, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 2121, ../../../scss/_app_styles.scss */ +/* line 2120, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 2126, ../../../scss/_app_styles.scss */ +/* line 2125, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 2132, ../../../scss/_app_styles.scss */ +/* line 2131, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -25695,16 +25694,16 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 0em; border-top: 1px solid #B1B1B1; } -/* line 2140, ../../../scss/_app_styles.scss */ +/* line 2139, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 2145, ../../../scss/_app_styles.scss */ +/* line 2144, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 2148, ../../../scss/_app_styles.scss */ +/* line 2147, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { /*background-color: #3e3e3e;*/ color: #ececec !important; @@ -25714,7 +25713,7 @@ div.show-image:hover div.fullscreen-icon{ line-height: 1.5em; border-radius: 5px 5px 0px 0px; } -/* line 2158, ../../../scss/_app_styles.scss */ +/* line 2157, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -25723,12 +25722,12 @@ div.show-image:hover div.fullscreen-icon{ padding-left: 10px; border-radius: 0px 0px 5px 5px; } -/* line 2166, ../../../scss/_app_styles.scss */ +/* line 2165, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 2172, ../../../scss/_app_styles.scss */ +/* line 2171, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -25736,7 +25735,7 @@ div.show-image:hover div.fullscreen-icon{ /* Large desktop */ @media (min-width: 34em) { - /* line 2180, ../../../scss/_app_styles.scss */ + /* line 2179, ../../../scss/_app_styles.scss */ .container { max-width: 34rem; margin: 0px auto; @@ -25744,7 +25743,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 48em) { - /* line 2188, ../../../scss/_app_styles.scss */ + /* line 2187, ../../../scss/_app_styles.scss */ .container { max-width: 45rem; margin: 0px auto; @@ -25752,7 +25751,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 62em) { - /* line 2196, ../../../scss/_app_styles.scss */ + /* line 2195, ../../../scss/_app_styles.scss */ .container { max-width: 60rem; margin: 0px auto; @@ -25760,20 +25759,20 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 75em) { - /* line 2204, ../../../scss/_app_styles.scss */ + /* line 2203, ../../../scss/_app_styles.scss */ .container { max-width: 72.25rem; margin: 0px auto; } } -/* line 2210, ../../../scss/_app_styles.scss */ +/* line 2209, ../../../scss/_app_styles.scss */ .course-page { position: relative; background-size: 100% 100%; height: 100%; margin-top: 10px; } -/* line 2216, ../../../scss/_app_styles.scss */ +/* line 2215, ../../../scss/_app_styles.scss */ .course-page > .container { background-color: #fff; padding: 0px 0px; @@ -25781,7 +25780,7 @@ div.show-image:hover div.fullscreen-icon{ box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3); } -/* line 2224, ../../../scss/_app_styles.scss */ +/* line 2223, ../../../scss/_app_styles.scss */ .course-page-opacity { height: 100%; width: 100%; @@ -25795,12 +25794,12 @@ div.show-image:hover div.fullscreen-icon{ background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 2238, ../../../scss/_app_styles.scss */ +/* line 2237, ../../../scss/_app_styles.scss */ #envelop-cover { /*background: #A0148E;*/ height: 250px; } -/* line 2242, ../../../scss/_app_styles.scss */ +/* line 2241, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header { font-size: 35px; font-weight: 500; @@ -25810,11 +25809,11 @@ div.show-image:hover div.fullscreen-icon{ height: 250px; color: #fff; } -/* line 2251, ../../../scss/_app_styles.scss */ +/* line 2250, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header label { color: #fff; } -/* line 2255, ../../../scss/_app_styles.scss */ +/* line 2254, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background, #envelop-cover .course-page-header .course-header-background-layer { position: absolute; left: 0px; @@ -25823,17 +25822,17 @@ div.show-image:hover div.fullscreen-icon{ bottom: 0px; height: 250px; } -/* line 2262, ../../../scss/_app_styles.scss */ +/* line 2261, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background img, #envelop-cover .course-page-header .course-header-background-layer img { width: auto; height: 250px; } -/* line 2268, ../../../scss/_app_styles.scss */ +/* line 2267, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background-layer { background-color: rgba(0, 0, 0, 0.5); opacity: 0; } -/* line 2273, ../../../scss/_app_styles.scss */ +/* line 2272, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings { margin-left: 15px; position: absolute; @@ -25841,20 +25840,20 @@ div.show-image:hover div.fullscreen-icon{ bottom: 55px; /*width: 170px;*/ } -/* line 2279, ../../../scss/_app_styles.scss */ +/* line 2278, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul { box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); } -/* line 2281, ../../../scss/_app_styles.scss */ +/* line 2280, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul > li:hover { background: rgba(0, 0, 0, 0.9); } -/* line 2285, ../../../scss/_app_styles.scss */ +/* line 2284, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a { font-size: 15px; color: #737373; } -/* line 2286, ../../../scss/_app_styles.scss */ +/* line 2285, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child { background: rgba(50, 50, 50, 0.8); padding: 9px 12px 9px 10px; @@ -25862,11 +25861,11 @@ div.show-image:hover div.fullscreen-icon{ font-size: 12px; margin: 0px; } -/* line 2292, ../../../scss/_app_styles.scss */ +/* line 2291, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child > i { margin-right: 5px; } -/* line 2299, ../../../scss/_app_styles.scss */ +/* line 2298, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span { background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.7); @@ -25877,30 +25876,30 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; border-radius: 3px; } -/* line 2309, ../../../scss/_app_styles.scss */ +/* line 2308, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span i { font-size: 20px; } -/* line 2316, ../../../scss/_app_styles.scss */ +/* line 2315, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a { font-size: 15px; color: #737373; } -/* line 2319, ../../../scss/_app_styles.scss */ +/* line 2318, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a i { font-size: 18px; } -/* line 2326, ../../../scss/_app_styles.scss */ +/* line 2325, ../../../scss/_app_styles.scss */ #envelop-cover .heading { letter-spacing: -1.2px; font-weight: 400; } -/* line 2331, ../../../scss/_app_styles.scss */ +/* line 2330, ../../../scss/_app_styles.scss */ #envelop-cover .meta { line-height: 2.1em; padding-left: 14px; } -/* line 2335, ../../../scss/_app_styles.scss */ +/* line 2334, ../../../scss/_app_styles.scss */ #envelop-cover .meta .key { color: #A7A4A4; font-weight: 500; @@ -25910,27 +25909,27 @@ div.show-image:hover div.fullscreen-icon{ vertical-align: top; margin-right: 10px; } -/* line 2345, ../../../scss/_app_styles.scss */ +/* line 2344, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value { display: inline-block; } -/* line 2348, ../../../scss/_app_styles.scss */ +/* line 2347, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .name { color: #000; } -/* line 2352, ../../../scss/_app_styles.scss */ +/* line 2351, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .time { font-size: 13px; font-weight: 300; color: #000; } -/* line 2359, ../../../scss/_app_styles.scss */ +/* line 2358, ../../../scss/_app_styles.scss */ #envelop-cover .course-title { position: absolute; bottom: 50px; left: 5px; } -/* line 2364, ../../../scss/_app_styles.scss */ +/* line 2363, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs { border: 0 solid silver; border-width: 0px 0px 0px 0px; @@ -25942,7 +25941,7 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; background-color: rgba(255, 255, 255, 0.8); } -/* line 2375, ../../../scss/_app_styles.scss */ +/* line 2374, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title { border: 0 solid silver; border-width: 0 0 0px 0px; @@ -25952,7 +25951,7 @@ div.show-image:hover div.fullscreen-icon{ display: inline-block; border-top: 5px solid transparent; } -/* line 2384, ../../../scss/_app_styles.scss */ +/* line 2383, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title a { color: #6F669E; font-weight: 600; @@ -25960,25 +25959,25 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: -0.3px; padding: 0rem 0.8rem 0.4rem; } -/* line 2392, ../../../scss/_app_styles.scss */ +/* line 2391, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active { border-width: 0px 0px 0px 0px; background: #FFFFFF; border-top: 5px solid #F11FD0; } -/* line 2396, ../../../scss/_app_styles.scss */ +/* line 2395, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active a { color: #6153AE; } -/* line 2409, ../../../scss/_app_styles.scss */ +/* line 2408, ../../../scss/_app_styles.scss */ .note-tags a { background: #ffebb2; padding: 0.2em 0.7em; display: inline-block; } -/* line 2416, ../../../scss/_app_styles.scss */ +/* line 2415, ../../../scss/_app_styles.scss */ .toggleButtons a { padding: 0.5em 1em; margin: 0px; @@ -25987,69 +25986,69 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid #B7B7B7; display: inline; } -/* line 2424, ../../../scss/_app_styles.scss */ +/* line 2423, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { margin-right: -3px; border-right: 0px solid #000; } -/* line 2428, ../../../scss/_app_styles.scss */ +/* line 2427, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { border-radius: 10px 0px 0px 10px; } -/* line 2431, ../../../scss/_app_styles.scss */ +/* line 2430, ../../../scss/_app_styles.scss */ .toggleButtons a:last-child { border-radius: 0px 10px 10px 0px; } -/* line 2434, ../../../scss/_app_styles.scss */ +/* line 2433, ../../../scss/_app_styles.scss */ .toggleButtons a.active { background-color: #908F8F; color: #fff; } -/* line 2441, ../../../scss/_app_styles.scss */ +/* line 2440, ../../../scss/_app_styles.scss */ .explore-header { line-height: 3em; } -/* line 2444, ../../../scss/_app_styles.scss */ +/* line 2443, ../../../scss/_app_styles.scss */ .explore-header > div { vertical-align: middle; display: inline-block; } -/* line 2448, ../../../scss/_app_styles.scss */ +/* line 2447, ../../../scss/_app_styles.scss */ .explore-header .heading { font-size: 2em; } -/* line 2461, ../../../scss/_app_styles.scss */ +/* line 2460, ../../../scss/_app_styles.scss */ #envelop-content { /*background-color: #fff;*/ padding: 0px 10px; overflow-x: hidden; /* For accordian in the mobile view*/ } -/* line 2467, ../../../scss/_app_styles.scss */ +/* line 2466, ../../../scss/_app_styles.scss */ #envelop-content .accordion { margin-left: 0px; } -/* line 2471, ../../../scss/_app_styles.scss */ +/* line 2470, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation a { background-color: #DEDEDE; } -/* line 2474, ../../../scss/_app_styles.scss */ +/* line 2473, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation.active a { background-color: #fff; } -/* line 2481, ../../../scss/_app_styles.scss */ +/* line 2480, ../../../scss/_app_styles.scss */ #envelop-content > div > .tabs-content > .content { background: #FFFFFF; padding: 1em; } -/* line 2488, ../../../scss/_app_styles.scss */ +/* line 2487, ../../../scss/_app_styles.scss */ #envelop-content .course-book #course-dashboard { padding: 0px; } -/* line 2496, ../../../scss/_app_styles.scss */ +/* line 2495, ../../../scss/_app_styles.scss */ .course-overview-container { /*.about-course-heading { display: block; @@ -26084,23 +26083,23 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; }*/ } -/* line 2497, ../../../scss/_app_styles.scss */ +/* line 2496, ../../../scss/_app_styles.scss */ .course-overview-container .course-overview > .columns { padding: 0px 10px; } -/* line 2500, ../../../scss/_app_styles.scss */ +/* line 2499, ../../../scss/_app_styles.scss */ .course-overview-container h5 { text-transform: uppercase; } -/* line 2503, ../../../scss/_app_styles.scss */ +/* line 2502, ../../../scss/_app_styles.scss */ .course-overview-container .correct-count { color: #367714; } -/* line 2506, ../../../scss/_app_styles.scss */ +/* line 2505, ../../../scss/_app_styles.scss */ .course-overview-container .incorrect-count { color: #9b0000; } -/* line 2509, ../../../scss/_app_styles.scss */ +/* line 2508, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-heading { text-transform: uppercase; font-size: 12px; @@ -26109,45 +26108,45 @@ div.show-image:hover div.fullscreen-icon{ color: #8E8E8E; display: block; } -/* line 2517, ../../../scss/_app_styles.scss */ +/* line 2516, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-count { font-size: 30px; font-weight: 500; letter-spacing: 0.5px; display: block; } -/* line 2523, ../../../scss/_app_styles.scss */ +/* line 2522, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session { border-bottom: 1px solid #ccc; margin-bottom: 12px; padding-bottom: 15px; } -/* line 2528, ../../../scss/_app_styles.scss */ +/* line 2527, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session h5, .course-overview-container .ongoing-session h3 { color: #2b78e4; } -/* line 2531, ../../../scss/_app_styles.scss */ +/* line 2530, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session button { font-size: 14px; padding: 7px; margin: 0px; background-color: #2B78E4; } -/* line 2539, ../../../scss/_app_styles.scss */ +/* line 2538, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > h5 { color: #888; } -/* line 2542, ../../../scss/_app_styles.scss */ +/* line 2541, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > .row { margin: 10px 0px; } -/* line 2545, ../../../scss/_app_styles.scss */ +/* line 2544, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2550, ../../../scss/_app_styles.scss */ +/* line 2549, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26156,17 +26155,17 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2558, ../../../scss/_app_styles.scss */ +/* line 2557, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2568, ../../../scss/_app_styles.scss */ +/* line 2567, ../../../scss/_app_styles.scss */ .course-overview-container .course-notif-logs ul { list-style: none; } -/* line 2572, ../../../scss/_app_styles.scss */ +/* line 2571, ../../../scss/_app_styles.scss */ .course-overview-container .course-section { border: 1px solid #ccc; padding: 10px; @@ -26174,11 +26173,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 40px 0px; position: relative; } -/* line 2579, ../../../scss/_app_styles.scss */ +/* line 2578, ../../../scss/_app_styles.scss */ .course-overview-container .course-section > .row { margin: 20px 0px; } -/* line 2583, ../../../scss/_app_styles.scss */ +/* line 2582, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-heading { text-transform: uppercase; font-weight: 600; @@ -26188,7 +26187,7 @@ div.show-image:hover div.fullscreen-icon{ margin: 2px 0px 15px; color: #888; } -/* line 2593, ../../../scss/_app_styles.scss */ +/* line 2592, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-icon { position: absolute; font-size: 40px; @@ -26197,58 +26196,58 @@ div.show-image:hover div.fullscreen-icon{ color: #aaa; background: #fff; } -/* line 2617, ../../../scss/_app_styles.scss */ +/* line 2616, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning { background-color: #fffdd7; } -/* line 2619, ../../../scss/_app_styles.scss */ +/* line 2618, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning > h5 { color: #c09100; } -/* line 2622, ../../../scss/_app_styles.scss */ +/* line 2621, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning i { padding: 10px; margin-right: 5px; color: #c09100; } -/* line 2627, ../../../scss/_app_styles.scss */ +/* line 2626, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning a { text-decoration: underline; } -/* line 2631, ../../../scss/_app_styles.scss */ +/* line 2630, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data { margin: 20px 0px; } -/* line 2635, ../../../scss/_app_styles.scss */ +/* line 2634, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 2638, ../../../scss/_app_styles.scss */ +/* line 2637, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 2645, ../../../scss/_app_styles.scss */ +/* line 2644, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table { width: 100%; margin: 15px 0px; } -/* line 2649, ../../../scss/_app_styles.scss */ +/* line 2648, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table tr { border: none; } -/* line 2653, ../../../scss/_app_styles.scss */ +/* line 2652, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table .progress .merter-val { margin-left: 5px; } -/* line 2691, ../../../scss/_app_styles.scss */ +/* line 2690, ../../../scss/_app_styles.scss */ .about-course { background-color: #fff; padding: 10px 23px; } -/* line 2694, ../../../scss/_app_styles.scss */ +/* line 2693, ../../../scss/_app_styles.scss */ .about-course > h5 { text-transform: uppercase; font-weight: 600; @@ -26259,7 +26258,7 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 5px; } -/* line 2705, ../../../scss/_app_styles.scss */ +/* line 2704, ../../../scss/_app_styles.scss */ .course-desc { letter-spacing: 0.7px; font-weight: 400; @@ -26269,7 +26268,7 @@ div.show-image:hover div.fullscreen-icon{ margin-top: 5px; } -/* line 2713, ../../../scss/_app_styles.scss */ +/* line 2712, ../../../scss/_app_styles.scss */ .course-highlight { letter-spacing: 0.7px; font-weight: 400; @@ -26280,25 +26279,25 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 4px; margin-bottom: 5px; } -/* line 2723, ../../../scss/_app_styles.scss */ +/* line 2722, ../../../scss/_app_styles.scss */ .course-highlight > span { color: #ce7869; } -/* line 2729, ../../../scss/_app_styles.scss */ +/* line 2728, ../../../scss/_app_styles.scss */ .icon-wid { font-size: 34px !important; color: #a2b1be; margin-right: 10px; } -/* line 2738, ../../../scss/_app_styles.scss */ +/* line 2737, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2743, ../../../scss/_app_styles.scss */ +/* line 2742, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26307,96 +26306,96 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2751, ../../../scss/_app_styles.scss */ +/* line 2750, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2760, ../../../scss/_app_styles.scss */ +/* line 2759, ../../../scss/_app_styles.scss */ .student-dashboard-header-container { background-color: #90F; padding: 10px 10px; height: 110px; width: 100%; } -/* line 2768, ../../../scss/_app_styles.scss */ +/* line 2767, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header img { height: 75px; width: 75px; vertical-align: top; margin: 0px 10px; } -/* line 2774, ../../../scss/_app_styles.scss */ +/* line 2773, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info { display: inline-block; } -/* line 2776, ../../../scss/_app_styles.scss */ +/* line 2775, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info > span { display: block; color: #fff; } -/* line 2780, ../../../scss/_app_styles.scss */ +/* line 2779, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-name { color: #fff; font-weight: 600; font-size: 22px; letter-spacing: 0.5px; } -/* line 2786, ../../../scss/_app_styles.scss */ +/* line 2785, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-overall-points { font-size: 26px; color: #ffff00; } -/* line 2799, ../../../scss/_app_styles.scss */ +/* line 2798, ../../../scss/_app_styles.scss */ .student-dashboard { background-color: #fff; padding: 10px; } -/* line 2804, ../../../scss/_app_styles.scss */ +/* line 2803, ../../../scss/_app_styles.scss */ .student-dashboard #course-act-logs > span { display: inline-block; vertical-align: top; } -/* line 2813, ../../../scss/_app_styles.scss */ +/* line 2812, ../../../scss/_app_styles.scss */ .rating-star-number { position: relative; display: inline-block; } -/* line 2816, ../../../scss/_app_styles.scss */ +/* line 2815, ../../../scss/_app_styles.scss */ .rating-star-number > span { position: absolute; top: 11px; left: 14px; font-size: 13px; } -/* line 2822, ../../../scss/_app_styles.scss */ +/* line 2821, ../../../scss/_app_styles.scss */ .rating-star-number i { font-size: 40px; color: gold; } -/* line 2829, ../../../scss/_app_styles.scss */ +/* line 2828, ../../../scss/_app_styles.scss */ .course-notif .notif-type img { height: 35px; width: 75%; } -/* line 2833, ../../../scss/_app_styles.scss */ +/* line 2832, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating { position: absolute; right: 15%; top: 0; } -/* line 2837, ../../../scss/_app_styles.scss */ +/* line 2836, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating i { font-size: 40px; right: 10%; color: #f1c233; } -/* line 2842, ../../../scss/_app_styles.scss */ +/* line 2841, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating span { position: absolute; left: 50%; @@ -26405,12 +26404,12 @@ div.show-image:hover div.fullscreen-icon{ font-size: 11px; } -/* line 2856, ../../../scss/_app_styles.scss */ +/* line 2855, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > ul, .course-dashboard .course-notifications > ul, .course-dashboard .course-performance > ul { list-style: none; } -/* line 2860, ../../../scss/_app_styles.scss */ +/* line 2859, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > .row, .course-dashboard .course-notifications > .row, .course-dashboard .course-performance > .row { padding: 0px; @@ -26422,45 +26421,45 @@ div.show-image:hover div.fullscreen-icon{ margin: 0em 0em; border-radius: 10px; } -/* line 2872, ../../../scss/_app_styles.scss */ +/* line 2871, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-heading { padding: 0.2em 0.7em; border-bottom: 1px solid #DADADA; font-weight: 500; font-size: 1.3em; } -/* line 2878, ../../../scss/_app_styles.scss */ +/* line 2877, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row { padding: 1em; } -/* line 2881, ../../../scss/_app_styles.scss */ +/* line 2880, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row:nth-child(n+3) { border-top: 1px solid #DCDCDC; } -/* line 2887, ../../../scss/_app_styles.scss */ +/* line 2886, ../../../scss/_app_styles.scss */ .course-dashboard .course-status .course-update .course-current-state { color: #000; font-weight: bold; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 2897, ../../../scss/_app_styles.scss */ +/* line 2896, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications { position: relative; } -/* line 2902, ../../../scss/_app_styles.scss */ +/* line 2901, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .notification-text { font-size: 0.85em; letter-spacing: 0em; word-spacing: 0.2em; } -/* line 2907, ../../../scss/_app_styles.scss */ +/* line 2906, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .time-elapsed { font-size: 0.6em; color: #424242; cursor: pointer; } -/* line 2914, ../../../scss/_app_styles.scss */ +/* line 2913, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-count { font-size: 1em; position: absolute; @@ -26468,42 +26467,42 @@ div.show-image:hover div.fullscreen-icon{ top: 0.3em; } -/* line 2924, ../../../scss/_app_styles.scss */ +/* line 2923, ../../../scss/_app_styles.scss */ .notebook .notebook-header { border-color: black; border-style: solid; border-width: 1px 0px; padding-top: 1em; } -/* line 2930, ../../../scss/_app_styles.scss */ +/* line 2929, ../../../scss/_app_styles.scss */ .notebook .notebook-header a, .notebook .notebook-header input { margin: 0px; } -/* line 2933, ../../../scss/_app_styles.scss */ +/* line 2932, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count { text-align: center; } -/* line 2938, ../../../scss/_app_styles.scss */ +/* line 2937, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:first-child { font-size: 21px; font-weight: 600; padding: 15px; } -/* line 2943, ../../../scss/_app_styles.scss */ +/* line 2942, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:last-child { background: lightgrey; padding: 2px 5px; vertical-align: text-bottom; } -/* line 2953, ../../../scss/_app_styles.scss */ +/* line 2952, ../../../scss/_app_styles.scss */ .notebook .notebook-body { padding: 0px 0px; } -/* line 2957, ../../../scss/_app_styles.scss */ +/* line 2956, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .row { margin: 30px 0px; } -/* line 2960, ../../../scss/_app_styles.scss */ +/* line 2959, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card, .notebook .notebook-body .note-cards .note-details { border: 1px solid #ccc; padding: 10px 15px; @@ -26513,12 +26512,12 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; position: relative; } -/* line 2969, ../../../scss/_app_styles.scss */ +/* line 2968, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-heading, .notebook .notebook-body .note-cards .note-details .note-heading { font-weight: 800; font-size: 20px; } -/* line 2973, ../../../scss/_app_styles.scss */ +/* line 2972, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-close, .notebook .notebook-body .note-cards .note-details .note-close { position: absolute; right: 7px; @@ -26527,22 +26526,22 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 700; color: #929292; } -/* line 2981, ../../../scss/_app_styles.scss */ +/* line 2980, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-summary, .notebook .notebook-body .note-cards .note-details .note-summary { margin: 15px 0px; } -/* line 2984, ../../../scss/_app_styles.scss */ +/* line 2983, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info, .notebook .notebook-body .note-cards .note-card .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data { color: #989898; font-size: 13px; letter-spacing: 0.9px; font-weight: 500; } -/* line 2990, ../../../scss/_app_styles.scss */ +/* line 2989, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info > span, .notebook .notebook-body .note-cards .note-card .note-extra-data > span, .notebook .notebook-body .note-cards .note-details .note-info > span, .notebook .notebook-body .note-cards .note-details .note-extra-data > span { margin-right: 5px; } -/* line 2995, ../../../scss/_app_styles.scss */ +/* line 2994, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-tags > span, .notebook .notebook-body .note-cards .note-details .note-tags > span { display: inline-block; margin: 10px; @@ -26550,53 +26549,53 @@ div.show-image:hover div.fullscreen-icon{ color: #cba552; padding: 2px 5px; } -/* line 3003, ../../../scss/_app_styles.scss */ +/* line 3002, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions, .notebook .notebook-body .note-cards .note-details .note-actions { color: #989898; cursor: pointer; } -/* line 3007, ../../../scss/_app_styles.scss */ +/* line 3006, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions span, .notebook .notebook-body .note-cards .note-details .note-actions span { margin-right: 10px 5px; } -/* line 3013, ../../../scss/_app_styles.scss */ +/* line 3012, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-tags, .notebook .notebook-body .note-cards .note-details .note-actions { display: inline-block; margin-right: 10px; } -/* line 3020, ../../../scss/_app_styles.scss */ +/* line 3019, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags { float: right; } -/* line 3022, ../../../scss/_app_styles.scss */ +/* line 3021, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags > span { margin: 0px; } -/* line 3031, ../../../scss/_app_styles.scss */ +/* line 3030, ../../../scss/_app_styles.scss */ .notebook .notebook-body > div { padding: 0px; } -/* line 3037, ../../../scss/_app_styles.scss */ +/* line 3036, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index { border-right: 1px solid #AFAEAE; padding: 4px 0px; background-color: #F1F1F1; } -/* line 3042, ../../../scss/_app_styles.scss */ +/* line 3041, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content { padding: 0px; } -/* line 3045, ../../../scss/_app_styles.scss */ +/* line 3044, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content .active { padding: 0px; } -/* line 3049, ../../../scss/_app_styles.scss */ +/* line 3048, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3054, ../../../scss/_app_styles.scss */ +/* line 3053, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title { width: 50%; /*background-color: #DEDEDE;*/ @@ -26604,114 +26603,114 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3061, ../../../scss/_app_styles.scss */ +/* line 3060, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title a { border-radius: inherit; font-size: 0.9rem; text-align: center; color: #989898; } -/* line 3068, ../../../scss/_app_styles.scss */ +/* line 3067, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3072, ../../../scss/_app_styles.scss */ +/* line 3071, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active a { color: #3a3169; } -/* line 3079, ../../../scss/_app_styles.scss */ +/* line 3078, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tab-content { padding: 0px; } -/* line 3084, ../../../scss/_app_styles.scss */ +/* line 3083, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date { font-size: 12px; font-weight: bold; background: #EFEFEF; padding: 7px 10px; } -/* line 3090, ../../../scss/_app_styles.scss */ +/* line 3089, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date .note-count { font-size: 11px; line-height: 2em; } -/* line 3095, ../../../scss/_app_styles.scss */ +/* line 3094, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes > div { border-bottom: 1px solid #AFAEAE; } -/* line 3098, ../../../scss/_app_styles.scss */ +/* line 3097, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note { padding: 5px 15px; background: #FFF; cursor: pointer; color: #A2A2A2; } -/* line 3104, ../../../scss/_app_styles.scss */ +/* line 3103, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-heading { font-weight: 400; font-size: 17px; } -/* line 3109, ../../../scss/_app_styles.scss */ +/* line 3108, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta { font-size: 13px; } -/* line 3112, ../../../scss/_app_styles.scss */ +/* line 3111, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta > span:not(:first-child) { font-size: 11px; font-weight: 600; color: #717171; } -/* line 3119, ../../../scss/_app_styles.scss */ +/* line 3118, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer { color: #888888; } -/* line 3122, ../../../scss/_app_styles.scss */ +/* line 3121, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer span { margin-right: 10px; } -/* line 3127, ../../../scss/_app_styles.scss */ +/* line 3126, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active { border-left: 5px solid #6153AE; background: #F4E7FF; font-weight: 800; color: #6153AE; } -/* line 3133, ../../../scss/_app_styles.scss */ +/* line 3132, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-heading { font-weight: 500; font-size: 17px; } -/* line 3137, ../../../scss/_app_styles.scss */ +/* line 3136, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-meta > span:not(:first-child) { color: #6153AE; } -/* line 3145, ../../../scss/_app_styles.scss */ +/* line 3144, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page { background-color: #fff; padding-bottom: 30px; } -/* line 3152, ../../../scss/_app_styles.scss */ +/* line 3151, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .group_content { margin-top: 5px; margin-left: 0px; } -/* line 3157, ../../../scss/_app_styles.scss */ +/* line 3156, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page > div { background-color: #fff; } -/* line 3161, ../../../scss/_app_styles.scss */ +/* line 3160, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar { padding: 1.8em 1.2em 0em; margin: 0em; background-color: #FFF; } -/* line 3166, ../../../scss/_app_styles.scss */ +/* line 3165, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .note-creator { font-weight: bold; } -/* line 3169, ../../../scss/_app_styles.scss */ +/* line 3168, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-title { text-align: left; color: #C3C3C3; @@ -26719,102 +26718,102 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.3px; margin-top: 5px; } -/* line 3176, ../../../scss/_app_styles.scss */ +/* line 3175, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating { text-align: right; } -/* line 3178, ../../../scss/_app_styles.scss */ +/* line 3177, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating > div { display: inline-block; } -/* line 3183, ../../../scss/_app_styles.scss */ +/* line 3182, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-title { font-size: 2.3em; font-weight: 500; margin-right: 1em; } -/* line 3188, ../../../scss/_app_styles.scss */ +/* line 3187, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content { padding: 2em 2em 1em; background: #fff; margin: 0em; } -/* line 3195, ../../../scss/_app_styles.scss */ +/* line 3194, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-header > div { display: inline-block; } -/* line 3200, ../../../scss/_app_styles.scss */ +/* line 3199, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text { font-size: 19px; letter-spacing: 0.7px; } -/* line 3203, ../../../scss/_app_styles.scss */ +/* line 3202, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text p { padding: 0px; } -/* line 3209, ../../../scss/_app_styles.scss */ +/* line 3208, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections { padding: 0em 1em 0em; } -/* line 3213, ../../../scss/_app_styles.scss */ +/* line 3212, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header span { font-weight: bold; } -/* line 3216, ../../../scss/_app_styles.scss */ +/* line 3215, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { margin-left: 15px; } -/* line 3221, ../../../scss/_app_styles.scss */ +/* line 3220, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment { border-top: 1px solid grey; padding: 15px 10px; margin-top: 5px; } -/* line 3226, ../../../scss/_app_styles.scss */ +/* line 3225, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { min-height: 200px; margin-top: 0px; } -/* line 3232, ../../../scss/_app_styles.scss */ +/* line 3231, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { font-size: 90px; line-height: 0em; } -/* line 3242, ../../../scss/_app_styles.scss */ +/* line 3241, ../../../scss/_app_styles.scss */ #newNoteModal { width: 40%; } -/* line 3245, ../../../scss/_app_styles.scss */ +/* line 3244, ../../../scss/_app_styles.scss */ #newNoteModal > div { margin-bottom: 1em; } -/* line 3249, ../../../scss/_app_styles.scss */ +/* line 3248, ../../../scss/_app_styles.scss */ #newNoteModal input { width: 100%; } -/* line 3252, ../../../scss/_app_styles.scss */ +/* line 3251, ../../../scss/_app_styles.scss */ #newNoteModal .heading { margin-right: 1em; } -/* line 3256, ../../../scss/_app_styles.scss */ +/* line 3255, ../../../scss/_app_styles.scss */ #newNoteModal .note-tags { padding: 1em; border: 1px solid black; } -/* line 3262, ../../../scss/_app_styles.scss */ +/* line 3261, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button { float: left; margin-left: 1em; margin-bottom: 0px; } -/* line 3267, ../../../scss/_app_styles.scss */ +/* line 3266, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button:last-child { float: right; } -/* line 3275, ../../../scss/_app_styles.scss */ +/* line 3274, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header { line-height: 2em; border-top: 1px solid #797979; @@ -26822,33 +26821,33 @@ div.show-image:hover div.fullscreen-icon{ text-align: center; padding: 0.7em 1em; } -/* line 3282, ../../../scss/_app_styles.scss */ +/* line 3281, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input, .gallery-page .gallery-header select, .gallery-page .gallery-header a { border-radius: 4px; margin-bottom: 0em; } -/* line 3286, ../../../scss/_app_styles.scss */ +/* line 3285, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input.prefix, .gallery-page .gallery-header select.prefix, .gallery-page .gallery-header a.prefix { border-radius: 0px; } -/* line 3291, ../../../scss/_app_styles.scss */ +/* line 3290, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header i { font-size: 1em; color: #A29E9E; } -/* line 3297, ../../../scss/_app_styles.scss */ +/* line 3296, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .filters .columns { padding-left: 5px; } -/* line 3303, ../../../scss/_app_styles.scss */ +/* line 3302, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .columns { padding-left: 5px; } -/* line 3307, ../../../scss/_app_styles.scss */ +/* line 3306, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags { text-align: left; } -/* line 3310, ../../../scss/_app_styles.scss */ +/* line 3309, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag { padding: 0px 10px; background: #cccccc; @@ -26858,73 +26857,73 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.8em; color: #757575; } -/* line 3319, ../../../scss/_app_styles.scss */ +/* line 3318, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag span { margin: 0px 2px 0px 6px; cursor: pointer; } -/* line 3324, ../../../scss/_app_styles.scss */ +/* line 3323, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags > div { display: inline-block; } -/* line 3331, ../../../scss/_app_styles.scss */ +/* line 3330, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading { font-size: 19px; } -/* line 3334, ../../../scss/_app_styles.scss */ +/* line 3333, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading a { background: #e7e7e7; border-width: 1px 0px 1px 1px; border-color: #cccccc; border-style: solid; } -/* line 3341, ../../../scss/_app_styles.scss */ +/* line 3340, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading input { border-radius: 0px; box-shadow: none; border-left: 0px; } -/* line 3348, ../../../scss/_app_styles.scss */ +/* line 3347, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel { background: #FFF; } -/* line 3351, ../../../scss/_app_styles.scss */ +/* line 3350, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content { min-height: 250px; } -/* line 3354, ../../../scss/_app_styles.scss */ +/* line 3353, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader { line-height: 3em; padding: 10px 0px; } -/* line 3358, ../../../scss/_app_styles.scss */ +/* line 3357, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader upload-file { margin: 0px; font-size: 1em; } -/* line 3363, ../../../scss/_app_styles.scss */ +/* line 3362, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions { font-size: 1.2em; color: #2a79e4; } -/* line 3367, ../../../scss/_app_styles.scss */ +/* line 3366, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions > div { display: inline-block; margin-right: 10px; } -/* line 3374, ../../../scss/_app_styles.scss */ +/* line 3373, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel { background: #fff; } -/* line 3377, ../../../scss/_app_styles.scss */ +/* line 3376, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row { margin: 10px 0px; } -/* line 3380, ../../../scss/_app_styles.scss */ +/* line 3379, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row > div:first-child { font-weight: 500; } -/* line 3385, ../../../scss/_app_styles.scss */ +/* line 3384, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .file-name { font-size: 20px; font-weight: bold; @@ -26932,11 +26931,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 10px 0px 20px; } -/* line 3396, ../../../scss/_app_styles.scss */ +/* line 3395, ../../../scss/_app_styles.scss */ .gallery-card .select-file { vertical-align: top; } -/* line 3400, ../../../scss/_app_styles.scss */ +/* line 3399, ../../../scss/_app_styles.scss */ .gallery-card .file-item { width: 80%; color: #fff; @@ -26947,17 +26946,17 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid black; overflow: hidden; } -/* line 3410, ../../../scss/_app_styles.scss */ +/* line 3409, ../../../scss/_app_styles.scss */ .gallery-card .file-item .item-thumbnail-image { height: 100%; padding: 1em; } -/* line 3415, ../../../scss/_app_styles.scss */ +/* line 3414, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-details { margin-top: 10%; display: none; } -/* line 3420, ../../../scss/_app_styles.scss */ +/* line 3419, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions { display: none; position: absolute; @@ -26966,11 +26965,11 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; font-size: 25px; } -/* line 3428, ../../../scss/_app_styles.scss */ +/* line 3427, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions i { margin: 0px 10px; } -/* line 3433, ../../../scss/_app_styles.scss */ +/* line 3432, ../../../scss/_app_styles.scss */ .gallery-card .file-item .filename-footer { position: absolute; bottom: 0px; @@ -26981,24 +26980,24 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 600; background: #999999; } -/* line 3444, ../../../scss/_app_styles.scss */ +/* line 3443, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover { background: #999999; } -/* line 3447, ../../../scss/_app_styles.scss */ +/* line 3446, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .item-thumbnail-image { opacity: 0.2; } -/* line 3451, ../../../scss/_app_styles.scss */ +/* line 3450, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .file-details, .gallery-card .file-item:hover .file-actions { display: block; } -/* line 3454, ../../../scss/_app_styles.scss */ +/* line 3453, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .filename-footer { display: none; } -/* line 3462, ../../../scss/_app_styles.scss */ +/* line 3461, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'], dialog[id^='reveal-'] { width: 100vw; height: 100vh; @@ -27062,49 +27061,49 @@ div.show-image:hover div.fullscreen-icon{ } }*/ } -/* line 3526, ../../../scss/_app_styles.scss */ +/* line 3525, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body, dialog[id^='reveal-'] .gmodal-body { position: relative; height: 100%; } -/* line 3529, ../../../scss/_app_styles.scss */ +/* line 3528, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel { background-color: #fff; height: 100%; } -/* line 3531, ../../../scss/_app_styles.scss */ +/* line 3530, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray { display: none; } -/* line 3535, ../../../scss/_app_styles.scss */ +/* line 3534, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe { height: 550px !important; width: 130% !important; } -/* line 3540, ../../../scss/_app_styles.scss */ +/* line 3539, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page { margin-top: -10px !important; } -/* line 3544, ../../../scss/_app_styles.scss */ +/* line 3543, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel span, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel span { display: none !important; } -/* line 3548, ../../../scss/_app_styles.scss */ +/* line 3547, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .button, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .button { display: none !important; } -/* line 3555, ../../../scss/_app_styles.scss */ +/* line 3554, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder { height: 100%; } -/* line 3558, ../../../scss/_app_styles.scss */ +/* line 3557, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item { height: 100%; width: 100%; background: transparent; padding: 0px; } -/* line 3564, ../../../scss/_app_styles.scss */ +/* line 3563, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image { width: auto; margin: 0px auto; @@ -27112,7 +27111,7 @@ div.show-image:hover div.fullscreen-icon{ padding: 1em 0em; height: 100%; } -/* line 3573, ../../../scss/_app_styles.scss */ +/* line 3572, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer { height: 2em; line-height: 2em; @@ -27124,32 +27123,32 @@ div.show-image:hover div.fullscreen-icon{ opacity: 0; background-color: rgba(0, 0, 0, 0.9); } -/* line 3584, ../../../scss/_app_styles.scss */ +/* line 3583, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details), dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details) { cursor: pointer; } -/* line 3588, ../../../scss/_app_styles.scss */ +/* line 3587, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details { text-align: center; width: 100%; } -/* line 3592, ../../../scss/_app_styles.scss */ +/* line 3591, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i { margin-left: 1em; margin-right: 0.5em; cursor: pointer; } -/* line 3600, ../../../scss/_app_styles.scss */ +/* line 3599, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer { opacity: 0.8; transition: opacity 1s; } -/* line 3605, ../../../scss/_app_styles.scss */ +/* line 3604, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel { height: 100%; padding: 0px 25px; } -/* line 3609, ../../../scss/_app_styles.scss */ +/* line 3608, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side { background: #fff; height: 100%; @@ -27170,31 +27169,31 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.9em; }*/ } -/* line 3613, ../../../scss/_app_styles.scss */ +/* line 3612, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div { width: 100%; display: block; margin: 12px 0px; padding: 0px 10px; } -/* line 3620, ../../../scss/_app_styles.scss */ +/* line 3619, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal { font-size: 20px; top: 6px; right: 26px; } -/* line 3627, ../../../scss/_app_styles.scss */ +/* line 3626, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span { vertical-align: top; margin-right: 5px; line-height: 35px; } -/* line 3632, ../../../scss/_app_styles.scss */ +/* line 3631, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating { background: #ccc; padding: 2px 5px; } -/* line 3638, ../../../scss/_app_styles.scss */ +/* line 3637, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a { padding: 3px 7px; background: #fff; @@ -27204,13 +27203,13 @@ div.show-image:hover div.fullscreen-icon{ margin-right: 10px; display: inline-block; } -/* line 3649, ../../../scss/_app_styles.scss */ +/* line 3648, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3654, ../../../scss/_app_styles.scss */ +/* line 3653, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -27219,17 +27218,17 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3662, ../../../scss/_app_styles.scss */ +/* line 3661, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a { border-radius: inherit; } -/* line 3666, ../../../scss/_app_styles.scss */ +/* line 3665, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3674, ../../../scss/_app_styles.scss */ +/* line 3673, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span { font-weight: 500; font-size: 16px; @@ -27237,20 +27236,20 @@ div.show-image:hover div.fullscreen-icon{ line-height: 35px; } -/* line 3704, ../../../scss/_app_styles.scss */ +/* line 3703, ../../../scss/_app_styles.scss */ .user-comment { display: inline-flex; width: 100%; } -/* line 3708, ../../../scss/_app_styles.scss */ +/* line 3707, ../../../scss/_app_styles.scss */ .user-comment > div { display: inline-block; } -/* line 3711, ../../../scss/_app_styles.scss */ +/* line 3710, ../../../scss/_app_styles.scss */ .user-comment > div:last-child { width: 100%; } -/* line 3716, ../../../scss/_app_styles.scss */ +/* line 3715, ../../../scss/_app_styles.scss */ .user-comment .comment-heading { color: #9C9C9C; border-bottom: 1px solid grey; @@ -27258,71 +27257,71 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 10px; margin-top: 10px; } -/* line 3724, ../../../scss/_app_styles.scss */ +/* line 3723, ../../../scss/_app_styles.scss */ .user-comment .comment-heading > div { display: inline-block; } -/* line 3728, ../../../scss/_app_styles.scss */ +/* line 3727, ../../../scss/_app_styles.scss */ .user-comment .comment-heading .commentor-name span { font-weight: bold; color: #333333; } -/* line 3733, ../../../scss/_app_styles.scss */ +/* line 3732, ../../../scss/_app_styles.scss */ .user-comment .comment-footer { font-size: 0.9em; font-weight: 400; border: 1px solid #9E9E9E; background: #CCCCCC; } -/* line 3739, ../../../scss/_app_styles.scss */ +/* line 3738, ../../../scss/_app_styles.scss */ .user-comment .comment-footer > div { cursor: pointer; } -/* line 3742, ../../../scss/_app_styles.scss */ +/* line 3741, ../../../scss/_app_styles.scss */ .user-comment .comment-footer i { margin-right: 1em; } -/* line 3748, ../../../scss/_app_styles.scss */ +/* line 3747, ../../../scss/_app_styles.scss */ .user-comment .comment-container .comment-add { margin-top: 0.4em; } -/* line 3752, ../../../scss/_app_styles.scss */ +/* line 3751, ../../../scss/_app_styles.scss */ .user-comment .user-avatar { font-size: 10em; font-size: 5em; line-height: 1em; } -/* line 3759, ../../../scss/_app_styles.scss */ +/* line 3758, ../../../scss/_app_styles.scss */ .course-content { /*border-top: 1px solid #000;*/ } -/* line 3761, ../../../scss/_app_styles.scss */ +/* line 3760, ../../../scss/_app_styles.scss */ .course-content .alert-box { padding: 5px; font-size: 1em; } -/* line 3765, ../../../scss/_app_styles.scss */ +/* line 3764, ../../../scss/_app_styles.scss */ .course-content .alert-box > div { display: inline-block; vertical-align: top; } -/* line 3769, ../../../scss/_app_styles.scss */ +/* line 3768, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note { width: 96%; } -/* line 3772, ../../../scss/_app_styles.scss */ +/* line 3771, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note > div:nth-child(2) { color: #000; margin-top: 5px; padding-top: 5px; border-top: 1px solid #000; } -/* line 3779, ../../../scss/_app_styles.scss */ +/* line 3778, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-icon { margin: 0px 5px; } -/* line 3782, ../../../scss/_app_styles.scss */ +/* line 3781, ../../../scss/_app_styles.scss */ .course-content .alert-box .close { position: relative; top: 0px; @@ -27332,17 +27331,17 @@ div.show-image:hover div.fullscreen-icon{ text-decoration: underline; color: #085394 !important; } -/* line 3793, ../../../scss/_app_styles.scss */ +/* line 3792, ../../../scss/_app_styles.scss */ .course-content .collection { overflow: visible; } -/* line 3796, ../../../scss/_app_styles.scss */ +/* line 3795, ../../../scss/_app_styles.scss */ .course-content .collection .course-module { position: relative; border-bottom: 1px solid #CCC; padding: 1em 0em; } -/* line 3803, ../../../scss/_app_styles.scss */ +/* line 3802, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-header .fa { position: absolute; left: -1.1em; @@ -27351,58 +27350,58 @@ div.show-image:hover div.fullscreen-icon{ background: #EAEAEA; font-size: 1.4em; } -/* line 3821, ../../../scss/_app_styles.scss */ +/* line 3820, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-page:hover span { text-decoration: underline; color: #9900ff !important; } -/* line 3826, ../../../scss/_app_styles.scss */ +/* line 3825, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .jqtree-tree .jqtree-title { cursor: pointer; } -/* line 3830, ../../../scss/_app_styles.scss */ +/* line 3829, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part { margin-left: 1em; } -/* line 3833, ../../../scss/_app_styles.scss */ +/* line 3832, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler { color: #585858; } -/* line 3836, ../../../scss/_app_styles.scss */ +/* line 3835, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler.jqtree-closed { color: #CCC; } -/* line 3840, ../../../scss/_app_styles.scss */ +/* line 3839, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part span { vertical-align: top; } -/* line 3843, ../../../scss/_app_styles.scss */ +/* line 3842, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .fa { display: inline; margin-right: 5px; } -/* line 3853, ../../../scss/_app_styles.scss */ +/* line 3852, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header { font-weight: 400; font-size: 1.3em; border-bottom: 1px solid #707070; color: #797979; } -/* line 3859, ../../../scss/_app_styles.scss */ +/* line 3858, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header > div { padding: 0.3em 0em; } -/* line 3863, ../../../scss/_app_styles.scss */ +/* line 3862, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header a { color: #797979; } -/* line 3867, ../../../scss/_app_styles.scss */ +/* line 3866, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous { cursor: pointer; padding: 0px; } -/* line 3871, ../../../scss/_app_styles.scss */ +/* line 3870, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous a:first-child { border-right: 1px solid grey; padding-right: 5px; @@ -27410,27 +27409,27 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3880, ../../../scss/_app_styles.scss */ +/* line 3879, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header i { margin-right: 0.1em; } -/* line 3884, ../../../scss/_app_styles.scss */ +/* line 3883, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .unit-title { text-align: center; color: #999999; } -/* line 3888, ../../../scss/_app_styles.scss */ +/* line 3887, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-title { text-align: center; color: #000; } -/* line 3892, ../../../scss/_app_styles.scss */ +/* line 3891, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note { color: #2a78e3; cursor: pointer; padding: 0px; } -/* line 3897, ../../../scss/_app_styles.scss */ +/* line 3896, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note a:last-child { border-left: 1px solid grey; padding-left: 5px; @@ -27438,11 +27437,11 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3905, ../../../scss/_app_styles.scss */ +/* line 3904, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note > div { float: right; } -/* line 3910, ../../../scss/_app_styles.scss */ +/* line 3909, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container { border: 1px solid black; height: 100%; @@ -27450,18 +27449,18 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 2em; padding: 0em 1em; } -/* line 3917, ../../../scss/_app_styles.scss */ +/* line 3916, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides { height: 100%; } -/* line 3921, ../../../scss/_app_styles.scss */ +/* line 3920, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 3929, ../../../scss/_app_styles.scss */ +/* line 3928, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -27469,12 +27468,12 @@ div.show-image:hover div.fullscreen-icon{ color: #999999; margin-left: 12%; } -/* line 3937, ../../../scss/_app_styles.scss */ +/* line 3936, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 3943, ../../../scss/_app_styles.scss */ +/* line 3942, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -27483,21 +27482,21 @@ div.show-image:hover div.fullscreen-icon{ display: none; color: #8E8E8E; } -/* line 3952, ../../../scss/_app_styles.scss */ +/* line 3951, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 3957, ../../../scss/_app_styles.scss */ +/* line 3956, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 3959, ../../../scss/_app_styles.scss */ +/* line 3958, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 3962, ../../../scss/_app_styles.scss */ +/* line 3961, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -27508,24 +27507,24 @@ div.show-image:hover div.fullscreen-icon{ color: #757575; margin-right: 20px; } -/* line 3972, ../../../scss/_app_styles.scss */ +/* line 3971, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 3976, ../../../scss/_app_styles.scss */ +/* line 3975, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 3979, ../../../scss/_app_styles.scss */ +/* line 3978, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 3984, ../../../scss/_app_styles.scss */ +/* line 3983, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 3988, ../../../scss/_app_styles.scss */ +/* line 3987, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content { width: 75%; margin: 0px auto; @@ -27536,7 +27535,7 @@ div.show-image:hover div.fullscreen-icon{ min-height: 50px; position: relative; } -/* line 3998, ../../../scss/_app_styles.scss */ +/* line 3997, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -27544,15 +27543,15 @@ div.show-image:hover div.fullscreen-icon{ left: 8px; top: 4px; } -/* line 4006, ../../../scss/_app_styles.scss */ +/* line 4005, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 4008, ../../../scss/_app_styles.scss */ +/* line 4007, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 4011, ../../../scss/_app_styles.scss */ +/* line 4010, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -27562,27 +27561,27 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.8px; color: #999999; } -/* line 4020, ../../../scss/_app_styles.scss */ +/* line 4019, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 4026, ../../../scss/_app_styles.scss */ +/* line 4025, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 4033, ../../../scss/_app_styles.scss */ +/* line 4032, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section { width: 75%; margin: 0px auto; } -/* line 4037, ../../../scss/_app_styles.scss */ +/* line 4036, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section .user-prof-image { font-size: 7em; text-align: center; } -/* line 4042, ../../../scss/_app_styles.scss */ +/* line 4041, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section #postCommentBtn { padding: 2em 3em; } @@ -27603,28 +27602,28 @@ div.show-image:hover div.fullscreen-icon{ position: absolute; } */ -/* line 4063, ../../../scss/_app_styles.scss */ +/* line 4062, ../../../scss/_app_styles.scss */ .rate-scale { cursor: pointer; } -/* line 4066, ../../../scss/_app_styles.scss */ +/* line 4065, ../../../scss/_app_styles.scss */ .rate-scale i { margin-right: 0em !important; padding-right: 0.5em; } -/* line 4070, ../../../scss/_app_styles.scss */ +/* line 4069, ../../../scss/_app_styles.scss */ .rate-scale .hover-rating, .rate-scale .rated { color: yellow; } -/* line 4076, ../../../scss/_app_styles.scss */ +/* line 4075, ../../../scss/_app_styles.scss */ #left-tab { position: absolute; left: 0px; bottom: 0px; } -/* line 4081, ../../../scss/_app_styles.scss */ +/* line 4080, ../../../scss/_app_styles.scss */ #right-tab { position: absolute; right: 0px; @@ -27632,12 +27631,12 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 6px; } -/* line 4087, ../../../scss/_app_styles.scss */ +/* line 4086, ../../../scss/_app_styles.scss */ #enrolled-btn { margin-bottom: 0px; } -/* line 4090, ../../../scss/_app_styles.scss */ +/* line 4089, ../../../scss/_app_styles.scss */ div.absol-descrip { position: absolute; top: 190px; @@ -27648,14 +27647,14 @@ div.absol-descrip { } /*overview-summary styling*/ -/* line 4100, ../../../scss/_app_styles.scss */ +/* line 4099, ../../../scss/_app_styles.scss */ .course-title, .course-date { color: white; padding-top: 0px; padding-bottom: 0px; } -/* line 4105, ../../../scss/_app_styles.scss */ +/* line 4104, ../../../scss/_app_styles.scss */ .course-description { color: #cccccc; padding-top: 0px; @@ -27667,48 +27666,48 @@ div.absol-descrip { overflow: hidden; } -/* line 4115, ../../../scss/_app_styles.scss */ +/* line 4114, ../../../scss/_app_styles.scss */ .course-para { padding: 0; } -/* line 4119, ../../../scss/_app_styles.scss */ +/* line 4118, ../../../scss/_app_styles.scss */ course-title { padding-left: 10px; } -/* line 4122, ../../../scss/_app_styles.scss */ +/* line 4121, ../../../scss/_app_styles.scss */ .enroll-status-margin { margin-bottom: 0; } -/* line 4126, ../../../scss/_app_styles.scss */ +/* line 4125, ../../../scss/_app_styles.scss */ .progress-summery { color: white; margin-top: 20px; } -/* line 4130, ../../../scss/_app_styles.scss */ +/* line 4129, ../../../scss/_app_styles.scss */ .course-description-thumbnails { margin: 0; padding: 0; } -/* line 4135, ../../../scss/_app_styles.scss */ +/* line 4134, ../../../scss/_app_styles.scss */ .left-shift { padding: 0; color: white !important; } /*course overview for Small screens*/ -/* line 4141, ../../../scss/_app_styles.scss */ +/* line 4140, ../../../scss/_app_styles.scss */ .course { /*position:relative;*/ border: 1px solid black; background-color: #999999; } -/* line 4147, ../../../scss/_app_styles.scss */ +/* line 4146, ../../../scss/_app_styles.scss */ .course-contents { /*position:absolute;*/ width: 100%; @@ -27716,7 +27715,7 @@ course-title { /*Medium screens*/ @media only screen and (min-width: 40.063em) { - /* line 4154, ../../../scss/_app_styles.scss */ + /* line 4153, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27724,7 +27723,7 @@ course-title { background-color: #999999; } - /* line 4160, ../../../scss/_app_styles.scss */ + /* line 4159, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27734,7 +27733,7 @@ course-title { /* min-width 641px, medium screens */ /* Large screens*/ @media only screen and (min-width: 64.063em) { - /* line 4170, ../../../scss/_app_styles.scss */ + /* line 4169, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27742,7 +27741,7 @@ course-title { background-color: #999999; } - /* line 4176, ../../../scss/_app_styles.scss */ + /* line 4175, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27751,14 +27750,14 @@ course-title { } /* min-width 1025px, large screens */ /*General config css*/ -/* line 4183, ../../../scss/_app_styles.scss */ +/* line 4182, ../../../scss/_app_styles.scss */ .alert-box.warning { background: #ffe7c0; border-color: #bf9000; color: #966000; } -/* line 4190, ../../../scss/_app_styles.scss */ +/* line 4189, ../../../scss/_app_styles.scss */ .badge { display: inline-block; line-height: 22px; @@ -27775,7 +27774,7 @@ course-title { font-size: 1.8em; } -/* line 4206, ../../../scss/_app_styles.scss */ +/* line 4205, ../../../scss/_app_styles.scss */ .badge { background: #67c1ef; border-color: #30aae9; @@ -27785,7 +27784,7 @@ course-title { background-image: linear-gradient(to bottom, #acddf6, #67c1ef); } -/* line 4215, ../../../scss/_app_styles.scss */ +/* line 4214, ../../../scss/_app_styles.scss */ .badge.green { background: #77cc51; border-color: #59ad33; @@ -27795,7 +27794,7 @@ course-title { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 4224, ../../../scss/_app_styles.scss */ +/* line 4223, ../../../scss/_app_styles.scss */ .badge.yellow { background: #faba3e; border-color: #f4a306; @@ -27805,7 +27804,7 @@ course-title { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 4234, ../../../scss/_app_styles.scss */ +/* line 4233, ../../../scss/_app_styles.scss */ .badge.red { background: #fa623f; border-color: #fa5a35; @@ -27816,12 +27815,12 @@ course-title { } /* Course/ Event Card CSS*/ -/* line 4250, ../../../scss/_app_styles.scss */ +/* line 4249, ../../../scss/_app_styles.scss */ .card-image-wrapper { position: relative; } -/* line 4254, ../../../scss/_app_styles.scss */ +/* line 4253, ../../../scss/_app_styles.scss */ .event-card { padding: 0px; min-height: 22rem; @@ -27830,12 +27829,12 @@ course-title { border-radius: 10px; background-color: #fff; } -/* line 4262, ../../../scss/_app_styles.scss */ +/* line 4261, ../../../scss/_app_styles.scss */ .event-card:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 4267, ../../../scss/_app_styles.scss */ +/* line 4266, ../../../scss/_app_styles.scss */ .event-card .event-card-status { z-index: 99; width: auto; @@ -27850,31 +27849,31 @@ course-title { border-radius: 4px; letter-spacing: 0.3px; } -/* line 4281, ../../../scss/_app_styles.scss */ +/* line 4280, ../../../scss/_app_styles.scss */ .event-card .event-card-status.open { background-color: #00b300; } -/* line 4284, ../../../scss/_app_styles.scss */ +/* line 4283, ../../../scss/_app_styles.scss */ .event-card .event-card-status.closed { background-color: red; } -/* line 4287, ../../../scss/_app_styles.scss */ +/* line 4286, ../../../scss/_app_styles.scss */ .event-card .event-card-status.in-progress { background-color: #00b300; } -/* line 4290, ../../../scss/_app_styles.scss */ +/* line 4289, ../../../scss/_app_styles.scss */ .event-card .event-card-status.forthcoming { background-color: #F2910D; } -/* line 4293, ../../../scss/_app_styles.scss */ +/* line 4292, ../../../scss/_app_styles.scss */ .event-card .event-card-status.upcoming { background-color: #F2910D; } -/* line 4297, ../../../scss/_app_styles.scss */ +/* line 4296, ../../../scss/_app_styles.scss */ .event-card .event-card-status.completed { background-color: #4d4d4d; } -/* line 4302, ../../../scss/_app_styles.scss */ +/* line 4301, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications { position: absolute; top: 2px; @@ -27883,46 +27882,46 @@ course-title { color: #F04124; font-weight: 600; } -/* line 4310, ../../../scss/_app_styles.scss */ +/* line 4309, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications .badge { padding: 0px 5px; font-size: 1.4em; font-weight: 600; } -/* line 4317, ../../../scss/_app_styles.scss */ +/* line 4316, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status { font-weight: 500; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 4322, ../../../scss/_app_styles.scss */ +/* line 4321, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.open { color: #00b300; } -/* line 4326, ../../../scss/_app_styles.scss */ +/* line 4325, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.closed { color: red; } -/* line 4330, ../../../scss/_app_styles.scss */ +/* line 4329, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.in-progress { color: #000; } -/* line 4333, ../../../scss/_app_styles.scss */ +/* line 4332, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.forthcoming { color: #F2910D; } -/* line 4337, ../../../scss/_app_styles.scss */ +/* line 4336, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.completed { color: #4d4d4d; } -/* line 4341, ../../../scss/_app_styles.scss */ +/* line 4340, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status .event-time { font-size: 0.7em; display: block; font-weight: 400; display: inline; } -/* line 4349, ../../../scss/_app_styles.scss */ +/* line 4348, ../../../scss/_app_styles.scss */ .event-card .event-card-title { color: #0d0d0d; display: inline-block; @@ -27933,19 +27932,19 @@ course-title { font-size: 2em; font-weight: 400; } -/* line 4360, ../../../scss/_app_styles.scss */ +/* line 4359, ../../../scss/_app_styles.scss */ .event-card .event-card-desc { word-wrap: break-word; font-size: 0.6em; color: #333333; padding-left: 4px; } -/* line 4366, ../../../scss/_app_styles.scss */ +/* line 4365, ../../../scss/_app_styles.scss */ .event-card p { margin: 0px; padding: 10px; } -/* line 4372, ../../../scss/_app_styles.scss */ +/* line 4371, ../../../scss/_app_styles.scss */ .event-card .event-card-image { padding: 0px; margin: 0px; @@ -27957,7 +27956,7 @@ course-title { background-color: #e5e5e5; border-radius: 10px 10px 0px 0px; } -/* line 4383, ../../../scss/_app_styles.scss */ +/* line 4382, ../../../scss/_app_styles.scss */ .event-card .event-card-image img { border-radius: 2px 2px 0 0; display: block; @@ -27966,7 +27965,7 @@ course-title { opacity: 0.25; height: 100%; } -/* line 4392, ../../../scss/_app_styles.scss */ +/* line 4391, ../../../scss/_app_styles.scss */ .event-card .event-card-image i { font-size: 7rem; opacity: 0.75; @@ -27980,51 +27979,51 @@ course-title { text-transform: none; text-decoration: inherit; } -/* line 4406, ../../../scss/_app_styles.scss */ +/* line 4405, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.file:before { content: "\f18e"; } -/* line 4409, ../../../scss/_app_styles.scss */ +/* line 4408, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.page:before { content: "\f18e"; } -/* line 4412, ../../../scss/_app_styles.scss */ +/* line 4411, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.collection:before { content: "\f18a"; } -/* line 4415, ../../../scss/_app_styles.scss */ +/* line 4414, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.documents:before { content: "\f18b"; } -/* line 4418, ../../../scss/_app_styles.scss */ +/* line 4417, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.pdf:before { content: "\f18b"; } -/* line 4421, ../../../scss/_app_styles.scss */ +/* line 4420, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.text:before { content: "\f18e"; } -/* line 4424, ../../../scss/_app_styles.scss */ +/* line 4423, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.interactives:before { content: "\f1b2"; } -/* line 4427, ../../../scss/_app_styles.scss */ +/* line 4426, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.ebooks:before { content: "\f11e"; } -/* line 4430, ../../../scss/_app_styles.scss */ +/* line 4429, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.images:before { content: "\f125"; } -/* line 4433, ../../../scss/_app_styles.scss */ +/* line 4432, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.audios:before, .event-card .event-card-image i.audio:before { content: "\f17b"; } -/* line 4436, ../../../scss/_app_styles.scss */ +/* line 4435, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.videos:before, .event-card .event-card-image i.video:before { content: "\f20e"; } -/* line 4440, ../../../scss/_app_styles.scss */ +/* line 4439, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer { padding: 0.7em 1em; border-top: 1px solid #DCDCDC; @@ -28035,7 +28034,7 @@ course-title { background-color: #F3F3F3; border-radius: 0px 0px 10px 10px; } -/* line 4450, ../../../scss/_app_styles.scss */ +/* line 4449, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .footer-label { text-transform: uppercase; font-size: 10px; @@ -28043,54 +28042,54 @@ course-title { margin-bottom: 2px; color: #ADADAD; } -/* line 4458, ../../../scss/_app_styles.scss */ +/* line 4457, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date { color: #929292; font-size: 0.85em; letter-spacing: 0.5px; } -/* line 4463, ../../../scss/_app_styles.scss */ +/* line 4462, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date i:not(.edit-course-duration, .edit-course-enrollment) { margin-right: 0.3em; } -/* line 4467, ../../../scss/_app_styles.scss */ +/* line 4466, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .row { margin: 10px 0px 0px; } -/* line 4471, ../../../scss/_app_styles.scss */ +/* line 4470, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration, .event-card .edit-course-enrollment { float: right; font-size: 1.5em; color: #DADADA; } -/* line 4475, ../../../scss/_app_styles.scss */ +/* line 4474, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration:hover, .event-card .edit-course-enrollment:hover { color: #565656; } -/* line 4479, ../../../scss/_app_styles.scss */ +/* line 4478, ../../../scss/_app_styles.scss */ .event-card .published.scard-action { background: #A6D9CB; } -/* line 4483, ../../../scss/_app_styles.scss */ +/* line 4482, ../../../scss/_app_styles.scss */ .event-card .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 4488, ../../../scss/_app_styles.scss */ +/* line 4487, ../../../scss/_app_styles.scss */ .event-card .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4493, ../../../scss/_app_styles.scss */ +/* line 4492, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action { border-color: transparent #03a9f4 transparent transparent; border-color: rgba(255, 255, 255, 0) #03a9f4 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4497, ../../../scss/_app_styles.scss */ +/* line 4496, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 4501, ../../../scss/_app_styles.scss */ +/* line 4500, ../../../scss/_app_styles.scss */ .event-card .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -28101,17 +28100,17 @@ course-title { /* End Course/events Card CSS*/ /* Landing page */ -/* line 4513, ../../../scss/_app_styles.scss */ +/* line 4512, ../../../scss/_app_styles.scss */ .landing_page { position: relative; text-align: center; } -/* line 4517, ../../../scss/_app_styles.scss */ +/* line 4516, ../../../scss/_app_styles.scss */ .landing_page .panel { background-color: inherit; border: none; } -/* line 4522, ../../../scss/_app_styles.scss */ +/* line 4521, ../../../scss/_app_styles.scss */ .landing_page .landing_page_background { height: 100%; width: 100%; @@ -28123,24 +28122,24 @@ course-title { background: -ms-linear-gradient(left, #E9A900, #B0108D); background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 4534, ../../../scss/_app_styles.scss */ +/* line 4533, ../../../scss/_app_styles.scss */ .landing_page .clix_brief { text-align: left; padding: 20px 5%; } -/* line 4538, ../../../scss/_app_styles.scss */ +/* line 4537, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 30px 20px; height: 70px; } @media screen and (max-width: 450px) { - /* line 4538, ../../../scss/_app_styles.scss */ + /* line 4537, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 25px 10px; height: 55px; } } -/* line 4546, ../../../scss/_app_styles.scss */ +/* line 4545, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { color: #fff; font-size: 26px; @@ -28148,12 +28147,12 @@ course-title { font-family: 'ubuntu-light'; } @media screen and (max-width: 450px) { - /* line 4546, ../../../scss/_app_styles.scss */ + /* line 4545, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { font-size: 18px; } } -/* line 4557, ../../../scss/_app_styles.scss */ +/* line 4556, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { background-color: rgba(255, 255, 255, 0.92); border-radius: 10px; @@ -28164,12 +28163,12 @@ course-title { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); } @media screen and (min-width: 1025px) { - /* line 4557, ../../../scss/_app_styles.scss */ + /* line 4556, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { margin: 200px auto; } } -/* line 4569, ../../../scss/_app_styles.scss */ +/* line 4568, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix > span { font-family: 'ubuntu-bold'; color: #6658af; @@ -28180,7 +28179,7 @@ course-title { display: inline-block; vertical-align: middle; } -/* line 4579, ../../../scss/_app_styles.scss */ +/* line 4578, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix p { color: #b0108d; font-size: 21px; @@ -28188,28 +28187,28 @@ course-title { font-weight: 300; font-family: 'ubuntu-light'; } -/* line 4587, ../../../scss/_app_styles.scss */ +/* line 4586, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix img { height: 30px; } -/* line 4590, ../../../scss/_app_styles.scss */ +/* line 4589, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form { margin-top: 30px; } -/* line 4593, ../../../scss/_app_styles.scss */ +/* line 4592, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form input { font-size: 24px; height: 45px; margin: 5px 0px 24px; } -/* line 4600, ../../../scss/_app_styles.scss */ +/* line 4599, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix input.button { font-size: 15px; border-radius: 5px; font-family: 'ubuntu-bold'; text-transform: uppercase; } -/* line 4606, ../../../scss/_app_styles.scss */ +/* line 4605, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix a.grey { color: #999; /*display: inline-block; @@ -28220,7 +28219,7 @@ course-title { font-family: 'ubuntu-bold'; text-transform: uppercase;*/ } -/* line 4617, ../../../scss/_app_styles.scss */ +/* line 4616, ../../../scss/_app_styles.scss */ .landing_page .flowers { left: 50px; height: 500px; @@ -28228,18 +28227,18 @@ course-title { opacity: 0.6; } @media screen and (max-width: 450px) { - /* line 4617, ../../../scss/_app_styles.scss */ + /* line 4616, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 250px; } } @media screen and (min-width: 451px) and (max-width: 1025px) { - /* line 4617, ../../../scss/_app_styles.scss */ + /* line 4616, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 350px; } } -/* line 4629, ../../../scss/_app_styles.scss */ +/* line 4628, ../../../scss/_app_styles.scss */ .landing_page .bees { position: absolute; top: 5px; @@ -28247,40 +28246,40 @@ course-title { height: 150px; } @media screen and (max-width: 450px) { - /* line 4629, ../../../scss/_app_styles.scss */ + /* line 4628, ../../../scss/_app_styles.scss */ .landing_page .bees { right: 15px; height: 100px; } } -/* line 4639, ../../../scss/_app_styles.scss */ +/* line 4638, ../../../scss/_app_styles.scss */ .landing_page h2 { color: #A0148E; font-weight: 600; } -/* line 4643, ../../../scss/_app_styles.scss */ +/* line 4642, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text { color: #6153ae; } -/* line 4646, ../../../scss/_app_styles.scss */ +/* line 4645, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text p { font-size: 18px; } /* END of Landing page */ -/* line 4652, ../../../scss/_app_styles.scss */ +/* line 4651, ../../../scss/_app_styles.scss */ .audio-caption { cursor: pointer; } -/* line 4656, ../../../scss/_app_styles.scss */ +/* line 4655, ../../../scss/_app_styles.scss */ .gallery-image { cursor: pointer; max-height: 100px; border: 1px solid !important; } -/* line 4662, ../../../scss/_app_styles.scss */ +/* line 4661, ../../../scss/_app_styles.scss */ .show-collection { color: black !important; font-size: 1.1em; @@ -28293,25 +28292,25 @@ course-title { border: 1px solid #eee; } -/* line 4674, ../../../scss/_app_styles.scss */ +/* line 4673, ../../../scss/_app_styles.scss */ .processing-screen { background-color: #03a9f4 !important; } -/* line 4678, ../../../scss/_app_styles.scss */ +/* line 4677, ../../../scss/_app_styles.scss */ .processing-screen-label { width: 500px !important; font-style: normal !important; } -/* line 4682, ../../../scss/_app_styles.scss */ +/* line 4681, ../../../scss/_app_styles.scss */ h3 { font-size: 20px; color: #164A7B; font-family: 'OpenSans-Semibold'; } -/* line 4688, ../../../scss/_app_styles.scss */ +/* line 4687, ../../../scss/_app_styles.scss */ h5 { color: #99aaba; font-size: 10px; @@ -28320,7 +28319,7 @@ h5 { margin-left: 5px; } -/* line 4696, ../../../scss/_app_styles.scss */ +/* line 4695, ../../../scss/_app_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28329,12 +28328,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4703, ../../../scss/_app_styles.scss */ +/* line 4702, ../../../scss/_app_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 4707, ../../../scss/_app_styles.scss */ +/* line 4706, ../../../scss/_app_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28343,12 +28342,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4714, ../../../scss/_app_styles.scss */ +/* line 4713, ../../../scss/_app_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 4720, ../../../scss/_app_styles.scss */ +/* line 4719, ../../../scss/_app_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28360,7 +28359,7 @@ h5 { color: #6153AE; } -/* line 4731, ../../../scss/_app_styles.scss */ +/* line 4730, ../../../scss/_app_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28373,14 +28372,14 @@ h5 { display: inline-block; color: #6153AE; } -/* line 4743, ../../../scss/_app_styles.scss */ +/* line 4742, ../../../scss/_app_styles.scss */ .add-note-btn:hover { cursor: pointer; color: #6153AE; background-color: #ffffff; } -/* line 4751, ../../../scss/_app_styles.scss */ +/* line 4750, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -28392,7 +28391,7 @@ h5 { border: 2px solid #6153ae; background-color: #dbd4e1; } -/* line 4762, ../../../scss/_app_styles.scss */ +/* line 4761, ../../../scss/_app_styles.scss */ .explore-button:hover { cursor: pointer; } @@ -28400,12 +28399,12 @@ h5 { /*Blue color variable*/ /*Orange color variables*/ /* module detail settings drop */ -/* line 4793, ../../../scss/_app_styles.scss */ +/* line 4792, ../../../scss/_app_styles.scss */ .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4796, ../../../scss/_app_styles.scss */ +/* line 4795, ../../../scss/_app_styles.scss */ .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28418,17 +28417,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4807, ../../../scss/_app_styles.scss */ +/* line 4806, ../../../scss/_app_styles.scss */ .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4813, ../../../scss/_app_styles.scss */ +/* line 4812, ../../../scss/_app_styles.scss */ .explore-settings-drop a { font-size: 16px; } -/* line 4816, ../../../scss/_app_styles.scss */ +/* line 4815, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28436,12 +28435,12 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4816, ../../../scss/_app_styles.scss */ +/* line 4815, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4819, ../../../scss/_app_styles.scss */ +/* line 4818, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28454,17 +28453,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4830, ../../../scss/_app_styles.scss */ +/* line 4829, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4836, ../../../scss/_app_styles.scss */ +/* line 4835, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop a { font-size: 16px; } -/* line 4839, ../../../scss/_app_styles.scss */ +/* line 4838, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28472,33 +28471,33 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4847, ../../../scss/_app_styles.scss */ +/* line 4846, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4851, ../../../scss/_app_styles.scss */ +/* line 4850, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4864, ../../../scss/_app_styles.scss */ +/* line 4863, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4868, ../../../scss/_app_styles.scss */ +/* line 4867, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4875, ../../../scss/_app_styles.scss */ +/* line 4874, ../../../scss/_app_styles.scss */ .edit_button { color: #717171; } -/* line 4877, ../../../scss/_app_styles.scss */ +/* line 4876, ../../../scss/_app_styles.scss */ .edit_button:hover { border-left: 2px solid #ce7869; } -/* line 4883, ../../../scss/_app_styles.scss */ +/* line 4882, ../../../scss/_app_styles.scss */ .left-btn { margin-top: 0px; margin-right: 0px; @@ -28510,7 +28509,7 @@ h5 { color: #555555; font-size: 11px; } -/* line 4893, ../../../scss/_app_styles.scss */ +/* line 4892, ../../../scss/_app_styles.scss */ .left-btn:hover { display: block; padding: 0.5rem; @@ -28518,7 +28517,7 @@ h5 { border-left: 2px solid #ce7869; } -/* line 4902, ../../../scss/_app_styles.scss */ +/* line 4901, ../../../scss/_app_styles.scss */ .chnge-img:hover { display: block; padding: 0.5rem; @@ -28526,14 +28525,14 @@ h5 { border-left: 2px solid #ce7869; } -/* line 4913, ../../../scss/_app_styles.scss */ +/* line 4912, ../../../scss/_app_styles.scss */ .lms_page .lms_banner { width: 100%; height: 150px; background-size: 100% 100%; position: relative; } -/* line 4921, ../../../scss/_app_styles.scss */ +/* line 4920, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -28546,27 +28545,27 @@ h5 { bottom: 0; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 4934, ../../../scss/_app_styles.scss */ +/* line 4933, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before a { cursor: pointer; } -/* line 4939, ../../../scss/_app_styles.scss */ +/* line 4938, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .div-height { height: 150px !important; background-size: 100% 100%; position: absolute !important; } -/* line 4947, ../../../scss/_app_styles.scss */ +/* line 4946, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .enroll_unit > a { cursor: pointer; } -/* line 4951, ../../../scss/_app_styles.scss */ +/* line 4950, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 4957, ../../../scss/_app_styles.scss */ +/* line 4956, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .unit_name { font-size: 36px; font-family: OpenSans-Semibold; @@ -28577,17 +28576,17 @@ h5 { transition: border-radius .2s; text-shadow: 3px 2px #164a7b; } -/* line 4968, ../../../scss/_app_styles.scss */ +/* line 4967, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .right-margin { margin-right: 46px; } -/* line 4977, ../../../scss/_app_styles.scss */ +/* line 4976, ../../../scss/_app_styles.scss */ .border-bottom-lms-header { border-bottom: 1px solid #00000029; } -/* line 4982, ../../../scss/_app_styles.scss */ +/* line 4981, ../../../scss/_app_styles.scss */ .lms_secondary_header { width: 100%; position: relative; @@ -28595,11 +28594,11 @@ h5 { box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 4988, ../../../scss/_app_styles.scss */ +/* line 4987, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions { margin-top: 8px; } -/* line 4991, ../../../scss/_app_styles.scss */ +/* line 4990, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28611,11 +28610,11 @@ h5 { opacity: 0.8; } @media screen and (min-width: 980px) and (max-width: 1000px) { - /* line 5005, ../../../scss/_app_styles.scss */ + /* line 5004, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions { margin-top: 8px; } - /* line 5008, ../../../scss/_app_styles.scss */ + /* line 5007, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions > span { margin-left: 50px; background: #2e3f51; @@ -28629,16 +28628,16 @@ h5 { } } -/* line 5028, ../../../scss/_app_styles.scss */ +/* line 5027, ../../../scss/_app_styles.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; } -/* line 5031, ../../../scss/_app_styles.scss */ +/* line 5030, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 5034, ../../../scss/_app_styles.scss */ +/* line 5033, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a { list-style-type: none; display: inline-block; @@ -28649,23 +28648,23 @@ ul.nav_menu_1 > li > a { letter-spacing: 0.8px; border-bottom: 3px solid transparent; } -/* line 5045, ../../../scss/_app_styles.scss */ +/* line 5044, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-bottom: 3px solid #a2238d; } -/* line 5056, ../../../scss/_app_styles.scss */ +/* line 5055, ../../../scss/_app_styles.scss */ ul.authoring-tab { margin-bottom: 0px; display: inline; width: 50%; } -/* line 5060, ../../../scss/_app_styles.scss */ +/* line 5059, ../../../scss/_app_styles.scss */ ul.authoring-tab > li { display: inline-block; background-color: #164a7b; } -/* line 5063, ../../../scss/_app_styles.scss */ +/* line 5062, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a { list-style-type: none; margin-right: -4px; @@ -28678,13 +28677,13 @@ ul.authoring-tab > li > a { border-bottom: 3px solid transparent; color: #ffffff !important; } -/* line 5074, ../../../scss/_app_styles.scss */ +/* line 5073, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-bottom: 3px solid #a2238d; } /* Secondary Top Bar */ -/* line 5083, ../../../scss/_app_styles.scss */ +/* line 5082, ../../../scss/_app_styles.scss */ .secondary-header-tabs { color: #719dc7; font-weight: 400; @@ -28694,11 +28693,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -webkit-transition: color 1s ease, border-color 1s ease; display: inline-block; } -/* line 5092, ../../../scss/_app_styles.scss */ +/* line 5091, ../../../scss/_app_styles.scss */ .secondary-header-tabs:hover { color: #164A7B; } -/* line 5096, ../../../scss/_app_styles.scss */ +/* line 5095, ../../../scss/_app_styles.scss */ .secondary-header-tabs.active { color: #164A7B; border-bottom: 2px solid #164A7B; @@ -28706,7 +28705,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: 600; } -/* line 5106, ../../../scss/_app_styles.scss */ +/* line 5105, ../../../scss/_app_styles.scss */ .secondary-header-button { color: #3c556d; font-weight: 700; @@ -28719,12 +28718,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-size: 13px; letter-spacing: 1.2px; } -/* line 5118, ../../../scss/_app_styles.scss */ +/* line 5117, ../../../scss/_app_styles.scss */ .secondary-header-button:hover { opacity: 0.5; } -/* line 5125, ../../../scss/_app_styles.scss */ +/* line 5124, ../../../scss/_app_styles.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -28733,34 +28732,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: -8px; } -/* line 5136, ../../../scss/_app_styles.scss */ +/* line 5135, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 5141, ../../../scss/_app_styles.scss */ +/* line 5140, ../../../scss/_app_styles.scss */ .top-bar-second .name { text-align: center; } -/* line 5144, ../../../scss/_app_styles.scss */ +/* line 5143, ../../../scss/_app_styles.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 5154, ../../../scss/_app_styles.scss */ +/* line 5153, ../../../scss/_app_styles.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 5162, ../../../scss/_app_styles.scss */ +/* line 5161, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 5164, ../../../scss/_app_styles.scss */ +/* line 5163, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -28769,31 +28768,31 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; letter-spacing: 0.5px; } -/* line 5175, ../../../scss/_app_styles.scss */ +/* line 5174, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 5183, ../../../scss/_app_styles.scss */ +/* line 5182, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 5189, ../../../scss/_app_styles.scss */ +/* line 5188, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 5200, ../../../scss/_app_styles.scss */ + /* line 5199, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 5202, ../../../scss/_app_styles.scss */ + /* line 5201, ../../../scss/_app_styles.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 5209, ../../../scss/_app_styles.scss */ + /* line 5208, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -28801,32 +28800,32 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { line-height: 52px; border-left-width: 0px; } - /* line 5216, ../../../scss/_app_styles.scss */ + /* line 5215, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5222, ../../../scss/_app_styles.scss */ + /* line 5221, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5230, ../../../scss/_app_styles.scss */ + /* line 5229, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 5240, ../../../scss/_app_styles.scss */ + /* line 5239, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 5249, ../../../scss/_app_styles.scss */ + /* line 5248, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 5256, ../../../scss/_app_styles.scss */ + /* line 5255, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; @@ -28841,7 +28840,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { /** * Sass styles related to unit cards */ -/* line 5284, ../../../scss/_app_styles.scss */ +/* line 5283, ../../../scss/_app_styles.scss */ .unit_card { width: 300px; color: #000; @@ -28853,7 +28852,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { position: relative; height: 210px; } -/* line 5298, ../../../scss/_app_styles.scss */ +/* line 5297, ../../../scss/_app_styles.scss */ .unit_card .unit_status { position: absolute; right: 0px; @@ -28864,11 +28863,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-radius: 3px; letter-spacing: 0.6px; } -/* line 5309, ../../../scss/_app_styles.scss */ +/* line 5308, ../../../scss/_app_styles.scss */ .unit_card .unit_header { display: table; } -/* line 5311, ../../../scss/_app_styles.scss */ +/* line 5310, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_banner { display: table-cell; border-radius: 5px; @@ -28877,7 +28876,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-right: 10px; color: #333333; } -/* line 5319, ../../../scss/_app_styles.scss */ +/* line 5318, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_title { display: table-cell; font-size: 20px; @@ -28891,7 +28890,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { vertical-align: middle; color: #333333; } -/* line 5333, ../../../scss/_app_styles.scss */ +/* line 5332, ../../../scss/_app_styles.scss */ .unit_card .unit_desc { display: block; /* Fallback for non-webkit */ @@ -28908,16 +28907,16 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin: 10px 0px 20px; color: #333333; } -/* line 5349, ../../../scss/_app_styles.scss */ +/* line 5348, ../../../scss/_app_styles.scss */ .unit_card .unit_breif .unit_breif_row i { margin-right: 10px; color: #99aaba; } -/* line 5355, ../../../scss/_app_styles.scss */ +/* line 5354, ../../../scss/_app_styles.scss */ .unit_card .unit_actions { padding: 5px 0px; } -/* line 5360, ../../../scss/_app_styles.scss */ +/* line 5359, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol { background: #a2238d; height: 37px; @@ -28930,11 +28929,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5372, ../../../scss/_app_styles.scss */ +/* line 5371, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 5377, ../../../scss/_app_styles.scss */ +/* line 5376, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics { color: #a2238d; font-weight: 500; @@ -28942,7 +28941,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.3px; border-bottom: 2px solid #a2238d; } -/* line 5385, ../../../scss/_app_styles.scss */ +/* line 5384, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics-points { background: #ffffff; color: #a2238d; @@ -28953,7 +28952,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; cursor: default; } -/* line 5396, ../../../scss/_app_styles.scss */ +/* line 5395, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit { height: 37px; text-align: center; @@ -28962,13 +28961,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5404, ../../../scss/_app_styles.scss */ +/* line 5403, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit:hover { border-bottom: 2px solid #ffc14e; } /* unit cards labels */ -/* line 5414, ../../../scss/_app_styles.scss */ +/* line 5413, ../../../scss/_app_styles.scss */ .status-completed { width: auto; top: -1.15em; @@ -28985,7 +28984,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5430, ../../../scss/_app_styles.scss */ +/* line 5429, ../../../scss/_app_styles.scss */ .status-in-progress { width: auto; top: -1.15em; @@ -29002,7 +29001,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5447, ../../../scss/_app_styles.scss */ +/* line 5446, ../../../scss/_app_styles.scss */ .status-upcoming { width: auto; top: -1.15em; @@ -29019,7 +29018,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5464, ../../../scss/_app_styles.scss */ +/* line 5463, ../../../scss/_app_styles.scss */ .status-draft { width: auto; top: -1.15em; @@ -29036,7 +29035,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5482, ../../../scss/_app_styles.scss */ +/* line 5481, ../../../scss/_app_styles.scss */ .status-workspace { width: auto; top: -1.15em; @@ -29053,48 +29052,48 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5499, ../../../scss/_app_styles.scss */ +/* line 5498, ../../../scss/_app_styles.scss */ .icon-widget { font-size: 24px; } /* module detail css */ -/* line 5508, ../../../scss/_app_styles.scss */ +/* line 5507, ../../../scss/_app_styles.scss */ .thumbnail_style { margin-left: -30px; } -/* line 5512, ../../../scss/_app_styles.scss */ +/* line 5511, ../../../scss/_app_styles.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 5518, ../../../scss/_app_styles.scss */ +/* line 5517, ../../../scss/_app_styles.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); padding-left: 10px; height: auto; min-height: 143px; } -/* line 5524, ../../../scss/_app_styles.scss */ +/* line 5523, ../../../scss/_app_styles.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 5534, ../../../scss/_app_styles.scss */ +/* line 5533, ../../../scss/_app_styles.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 5539, ../../../scss/_app_styles.scss */ +/* line 5538, ../../../scss/_app_styles.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 5542, ../../../scss/_app_styles.scss */ +/* line 5541, ../../../scss/_app_styles.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -29108,7 +29107,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 5559, ../../../scss/_app_styles.scss */ +/* line 5558, ../../../scss/_app_styles.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -29122,7 +29121,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* Creating and editing course Structure */ -/* line 5576, ../../../scss/_app_styles.scss */ +/* line 5575, ../../../scss/_app_styles.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -29133,34 +29132,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 5585, ../../../scss/_app_styles.scss */ +/* line 5584, ../../../scss/_app_styles.scss */ .group_tile:hover { opacity: 0.7; } -/* line 5588, ../../../scss/_app_styles.scss */ +/* line 5587, ../../../scss/_app_styles.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 5595, ../../../scss/_app_styles.scss */ +/* line 5594, ../../../scss/_app_styles.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 5602, ../../../scss/_app_styles.scss */ +/* line 5601, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 5605, ../../../scss/_app_styles.scss */ +/* line 5604, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 5608, ../../../scss/_app_styles.scss */ +/* line 5607, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -29168,15 +29167,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 5616, ../../../scss/_app_styles.scss */ +/* line 5615, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 5620, ../../../scss/_app_styles.scss */ +/* line 5619, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 5622, ../../../scss/_app_styles.scss */ +/* line 5621, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -29187,27 +29186,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 5632, ../../../scss/_app_styles.scss */ +/* line 5631, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 5637, ../../../scss/_app_styles.scss */ +/* line 5636, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 5643, ../../../scss/_app_styles.scss */ +/* line 5642, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 5650, ../../../scss/_app_styles.scss */ +/* line 5649, ../../../scss/_app_styles.scss */ .max-width { max-width: 100%; } -/* line 5656, ../../../scss/_app_styles.scss */ +/* line 5655, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29217,7 +29216,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 5665, ../../../scss/_app_styles.scss */ +/* line 5664, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -29234,7 +29233,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 5678, ../../../scss/_app_styles.scss */ +/* line 5677, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -29244,28 +29243,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 5687, ../../../scss/_app_styles.scss */ +/* line 5686, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 5692, ../../../scss/_app_styles.scss */ +/* line 5691, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background-color: #ffffff; } -/* line 5697, ../../../scss/_app_styles.scss */ +/* line 5696, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 5703, ../../../scss/_app_styles.scss */ +/* line 5702, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 5707, ../../../scss/_app_styles.scss */ +/* line 5706, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -29278,7 +29277,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 5720, ../../../scss/_app_styles.scss */ +/* line 5719, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -29293,7 +29292,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Unit_Structure styles */ -/* line 5738, ../../../scss/_app_styles.scss */ +/* line 5737, ../../../scss/_app_styles.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -29301,12 +29300,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 5746, ../../../scss/_app_styles.scss */ +/* line 5745, ../../../scss/_app_styles.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 5750, ../../../scss/_app_styles.scss */ +/* line 5749, ../../../scss/_app_styles.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -29314,17 +29313,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 5756, ../../../scss/_app_styles.scss */ +/* line 5755, ../../../scss/_app_styles.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 5762, ../../../scss/_app_styles.scss */ +/* line 5761, ../../../scss/_app_styles.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 5767, ../../../scss/_app_styles.scss */ +/* line 5766, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29334,25 +29333,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 5776, ../../../scss/_app_styles.scss */ +/* line 5775, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5780, ../../../scss/_app_styles.scss */ +/* line 5779, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 5785, ../../../scss/_app_styles.scss */ +/* line 5784, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 5794, ../../../scss/_app_styles.scss */ +/* line 5793, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29361,7 +29360,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5801, ../../../scss/_app_styles.scss */ +/* line 5800, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29370,15 +29369,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 5810, ../../../scss/_app_styles.scss */ +/* line 5809, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 5815, ../../../scss/_app_styles.scss */ +/* line 5814, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 5818, ../../../scss/_app_styles.scss */ +/* line 5817, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29386,21 +29385,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 5828, ../../../scss/_app_styles.scss */ +/* line 5827, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 5834, ../../../scss/_app_styles.scss */ +/* line 5833, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 5842, ../../../scss/_app_styles.scss */ +/* line 5841, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 5844, ../../../scss/_app_styles.scss */ +/* line 5843, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29409,7 +29408,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5851, ../../../scss/_app_styles.scss */ +/* line 5850, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29417,11 +29416,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5860, ../../../scss/_app_styles.scss */ +/* line 5859, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 5869, ../../../scss/_app_styles.scss */ +/* line 5868, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29433,49 +29432,49 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 5879, ../../../scss/_app_styles.scss */ +/* line 5878, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 5885, ../../../scss/_app_styles.scss */ +/* line 5884, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 5888, ../../../scss/_app_styles.scss */ +/* line 5887, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 5897, ../../../scss/_app_styles.scss */ +/* line 5896, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 5902, ../../../scss/_app_styles.scss */ +/* line 5901, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 5906, ../../../scss/_app_styles.scss */ +/* line 5905, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 5908, ../../../scss/_app_styles.scss */ +/* line 5907, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 5911, ../../../scss/_app_styles.scss */ +/* line 5910, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 5917, ../../../scss/_app_styles.scss */ +/* line 5916, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29483,29 +29482,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 15px 5px; cursor: pointer; } -/* line 5932, ../../../scss/_app_styles.scss */ +/* line 5931, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 5940, ../../../scss/_app_styles.scss */ +/* line 5939, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 5946, ../../../scss/_app_styles.scss */ +/* line 5945, ../../../scss/_app_styles.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 5955, ../../../scss/_app_styles.scss */ +/* line 5954, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 5960, ../../../scss/_app_styles.scss */ +/* line 5959, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29513,28 +29512,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 5967, ../../../scss/_app_styles.scss */ +/* line 5966, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5972, ../../../scss/_app_styles.scss */ +/* line 5971, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5977, ../../../scss/_app_styles.scss */ +/* line 5976, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 5979, ../../../scss/_app_styles.scss */ +/* line 5978, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 5983, ../../../scss/_app_styles.scss */ +/* line 5982, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -29546,21 +29545,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; border-radius: 3px; } -/* line 5994, ../../../scss/_app_styles.scss */ +/* line 5993, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 5999, ../../../scss/_app_styles.scss */ +/* line 5998, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 6005, ../../../scss/_app_styles.scss */ +/* line 6004, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 6011, ../../../scss/_app_styles.scss */ +/* line 6010, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -29568,19 +29567,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 6018, ../../../scss/_app_styles.scss */ +/* line 6017, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 6025, ../../../scss/_app_styles.scss */ +/* line 6024, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6036, ../../../scss/_app_styles.scss */ +/* line 6035, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -29591,7 +29590,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 6053, ../../../scss/_app_styles.scss */ +/* line 6052, ../../../scss/_app_styles.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -29606,66 +29605,66 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* lesspn listing LMS */ -/* line 6069, ../../../scss/_app_styles.scss */ +/* line 6068, ../../../scss/_app_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 6077, ../../../scss/_app_styles.scss */ +/* line 6076, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 6080, ../../../scss/_app_styles.scss */ +/* line 6079, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 6082, ../../../scss/_app_styles.scss */ +/* line 6081, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 6089, ../../../scss/_app_styles.scss */ +/* line 6088, ../../../scss/_app_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 6091, ../../../scss/_app_styles.scss */ +/* line 6090, ../../../scss/_app_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 6096, ../../../scss/_app_styles.scss */ +/* line 6095, ../../../scss/_app_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 6104, ../../../scss/_app_styles.scss */ +/* line 6103, ../../../scss/_app_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6110, ../../../scss/_app_styles.scss */ +/* line 6109, ../../../scss/_app_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6117, ../../../scss/_app_styles.scss */ +/* line 6116, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 6120, ../../../scss/_app_styles.scss */ +/* line 6119, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 6123, ../../../scss/_app_styles.scss */ +/* line 6122, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 6126, ../../../scss/_app_styles.scss */ +/* line 6125, ../../../scss/_app_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; @@ -29675,23 +29674,23 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Styling for the Secondary header 2 */ -/* line 6145, ../../../scss/_app_styles.scss */ +/* line 6144, ../../../scss/_app_styles.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 6148, ../../../scss/_app_styles.scss */ +/* line 6147, ../../../scss/_app_styles.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6156, ../../../scss/_app_styles.scss */ +/* line 6155, ../../../scss/_app_styles.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 6165, ../../../scss/_app_styles.scss */ +/* line 6164, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { position: relative; color: #fff; @@ -29702,56 +29701,56 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: -2px; border-right: 1px solid white; } -/* line 6174, ../../../scss/_app_styles.scss */ +/* line 6173, ../../../scss/_app_styles.scss */ .activity_player_header .header_title a { color: #ffc14f; } @media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6164, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 938px); } } @media only screen and (min-device-width: 2131px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6164, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 970px); } } @media only screen and (max-device-width: 1024px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6164, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 753px); } } -/* line 6251, ../../../scss/_app_styles.scss */ +/* line 6250, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon { font-size: 16px; line-height: 45px; color: #ffc14f; } -/* line 6257, ../../../scss/_app_styles.scss */ +/* line 6256, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 6263, ../../../scss/_app_styles.scss */ +/* line 6262, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 10px; } @media screen and (min-width: 1025px) { - /* line 6263, ../../../scss/_app_styles.scss */ + /* line 6262, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 15px; } } @media screen and (min-width: 1025px) { - /* line 6270, ../../../scss/_app_styles.scss */ + /* line 6269, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { float: right; margin-right: 70px; @@ -29759,73 +29758,73 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media screen and (max-width: 1024px) { - /* line 6270, ../../../scss/_app_styles.scss */ + /* line 6269, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { background-color: rgba(107, 0, 84, 0.97); } } -/* line 6283, ../../../scss/_app_styles.scss */ +/* line 6282, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6289, ../../../scss/_app_styles.scss */ +/* line 6288, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block { padding: 0px 15px; margin-left: -2px; border-right: 1px solid white; } -/* line 6293, ../../../scss/_app_styles.scss */ +/* line 6292, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block a { color: #ffc14f; } -/* line 6299, ../../../scss/_app_styles.scss */ +/* line 6298, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 9px; } @media screen and (min-width: 1025px) { - /* line 6299, ../../../scss/_app_styles.scss */ + /* line 6298, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 15px; } } -/* line 6307, ../../../scss/_app_styles.scss */ +/* line 6306, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 7px; } @media screen and (min-width: 1025px) { - /* line 6307, ../../../scss/_app_styles.scss */ + /* line 6306, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 15px; } } -/* line 6316, ../../../scss/_app_styles.scss */ +/* line 6315, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 6319, ../../../scss/_app_styles.scss */ +/* line 6318, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button i { color: #71318b; } -/* line 6325, ../../../scss/_app_styles.scss */ +/* line 6324, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 6329, ../../../scss/_app_styles.scss */ +/* line 6328, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 6335, ../../../scss/_app_styles.scss */ +/* line 6334, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .pagination:not(i) { color: #a983b9; } -/* line 6343, ../../../scss/_app_styles.scss */ +/* line 6342, ../../../scss/_app_styles.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -29833,29 +29832,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 6350, ../../../scss/_app_styles.scss */ +/* line 6349, ../../../scss/_app_styles.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 6354, ../../../scss/_app_styles.scss */ +/* line 6353, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6360, ../../../scss/_app_styles.scss */ +/* line 6359, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6366, ../../../scss/_app_styles.scss */ +/* line 6365, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 6371, ../../../scss/_app_styles.scss */ +/* line 6370, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29865,25 +29864,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 6380, ../../../scss/_app_styles.scss */ +/* line 6379, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6384, ../../../scss/_app_styles.scss */ +/* line 6383, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6389, ../../../scss/_app_styles.scss */ +/* line 6388, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6398, ../../../scss/_app_styles.scss */ +/* line 6397, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29892,7 +29891,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6405, ../../../scss/_app_styles.scss */ +/* line 6404, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29901,15 +29900,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 6414, ../../../scss/_app_styles.scss */ +/* line 6413, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6419, ../../../scss/_app_styles.scss */ +/* line 6418, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6422, ../../../scss/_app_styles.scss */ +/* line 6421, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29917,21 +29916,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 6432, ../../../scss/_app_styles.scss */ +/* line 6431, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6438, ../../../scss/_app_styles.scss */ +/* line 6437, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6446, ../../../scss/_app_styles.scss */ +/* line 6445, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6448, ../../../scss/_app_styles.scss */ +/* line 6447, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29940,7 +29939,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6455, ../../../scss/_app_styles.scss */ +/* line 6454, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29948,11 +29947,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6464, ../../../scss/_app_styles.scss */ +/* line 6463, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6473, ../../../scss/_app_styles.scss */ +/* line 6472, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29964,48 +29963,48 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 6483, ../../../scss/_app_styles.scss */ +/* line 6482, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6488, ../../../scss/_app_styles.scss */ +/* line 6487, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6491, ../../../scss/_app_styles.scss */ +/* line 6490, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6500, ../../../scss/_app_styles.scss */ +/* line 6499, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6505, ../../../scss/_app_styles.scss */ +/* line 6504, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6509, ../../../scss/_app_styles.scss */ +/* line 6508, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6511, ../../../scss/_app_styles.scss */ +/* line 6510, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6514, ../../../scss/_app_styles.scss */ +/* line 6513, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6520, ../../../scss/_app_styles.scss */ +/* line 6519, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -30014,7 +30013,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; } -/* line 6538, ../../../scss/_app_styles.scss */ +/* line 6537, ../../../scss/_app_styles.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -30022,26 +30021,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 10px; padding-right: 4px; } -/* line 6544, ../../../scss/_app_styles.scss */ +/* line 6543, ../../../scss/_app_styles.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 6549, ../../../scss/_app_styles.scss */ +/* line 6548, ../../../scss/_app_styles.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6555, ../../../scss/_app_styles.scss */ +/* line 6554, ../../../scss/_app_styles.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 6561, ../../../scss/_app_styles.scss */ +/* line 6560, ../../../scss/_app_styles.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -30051,29 +30050,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 6570, ../../../scss/_app_styles.scss */ +/* line 6569, ../../../scss/_app_styles.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 6574, ../../../scss/_app_styles.scss */ +/* line 6573, ../../../scss/_app_styles.scss */ .activity-title > li > a { color: black; } -/* line 6583, ../../../scss/_app_styles.scss */ +/* line 6582, ../../../scss/_app_styles.scss */ .activity_page_rendered { margin-left: 20px; max-width: 900px; } /* Rating css */ -/* line 6591, ../../../scss/_app_styles.scss */ +/* line 6590, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 6593, ../../../scss/_app_styles.scss */ +/* line 6592, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -30081,19 +30080,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { unicode-bidi: bidi-override; direction: rtl; } -/* line 6601, ../../../scss/_app_styles.scss */ +/* line 6600, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 6603, ../../../scss/_app_styles.scss */ +/* line 6602, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 6609, ../../../scss/_app_styles.scss */ +/* line 6608, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 6611, ../../../scss/_app_styles.scss */ +/* line 6610, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -30106,7 +30105,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0; vertical-align: bottom; } -/* line 6623, ../../../scss/_app_styles.scss */ +/* line 6622, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -30114,32 +30113,32 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* WHITE STAR */ color: #888; } -/* line 6630, ../../../scss/_app_styles.scss */ +/* line 6629, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 6641, ../../../scss/_app_styles.scss */ +/* line 6640, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 6648, ../../../scss/_app_styles.scss */ +/* line 6647, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 6656, ../../../scss/_app_styles.scss */ +/* line 6655, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 6661, ../../../scss/_app_styles.scss */ +/* line 6660, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -30148,29 +30147,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-shadow: 0 0 1px #333; } -/* line 6671, ../../../scss/_app_styles.scss */ +/* line 6670, ../../../scss/_app_styles.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 6675, ../../../scss/_app_styles.scss */ +/* line 6674, ../../../scss/_app_styles.scss */ .input_links { margin-left: 10px; } -/* line 6677, ../../../scss/_app_styles.scss */ +/* line 6676, ../../../scss/_app_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 6683, ../../../scss/_app_styles.scss */ +/* line 6682, ../../../scss/_app_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 6691, ../../../scss/_app_styles.scss */ +/* line 6690, ../../../scss/_app_styles.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -30179,19 +30178,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 6700, ../../../scss/_app_styles.scss */ +/* line 6699, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 6704, ../../../scss/_app_styles.scss */ +/* line 6703, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 6710, ../../../scss/_app_styles.scss */ +/* line 6709, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -30199,12 +30198,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; margin-left: 12%; } -/* line 6718, ../../../scss/_app_styles.scss */ +/* line 6717, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 6724, ../../../scss/_app_styles.scss */ +/* line 6723, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -30213,21 +30212,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: none; color: #8E8E8E; } -/* line 6733, ../../../scss/_app_styles.scss */ +/* line 6732, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 6738, ../../../scss/_app_styles.scss */ +/* line 6737, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 6740, ../../../scss/_app_styles.scss */ +/* line 6739, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 6743, ../../../scss/_app_styles.scss */ +/* line 6742, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -30238,24 +30237,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #757575; margin-right: 20px; } -/* line 6753, ../../../scss/_app_styles.scss */ +/* line 6752, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 6757, ../../../scss/_app_styles.scss */ +/* line 6756, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 6760, ../../../scss/_app_styles.scss */ +/* line 6759, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 6765, ../../../scss/_app_styles.scss */ +/* line 6764, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 6769, ../../../scss/_app_styles.scss */ +/* line 6768, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -30267,7 +30266,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; color: #222222; } -/* line 6780, ../../../scss/_app_styles.scss */ +/* line 6779, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -30275,15 +30274,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 8px; top: 4px; } -/* line 6788, ../../../scss/_app_styles.scss */ +/* line 6787, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 6790, ../../../scss/_app_styles.scss */ +/* line 6789, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 6793, ../../../scss/_app_styles.scss */ +/* line 6792, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -30293,25 +30292,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { letter-spacing: 0.8px; color: #999999; } -/* line 6802, ../../../scss/_app_styles.scss */ +/* line 6801, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 6808, ../../../scss/_app_styles.scss */ +/* line 6807, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 6817, ../../../scss/_app_styles.scss */ +/* line 6816, ../../../scss/_app_styles.scss */ .icon-color { color: #2e3f51 !important; padding: right; } /* The asset tile */ -/* line 6827, ../../../scss/_app_styles.scss */ +/* line 6826, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -30321,7 +30320,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 6836, ../../../scss/_app_styles.scss */ +/* line 6835, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -30338,7 +30337,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 6849, ../../../scss/_app_styles.scss */ +/* line 6848, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -30348,28 +30347,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 6858, ../../../scss/_app_styles.scss */ +/* line 6857, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 6863, ../../../scss/_app_styles.scss */ +/* line 6862, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 6868, ../../../scss/_app_styles.scss */ +/* line 6867, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 6874, ../../../scss/_app_styles.scss */ +/* line 6873, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 6878, ../../../scss/_app_styles.scss */ +/* line 6877, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -30382,7 +30381,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 6891, ../../../scss/_app_styles.scss */ +/* line 6890, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -30396,7 +30395,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 6906, ../../../scss/_app_styles.scss */ +/* line 6905, ../../../scss/_app_styles.scss */ .orange-button-subtitle { color: #ce7869; padding: 4px 5px; @@ -30409,13 +30408,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 6917, ../../../scss/_app_styles.scss */ +/* line 6916, ../../../scss/_app_styles.scss */ .orange-button-subtitle:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 6923, ../../../scss/_app_styles.scss */ +/* line 6922, ../../../scss/_app_styles.scss */ .transcript-toggler { display: block; width: 155px !important; @@ -30431,12 +30430,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; } -/* line 6938, ../../../scss/_app_styles.scss */ +/* line 6937, ../../../scss/_app_styles.scss */ .asset_list { margin-left: 12px; } -/* line 6942, ../../../scss/_app_styles.scss */ +/* line 6941, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -30445,22 +30444,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6951, ../../../scss/_app_styles.scss */ +/* line 6950, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6958, ../../../scss/_app_styles.scss */ +/* line 6957, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6964, ../../../scss/_app_styles.scss */ +/* line 6963, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6966, ../../../scss/_app_styles.scss */ +/* line 6965, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -30469,15 +30468,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6973, ../../../scss/_app_styles.scss */ +/* line 6972, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6977, ../../../scss/_app_styles.scss */ +/* line 6976, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6983, ../../../scss/_app_styles.scss */ +/* line 6982, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30486,7 +30485,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6994, ../../../scss/_app_styles.scss */ +/* line 6993, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -30495,24 +30494,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 280px; border: 1px solid #164A7B; } -/* line 7003, ../../../scss/_app_styles.scss */ +/* line 7002, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 7010, ../../../scss/_app_styles.scss */ +/* line 7009, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 7015, ../../../scss/_app_styles.scss */ +/* line 7014, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 7019, ../../../scss/_app_styles.scss */ +/* line 7018, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -30523,14 +30522,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 7029, ../../../scss/_app_styles.scss */ +/* line 7028, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 7036, ../../../scss/_app_styles.scss */ + /* line 7035, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30538,7 +30537,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7045, ../../../scss/_app_styles.scss */ + /* line 7044, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30546,7 +30545,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7052, ../../../scss/_app_styles.scss */ + /* line 7051, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30554,14 +30553,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7059, ../../../scss/_app_styles.scss */ + /* line 7058, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 7067, ../../../scss/_app_styles.scss */ +/* line 7066, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30576,14 +30575,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7083, ../../../scss/_app_styles.scss */ +/* line 7082, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 7090, ../../../scss/_app_styles.scss */ + /* line 7089, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30594,7 +30593,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7101, ../../../scss/_app_styles.scss */ + /* line 7100, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30605,7 +30604,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7112, ../../../scss/_app_styles.scss */ + /* line 7111, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30616,7 +30615,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7123, ../../../scss/_app_styles.scss */ + /* line 7122, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30626,7 +30625,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7134, ../../../scss/_app_styles.scss */ +/* line 7133, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30641,14 +30640,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7150, ../../../scss/_app_styles.scss */ +/* line 7149, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 7157, ../../../scss/_app_styles.scss */ + /* line 7156, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30659,7 +30658,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7168, ../../../scss/_app_styles.scss */ + /* line 7167, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30670,7 +30669,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7179, ../../../scss/_app_styles.scss */ + /* line 7178, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30681,7 +30680,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7190, ../../../scss/_app_styles.scss */ + /* line 7189, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30691,11 +30690,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7201, ../../../scss/_app_styles.scss */ +/* line 7200, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 7203, ../../../scss/_app_styles.scss */ +/* line 7202, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30704,11 +30703,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 7211, ../../../scss/_app_styles.scss */ +/* line 7210, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 7217, ../../../scss/_app_styles.scss */ +/* line 7216, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30717,7 +30716,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7228, ../../../scss/_app_styles.scss */ +/* line 7227, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30728,22 +30727,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7238, ../../../scss/_app_styles.scss */ +/* line 7237, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7241, ../../../scss/_app_styles.scss */ +/* line 7240, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7246, ../../../scss/_app_styles.scss */ +/* line 7245, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7257, ../../../scss/_app_styles.scss */ +/* line 7256, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30754,26 +30753,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7267, ../../../scss/_app_styles.scss */ +/* line 7266, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7270, ../../../scss/_app_styles.scss */ +/* line 7269, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7274, ../../../scss/_app_styles.scss */ +/* line 7273, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7280, ../../../scss/_app_styles.scss */ +/* line 7279, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7282, ../../../scss/_app_styles.scss */ +/* line 7281, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30782,7 +30781,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7291, ../../../scss/_app_styles.scss */ +/* line 7290, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30791,7 +30790,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7305, ../../../scss/_app_styles.scss */ +/* line 7304, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -30801,19 +30800,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Asset detail */ -/* line 7316, ../../../scss/_app_styles.scss */ +/* line 7315, ../../../scss/_app_styles.scss */ .overlay-head { height: 60px; margin-bottom: 20px; } -/* line 7322, ../../../scss/_app_styles.scss */ +/* line 7321, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7327, ../../../scss/_app_styles.scss */ +/* line 7326, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30827,13 +30826,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7339, ../../../scss/_app_styles.scss */ +/* line 7338, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7346, ../../../scss/_app_styles.scss */ +/* line 7345, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; padding: 7px 14px; @@ -30846,22 +30845,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7357, ../../../scss/_app_styles.scss */ +/* line 7356, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7362, ../../../scss/_app_styles.scss */ +/* line 7361, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; background: #fff; } -/* line 7365, ../../../scss/_app_styles.scss */ +/* line 7364, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: #fff; } -/* line 7368, ../../../scss/_app_styles.scss */ +/* line 7367, ../../../scss/_app_styles.scss */ .orange-button-template > a { color: #ce7869; padding: 7px 14px; @@ -30874,13 +30873,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7379, ../../../scss/_app_styles.scss */ +/* line 7378, ../../../scss/_app_styles.scss */ .orange-button-template > a:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7386, ../../../scss/_app_styles.scss */ +/* line 7385, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30892,7 +30891,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7397, ../../../scss/_app_styles.scss */ +/* line 7396, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30900,18 +30899,18 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7406, ../../../scss/_app_styles.scss */ +/* line 7405, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7413, ../../../scss/_app_styles.scss */ +/* line 7412, ../../../scss/_app_styles.scss */ .page-name { margin-top: 8px; } -/* line 7417, ../../../scss/_app_styles.scss */ +/* line 7416, ../../../scss/_app_styles.scss */ .tag-ele { font-weight: normal; text-align: center; @@ -30930,7 +30929,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: none; } -/* line 7435, ../../../scss/_app_styles.scss */ +/* line 7434, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30948,12 +30947,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7451, ../../../scss/_app_styles.scss */ +/* line 7450, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7456, ../../../scss/_app_styles.scss */ +/* line 7455, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30965,13 +30964,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7466, ../../../scss/_app_styles.scss */ +/* line 7465, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7474, ../../../scss/_app_styles.scss */ +/* line 7473, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30988,13 +30987,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7489, ../../../scss/_app_styles.scss */ +/* line 7488, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* line 7500, ../../../scss/_app_styles.scss */ +/* line 7499, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -31002,7 +31001,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-size: 100% 100%; position: relative; } -/* line 7507, ../../../scss/_app_styles.scss */ +/* line 7506, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -31016,13 +31015,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7521, ../../../scss/_app_styles.scss */ +/* line 7520, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 7526, ../../../scss/_app_styles.scss */ +/* line 7525, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -31031,79 +31030,79 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow: hidden; background-color: #fff; } -/* line 7534, ../../../scss/_app_styles.scss */ +/* line 7533, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 7539, ../../../scss/_app_styles.scss */ +/* line 7538, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 7544, ../../../scss/_app_styles.scss */ +/* line 7543, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 7549, ../../../scss/_app_styles.scss */ +/* line 7548, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 7557, ../../../scss/_app_styles.scss */ +/* line 7556, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 7561, ../../../scss/_app_styles.scss */ +/* line 7560, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 7570, ../../../scss/_app_styles.scss */ +/* line 7569, ../../../scss/_app_styles.scss */ .lms_explore_head_unit { width: 100%; height: 50px; background-color: #fff; color: #164A7B; } -/* line 7575, ../../../scss/_app_styles.scss */ +/* line 7574, ../../../scss/_app_styles.scss */ .lms_explore_head_unit > p { margin-left: 81px; padding: 0px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 7581, ../../../scss/_app_styles.scss */ +/* line 7580, ../../../scss/_app_styles.scss */ .lms_explore_head_unit > a { padding: 0px 85px 3px 0px; } -/* line 7587, ../../../scss/_app_styles.scss */ +/* line 7586, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -19.3px; } -/* line 7594, ../../../scss/_app_styles.scss */ +/* line 7593, ../../../scss/_app_styles.scss */ .course-students-data { margin: 2px 2px 2px 2px; border: 2px solid #164a7b; padding: 19px 14px 0px 5px; } -/* line 7601, ../../../scss/_app_styles.scss */ +/* line 7600, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 7604, ../../../scss/_app_styles.scss */ +/* line 7603, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 7612, ../../../scss/_app_styles.scss */ +/* line 7611, ../../../scss/_app_styles.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -31119,7 +31118,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7631, ../../../scss/_app_styles.scss */ +/* line 7630, ../../../scss/_app_styles.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -31129,7 +31128,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7640, ../../../scss/_app_styles.scss */ +/* line 7639, ../../../scss/_app_styles.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -31139,7 +31138,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 7649, ../../../scss/_app_styles.scss */ +/* line 7648, ../../../scss/_app_styles.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; @@ -31159,13 +31158,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #A6D7F5; } }*/ -/* line 7672, ../../../scss/_app_styles.scss */ +/* line 7671, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 7677, ../../../scss/_app_styles.scss */ +/* line 7676, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title { width: 43%; /* background-color: blue;*/ @@ -31175,7 +31174,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; color: #fff; } -/* line 7686, ../../../scss/_app_styles.scss */ +/* line 7685, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title.active { background-color: #719dc7; border: 1px solid #CCC; @@ -31183,7 +31182,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; } -/* line 7699, ../../../scss/_app_styles.scss */ +/* line 7698, ../../../scss/_app_styles.scss */ .create_unit { background: #fff; box-shadow: 0px 2px 3px #000; @@ -31191,7 +31190,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 10px; } -/* line 7707, ../../../scss/_app_styles.scss */ +/* line 7706, ../../../scss/_app_styles.scss */ .asset-unit-button { color: #ce7869; padding: 7px 14px; @@ -31203,13 +31202,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 30px; margin-bottom: 8px; } -/* line 7718, ../../../scss/_app_styles.scss */ +/* line 7717, ../../../scss/_app_styles.scss */ .asset-unit-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7724, ../../../scss/_app_styles.scss */ +/* line 7723, ../../../scss/_app_styles.scss */ .course_creator_header { width: 100%; height: 70px; @@ -31217,7 +31216,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7731, ../../../scss/_app_styles.scss */ +/* line 7730, ../../../scss/_app_styles.scss */ .course_creator_header .unit_editor { width: 100%; height: 320px; @@ -31225,13 +31224,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7740, ../../../scss/_app_styles.scss */ +/* line 7739, ../../../scss/_app_styles.scss */ .course_creator_header .back_to_group { padding: 0px 15px 0px 10px; border-right: 1px solid #ccc; margin-right: 15px; } -/* line 7746, ../../../scss/_app_styles.scss */ +/* line 7745, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit { width: 500px; height: 40px; @@ -31240,24 +31239,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7755, ../../../scss/_app_styles.scss */ +/* line 7754, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit:focus { border: 1px solid #74b3dc; } -/* line 7759, ../../../scss/_app_styles.scss */ +/* line 7758, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7767, ../../../scss/_app_styles.scss */ +/* line 7766, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit select { font-size: 14px; font-family: 'OpenSans-Regular', sans-serif; color: gray; border: 0px solid #74b3dc; } -/* line 7778, ../../../scss/_app_styles.scss */ +/* line 7777, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input { width: 500px; height: 40px; @@ -31266,31 +31265,31 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7786, ../../../scss/_app_styles.scss */ +/* line 7785, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input:focus { border: 1px solid #74b3dc; } -/* line 7790, ../../../scss/_app_styles.scss */ +/* line 7789, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7800, ../../../scss/_app_styles.scss */ +/* line 7799, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading h5 { margin-top: 15px; } -/* line 7805, ../../../scss/_app_styles.scss */ +/* line 7804, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading span { letter-spacing: 0.9px; font-weight: 600; line-height: 50px; } -/* line 7813, ../../../scss/_app_styles.scss */ +/* line 7812, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul { margin: 0px; } -/* line 7816, ../../../scss/_app_styles.scss */ +/* line 7815, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li { list-style-type: none; display: inline-block; @@ -31299,11 +31298,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; letter-spacing: 0.8px; } -/* line 7825, ../../../scss/_app_styles.scss */ +/* line 7824, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { border-bottom: 3px solid #ffc14e; } -/* line 7830, ../../../scss/_app_styles.scss */ +/* line 7829, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions span { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -31315,7 +31314,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; border-radius: 3px; } -/* line 7842, ../../../scss/_app_styles.scss */ +/* line 7841, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -31328,20 +31327,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; } -/* line 7859, ../../../scss/_app_styles.scss */ +/* line 7858, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: 2.7px; } -/* line 7864, ../../../scss/_app_styles.scss */ +/* line 7863, ../../../scss/_app_styles.scss */ .empty-dashboard-message { border: 3px solid #e4e4e4; background: #f8f8f8; padding: 40px 0; text-align: center; } -/* line 7870, ../../../scss/_app_styles.scss */ +/* line 7869, ../../../scss/_app_styles.scss */ .empty-dashboard-message > a { background-color: #164a7b; border: 1px solid #164a7b; @@ -31355,7 +31354,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 5px; padding: 15px 20px; } -/* line 7884, ../../../scss/_app_styles.scss */ +/* line 7883, ../../../scss/_app_styles.scss */ .empty-dashboard-message .button-explore-courses { font-size: 20px; font-weight: normal; @@ -31365,7 +31364,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 170px; } -/* line 7899, ../../../scss/_app_styles.scss */ +/* line 7898, ../../../scss/_app_styles.scss */ .module_card { display: table; height: 290px; @@ -31376,16 +31375,16 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); } -/* line 7909, ../../../scss/_app_styles.scss */ +/* line 7908, ../../../scss/_app_styles.scss */ .module_card:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 7913, ../../../scss/_app_styles.scss */ +/* line 7912, ../../../scss/_app_styles.scss */ .module_card > div { display: table-cell; height: 290px; } -/* line 7918, ../../../scss/_app_styles.scss */ +/* line 7917, ../../../scss/_app_styles.scss */ .module_card .card_banner { width: 250px; height: 290px; @@ -31399,14 +31398,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-radius .2s; transition: border-radius .2s; } -/* line 7931, ../../../scss/_app_styles.scss */ +/* line 7930, ../../../scss/_app_styles.scss */ .module_card .card_banner > img { height: 100%; width: 100%; border-radius: 4px; -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); } -/* line 7936, ../../../scss/_app_styles.scss */ +/* line 7935, ../../../scss/_app_styles.scss */ .module_card .card_banner > img:hover { -webkit-transform: scale(1.03); -moz-transform: scale(1.03); @@ -31415,7 +31414,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transform: scale(1.03); opacity: 0.8; } -/* line 7948, ../../../scss/_app_styles.scss */ +/* line 7947, ../../../scss/_app_styles.scss */ .module_card .card_banner > h4 { position: absolute; top: 100px; @@ -31424,7 +31423,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #ffffff !important; text-shadow: 2px 0px 8px black; } -/* line 7963, ../../../scss/_app_styles.scss */ +/* line 7962, ../../../scss/_app_styles.scss */ .module_card .card_title { display: block; width: 230px; @@ -31434,27 +31433,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px auto; letter-spacing: 1px; } -/* line 7974, ../../../scss/_app_styles.scss */ +/* line 7973, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_banner { border-radius: 8px; } -/* line 7977, ../../../scss/_app_styles.scss */ +/* line 7976, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7982, ../../../scss/_app_styles.scss */ +/* line 7981, ../../../scss/_app_styles.scss */ .module_card.animated_card.isOpen .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7986, ../../../scss/_app_styles.scss */ +/* line 7985, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_summary { left: 30px; } -/* line 7989, ../../../scss/_app_styles.scss */ +/* line 7988, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_summary { left: 5px; } -/* line 7993, ../../../scss/_app_styles.scss */ +/* line 7992, ../../../scss/_app_styles.scss */ .module_card .card_summary { width: 290px; padding: 0px 15px; @@ -31470,35 +31469,35 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Safari */ transition-property: left; } -/* line 8007, ../../../scss/_app_styles.scss */ +/* line 8006, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_label { font-weight: 500; font-size: 12.5px; letter-spacing: 1px; color: black; } -/* line 8013, ../../../scss/_app_styles.scss */ +/* line 8012, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section { margin: 5px 0px; padding: 5px 0px; } -/* line 8017, ../../../scss/_app_styles.scss */ +/* line 8016, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section:not(:last-child) { border-bottom: 1px solid #ccc; } -/* line 8020, ../../../scss/_app_styles.scss */ +/* line 8019, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section p { margin-bottom: 7px; font-size: 12.5px; } -/* line 8024, ../../../scss/_app_styles.scss */ +/* line 8023, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .ellipsis { width: 245px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -/* line 8032, ../../../scss/_app_styles.scss */ +/* line 8031, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol { background: #a2238d; height: 37px; @@ -31512,11 +31511,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 8045, ../../../scss/_app_styles.scss */ +/* line 8044, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 8051, ../../../scss/_app_styles.scss */ +/* line 8050, ../../../scss/_app_styles.scss */ .module_card .card_summary .module_brief { display: block; /* Fallback for non-webkit */ @@ -31533,12 +31532,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: black; } -/* line 8068, ../../../scss/_app_styles.scss */ +/* line 8067, ../../../scss/_app_styles.scss */ .inner { display: inline-block !important; } -/* line 8075, ../../../scss/_app_styles.scss */ +/* line 8074, ../../../scss/_app_styles.scss */ .enroll-btn { width: 90px; opacity: 1; @@ -31554,7 +31553,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #4b4852; } -/* line 8095, ../../../scss/_app_styles.scss */ +/* line 8094, ../../../scss/_app_styles.scss */ .enrollBtn { background: #a2238d; height: 37px; @@ -31569,51 +31568,51 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /*****Toolbar CSS******/ -/* line 8110, ../../../scss/_app_styles.scss */ +/* line 8109, ../../../scss/_app_styles.scss */ #toolbar { background-color: #3e3e3e; } -/* line 8113, ../../../scss/_app_styles.scss */ +/* line 8112, ../../../scss/_app_styles.scss */ .datetime { color: #eaeaea; padding: 4px 0px 2px 5px; font-size: 11px; } -/* line 8118, ../../../scss/_app_styles.scss */ +/* line 8117, ../../../scss/_app_styles.scss */ .changefont { text-align: right; padding: 2px 5px 1px 0px; } -/* line 8122, ../../../scss/_app_styles.scss */ +/* line 8121, ../../../scss/_app_styles.scss */ .changefont .minus { font-size: 60%; color: #eaeaea; } -/* line 8125, ../../../scss/_app_styles.scss */ +/* line 8124, ../../../scss/_app_styles.scss */ .changefont .normal { font-size: 80%; color: #eaeaea; } -/* line 8128, ../../../scss/_app_styles.scss */ +/* line 8127, ../../../scss/_app_styles.scss */ .changefont .plus { font-size: 100%; color: #eaeaea; } /***********Landing page***************/ -/* line 8137, ../../../scss/_app_styles.scss */ +/* line 8136, ../../../scss/_app_styles.scss */ .about_us { background: #20ade0; } -/* line 8140, ../../../scss/_app_styles.scss */ +/* line 8139, ../../../scss/_app_styles.scss */ .analytics { margin-top: 20px; } -/* line 8143, ../../../scss/_app_styles.scss */ +/* line 8142, ../../../scss/_app_styles.scss */ .square { border: 4px solid #ffffff; position: relative; @@ -31624,14 +31623,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 30px; } -/* line 8153, ../../../scss/_app_styles.scss */ +/* line 8152, ../../../scss/_app_styles.scss */ .square:after { content: ""; display: block; padding-bottom: 100%; } -/* line 8159, ../../../scss/_app_styles.scss */ +/* line 8158, ../../../scss/_app_styles.scss */ .box-content { position: absolute; width: 100%; @@ -31640,7 +31639,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 20%; } -/* line 8172, ../../../scss/_app_styles.scss */ +/* line 8171, ../../../scss/_app_styles.scss */ .activity-slider { font-family: Arial; width: 800px; @@ -31648,7 +31647,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0 auto; } -/* line 8179, ../../../scss/_app_styles.scss */ +/* line 8178, ../../../scss/_app_styles.scss */ .activity-slider h3 { background: #fff; color: #3498db; @@ -31676,12 +31675,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .action a:hover{ background:#000; }*/ -/* line 8205, ../../../scss/_app_styles.scss */ +/* line 8204, ../../../scss/_app_styles.scss */ .footer_link_cont h4 { color: #999; } -/* line 8209, ../../../scss/_app_styles.scss */ +/* line 8208, ../../../scss/_app_styles.scss */ .about_content { color: #ececec; margin-bottom: 30px; @@ -31689,18 +31688,18 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { font-size: 18px; } -/* line 8217, ../../../scss/_app_styles.scss */ +/* line 8216, ../../../scss/_app_styles.scss */ .about-blog { height: 100%; background: #107aa1; } -/* line 8222, ../../../scss/_app_styles.scss */ +/* line 8221, ../../../scss/_app_styles.scss */ .searchbar { margin: 0.8rem; } -/* line 8226, ../../../scss/_app_styles.scss */ +/* line 8225, ../../../scss/_app_styles.scss */ .search-field { width: 0; height: 40px; @@ -31711,7 +31710,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all 0.5s ease; } -/* line 8236, ../../../scss/_app_styles.scss */ +/* line 8235, ../../../scss/_app_styles.scss */ .expand-search { width: 80%; max-width: calc(80% - 3rem); @@ -31719,31 +31718,77 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: .5rem; } -/* line 8243, ../../../scss/_app_styles.scss */ +/* line 8242, ../../../scss/_app_styles.scss */ svg { width: 20px; height: 20px; } -/* line 8248, ../../../scss/_app_styles.scss */ +/* line 8247, ../../../scss/_app_styles.scss */ .button { border-radius: 50px; } -/* line 8253, ../../../scss/_app_styles.scss */ +/* line 8252, ../../../scss/_app_styles.scss */ #page_content { display: table; height: auto; display: table-row; } -/* line 8261, ../../../scss/_app_styles.scss */ +/* line 8260, ../../../scss/_app_styles.scss */ .footer_container { height: auto; display: table-row; } -/* line 8268, ../../../scss/_app_styles.scss */ +/* line 8267, ../../../scss/_app_styles.scss */ #footer { height: 1px; } + +/* ----New Footer For NROER -------*/ +/* line 8276, ../../../scss/_app_styles.scss */ +.footer-nav { + margin-right: auto; + margin-left: auto; + margin-top: 60px; + display: table-row; + height: 1px; + display: flex; + flex-flow: row wrap; + flex-direction: row; + flex-wrap: row; + align-items: center; + background-color: rgba(0, 0, 0, 0.8); + padding: 1.8rem; + width: 100%; + justify-content: center; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} + +/* line 8294, ../../../scss/_app_styles.scss */ +.footer-nav-center { + flex: 1 1 0px; +} + +/* line 8297, ../../../scss/_app_styles.scss */ +.footer-nav-menu { + list-style: none; + margin-bottom: 0; + text-align: center; +} + +/* line 8302, ../../../scss/_app_styles.scss */ +.footer-nav-menu-item { + display: inline-block; + margin-right: 1.5rem; + font-size: 1.2rem; + padding: 0.4rem 0; +} + +/* line 8308, ../../../scss/_app_styles.scss */ +.footer-copyright { + margin-top: -70px; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css index 28ab49e862..51568b5fb4 100644 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/css/themes/tiss/styles.css @@ -23920,107 +23920,106 @@ body > footer .myfooter .links_collapse ul { body > footer .myfooter .footer_link_cont { display: inline-block; vertical-align: top; - /*margin: 20px;*/ text-align: left; } -/* line 562, ../../../scss/_app_styles.scss */ +/* line 561, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .links_show { max-height: 600px; } -/* line 566, ../../../scss/_app_styles.scss */ +/* line 565, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .flinks { font-size: 22px; color: #999; } -/* line 570, ../../../scss/_app_styles.scss */ +/* line 569, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .social_links a { font-size: 24px; margin-right: 5px; } -/* line 575, ../../../scss/_app_styles.scss */ +/* line 574, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links { color: #777777; cursor: pointer; } -/* line 578, ../../../scss/_app_styles.scss */ +/* line 577, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links i { font-size: 24px; margin-right: 5px; } -/* line 581, ../../../scss/_app_styles.scss */ +/* line 580, ../../../scss/_app_styles.scss */ body > footer .myfooter .footer_link_cont .show_foot_links:hover { text-decoration: underline; } -/* line 588, ../../../scss/_app_styles.scss */ +/* line 587, ../../../scss/_app_styles.scss */ body > footer hr.footerlogo-divider { border-color: #555; margin-top: 10px; } -/* line 594, ../../../scss/_app_styles.scss */ +/* line 593, ../../../scss/_app_styles.scss */ body > footer ul#footerlogo li { margin: 0px 5px; display: inline; } -/* line 600, ../../../scss/_app_styles.scss */ +/* line 599, ../../../scss/_app_styles.scss */ .no-gap ul { margin-left: 0rem; } -/* line 606, ../../../scss/_app_styles.scss */ +/* line 605, ../../../scss/_app_styles.scss */ body > footer ul#poweredlogos { margin-left: 0px; } -/* line 610, ../../../scss/_app_styles.scss */ +/* line 609, ../../../scss/_app_styles.scss */ #poweredlogos li { margin: 0px 5px; display: inline; } -/* line 616, ../../../scss/_app_styles.scss */ +/* line 615, ../../../scss/_app_styles.scss */ .no-gap ul { margin-left: 0rem; } -/* line 621, ../../../scss/_app_styles.scss */ +/* line 620, ../../../scss/_app_styles.scss */ .coll-arrows { cursor: pointer; display: block; padding: 0.5rem; } -/* line 626, ../../../scss/_app_styles.scss */ +/* line 625, ../../../scss/_app_styles.scss */ .coll-arrows:hover { background-color: #D3D3D3; } /* Sections */ -/* line 633, ../../../scss/_app_styles.scss */ +/* line 632, ../../../scss/_app_styles.scss */ main > article { padding: 0px; } -/* line 636, ../../../scss/_app_styles.scss */ +/* line 635, ../../../scss/_app_styles.scss */ main > nav { border-top: 3px solid black; position: relative; z-index: 10; } -/* line 640, ../../../scss/_app_styles.scss */ +/* line 639, ../../../scss/_app_styles.scss */ main > nav > .button-bar { background-color: #10c1cb; /* Hide icons till we can retreive custom icons from the system */ } -/* line 642, ../../../scss/_app_styles.scss */ +/* line 641, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group { margin: 0; } -/* line 644, ../../../scss/_app_styles.scss */ +/* line 643, ../../../scss/_app_styles.scss */ main > nav > .button-bar .button-group.tools { padding: 5px; } -/* line 650, ../../../scss/_app_styles.scss */ +/* line 649, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button { border: none; font-size: 0.8rem; @@ -24029,135 +24028,135 @@ main > nav > .button-bar li .button { color: black; margin: 0; } -/* line 654, ../../../scss/_app_styles.scss */ +/* line 653, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.home { font-weight: bold; } -/* line 657, ../../../scss/_app_styles.scss */ +/* line 656, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings, main > nav > .button-bar li .button#toggle-help { padding: 6px 10px; color: #333; background-color: rgba(255, 255, 255, 0.3); } -/* line 662, ../../../scss/_app_styles.scss */ +/* line 661, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:hover, main > nav > .button-bar li .button#toggle-help:hover { background-color: rgba(0, 0, 0, 0.2); color: white; } -/* line 667, ../../../scss/_app_styles.scss */ +/* line 666, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button#toggle-help { background-color: inherit; } -/* line 671, ../../../scss/_app_styles.scss */ +/* line 670, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button.settings:after { border: none; } -/* line 679, ../../../scss/_app_styles.scss */ +/* line 678, ../../../scss/_app_styles.scss */ main > nav > .button-bar li .button:hover { color: white; } -/* line 685, ../../../scss/_app_styles.scss */ +/* line 684, ../../../scss/_app_styles.scss */ main > nav > .button-bar li.active .button { background-color: #0eacb5; color: white; } -/* line 693, ../../../scss/_app_styles.scss */ +/* line 692, ../../../scss/_app_styles.scss */ main > nav > .button-bar .app i { display: none !important; } -/* line 703, ../../../scss/_app_styles.scss */ +/* line 702, ../../../scss/_app_styles.scss */ main > aside > div h2 { color: #111; } -/* line 706, ../../../scss/_app_styles.scss */ +/* line 705, ../../../scss/_app_styles.scss */ main > aside > div h3 { font-size: 1.2rem; font-weight: normal; color: #222; } -/* line 711, ../../../scss/_app_styles.scss */ +/* line 710, ../../../scss/_app_styles.scss */ main > aside > div h4 { font-size: 1rem; color: #222; } -/* line 714, ../../../scss/_app_styles.scss */ +/* line 713, ../../../scss/_app_styles.scss */ main > aside > div h4 span { display: none; } -/* line 717, ../../../scss/_app_styles.scss */ +/* line 716, ../../../scss/_app_styles.scss */ main > aside > div h4:hover span { display: inline; } -/* line 721, ../../../scss/_app_styles.scss */ +/* line 720, ../../../scss/_app_styles.scss */ main > aside > div h5, main > aside > div h6 { margin: 0; } -/* line 725, ../../../scss/_app_styles.scss */ +/* line 724, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content { width: auto; padding: 0; border: 1px solid #222; } -/* line 729, ../../../scss/_app_styles.scss */ +/* line 728, ../../../scss/_app_styles.scss */ main > aside > div .f-dropdown.content .item { width: 70px; } -/* line 736, ../../../scss/_app_styles.scss */ +/* line 735, ../../../scss/_app_styles.scss */ main > aside > div footer { background-color: #222; min-height: 1rem; } -/* line 739, ../../../scss/_app_styles.scss */ +/* line 738, ../../../scss/_app_styles.scss */ main > aside > div footer label { font-size: 0.7rem; } -/* line 752, ../../../scss/_app_styles.scss */ +/* line 751, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection { background-color: #444; padding: 0; border-bottom: 2px solid #10c1cb; margin: 0; } -/* line 757, ../../../scss/_app_styles.scss */ +/* line 756, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li { border-bottom: 1px solid #555; } -/* line 759, ../../../scss/_app_styles.scss */ +/* line 758, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li a { border-left: 2px solid black; } -/* line 762, ../../../scss/_app_styles.scss */ +/* line 761, ../../../scss/_app_styles.scss */ main > aside > div .side-nav.collection li.active a, main > aside > div .side-nav.collection li a:hover { color: white !important; border-left: 2px solid #10c1cb; background-color: #10c1cb; } -/* line 775, ../../../scss/_app_styles.scss */ +/* line 774, ../../../scss/_app_styles.scss */ article { position: relative; z-index: 1; min-height: 400px; overflow-x: visible; } -/* line 780, ../../../scss/_app_styles.scss */ +/* line 779, ../../../scss/_app_styles.scss */ article > header, article form > header { padding: 15px; background-color: #f0f0f0; } -/* line 793, ../../../scss/_app_styles.scss */ +/* line 792, ../../../scss/_app_styles.scss */ article h1:not(.subheader) .tabs { display: inline-block; position: relative; bottom: -0.5rem; } -/* line 799, ../../../scss/_app_styles.scss */ +/* line 798, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div, article h1:not(.subheader) div input:not(.subheader) div { display: inline-block; position: relative; } -/* line 802, ../../../scss/_app_styles.scss */ +/* line 801, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input { height: 200%; font-style: italic; @@ -24167,13 +24166,13 @@ article h1:not(.subheader) div input { border-bottom: 2px dotted #222; background-color: inherit; } -/* line 812, ../../../scss/_app_styles.scss */ +/* line 811, ../../../scss/_app_styles.scss */ article h1:not(.subheader) div input:hover { background-color: white; } /* Card block */ -/* line 822, ../../../scss/_app_styles.scss */ +/* line 821, ../../../scss/_app_styles.scss */ .card > * { position: relative; background-color: white; @@ -24184,51 +24183,51 @@ article h1:not(.subheader) div input:hover { opacity: 0.9; overflow: hidden; } -/* line 834, ../../../scss/_app_styles.scss */ +/* line 833, ../../../scss/_app_styles.scss */ .card > * > a { color: inherit; display: block; position: relative; z-index: 200; } -/* line 845, ../../../scss/_app_styles.scss */ +/* line 844, ../../../scss/_app_styles.scss */ .card > *.published { opacity: 1; background-color: #e6f9ee; } -/* line 850, ../../../scss/_app_styles.scss */ +/* line 849, ../../../scss/_app_styles.scss */ .card > *.published hr { border-color: #7ee2a8; } -/* line 855, ../../../scss/_app_styles.scss */ +/* line 854, ../../../scss/_app_styles.scss */ .card > *.moderation { opacity: 1; background-color: #efefef; } -/* line 860, ../../../scss/_app_styles.scss */ +/* line 859, ../../../scss/_app_styles.scss */ .card > *.moderation hr { border-color: #bcbcbc; } -/* line 865, ../../../scss/_app_styles.scss */ +/* line 864, ../../../scss/_app_styles.scss */ .card > *.unapproved { opacity: 1; border-style: solid; border-color: #f04124; } -/* line 871, ../../../scss/_app_styles.scss */ +/* line 870, ../../../scss/_app_styles.scss */ .card > *:hover { border-style: solid; opacity: 1; } -/* line 877, ../../../scss/_app_styles.scss */ +/* line 876, ../../../scss/_app_styles.scss */ .card > *:hover i { opacity: 0.3; } -/* line 880, ../../../scss/_app_styles.scss */ +/* line 879, ../../../scss/_app_styles.scss */ .card > *:hover footer .age { display: block; } -/* line 885, ../../../scss/_app_styles.scss */ +/* line 884, ../../../scss/_app_styles.scss */ .card > * > i { position: absolute; top: -10px; @@ -24237,28 +24236,28 @@ article h1:not(.subheader) div input:hover { color: #0eacb5; opacity: 0.3; } -/* line 894, ../../../scss/_app_styles.scss */ +/* line 893, ../../../scss/_app_styles.scss */ .card > * .preview { float: left; padding-right: 5px; padding-top: 4px; } -/* line 899, ../../../scss/_app_styles.scss */ +/* line 898, ../../../scss/_app_styles.scss */ .card > * header { overflow: hidden; } -/* line 903, ../../../scss/_app_styles.scss */ +/* line 902, ../../../scss/_app_styles.scss */ .card > * .label, .card > * .label-list:empty:before { opacity: 0.5; } -/* line 906, ../../../scss/_app_styles.scss */ +/* line 905, ../../../scss/_app_styles.scss */ .card > * p { color: #555; height: 80px; background-repeat: no-repeat; font-size: 80%; } -/* line 912, ../../../scss/_app_styles.scss */ +/* line 911, ../../../scss/_app_styles.scss */ .card > * .th { margin: 20px auto; width: 80px; @@ -24266,23 +24265,23 @@ article h1:not(.subheader) div input:hover { overflow: hidden; display: none; } -/* line 918, ../../../scss/_app_styles.scss */ +/* line 917, ../../../scss/_app_styles.scss */ .card > * .th:hover { width: 150px; height: 150px; } -/* line 922, ../../../scss/_app_styles.scss */ +/* line 921, ../../../scss/_app_styles.scss */ .card > * .th img { width: 100%; } -/* line 926, ../../../scss/_app_styles.scss */ +/* line 925, ../../../scss/_app_styles.scss */ .card > * footer { margin-top: 1rem; font-size: 70%; clear: both; color: #e01818; } -/* line 931, ../../../scss/_app_styles.scss */ +/* line 930, ../../../scss/_app_styles.scss */ .card > * footer .age { display: none; position: absolute; @@ -24292,7 +24291,7 @@ article h1:not(.subheader) div input:hover { width: 100%; } -/* line 942, ../../../scss/_app_styles.scss */ +/* line 941, ../../../scss/_app_styles.scss */ .edit-card { position: relative; background-color: white; @@ -24301,40 +24300,40 @@ article h1:not(.subheader) div input:hover { } /* Content Tabs */ -/* line 955, ../../../scss/_app_styles.scss */ +/* line 954, ../../../scss/_app_styles.scss */ article .tabs { display: inline-block; } -/* line 957, ../../../scss/_app_styles.scss */ +/* line 956, ../../../scss/_app_styles.scss */ article .tabs dd a { border-radius: 4px; border: 1px transparent; } -/* line 961, ../../../scss/_app_styles.scss */ +/* line 960, ../../../scss/_app_styles.scss */ article .tabs dd.active a { color: #10c1cb; border: 1px solid; } -/* line 965, ../../../scss/_app_styles.scss */ +/* line 964, ../../../scss/_app_styles.scss */ article .tabs dd:hover a { color: #10c1cb; } -/* line 969, ../../../scss/_app_styles.scss */ +/* line 968, ../../../scss/_app_styles.scss */ article .tabs i { margin-right: 5px; font-size: 1.6rem; } -/* line 973, ../../../scss/_app_styles.scss */ +/* line 972, ../../../scss/_app_styles.scss */ article .tabs span { font-size: 17px; vertical-align: text-bottom; } -/* line 979, ../../../scss/_app_styles.scss */ +/* line 978, ../../../scss/_app_styles.scss */ article section.content { border: 1px solid #eee; } -/* line 986, ../../../scss/_app_styles.scss */ +/* line 985, ../../../scss/_app_styles.scss */ .card > div:hover { box-shadow: 0 0 10px lightgray; transition: 0.9s; @@ -24343,31 +24342,31 @@ article section.content { } /* Default card */ -/* line 994, ../../../scss/_app_styles.scss */ +/* line 993, ../../../scss/_app_styles.scss */ .card > :hover .label, .card > :hover .label-list:empty:before { opacity: 1; } -/* line 999, ../../../scss/_app_styles.scss */ +/* line 998, ../../../scss/_app_styles.scss */ .gallery .card .th { display: block; } /* Inline label list */ -/* line 1007, ../../../scss/_app_styles.scss */ +/* line 1006, ../../../scss/_app_styles.scss */ .label-list { display: inline-block; text-align: left; margin-bottom: 0.1rem; } -/* line 1011, ../../../scss/_app_styles.scss */ +/* line 1010, ../../../scss/_app_styles.scss */ .label-list:empty:before { content: "UNTAGGED"; opacity: 0.2 !important; padding: 2px; background-color: transparent; } -/* line 1019, ../../../scss/_app_styles.scss */ +/* line 1018, ../../../scss/_app_styles.scss */ .label-list .label, .label-list .label-list:empty:before { background-color: transparent; padding: 2px; @@ -24375,20 +24374,20 @@ article section.content { /*************************** 2. Custom CSS overrides ***********************/ /* Content area */ -/* line 1028, ../../../scss/_app_styles.scss */ +/* line 1027, ../../../scss/_app_styles.scss */ article { padding-bottom: 1rem; } -/* line 1032, ../../../scss/_app_styles.scss */ +/* line 1031, ../../../scss/_app_styles.scss */ article > header { border-bottom: 1px solid #ddd; } -/* line 1036, ../../../scss/_app_styles.scss */ +/* line 1035, ../../../scss/_app_styles.scss */ article > footer { border-top: 1px dotted #ddd; } -/* line 1048, ../../../scss/_app_styles.scss */ +/* line 1047, ../../../scss/_app_styles.scss */ textarea { min-height: 6rem; } @@ -24409,39 +24408,39 @@ textarea { }*/ /*************************** 3. Custom CSS Below ***********************/ /*CSS fix for tables generated via orgitdown*/ -/* line 1068, ../../../scss/_app_styles.scss */ +/* line 1067, ../../../scss/_app_styles.scss */ #content table td, #content colgroup col { float: none !important; } -/* line 1073, ../../../scss/_app_styles.scss */ +/* line 1072, ../../../scss/_app_styles.scss */ .user { color: inherit; } -/* line 1077, ../../../scss/_app_styles.scss */ +/* line 1076, ../../../scss/_app_styles.scss */ .user i { margin-right: 3px; } -/* line 1080, ../../../scss/_app_styles.scss */ +/* line 1079, ../../../scss/_app_styles.scss */ .user:hover i { opacity: 1; } -/* line 1084, ../../../scss/_app_styles.scss */ +/* line 1083, ../../../scss/_app_styles.scss */ a.node { display: block; } -/* line 1088, ../../../scss/_app_styles.scss */ +/* line 1087, ../../../scss/_app_styles.scss */ .button.edit { margin-bottom: 0; } /************ Forms **************/ /* Node edit */ -/* line 1096, ../../../scss/_app_styles.scss */ +/* line 1095, ../../../scss/_app_styles.scss */ input.node-title { font-size: 3rem; height: 4rem; @@ -24449,13 +24448,13 @@ input.node-title { } /* view-graph in node_details_base.html */ -/* line 1103, ../../../scss/_app_styles.scss */ +/* line 1102, ../../../scss/_app_styles.scss */ .graph-height { height: 70%; } /*for graph and location*/ -/* line 1108, ../../../scss/_app_styles.scss */ +/* line 1107, ../../../scss/_app_styles.scss */ .graph-div { height: 90%; width: -webkit-calc(100% - 10px); @@ -24469,13 +24468,13 @@ input.node-title { } /*for graph and location*/ -/* line 1118, ../../../scss/_app_styles.scss */ +/* line 1117, ../../../scss/_app_styles.scss */ .graph-div h3 { border-bottom: 2px inset #154534; padding: 0.25em 0; } -/* line 1123, ../../../scss/_app_styles.scss */ +/* line 1122, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal, #view-map-edit-widget .close-reveal-modal { z-index: 1; background-color: captiontext; @@ -24486,7 +24485,7 @@ input.node-title { box-shadow: 0 1px 10px 2px #A9A9A9; } -/* line 1134, ../../../scss/_app_styles.scss */ +/* line 1133, ../../../scss/_app_styles.scss */ #view-map-widget .close-reveal-modal:hover, #view-map-edit-widget .close-reveal-modal:hover { background-color: white; border-radius: 30px; @@ -24499,7 +24498,7 @@ input.node-title { /****************** CUSTOM *********************/ /* UI Button */ -/* line 1149, ../../../scss/_app_styles.scss */ +/* line 1148, ../../../scss/_app_styles.scss */ .ui.button { margin-right: 0.5rem; border: 1px solid rgba(0, 0, 0, 0.2); @@ -24509,102 +24508,102 @@ input.node-title { padding: 0.5vw 0.75vw; z-index: 500; } -/* line 1160, ../../../scss/_app_styles.scss */ +/* line 1159, ../../../scss/_app_styles.scss */ .ui.button label { color: #666; } -/* line 1163, ../../../scss/_app_styles.scss */ +/* line 1162, ../../../scss/_app_styles.scss */ .ui.button small { margin-left: 2px; display: inline; } -/* line 1167, ../../../scss/_app_styles.scss */ +/* line 1166, ../../../scss/_app_styles.scss */ .ui.button:hover, .ui.button:active { border-color: rgba(255, 255, 255, 0.2); background-color: rgba(0, 0, 0, 0.9); } -/* line 1170, ../../../scss/_app_styles.scss */ +/* line 1169, ../../../scss/_app_styles.scss */ .ui.button:hover label, .ui.button:active label { color: #ddd; } -/* line 1173, ../../../scss/_app_styles.scss */ +/* line 1172, ../../../scss/_app_styles.scss */ .ui.button:hover small, .ui.button:active small { display: inline; } -/* line 1176, ../../../scss/_app_styles.scss */ +/* line 1175, ../../../scss/_app_styles.scss */ .ui.button:hover:focus, .ui.button:active:focus { font-weight: bold; } -/* line 1185, ../../../scss/_app_styles.scss */ +/* line 1184, ../../../scss/_app_styles.scss */ aside#help h4 { color: black; } -/* line 1188, ../../../scss/_app_styles.scss */ +/* line 1187, ../../../scss/_app_styles.scss */ aside#help p, aside#help h5, aside#help h6 { color: #ddd; padding: 0.3rem 0.9375rem; } -/* line 1195, ../../../scss/_app_styles.scss */ +/* line 1194, ../../../scss/_app_styles.scss */ .align-center { margin: 0 auto; display: block; } -/* line 1201, ../../../scss/_app_styles.scss */ +/* line 1200, ../../../scss/_app_styles.scss */ #profile-img { height: 40px; margin-right: 5px; } -/* line 1209, ../../../scss/_app_styles.scss */ +/* line 1208, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin-bottom: 20px; } -/* line 1213, ../../../scss/_app_styles.scss */ +/* line 1212, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 1219, ../../../scss/_app_styles.scss */ +/* line 1218, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 1222, ../../../scss/_app_styles.scss */ +/* line 1221, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 1226, ../../../scss/_app_styles.scss */ +/* line 1225, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 1231, ../../../scss/_app_styles.scss */ +/* line 1230, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 1238, ../../../scss/_app_styles.scss */ +/* line 1237, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 1242, ../../../scss/_app_styles.scss */ +/* line 1241, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 1247, ../../../scss/_app_styles.scss */ +/* line 1246, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 1253, ../../../scss/_app_styles.scss */ +/* line 1252, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -24613,16 +24612,16 @@ aside#help p, aside#help h5, aside#help h6 { border-top: 1px solid #B1B1B1; width: 80%; } -/* line 1262, ../../../scss/_app_styles.scss */ +/* line 1261, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 1267, ../../../scss/_app_styles.scss */ +/* line 1266, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 1270, ../../../scss/_app_styles.scss */ +/* line 1269, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { color: #ffffff !important; height: 2em; @@ -24630,7 +24629,7 @@ aside#help p, aside#help h5, aside#help h6 { padding-left: 10px; line-height: 1.5em; } -/* line 1280, ../../../scss/_app_styles.scss */ +/* line 1279, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -24640,12 +24639,12 @@ aside#help p, aside#help h5, aside#help h6 { border-radius: 0px 0px 5px 5px; /*background-color: #f2f2f2;*/ } -/* line 1289, ../../../scss/_app_styles.scss */ +/* line 1288, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 1295, ../../../scss/_app_styles.scss */ +/* line 1294, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -24671,7 +24670,7 @@ aside#help p, aside#help h5, aside#help h6 { } }*/ /* Simple Card CSS*/ -/* line 1323, ../../../scss/_app_styles.scss */ +/* line 1322, ../../../scss/_app_styles.scss */ .scard { background: #FFF; border: 1px solid #AAA; @@ -24683,12 +24682,12 @@ aside#help p, aside#help h5, aside#help h6 { height: 9rem; /*float:left;*/ } -/* line 1332, ../../../scss/_app_styles.scss */ +/* line 1331, ../../../scss/_app_styles.scss */ .scard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1338, ../../../scss/_app_styles.scss */ +/* line 1337, ../../../scss/_app_styles.scss */ .scard .scard_header { text-align: center; position: fixed; @@ -24706,7 +24705,7 @@ aside#help p, aside#help h5, aside#help h6 { font-weight: bold; } -/* line 1355, ../../../scss/_app_styles.scss */ +/* line 1354, ../../../scss/_app_styles.scss */ .scard-content { height: 2.7em; padding: 0.5rem; @@ -24719,7 +24718,7 @@ aside#help p, aside#help h5, aside#help h6 { /*height: 8.25rem;*/ background-color: #3e3e3e; } -/* line 1366, ../../../scss/_app_styles.scss */ +/* line 1365, ../../../scss/_app_styles.scss */ .scard-content .scard-title { font-size: 0.8em; margin-top: -1em; @@ -24729,7 +24728,7 @@ aside#help p, aside#help h5, aside#help h6 { text-align: center; } -/* line 1379, ../../../scss/_app_styles.scss */ +/* line 1378, ../../../scss/_app_styles.scss */ .scard-action { height: height; font-size: 0.6em; @@ -24743,7 +24742,7 @@ aside#help p, aside#help h5, aside#help h6 { background-color: #CCCCCC; } -/* line 1394, ../../../scss/_app_styles.scss */ +/* line 1393, ../../../scss/_app_styles.scss */ .scard-desc { font-size: 0.7em; color: #333333; @@ -24759,13 +24758,13 @@ aside#help p, aside#help h5, aside#help h6 { display-inline: block; } -/* line 1409, ../../../scss/_app_styles.scss */ +/* line 1408, ../../../scss/_app_styles.scss */ p { margin: 0px; padding: 10px; } -/* line 1414, ../../../scss/_app_styles.scss */ +/* line 1413, ../../../scss/_app_styles.scss */ .scard-image { padding: 0px; margin: 0px; @@ -24776,7 +24775,7 @@ p { overflow: hidden; background-color: #f2f2f2; } -/* line 1423, ../../../scss/_app_styles.scss */ +/* line 1422, ../../../scss/_app_styles.scss */ .scard-image img { border-radius: 2px 2px 0 0; display: block; @@ -24784,7 +24783,7 @@ p { opacity: 0.9; height: 100%; } -/* line 1432, ../../../scss/_app_styles.scss */ +/* line 1431, ../../../scss/_app_styles.scss */ .scard-image i { font-size: 7rem; opacity: 0.75; @@ -24798,83 +24797,83 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1446, ../../../scss/_app_styles.scss */ +/* line 1445, ../../../scss/_app_styles.scss */ .scard-image i.common-icon:before { content: "\f1fb"; } -/* line 1449, ../../../scss/_app_styles.scss */ +/* line 1448, ../../../scss/_app_styles.scss */ .scard-image i.file:before { content: "\f18e"; } -/* line 1452, ../../../scss/_app_styles.scss */ +/* line 1451, ../../../scss/_app_styles.scss */ .scard-image i.page:before { content: "\f18e"; } -/* line 1455, ../../../scss/_app_styles.scss */ +/* line 1454, ../../../scss/_app_styles.scss */ .scard-image i.collection:before { content: "\f18a"; } -/* line 1458, ../../../scss/_app_styles.scss */ +/* line 1457, ../../../scss/_app_styles.scss */ .scard-image i.documents:before { content: "\f18b"; } -/* line 1461, ../../../scss/_app_styles.scss */ +/* line 1460, ../../../scss/_app_styles.scss */ .scard-image i.pdf:before { content: "\f18b"; } -/* line 1464, ../../../scss/_app_styles.scss */ +/* line 1463, ../../../scss/_app_styles.scss */ .scard-image i.text:before { content: "\f18e"; } -/* line 1467, ../../../scss/_app_styles.scss */ +/* line 1466, ../../../scss/_app_styles.scss */ .scard-image i.interactives:before { content: "\f1b2"; } -/* line 1470, ../../../scss/_app_styles.scss */ +/* line 1469, ../../../scss/_app_styles.scss */ .scard-image i.ebooks:before { content: "\f11e"; } -/* line 1473, ../../../scss/_app_styles.scss */ +/* line 1472, ../../../scss/_app_styles.scss */ .scard-image i.images:before { content: "\f125"; } -/* line 1476, ../../../scss/_app_styles.scss */ +/* line 1475, ../../../scss/_app_styles.scss */ .scard-image i.audios:before, .scard-image i.audio:before { content: "\f17b"; } -/* line 1479, ../../../scss/_app_styles.scss */ +/* line 1478, ../../../scss/_app_styles.scss */ .scard-image i.videos:before, .scard-image i.video:before { content: "\f20e"; } -/* line 1485, ../../../scss/_app_styles.scss */ +/* line 1484, ../../../scss/_app_styles.scss */ .published.scard-action { background: #A6D9CB; } -/* line 1489, ../../../scss/_app_styles.scss */ +/* line 1488, ../../../scss/_app_styles.scss */ .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 1495, ../../../scss/_app_styles.scss */ +/* line 1494, ../../../scss/_app_styles.scss */ .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1500, ../../../scss/_app_styles.scss */ +/* line 1499, ../../../scss/_app_styles.scss */ .moderation.scard-action { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1504, ../../../scss/_app_styles.scss */ +/* line 1503, ../../../scss/_app_styles.scss */ .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 1508, ../../../scss/_app_styles.scss */ +/* line 1507, ../../../scss/_app_styles.scss */ .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -24885,7 +24884,7 @@ p { /* End Simple Card CSS*/ /* Customized Off-Canvas */ -/* line 1646, ../../../scss/_app_styles.scss */ +/* line 1645, ../../../scss/_app_styles.scss */ #help-canvas-menu { position: fixed; top: 52px; @@ -24898,26 +24897,26 @@ p { height: 100%; } -/* line 1657, ../../../scss/_app_styles.scss */ +/* line 1656, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded { left: 0 !important; z-index: 100000000; left: 150px; } -/* line 1662, ../../../scss/_app_styles.scss */ +/* line 1661, ../../../scss/_app_styles.scss */ #help-canvas-menu.expanded .help-button { right: 80px; z-index: -1; } -/* line 1667, ../../../scss/_app_styles.scss */ +/* line 1666, ../../../scss/_app_styles.scss */ #help-canvas-menu.animating .help-button { -webkit-animation: shake 400ms; animation: shake 400ms; } -/* line 1671, ../../../scss/_app_styles.scss */ +/* line 1670, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button { position: absolute; -webkit-transform: rotate(-90deg); @@ -24944,12 +24943,12 @@ p { border-top-right-radius: 5px; } -/* line 1697, ../../../scss/_app_styles.scss */ +/* line 1696, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button-text { font-size: 18px; } -/* line 1700, ../../../scss/_app_styles.scss */ +/* line 1699, ../../../scss/_app_styles.scss */ #help-canvas-menu .help-button .text { color: #f9f9f9; letter-spacing: .1em; @@ -24958,7 +24957,7 @@ p { text-shadow: 0 0 1px rgba(0, 0, 0, 0.35); } -/* line 1709, ../../../scss/_app_styles.scss */ +/* line 1708, ../../../scss/_app_styles.scss */ #help-canvas-menu .mainContainer { background: #fff; /*-webkit-box-shadow:3px 3px 17px -1px #7b7b7b; @@ -24972,7 +24971,7 @@ p { } /* End of Customized Off-Canvas */ -/* line 1727, ../../../scss/_app_styles.scss */ +/* line 1726, ../../../scss/_app_styles.scss */ .rcard { overflow: hidden; color: #272727; @@ -24980,56 +24979,56 @@ p { background-color: #f5f5f5; margin: 5px; } -/* line 1738, ../../../scss/_app_styles.scss */ +/* line 1737, ../../../scss/_app_styles.scss */ .rcard:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 1743, ../../../scss/_app_styles.scss */ +/* line 1742, ../../../scss/_app_styles.scss */ .rcard .title { font-size: 1.1rem; font-weight: bold; } -/* line 1749, ../../../scss/_app_styles.scss */ +/* line 1748, ../../../scss/_app_styles.scss */ .rcard .content { padding: 0.5rem 2rem; border-radius: 0 0 2px 2px; overflow: hidden; height: 7.25rem; } -/* line 1756, ../../../scss/_app_styles.scss */ +/* line 1755, ../../../scss/_app_styles.scss */ .rcard .content .slick-slider { margin-bottom: 0; } -/* line 1760, ../../../scss/_app_styles.scss */ +/* line 1759, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev { left: 0.25rem; } -/* line 1763, ../../../scss/_app_styles.scss */ +/* line 1762, ../../../scss/_app_styles.scss */ .rcard .content .slick-prev:before { color: #ccc; } -/* line 1769, ../../../scss/_app_styles.scss */ +/* line 1768, ../../../scss/_app_styles.scss */ .rcard .content .slick-next { right: 0.25rem; } -/* line 1772, ../../../scss/_app_styles.scss */ +/* line 1771, ../../../scss/_app_styles.scss */ .rcard .content .slick-next:before { color: #ccc; } -/* line 1778, ../../../scss/_app_styles.scss */ +/* line 1777, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title { width: 100%; border-bottom: 1px solid #808080; line-height: 0.25em; margin: 10px 0 20px; } -/* line 1784, ../../../scss/_app_styles.scss */ +/* line 1783, ../../../scss/_app_styles.scss */ .rcard .content .card-content-title small { padding: 0 10px; background-color: #f5f5f5; } -/* line 1791, ../../../scss/_app_styles.scss */ +/* line 1790, ../../../scss/_app_styles.scss */ .rcard .action { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -25037,15 +25036,15 @@ p { font-size: small; height: 2rem; } -/* line 1798, ../../../scss/_app_styles.scss */ +/* line 1797, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection { opacity: 0.5; } -/* line 1801, ../../../scss/_app_styles.scss */ +/* line 1800, ../../../scss/_app_styles.scss */ .rcard .action .add-to-collection:hover { opacity: 1; } -/* line 1815, ../../../scss/_app_styles.scss */ +/* line 1814, ../../../scss/_app_styles.scss */ .rcard .image { position: relative; background-color: #ccc; @@ -25053,7 +25052,7 @@ p { height: 8em; overflow: hidden; } -/* line 1825, ../../../scss/_app_styles.scss */ +/* line 1824, ../../../scss/_app_styles.scss */ .rcard .image .title { position: absolute; bottom: 0; @@ -25065,7 +25064,7 @@ p { text-transform: uppercase; text-shadow: 0px 0px 0.5px rgba(0, 0, 0, 0.5); } -/* line 1838, ../../../scss/_app_styles.scss */ +/* line 1837, ../../../scss/_app_styles.scss */ .rcard .image img { border-radius: 2px 2px 0 0; display: block; @@ -25075,14 +25074,14 @@ p { filter: brightness(0.75); -webkit-filter: brightness(0.75); } -/* line 1850, ../../../scss/_app_styles.scss */ +/* line 1849, ../../../scss/_app_styles.scss */ .rcard .image img:hover { filter: brightness(1); -webkit-filter: brightness(1); transform: translate3d(0, 0, 0); transition: all 1.5s ease; } -/* line 1859, ../../../scss/_app_styles.scss */ +/* line 1858, ../../../scss/_app_styles.scss */ .rcard .image i { font-size: 7rem; opacity: 0.75; @@ -25096,51 +25095,51 @@ p { text-transform: none; text-decoration: inherit; } -/* line 1876, ../../../scss/_app_styles.scss */ +/* line 1875, ../../../scss/_app_styles.scss */ .rcard .image i.file:before { content: "\f18e"; } -/* line 1877, ../../../scss/_app_styles.scss */ +/* line 1876, ../../../scss/_app_styles.scss */ .rcard .image i.page:before { content: "\f18e"; } -/* line 1878, ../../../scss/_app_styles.scss */ +/* line 1877, ../../../scss/_app_styles.scss */ .rcard .image i.collection:before { content: "\f18a"; } -/* line 1880, ../../../scss/_app_styles.scss */ +/* line 1879, ../../../scss/_app_styles.scss */ .rcard .image i.documents:before { content: "\f18b"; } -/* line 1881, ../../../scss/_app_styles.scss */ +/* line 1880, ../../../scss/_app_styles.scss */ .rcard .image i.pdf:before { content: "\f18b"; } -/* line 1882, ../../../scss/_app_styles.scss */ +/* line 1881, ../../../scss/_app_styles.scss */ .rcard .image i.text:before { content: "\f18e"; } -/* line 1883, ../../../scss/_app_styles.scss */ +/* line 1882, ../../../scss/_app_styles.scss */ .rcard .image i.interactives:before { content: "\f1b2"; } -/* line 1884, ../../../scss/_app_styles.scss */ +/* line 1883, ../../../scss/_app_styles.scss */ .rcard .image i.ebooks:before { content: "\f11e"; } -/* line 1885, ../../../scss/_app_styles.scss */ +/* line 1884, ../../../scss/_app_styles.scss */ .rcard .image i.images:before { content: "\f125"; } -/* line 1886, ../../../scss/_app_styles.scss */ +/* line 1885, ../../../scss/_app_styles.scss */ .rcard .image i.audios:before, .rcard .image i.audio:before { content: "\f17b"; } -/* line 1887, ../../../scss/_app_styles.scss */ +/* line 1886, ../../../scss/_app_styles.scss */ .rcard .image i.videos:before, .rcard .image i.video:before { content: "\f20e"; } -/* line 1890, ../../../scss/_app_styles.scss */ +/* line 1889, ../../../scss/_app_styles.scss */ .rcard .card-label { border-style: solid; border-width: 0 70px 40px 0; @@ -25153,59 +25152,59 @@ p { z-index: 1; opacity: 0.75; } -/* line 1903, ../../../scss/_app_styles.scss */ +/* line 1902, ../../../scss/_app_styles.scss */ .rcard .card-label { border-color: transparent #333 transparent transparent; border-color: rgba(255, 255, 255, 0) #333 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1908, ../../../scss/_app_styles.scss */ +/* line 1907, ../../../scss/_app_styles.scss */ .rcard .published.card-label { border-color: transparent #43AC6A transparent transparent; border-color: rgba(255, 255, 255, 0) #43AC6A rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1912, ../../../scss/_app_styles.scss */ +/* line 1911, ../../../scss/_app_styles.scss */ .rcard .published.card-label .label-text:before { content: "\221A"; margin-left: 5px; font-size: larger; } -/* line 1920, ../../../scss/_app_styles.scss */ +/* line 1919, ../../../scss/_app_styles.scss */ .rcard .draft.card-label { border-color: transparent #a9b2b3 transparent transparent; border-color: rgba(255, 255, 255, 0) #a9b2b3 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1924, ../../../scss/_app_styles.scss */ +/* line 1923, ../../../scss/_app_styles.scss */ .rcard .draft.card-label .label-text:before { content: "Draft"; } -/* line 1929, ../../../scss/_app_styles.scss */ +/* line 1928, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1933, ../../../scss/_app_styles.scss */ +/* line 1932, ../../../scss/_app_styles.scss */ .rcard .deleted.card-label .label-text:before { content: "Deleted"; } -/* line 1938, ../../../scss/_app_styles.scss */ +/* line 1937, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1942, ../../../scss/_app_styles.scss */ +/* line 1941, ../../../scss/_app_styles.scss */ .rcard .moderation.card-label .label-text:before { content: "Mod"; } -/* line 1945, ../../../scss/_app_styles.scss */ +/* line 1944, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label { border-color: transparent #000 transparent transparent; border-color: rgba(255, 255, 255, 0) #000 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 1949, ../../../scss/_app_styles.scss */ +/* line 1948, ../../../scss/_app_styles.scss */ .rcard .hidden.card-label .label-text:before { content: "hidden"; } -/* line 1952, ../../../scss/_app_styles.scss */ +/* line 1951, ../../../scss/_app_styles.scss */ .rcard .label-text { color: #fff; font-size: 0.75rem; @@ -25216,7 +25215,7 @@ p { transform: rotate(30deg); } -/* line 1966, ../../../scss/_app_styles.scss */ +/* line 1965, ../../../scss/_app_styles.scss */ .compulsory:after { content: '*'; color: red; @@ -25229,12 +25228,12 @@ p { background-repeat:repeat; background-image:url("/static/ndf/images/draft-watermark.png"); }*/ -/* line 1982, ../../../scss/_app_styles.scss */ +/* line 1981, ../../../scss/_app_styles.scss */ .text-gray { color: gray; } -/* line 1987, ../../../scss/_app_styles.scss */ +/* line 1986, ../../../scss/_app_styles.scss */ .repository-title { color: #D7D7D7; font-size: 1.1em; @@ -25247,7 +25246,7 @@ p { text-align: center; } -/* line 1999, ../../../scss/_app_styles.scss */ +/* line 1998, ../../../scss/_app_styles.scss */ .repository-desc { font-size: 1.1em; width: auto; @@ -25259,12 +25258,12 @@ p { margin-left: 4px; } -/* line 2010, ../../../scss/_app_styles.scss */ +/* line 2009, ../../../scss/_app_styles.scss */ .card-holder { padding-left: 2%; } -/* line 2014, ../../../scss/_app_styles.scss */ +/* line 2013, ../../../scss/_app_styles.scss */ .app-card-wrapper { position: relative; margin: auto; @@ -25274,14 +25273,14 @@ p { max-width: calc(70rem + 70px); } -/* line 2023, ../../../scss/_app_styles.scss */ +/* line 2022, ../../../scss/_app_styles.scss */ .app-card-container { display: inline-block; vertical-align: top; margin: 15px; } -/* line 2029, ../../../scss/_app_styles.scss */ +/* line 2028, ../../../scss/_app_styles.scss */ .app-card { width: 19rem; margin: 15px 20px; @@ -25292,7 +25291,7 @@ p { border: thin solid #D3D3D3; } -/* line 2039, ../../../scss/_app_styles.scss */ +/* line 2038, ../../../scss/_app_styles.scss */ .app-card:hover { box-shadow: 0px 0px 15px #808080; border: thin solid #D3D3D3; @@ -25300,26 +25299,26 @@ p { transition: all 0.6s ease 0s; } -/* line 2046, ../../../scss/_app_styles.scss */ +/* line 2045, ../../../scss/_app_styles.scss */ .app-card-icon { color: #4c4c4c; position: relative; font-size: 6em; } -/* line 2052, ../../../scss/_app_styles.scss */ +/* line 2051, ../../../scss/_app_styles.scss */ .app-card-title { padding-bottom: -1em; } -/* line 2056, ../../../scss/_app_styles.scss */ +/* line 2055, ../../../scss/_app_styles.scss */ .app-card-content { color: #4c4c4c; text-align: center; margin-top: 0.5cm; } -/* line 2063, ../../../scss/_app_styles.scss */ +/* line 2062, ../../../scss/_app_styles.scss */ .fullscreen-icon { display: none; } @@ -25335,58 +25334,58 @@ div.show-image:hover div.fullscreen-icon{ font-size:2em; }*/ -/* line 2082, ../../../scss/_app_styles.scss */ +/* line 2081, ../../../scss/_app_styles.scss */ .cke .cke_toolbox .cke_toolbar:last-child { float: right; } -/* line 2088, ../../../scss/_app_styles.scss */ +/* line 2087, ../../../scss/_app_styles.scss */ .create-discussion { position: relative; margin: 0px 1em; } -/* line 2092, ../../../scss/_app_styles.scss */ +/* line 2091, ../../../scss/_app_styles.scss */ .create-discussion > div { display: inline-block; vertical-align: top; margin: 5px 0px; } -/* line 2098, ../../../scss/_app_styles.scss */ +/* line 2097, ../../../scss/_app_styles.scss */ .create-discussion .button { margin: 5px 0px; } -/* line 2101, ../../../scss/_app_styles.scss */ +/* line 2100, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment { width: 85%; margin-left: 1em; } -/* line 2105, ../../../scss/_app_styles.scss */ +/* line 2104, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment > div { display: inline-block; vertical-align: top; } -/* line 2110, ../../../scss/_app_styles.scss */ +/* line 2109, ../../../scss/_app_styles.scss */ .create-discussion .ckeditor-content-comment .ckeditor-reply-area { width: 90%; } -/* line 2117, ../../../scss/_app_styles.scss */ +/* line 2116, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply { margin-top: 1em; /*width: 97%;*/ } -/* line 2121, ../../../scss/_app_styles.scss */ +/* line 2120, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .ckeditor-reply-area { display: inline-block; width: 90%; margin-left: 1em; } -/* line 2126, ../../../scss/_app_styles.scss */ +/* line 2125, ../../../scss/_app_styles.scss */ #replies-area .ckeditor-content-reply .post-btn-div { display: inline-block; vertical-align: top; } -/* line 2132, ../../../scss/_app_styles.scss */ +/* line 2131, ../../../scss/_app_styles.scss */ #replies-area .disc-replies { /*background-color:#ddd;*/ margin-left: 48px; @@ -25394,16 +25393,16 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 0em; border-top: 1px solid #B1B1B1; } -/* line 2140, ../../../scss/_app_styles.scss */ +/* line 2139, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn { cursor: pointer; color: grey !important; } -/* line 2145, ../../../scss/_app_styles.scss */ +/* line 2144, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .reply-btn:hover { color: #000 !important; } -/* line 2148, ../../../scss/_app_styles.scss */ +/* line 2147, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-title-username { /*background-color: #3e3e3e;*/ color: #ececec !important; @@ -25413,7 +25412,7 @@ div.show-image:hover div.fullscreen-icon{ line-height: 1.5em; border-radius: 5px 5px 0px 0px; } -/* line 2158, ../../../scss/_app_styles.scss */ +/* line 2157, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer { /*background-color:#CCCCCC;*/ color: gray !important; @@ -25422,12 +25421,12 @@ div.show-image:hover div.fullscreen-icon{ padding-left: 10px; border-radius: 0px 0px 5px 5px; } -/* line 2166, ../../../scss/_app_styles.scss */ +/* line 2165, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-footer > a { vertical-align: middle; line-height: 2em; } -/* line 2172, ../../../scss/_app_styles.scss */ +/* line 2171, ../../../scss/_app_styles.scss */ #replies-area .disc-replies .discussion-content { color: #262626; word-wrap: break-word; @@ -25435,7 +25434,7 @@ div.show-image:hover div.fullscreen-icon{ /* Large desktop */ @media (min-width: 34em) { - /* line 2180, ../../../scss/_app_styles.scss */ + /* line 2179, ../../../scss/_app_styles.scss */ .container { max-width: 34rem; margin: 0px auto; @@ -25443,7 +25442,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 48em) { - /* line 2188, ../../../scss/_app_styles.scss */ + /* line 2187, ../../../scss/_app_styles.scss */ .container { max-width: 45rem; margin: 0px auto; @@ -25451,7 +25450,7 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 62em) { - /* line 2196, ../../../scss/_app_styles.scss */ + /* line 2195, ../../../scss/_app_styles.scss */ .container { max-width: 60rem; margin: 0px auto; @@ -25459,20 +25458,20 @@ div.show-image:hover div.fullscreen-icon{ } /* Large desktop */ @media (min-width: 75em) { - /* line 2204, ../../../scss/_app_styles.scss */ + /* line 2203, ../../../scss/_app_styles.scss */ .container { max-width: 72.25rem; margin: 0px auto; } } -/* line 2210, ../../../scss/_app_styles.scss */ +/* line 2209, ../../../scss/_app_styles.scss */ .course-page { position: relative; background-size: 100% 100%; height: 100%; margin-top: 10px; } -/* line 2216, ../../../scss/_app_styles.scss */ +/* line 2215, ../../../scss/_app_styles.scss */ .course-page > .container { background-color: #fff; padding: 0px 0px; @@ -25480,7 +25479,7 @@ div.show-image:hover div.fullscreen-icon{ box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3); } -/* line 2224, ../../../scss/_app_styles.scss */ +/* line 2223, ../../../scss/_app_styles.scss */ .course-page-opacity { height: 100%; width: 100%; @@ -25494,12 +25493,12 @@ div.show-image:hover div.fullscreen-icon{ background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 2238, ../../../scss/_app_styles.scss */ +/* line 2237, ../../../scss/_app_styles.scss */ #envelop-cover { /*background: #A0148E;*/ height: 250px; } -/* line 2242, ../../../scss/_app_styles.scss */ +/* line 2241, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header { font-size: 35px; font-weight: 500; @@ -25509,11 +25508,11 @@ div.show-image:hover div.fullscreen-icon{ height: 250px; color: #fff; } -/* line 2251, ../../../scss/_app_styles.scss */ +/* line 2250, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header label { color: #fff; } -/* line 2255, ../../../scss/_app_styles.scss */ +/* line 2254, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background, #envelop-cover .course-page-header .course-header-background-layer { position: absolute; left: 0px; @@ -25522,17 +25521,17 @@ div.show-image:hover div.fullscreen-icon{ bottom: 0px; height: 250px; } -/* line 2262, ../../../scss/_app_styles.scss */ +/* line 2261, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background img, #envelop-cover .course-page-header .course-header-background-layer img { width: auto; height: 250px; } -/* line 2268, ../../../scss/_app_styles.scss */ +/* line 2267, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-header-background-layer { background-color: rgba(0, 0, 0, 0.5); opacity: 0; } -/* line 2273, ../../../scss/_app_styles.scss */ +/* line 2272, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings { margin-left: 15px; position: absolute; @@ -25540,20 +25539,20 @@ div.show-image:hover div.fullscreen-icon{ bottom: 55px; /*width: 170px;*/ } -/* line 2279, ../../../scss/_app_styles.scss */ +/* line 2278, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul { box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); } -/* line 2281, ../../../scss/_app_styles.scss */ +/* line 2280, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > ul > li:hover { background: rgba(0, 0, 0, 0.9); } -/* line 2285, ../../../scss/_app_styles.scss */ +/* line 2284, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a { font-size: 15px; color: #737373; } -/* line 2286, ../../../scss/_app_styles.scss */ +/* line 2285, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child { background: rgba(50, 50, 50, 0.8); padding: 9px 12px 9px 10px; @@ -25561,11 +25560,11 @@ div.show-image:hover div.fullscreen-icon{ font-size: 12px; margin: 0px; } -/* line 2292, ../../../scss/_app_styles.scss */ +/* line 2291, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings a:first-child > i { margin-right: 5px; } -/* line 2299, ../../../scss/_app_styles.scss */ +/* line 2298, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span { background: rgba(0, 0, 0, 0.6); border: 1px solid rgba(255, 255, 255, 0.7); @@ -25576,30 +25575,30 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; border-radius: 3px; } -/* line 2309, ../../../scss/_app_styles.scss */ +/* line 2308, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header .course-settings > span i { font-size: 20px; } -/* line 2316, ../../../scss/_app_styles.scss */ +/* line 2315, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a { font-size: 15px; color: #737373; } -/* line 2319, ../../../scss/_app_styles.scss */ +/* line 2318, ../../../scss/_app_styles.scss */ #envelop-cover .course-page-header span a i { font-size: 18px; } -/* line 2326, ../../../scss/_app_styles.scss */ +/* line 2325, ../../../scss/_app_styles.scss */ #envelop-cover .heading { letter-spacing: -1.2px; font-weight: 400; } -/* line 2331, ../../../scss/_app_styles.scss */ +/* line 2330, ../../../scss/_app_styles.scss */ #envelop-cover .meta { line-height: 2.1em; padding-left: 14px; } -/* line 2335, ../../../scss/_app_styles.scss */ +/* line 2334, ../../../scss/_app_styles.scss */ #envelop-cover .meta .key { color: #A7A4A4; font-weight: 500; @@ -25609,27 +25608,27 @@ div.show-image:hover div.fullscreen-icon{ vertical-align: top; margin-right: 10px; } -/* line 2345, ../../../scss/_app_styles.scss */ +/* line 2344, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value { display: inline-block; } -/* line 2348, ../../../scss/_app_styles.scss */ +/* line 2347, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .name { color: #000; } -/* line 2352, ../../../scss/_app_styles.scss */ +/* line 2351, ../../../scss/_app_styles.scss */ #envelop-cover .meta .value .time { font-size: 13px; font-weight: 300; color: #000; } -/* line 2359, ../../../scss/_app_styles.scss */ +/* line 2358, ../../../scss/_app_styles.scss */ #envelop-cover .course-title { position: absolute; bottom: 50px; left: 5px; } -/* line 2364, ../../../scss/_app_styles.scss */ +/* line 2363, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs { border: 0 solid silver; border-width: 0px 0px 0px 0px; @@ -25641,7 +25640,7 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; background-color: rgba(255, 255, 255, 0.8); } -/* line 2375, ../../../scss/_app_styles.scss */ +/* line 2374, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title { border: 0 solid silver; border-width: 0 0 0px 0px; @@ -25651,7 +25650,7 @@ div.show-image:hover div.fullscreen-icon{ display: inline-block; border-top: 5px solid transparent; } -/* line 2384, ../../../scss/_app_styles.scss */ +/* line 2383, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title a { color: #6F669E; font-weight: 600; @@ -25659,25 +25658,25 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: -0.3px; padding: 0rem 0.8rem 0.4rem; } -/* line 2392, ../../../scss/_app_styles.scss */ +/* line 2391, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active { border-width: 0px 0px 0px 0px; background: #FFFFFF; border-top: 5px solid #F11FD0; } -/* line 2396, ../../../scss/_app_styles.scss */ +/* line 2395, ../../../scss/_app_styles.scss */ #envelop-cover .course-tabs .tab-title.active a { color: #6153AE; } -/* line 2409, ../../../scss/_app_styles.scss */ +/* line 2408, ../../../scss/_app_styles.scss */ .note-tags a { background: #ffebb2; padding: 0.2em 0.7em; display: inline-block; } -/* line 2416, ../../../scss/_app_styles.scss */ +/* line 2415, ../../../scss/_app_styles.scss */ .toggleButtons a { padding: 0.5em 1em; margin: 0px; @@ -25686,69 +25685,69 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid #B7B7B7; display: inline; } -/* line 2424, ../../../scss/_app_styles.scss */ +/* line 2423, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { margin-right: -3px; border-right: 0px solid #000; } -/* line 2428, ../../../scss/_app_styles.scss */ +/* line 2427, ../../../scss/_app_styles.scss */ .toggleButtons a:first-child { border-radius: 10px 0px 0px 10px; } -/* line 2431, ../../../scss/_app_styles.scss */ +/* line 2430, ../../../scss/_app_styles.scss */ .toggleButtons a:last-child { border-radius: 0px 10px 10px 0px; } -/* line 2434, ../../../scss/_app_styles.scss */ +/* line 2433, ../../../scss/_app_styles.scss */ .toggleButtons a.active { background-color: #908F8F; color: #fff; } -/* line 2441, ../../../scss/_app_styles.scss */ +/* line 2440, ../../../scss/_app_styles.scss */ .explore-header { line-height: 3em; } -/* line 2444, ../../../scss/_app_styles.scss */ +/* line 2443, ../../../scss/_app_styles.scss */ .explore-header > div { vertical-align: middle; display: inline-block; } -/* line 2448, ../../../scss/_app_styles.scss */ +/* line 2447, ../../../scss/_app_styles.scss */ .explore-header .heading { font-size: 2em; } -/* line 2461, ../../../scss/_app_styles.scss */ +/* line 2460, ../../../scss/_app_styles.scss */ #envelop-content { /*background-color: #fff;*/ padding: 0px 10px; overflow-x: hidden; /* For accordian in the mobile view*/ } -/* line 2467, ../../../scss/_app_styles.scss */ +/* line 2466, ../../../scss/_app_styles.scss */ #envelop-content .accordion { margin-left: 0px; } -/* line 2471, ../../../scss/_app_styles.scss */ +/* line 2470, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation a { background-color: #DEDEDE; } -/* line 2474, ../../../scss/_app_styles.scss */ +/* line 2473, ../../../scss/_app_styles.scss */ #envelop-content .accordion .accordion-navigation.active a { background-color: #fff; } -/* line 2481, ../../../scss/_app_styles.scss */ +/* line 2480, ../../../scss/_app_styles.scss */ #envelop-content > div > .tabs-content > .content { background: #FFFFFF; padding: 1em; } -/* line 2488, ../../../scss/_app_styles.scss */ +/* line 2487, ../../../scss/_app_styles.scss */ #envelop-content .course-book #course-dashboard { padding: 0px; } -/* line 2496, ../../../scss/_app_styles.scss */ +/* line 2495, ../../../scss/_app_styles.scss */ .course-overview-container { /*.about-course-heading { display: block; @@ -25783,23 +25782,23 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; }*/ } -/* line 2497, ../../../scss/_app_styles.scss */ +/* line 2496, ../../../scss/_app_styles.scss */ .course-overview-container .course-overview > .columns { padding: 0px 10px; } -/* line 2500, ../../../scss/_app_styles.scss */ +/* line 2499, ../../../scss/_app_styles.scss */ .course-overview-container h5 { text-transform: uppercase; } -/* line 2503, ../../../scss/_app_styles.scss */ +/* line 2502, ../../../scss/_app_styles.scss */ .course-overview-container .correct-count { color: #367714; } -/* line 2506, ../../../scss/_app_styles.scss */ +/* line 2505, ../../../scss/_app_styles.scss */ .course-overview-container .incorrect-count { color: #9b0000; } -/* line 2509, ../../../scss/_app_styles.scss */ +/* line 2508, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-heading { text-transform: uppercase; font-size: 12px; @@ -25808,45 +25807,45 @@ div.show-image:hover div.fullscreen-icon{ color: #8E8E8E; display: block; } -/* line 2517, ../../../scss/_app_styles.scss */ +/* line 2516, ../../../scss/_app_styles.scss */ .course-overview-container .course-metric-count { font-size: 30px; font-weight: 500; letter-spacing: 0.5px; display: block; } -/* line 2523, ../../../scss/_app_styles.scss */ +/* line 2522, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session { border-bottom: 1px solid #ccc; margin-bottom: 12px; padding-bottom: 15px; } -/* line 2528, ../../../scss/_app_styles.scss */ +/* line 2527, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session h5, .course-overview-container .ongoing-session h3 { color: #2b78e4; } -/* line 2531, ../../../scss/_app_styles.scss */ +/* line 2530, ../../../scss/_app_styles.scss */ .course-overview-container .ongoing-session button { font-size: 14px; padding: 7px; margin: 0px; background-color: #2B78E4; } -/* line 2539, ../../../scss/_app_styles.scss */ +/* line 2538, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > h5 { color: #888; } -/* line 2542, ../../../scss/_app_styles.scss */ +/* line 2541, ../../../scss/_app_styles.scss */ .course-overview-container .course-status > .row { margin: 10px 0px; } -/* line 2545, ../../../scss/_app_styles.scss */ +/* line 2544, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2550, ../../../scss/_app_styles.scss */ +/* line 2549, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -25855,17 +25854,17 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2558, ../../../scss/_app_styles.scss */ +/* line 2557, ../../../scss/_app_styles.scss */ .course-overview-container .course-status .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2568, ../../../scss/_app_styles.scss */ +/* line 2567, ../../../scss/_app_styles.scss */ .course-overview-container .course-notif-logs ul { list-style: none; } -/* line 2572, ../../../scss/_app_styles.scss */ +/* line 2571, ../../../scss/_app_styles.scss */ .course-overview-container .course-section { border: 1px solid #ccc; padding: 10px; @@ -25873,11 +25872,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 40px 0px; position: relative; } -/* line 2579, ../../../scss/_app_styles.scss */ +/* line 2578, ../../../scss/_app_styles.scss */ .course-overview-container .course-section > .row { margin: 20px 0px; } -/* line 2583, ../../../scss/_app_styles.scss */ +/* line 2582, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-heading { text-transform: uppercase; font-weight: 600; @@ -25887,7 +25886,7 @@ div.show-image:hover div.fullscreen-icon{ margin: 2px 0px 15px; color: #888; } -/* line 2593, ../../../scss/_app_styles.scss */ +/* line 2592, ../../../scss/_app_styles.scss */ .course-overview-container .course-section .course-section-icon { position: absolute; font-size: 40px; @@ -25896,58 +25895,58 @@ div.show-image:hover div.fullscreen-icon{ color: #aaa; background: #fff; } -/* line 2617, ../../../scss/_app_styles.scss */ +/* line 2616, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning { background-color: #fffdd7; } -/* line 2619, ../../../scss/_app_styles.scss */ +/* line 2618, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning > h5 { color: #c09100; } -/* line 2622, ../../../scss/_app_styles.scss */ +/* line 2621, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning i { padding: 10px; margin-right: 5px; color: #c09100; } -/* line 2627, ../../../scss/_app_styles.scss */ +/* line 2626, ../../../scss/_app_styles.scss */ .course-overview-container .course-warning a { text-decoration: underline; } -/* line 2631, ../../../scss/_app_styles.scss */ +/* line 2630, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data { margin: 20px 0px; } -/* line 2635, ../../../scss/_app_styles.scss */ +/* line 2634, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 2638, ../../../scss/_app_styles.scss */ +/* line 2637, ../../../scss/_app_styles.scss */ .course-overview-container .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 2645, ../../../scss/_app_styles.scss */ +/* line 2644, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table { width: 100%; margin: 15px 0px; } -/* line 2649, ../../../scss/_app_styles.scss */ +/* line 2648, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table tr { border: none; } -/* line 2653, ../../../scss/_app_styles.scss */ +/* line 2652, ../../../scss/_app_styles.scss */ .course-overview-container .student-overview-table .progress .merter-val { margin-left: 5px; } -/* line 2691, ../../../scss/_app_styles.scss */ +/* line 2690, ../../../scss/_app_styles.scss */ .about-course { background-color: #fff; padding: 10px 23px; } -/* line 2694, ../../../scss/_app_styles.scss */ +/* line 2693, ../../../scss/_app_styles.scss */ .about-course > h5 { text-transform: uppercase; font-weight: 600; @@ -25958,7 +25957,7 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 5px; } -/* line 2705, ../../../scss/_app_styles.scss */ +/* line 2704, ../../../scss/_app_styles.scss */ .course-desc { letter-spacing: 0.7px; font-weight: 400; @@ -25968,7 +25967,7 @@ div.show-image:hover div.fullscreen-icon{ margin-top: 5px; } -/* line 2713, ../../../scss/_app_styles.scss */ +/* line 2712, ../../../scss/_app_styles.scss */ .course-highlight { letter-spacing: 0.7px; font-weight: 400; @@ -25979,25 +25978,25 @@ div.show-image:hover div.fullscreen-icon{ margin-left: 4px; margin-bottom: 5px; } -/* line 2723, ../../../scss/_app_styles.scss */ +/* line 2722, ../../../scss/_app_styles.scss */ .course-highlight > span { color: #ce7869; } -/* line 2729, ../../../scss/_app_styles.scss */ +/* line 2728, ../../../scss/_app_styles.scss */ .icon-wid { font-size: 34px !important; color: #a2b1be; margin-right: 10px; } -/* line 2738, ../../../scss/_app_styles.scss */ +/* line 2737, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 2743, ../../../scss/_app_styles.scss */ +/* line 2742, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26006,96 +26005,96 @@ div.show-image:hover div.fullscreen-icon{ top: 1px; text-transform: uppercase; } -/* line 2751, ../../../scss/_app_styles.scss */ +/* line 2750, ../../../scss/_app_styles.scss */ .notifications-analytics-tabs .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 2760, ../../../scss/_app_styles.scss */ +/* line 2759, ../../../scss/_app_styles.scss */ .student-dashboard-header-container { background-color: #90F; padding: 10px 10px; height: 110px; width: 100%; } -/* line 2768, ../../../scss/_app_styles.scss */ +/* line 2767, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header img { height: 75px; width: 75px; vertical-align: top; margin: 0px 10px; } -/* line 2774, ../../../scss/_app_styles.scss */ +/* line 2773, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info { display: inline-block; } -/* line 2776, ../../../scss/_app_styles.scss */ +/* line 2775, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info > span { display: block; color: #fff; } -/* line 2780, ../../../scss/_app_styles.scss */ +/* line 2779, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-name { color: #fff; font-weight: 600; font-size: 22px; letter-spacing: 0.5px; } -/* line 2786, ../../../scss/_app_styles.scss */ +/* line 2785, ../../../scss/_app_styles.scss */ .student-dashboard-header-container .student-dashboard-header .student-dashboard-info .student-overall-points { font-size: 26px; color: #ffff00; } -/* line 2799, ../../../scss/_app_styles.scss */ +/* line 2798, ../../../scss/_app_styles.scss */ .student-dashboard { background-color: #fff; padding: 10px; } -/* line 2804, ../../../scss/_app_styles.scss */ +/* line 2803, ../../../scss/_app_styles.scss */ .student-dashboard #course-act-logs > span { display: inline-block; vertical-align: top; } -/* line 2813, ../../../scss/_app_styles.scss */ +/* line 2812, ../../../scss/_app_styles.scss */ .rating-star-number { position: relative; display: inline-block; } -/* line 2816, ../../../scss/_app_styles.scss */ +/* line 2815, ../../../scss/_app_styles.scss */ .rating-star-number > span { position: absolute; top: 11px; left: 14px; font-size: 13px; } -/* line 2822, ../../../scss/_app_styles.scss */ +/* line 2821, ../../../scss/_app_styles.scss */ .rating-star-number i { font-size: 40px; color: gold; } -/* line 2829, ../../../scss/_app_styles.scss */ +/* line 2828, ../../../scss/_app_styles.scss */ .course-notif .notif-type img { height: 35px; width: 75%; } -/* line 2833, ../../../scss/_app_styles.scss */ +/* line 2832, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating { position: absolute; right: 15%; top: 0; } -/* line 2837, ../../../scss/_app_styles.scss */ +/* line 2836, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating i { font-size: 40px; right: 10%; color: #f1c233; } -/* line 2842, ../../../scss/_app_styles.scss */ +/* line 2841, ../../../scss/_app_styles.scss */ .course-notif .notif-type .notif-rating span { position: absolute; left: 50%; @@ -26104,12 +26103,12 @@ div.show-image:hover div.fullscreen-icon{ font-size: 11px; } -/* line 2856, ../../../scss/_app_styles.scss */ +/* line 2855, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > ul, .course-dashboard .course-notifications > ul, .course-dashboard .course-performance > ul { list-style: none; } -/* line 2860, ../../../scss/_app_styles.scss */ +/* line 2859, ../../../scss/_app_styles.scss */ .course-dashboard .course-status > .row, .course-dashboard .course-notifications > .row, .course-dashboard .course-performance > .row { padding: 0px; @@ -26121,45 +26120,45 @@ div.show-image:hover div.fullscreen-icon{ margin: 0em 0em; border-radius: 10px; } -/* line 2872, ../../../scss/_app_styles.scss */ +/* line 2871, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-heading { padding: 0.2em 0.7em; border-bottom: 1px solid #DADADA; font-weight: 500; font-size: 1.3em; } -/* line 2878, ../../../scss/_app_styles.scss */ +/* line 2877, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row { padding: 1em; } -/* line 2881, ../../../scss/_app_styles.scss */ +/* line 2880, ../../../scss/_app_styles.scss */ .course-dashboard .dash-tile-row:nth-child(n+3) { border-top: 1px solid #DCDCDC; } -/* line 2887, ../../../scss/_app_styles.scss */ +/* line 2886, ../../../scss/_app_styles.scss */ .course-dashboard .course-status .course-update .course-current-state { color: #000; font-weight: bold; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 2897, ../../../scss/_app_styles.scss */ +/* line 2896, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications { position: relative; } -/* line 2902, ../../../scss/_app_styles.scss */ +/* line 2901, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .notification-text { font-size: 0.85em; letter-spacing: 0em; word-spacing: 0.2em; } -/* line 2907, ../../../scss/_app_styles.scss */ +/* line 2906, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-row .time-elapsed { font-size: 0.6em; color: #424242; cursor: pointer; } -/* line 2914, ../../../scss/_app_styles.scss */ +/* line 2913, ../../../scss/_app_styles.scss */ .course-dashboard .course-notifications .notification-count { font-size: 1em; position: absolute; @@ -26167,42 +26166,42 @@ div.show-image:hover div.fullscreen-icon{ top: 0.3em; } -/* line 2924, ../../../scss/_app_styles.scss */ +/* line 2923, ../../../scss/_app_styles.scss */ .notebook .notebook-header { border-color: black; border-style: solid; border-width: 1px 0px; padding-top: 1em; } -/* line 2930, ../../../scss/_app_styles.scss */ +/* line 2929, ../../../scss/_app_styles.scss */ .notebook .notebook-header a, .notebook .notebook-header input { margin: 0px; } -/* line 2933, ../../../scss/_app_styles.scss */ +/* line 2932, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count { text-align: center; } -/* line 2938, ../../../scss/_app_styles.scss */ +/* line 2937, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:first-child { font-size: 21px; font-weight: 600; padding: 15px; } -/* line 2943, ../../../scss/_app_styles.scss */ +/* line 2942, ../../../scss/_app_styles.scss */ .notebook .notebook-header .notes-count span:last-child { background: lightgrey; padding: 2px 5px; vertical-align: text-bottom; } -/* line 2953, ../../../scss/_app_styles.scss */ +/* line 2952, ../../../scss/_app_styles.scss */ .notebook .notebook-body { padding: 0px 0px; } -/* line 2957, ../../../scss/_app_styles.scss */ +/* line 2956, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .row { margin: 30px 0px; } -/* line 2960, ../../../scss/_app_styles.scss */ +/* line 2959, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card, .notebook .notebook-body .note-cards .note-details { border: 1px solid #ccc; padding: 10px 15px; @@ -26212,12 +26211,12 @@ div.show-image:hover div.fullscreen-icon{ cursor: pointer; position: relative; } -/* line 2969, ../../../scss/_app_styles.scss */ +/* line 2968, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-heading, .notebook .notebook-body .note-cards .note-details .note-heading { font-weight: 800; font-size: 20px; } -/* line 2973, ../../../scss/_app_styles.scss */ +/* line 2972, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-close, .notebook .notebook-body .note-cards .note-details .note-close { position: absolute; right: 7px; @@ -26226,22 +26225,22 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 700; color: #929292; } -/* line 2981, ../../../scss/_app_styles.scss */ +/* line 2980, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-summary, .notebook .notebook-body .note-cards .note-details .note-summary { margin: 15px 0px; } -/* line 2984, ../../../scss/_app_styles.scss */ +/* line 2983, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info, .notebook .notebook-body .note-cards .note-card .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data { color: #989898; font-size: 13px; letter-spacing: 0.9px; font-weight: 500; } -/* line 2990, ../../../scss/_app_styles.scss */ +/* line 2989, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-info > span, .notebook .notebook-body .note-cards .note-card .note-extra-data > span, .notebook .notebook-body .note-cards .note-details .note-info > span, .notebook .notebook-body .note-cards .note-details .note-extra-data > span { margin-right: 5px; } -/* line 2995, ../../../scss/_app_styles.scss */ +/* line 2994, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-tags > span, .notebook .notebook-body .note-cards .note-details .note-tags > span { display: inline-block; margin: 10px; @@ -26249,53 +26248,53 @@ div.show-image:hover div.fullscreen-icon{ color: #cba552; padding: 2px 5px; } -/* line 3003, ../../../scss/_app_styles.scss */ +/* line 3002, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions, .notebook .notebook-body .note-cards .note-details .note-actions { color: #989898; cursor: pointer; } -/* line 3007, ../../../scss/_app_styles.scss */ +/* line 3006, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-card .note-actions span, .notebook .notebook-body .note-cards .note-details .note-actions span { margin-right: 10px 5px; } -/* line 3013, ../../../scss/_app_styles.scss */ +/* line 3012, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-info, .notebook .notebook-body .note-cards .note-details .note-extra-data, .notebook .notebook-body .note-cards .note-details .note-tags, .notebook .notebook-body .note-cards .note-details .note-actions { display: inline-block; margin-right: 10px; } -/* line 3020, ../../../scss/_app_styles.scss */ +/* line 3019, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags { float: right; } -/* line 3022, ../../../scss/_app_styles.scss */ +/* line 3021, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-cards .note-details .note-tags > span { margin: 0px; } -/* line 3031, ../../../scss/_app_styles.scss */ +/* line 3030, ../../../scss/_app_styles.scss */ .notebook .notebook-body > div { padding: 0px; } -/* line 3037, ../../../scss/_app_styles.scss */ +/* line 3036, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index { border-right: 1px solid #AFAEAE; padding: 4px 0px; background-color: #F1F1F1; } -/* line 3042, ../../../scss/_app_styles.scss */ +/* line 3041, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content { padding: 0px; } -/* line 3045, ../../../scss/_app_styles.scss */ +/* line 3044, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs-content .active { padding: 0px; } -/* line 3049, ../../../scss/_app_styles.scss */ +/* line 3048, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3054, ../../../scss/_app_styles.scss */ +/* line 3053, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title { width: 50%; /*background-color: #DEDEDE;*/ @@ -26303,114 +26302,114 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3061, ../../../scss/_app_styles.scss */ +/* line 3060, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title a { border-radius: inherit; font-size: 0.9rem; text-align: center; color: #989898; } -/* line 3068, ../../../scss/_app_styles.scss */ +/* line 3067, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3072, ../../../scss/_app_styles.scss */ +/* line 3071, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tabs .tab-title.active a { color: #3a3169; } -/* line 3079, ../../../scss/_app_styles.scss */ +/* line 3078, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .tab-content { padding: 0px; } -/* line 3084, ../../../scss/_app_styles.scss */ +/* line 3083, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date { font-size: 12px; font-weight: bold; background: #EFEFEF; padding: 7px 10px; } -/* line 3090, ../../../scss/_app_styles.scss */ +/* line 3089, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .date .note-count { font-size: 11px; line-height: 2em; } -/* line 3095, ../../../scss/_app_styles.scss */ +/* line 3094, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes > div { border-bottom: 1px solid #AFAEAE; } -/* line 3098, ../../../scss/_app_styles.scss */ +/* line 3097, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note { padding: 5px 15px; background: #FFF; cursor: pointer; color: #A2A2A2; } -/* line 3104, ../../../scss/_app_styles.scss */ +/* line 3103, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-heading { font-weight: 400; font-size: 17px; } -/* line 3109, ../../../scss/_app_styles.scss */ +/* line 3108, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta { font-size: 13px; } -/* line 3112, ../../../scss/_app_styles.scss */ +/* line 3111, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-meta > span:not(:first-child) { font-size: 11px; font-weight: 600; color: #717171; } -/* line 3119, ../../../scss/_app_styles.scss */ +/* line 3118, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer { color: #888888; } -/* line 3122, ../../../scss/_app_styles.scss */ +/* line 3121, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note .note-footer span { margin-right: 10px; } -/* line 3127, ../../../scss/_app_styles.scss */ +/* line 3126, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active { border-left: 5px solid #6153AE; background: #F4E7FF; font-weight: 800; color: #6153AE; } -/* line 3133, ../../../scss/_app_styles.scss */ +/* line 3132, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-heading { font-weight: 500; font-size: 17px; } -/* line 3137, ../../../scss/_app_styles.scss */ +/* line 3136, ../../../scss/_app_styles.scss */ .notebook .notebook-body .notebook-index .notes .note.active .note-meta > span:not(:first-child) { color: #6153AE; } -/* line 3145, ../../../scss/_app_styles.scss */ +/* line 3144, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page { background-color: #fff; padding-bottom: 30px; } -/* line 3152, ../../../scss/_app_styles.scss */ +/* line 3151, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .group_content { margin-top: 5px; margin-left: 0px; } -/* line 3157, ../../../scss/_app_styles.scss */ +/* line 3156, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page > div { background-color: #fff; } -/* line 3161, ../../../scss/_app_styles.scss */ +/* line 3160, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar { padding: 1.8em 1.2em 0em; margin: 0em; background-color: #FFF; } -/* line 3166, ../../../scss/_app_styles.scss */ +/* line 3165, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .note-creator { font-weight: bold; } -/* line 3169, ../../../scss/_app_styles.scss */ +/* line 3168, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-title { text-align: left; color: #C3C3C3; @@ -26418,102 +26417,102 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.3px; margin-top: 5px; } -/* line 3176, ../../../scss/_app_styles.scss */ +/* line 3175, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating { text-align: right; } -/* line 3178, ../../../scss/_app_styles.scss */ +/* line 3177, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-toolbar .creator-rating > div { display: inline-block; } -/* line 3183, ../../../scss/_app_styles.scss */ +/* line 3182, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-title { font-size: 2.3em; font-weight: 500; margin-right: 1em; } -/* line 3188, ../../../scss/_app_styles.scss */ +/* line 3187, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content { padding: 2em 2em 1em; background: #fff; margin: 0em; } -/* line 3195, ../../../scss/_app_styles.scss */ +/* line 3194, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-header > div { display: inline-block; } -/* line 3200, ../../../scss/_app_styles.scss */ +/* line 3199, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text { font-size: 19px; letter-spacing: 0.7px; } -/* line 3203, ../../../scss/_app_styles.scss */ +/* line 3202, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .note-content .note-text p { padding: 0px; } -/* line 3209, ../../../scss/_app_styles.scss */ +/* line 3208, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections { padding: 0em 1em 0em; } -/* line 3213, ../../../scss/_app_styles.scss */ +/* line 3212, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header span { font-weight: bold; } -/* line 3216, ../../../scss/_app_styles.scss */ +/* line 3215, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .comments-header i:not(:first-child) { margin-left: 15px; } -/* line 3221, ../../../scss/_app_styles.scss */ +/* line 3220, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment { border-top: 1px solid grey; padding: 15px 10px; margin-top: 5px; } -/* line 3226, ../../../scss/_app_styles.scss */ +/* line 3225, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-box, .notebook .notebook-body .note-page .comment-sections .new-comment .trumbowyg-editor { min-height: 200px; margin-top: 0px; } -/* line 3232, ../../../scss/_app_styles.scss */ +/* line 3231, ../../../scss/_app_styles.scss */ .notebook .notebook-body .note-page .comment-sections .new-comment .user-prof-image { font-size: 90px; line-height: 0em; } -/* line 3242, ../../../scss/_app_styles.scss */ +/* line 3241, ../../../scss/_app_styles.scss */ #newNoteModal { width: 40%; } -/* line 3245, ../../../scss/_app_styles.scss */ +/* line 3244, ../../../scss/_app_styles.scss */ #newNoteModal > div { margin-bottom: 1em; } -/* line 3249, ../../../scss/_app_styles.scss */ +/* line 3248, ../../../scss/_app_styles.scss */ #newNoteModal input { width: 100%; } -/* line 3252, ../../../scss/_app_styles.scss */ +/* line 3251, ../../../scss/_app_styles.scss */ #newNoteModal .heading { margin-right: 1em; } -/* line 3256, ../../../scss/_app_styles.scss */ +/* line 3255, ../../../scss/_app_styles.scss */ #newNoteModal .note-tags { padding: 1em; border: 1px solid black; } -/* line 3262, ../../../scss/_app_styles.scss */ +/* line 3261, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button { float: left; margin-left: 1em; margin-bottom: 0px; } -/* line 3267, ../../../scss/_app_styles.scss */ +/* line 3266, ../../../scss/_app_styles.scss */ #newNoteModal .new-note-actions .button:last-child { float: right; } -/* line 3275, ../../../scss/_app_styles.scss */ +/* line 3274, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header { line-height: 2em; border-top: 1px solid #797979; @@ -26521,33 +26520,33 @@ div.show-image:hover div.fullscreen-icon{ text-align: center; padding: 0.7em 1em; } -/* line 3282, ../../../scss/_app_styles.scss */ +/* line 3281, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input, .gallery-page .gallery-header select, .gallery-page .gallery-header a { border-radius: 4px; margin-bottom: 0em; } -/* line 3286, ../../../scss/_app_styles.scss */ +/* line 3285, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header input.prefix, .gallery-page .gallery-header select.prefix, .gallery-page .gallery-header a.prefix { border-radius: 0px; } -/* line 3291, ../../../scss/_app_styles.scss */ +/* line 3290, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header i { font-size: 1em; color: #A29E9E; } -/* line 3297, ../../../scss/_app_styles.scss */ +/* line 3296, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .filters .columns { padding-left: 5px; } -/* line 3303, ../../../scss/_app_styles.scss */ +/* line 3302, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .columns { padding-left: 5px; } -/* line 3307, ../../../scss/_app_styles.scss */ +/* line 3306, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags { text-align: left; } -/* line 3310, ../../../scss/_app_styles.scss */ +/* line 3309, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag { padding: 0px 10px; background: #cccccc; @@ -26557,73 +26556,73 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.8em; color: #757575; } -/* line 3319, ../../../scss/_app_styles.scss */ +/* line 3318, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags .filter-tag span { margin: 0px 2px 0px 6px; cursor: pointer; } -/* line 3324, ../../../scss/_app_styles.scss */ +/* line 3323, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .search .filter-tags > div { display: inline-block; } -/* line 3331, ../../../scss/_app_styles.scss */ +/* line 3330, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading { font-size: 19px; } -/* line 3334, ../../../scss/_app_styles.scss */ +/* line 3333, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading a { background: #e7e7e7; border-width: 1px 0px 1px 1px; border-color: #cccccc; border-style: solid; } -/* line 3341, ../../../scss/_app_styles.scss */ +/* line 3340, ../../../scss/_app_styles.scss */ .gallery-page .gallery-header .side-heading input { border-radius: 0px; box-shadow: none; border-left: 0px; } -/* line 3348, ../../../scss/_app_styles.scss */ +/* line 3347, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel { background: #FFF; } -/* line 3351, ../../../scss/_app_styles.scss */ +/* line 3350, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content { min-height: 250px; } -/* line 3354, ../../../scss/_app_styles.scss */ +/* line 3353, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader { line-height: 3em; padding: 10px 0px; } -/* line 3358, ../../../scss/_app_styles.scss */ +/* line 3357, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader upload-file { margin: 0px; font-size: 1em; } -/* line 3363, ../../../scss/_app_styles.scss */ +/* line 3362, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions { font-size: 1.2em; color: #2a79e4; } -/* line 3367, ../../../scss/_app_styles.scss */ +/* line 3366, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .gallery-content .gallery-subheader .gallery-actions > div { display: inline-block; margin-right: 10px; } -/* line 3374, ../../../scss/_app_styles.scss */ +/* line 3373, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel { background: #fff; } -/* line 3377, ../../../scss/_app_styles.scss */ +/* line 3376, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row { margin: 10px 0px; } -/* line 3380, ../../../scss/_app_styles.scss */ +/* line 3379, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .row > div:first-child { font-weight: 500; } -/* line 3385, ../../../scss/_app_styles.scss */ +/* line 3384, ../../../scss/_app_styles.scss */ .gallery-page .gallery-panel .file-info-panel .file-name { font-size: 20px; font-weight: bold; @@ -26631,11 +26630,11 @@ div.show-image:hover div.fullscreen-icon{ margin: 10px 0px 20px; } -/* line 3396, ../../../scss/_app_styles.scss */ +/* line 3395, ../../../scss/_app_styles.scss */ .gallery-card .select-file { vertical-align: top; } -/* line 3400, ../../../scss/_app_styles.scss */ +/* line 3399, ../../../scss/_app_styles.scss */ .gallery-card .file-item { width: 80%; color: #fff; @@ -26646,17 +26645,17 @@ div.show-image:hover div.fullscreen-icon{ border: 1px solid black; overflow: hidden; } -/* line 3410, ../../../scss/_app_styles.scss */ +/* line 3409, ../../../scss/_app_styles.scss */ .gallery-card .file-item .item-thumbnail-image { height: 100%; padding: 1em; } -/* line 3415, ../../../scss/_app_styles.scss */ +/* line 3414, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-details { margin-top: 10%; display: none; } -/* line 3420, ../../../scss/_app_styles.scss */ +/* line 3419, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions { display: none; position: absolute; @@ -26665,11 +26664,11 @@ div.show-image:hover div.fullscreen-icon{ width: 100%; font-size: 25px; } -/* line 3428, ../../../scss/_app_styles.scss */ +/* line 3427, ../../../scss/_app_styles.scss */ .gallery-card .file-item .file-actions i { margin: 0px 10px; } -/* line 3433, ../../../scss/_app_styles.scss */ +/* line 3432, ../../../scss/_app_styles.scss */ .gallery-card .file-item .filename-footer { position: absolute; bottom: 0px; @@ -26680,24 +26679,24 @@ div.show-image:hover div.fullscreen-icon{ font-weight: 600; background: #999999; } -/* line 3444, ../../../scss/_app_styles.scss */ +/* line 3443, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover { background: #999999; } -/* line 3447, ../../../scss/_app_styles.scss */ +/* line 3446, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .item-thumbnail-image { opacity: 0.2; } -/* line 3451, ../../../scss/_app_styles.scss */ +/* line 3450, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .file-details, .gallery-card .file-item:hover .file-actions { display: block; } -/* line 3454, ../../../scss/_app_styles.scss */ +/* line 3453, ../../../scss/_app_styles.scss */ .gallery-card .file-item:hover .filename-footer { display: none; } -/* line 3462, ../../../scss/_app_styles.scss */ +/* line 3461, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'], dialog[id^='reveal-'] { width: 100vw; height: 100vh; @@ -26761,49 +26760,49 @@ div.show-image:hover div.fullscreen-icon{ } }*/ } -/* line 3526, ../../../scss/_app_styles.scss */ +/* line 3525, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body, dialog[id^='reveal-'] .gmodal-body { position: relative; height: 100%; } -/* line 3529, ../../../scss/_app_styles.scss */ +/* line 3528, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel { background-color: #fff; height: 100%; } -/* line 3531, ../../../scss/_app_styles.scss */ +/* line 3530, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .text-gray { display: none; } -/* line 3535, ../../../scss/_app_styles.scss */ +/* line 3534, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel iframe { height: 550px !important; width: 130% !important; } -/* line 3540, ../../../scss/_app_styles.scss */ +/* line 3539, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel #view-page { margin-top: -10px !important; } -/* line 3544, ../../../scss/_app_styles.scss */ +/* line 3543, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel span, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel span { display: none !important; } -/* line 3548, ../../../scss/_app_styles.scss */ +/* line 3547, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .button, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .button { display: none !important; } -/* line 3555, ../../../scss/_app_styles.scss */ +/* line 3554, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder { height: 100%; } -/* line 3558, ../../../scss/_app_styles.scss */ +/* line 3557, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item { height: 100%; width: 100%; background: transparent; padding: 0px; } -/* line 3564, ../../../scss/_app_styles.scss */ +/* line 3563, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-item-holder .gmodal-item .gmodel-item-image { width: auto; margin: 0px auto; @@ -26811,7 +26810,7 @@ div.show-image:hover div.fullscreen-icon{ padding: 1em 0em; height: 100%; } -/* line 3573, ../../../scss/_app_styles.scss */ +/* line 3572, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer { height: 2em; line-height: 2em; @@ -26823,32 +26822,32 @@ div.show-image:hover div.fullscreen-icon{ opacity: 0; background-color: rgba(0, 0, 0, 0.9); } -/* line 3584, ../../../scss/_app_styles.scss */ +/* line 3583, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details), dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer > div:not(.gmodal-item-details) { cursor: pointer; } -/* line 3588, ../../../scss/_app_styles.scss */ +/* line 3587, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details { text-align: center; width: 100%; } -/* line 3592, ../../../scss/_app_styles.scss */ +/* line 3591, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel .gmodal-footer .gmodal-item-details i { margin-left: 1em; margin-right: 0.5em; cursor: pointer; } -/* line 3600, ../../../scss/_app_styles.scss */ +/* line 3599, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer, dialog[id^='reveal-'] .gmodal-body .gmodal-item-panel:hover .gmodal-footer { opacity: 0.8; transition: opacity 1s; } -/* line 3605, ../../../scss/_app_styles.scss */ +/* line 3604, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel { height: 100%; padding: 0px 25px; } -/* line 3609, ../../../scss/_app_styles.scss */ +/* line 3608, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side { background: #fff; height: 100%; @@ -26869,31 +26868,31 @@ div.show-image:hover div.fullscreen-icon{ font-size: 0.9em; }*/ } -/* line 3613, ../../../scss/_app_styles.scss */ +/* line 3612, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side > div > div { width: 100%; display: block; margin: 12px 0px; padding: 0px 10px; } -/* line 3620, ../../../scss/_app_styles.scss */ +/* line 3619, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-name .close-reveal-modal { font-size: 20px; top: 6px; right: 26px; } -/* line 3627, ../../../scss/_app_styles.scss */ +/* line 3626, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief span { vertical-align: top; margin-right: 5px; line-height: 35px; } -/* line 3632, ../../../scss/_app_styles.scss */ +/* line 3631, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-brief .image-rating { background: #ccc; padding: 2px 5px; } -/* line 3638, ../../../scss/_app_styles.scss */ +/* line 3637, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-actions a { padding: 3px 7px; background: #fff; @@ -26903,13 +26902,13 @@ div.show-image:hover div.fullscreen-icon{ margin-right: 10px; display: inline-block; } -/* line 3649, ../../../scss/_app_styles.scss */ +/* line 3648, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 3654, ../../../scss/_app_styles.scss */ +/* line 3653, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title { width: 40%; background-color: #DEDEDE; @@ -26918,17 +26917,17 @@ div.show-image:hover div.fullscreen-icon{ position: relative; top: 1px; } -/* line 3662, ../../../scss/_app_styles.scss */ +/* line 3661, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title a { border-radius: inherit; } -/* line 3666, ../../../scss/_app_styles.scss */ +/* line 3665, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details .tabs .tab-title.active { background-color: #fff; border: 1px solid #CCC; border-bottom: 0px; } -/* line 3674, ../../../scss/_app_styles.scss */ +/* line 3673, ../../../scss/_app_styles.scss */ .reveal-modal[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span, dialog[id^='reveal-'] .gmodal-body .gmodal-side-panel .gmodal-side .image-details #image-info span { font-weight: 500; font-size: 16px; @@ -26936,20 +26935,20 @@ div.show-image:hover div.fullscreen-icon{ line-height: 35px; } -/* line 3704, ../../../scss/_app_styles.scss */ +/* line 3703, ../../../scss/_app_styles.scss */ .user-comment { display: inline-flex; width: 100%; } -/* line 3708, ../../../scss/_app_styles.scss */ +/* line 3707, ../../../scss/_app_styles.scss */ .user-comment > div { display: inline-block; } -/* line 3711, ../../../scss/_app_styles.scss */ +/* line 3710, ../../../scss/_app_styles.scss */ .user-comment > div:last-child { width: 100%; } -/* line 3716, ../../../scss/_app_styles.scss */ +/* line 3715, ../../../scss/_app_styles.scss */ .user-comment .comment-heading { color: #9C9C9C; border-bottom: 1px solid grey; @@ -26957,71 +26956,71 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 10px; margin-top: 10px; } -/* line 3724, ../../../scss/_app_styles.scss */ +/* line 3723, ../../../scss/_app_styles.scss */ .user-comment .comment-heading > div { display: inline-block; } -/* line 3728, ../../../scss/_app_styles.scss */ +/* line 3727, ../../../scss/_app_styles.scss */ .user-comment .comment-heading .commentor-name span { font-weight: bold; color: #333333; } -/* line 3733, ../../../scss/_app_styles.scss */ +/* line 3732, ../../../scss/_app_styles.scss */ .user-comment .comment-footer { font-size: 0.9em; font-weight: 400; border: 1px solid #9E9E9E; background: #CCCCCC; } -/* line 3739, ../../../scss/_app_styles.scss */ +/* line 3738, ../../../scss/_app_styles.scss */ .user-comment .comment-footer > div { cursor: pointer; } -/* line 3742, ../../../scss/_app_styles.scss */ +/* line 3741, ../../../scss/_app_styles.scss */ .user-comment .comment-footer i { margin-right: 1em; } -/* line 3748, ../../../scss/_app_styles.scss */ +/* line 3747, ../../../scss/_app_styles.scss */ .user-comment .comment-container .comment-add { margin-top: 0.4em; } -/* line 3752, ../../../scss/_app_styles.scss */ +/* line 3751, ../../../scss/_app_styles.scss */ .user-comment .user-avatar { font-size: 10em; font-size: 5em; line-height: 1em; } -/* line 3759, ../../../scss/_app_styles.scss */ +/* line 3758, ../../../scss/_app_styles.scss */ .course-content { /*border-top: 1px solid #000;*/ } -/* line 3761, ../../../scss/_app_styles.scss */ +/* line 3760, ../../../scss/_app_styles.scss */ .course-content .alert-box { padding: 5px; font-size: 1em; } -/* line 3765, ../../../scss/_app_styles.scss */ +/* line 3764, ../../../scss/_app_styles.scss */ .course-content .alert-box > div { display: inline-block; vertical-align: top; } -/* line 3769, ../../../scss/_app_styles.scss */ +/* line 3768, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note { width: 96%; } -/* line 3772, ../../../scss/_app_styles.scss */ +/* line 3771, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-note > div:nth-child(2) { color: #000; margin-top: 5px; padding-top: 5px; border-top: 1px solid #000; } -/* line 3779, ../../../scss/_app_styles.scss */ +/* line 3778, ../../../scss/_app_styles.scss */ .course-content .alert-box .warning-icon { margin: 0px 5px; } -/* line 3782, ../../../scss/_app_styles.scss */ +/* line 3781, ../../../scss/_app_styles.scss */ .course-content .alert-box .close { position: relative; top: 0px; @@ -27031,17 +27030,17 @@ div.show-image:hover div.fullscreen-icon{ text-decoration: underline; color: #085394 !important; } -/* line 3793, ../../../scss/_app_styles.scss */ +/* line 3792, ../../../scss/_app_styles.scss */ .course-content .collection { overflow: visible; } -/* line 3796, ../../../scss/_app_styles.scss */ +/* line 3795, ../../../scss/_app_styles.scss */ .course-content .collection .course-module { position: relative; border-bottom: 1px solid #CCC; padding: 1em 0em; } -/* line 3803, ../../../scss/_app_styles.scss */ +/* line 3802, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-header .fa { position: absolute; left: -1.1em; @@ -27050,58 +27049,58 @@ div.show-image:hover div.fullscreen-icon{ background: #EAEAEA; font-size: 1.4em; } -/* line 3821, ../../../scss/_app_styles.scss */ +/* line 3820, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-page:hover span { text-decoration: underline; color: #9900ff !important; } -/* line 3826, ../../../scss/_app_styles.scss */ +/* line 3825, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .jqtree-tree .jqtree-title { cursor: pointer; } -/* line 3830, ../../../scss/_app_styles.scss */ +/* line 3829, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part { margin-left: 1em; } -/* line 3833, ../../../scss/_app_styles.scss */ +/* line 3832, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler { color: #585858; } -/* line 3836, ../../../scss/_app_styles.scss */ +/* line 3835, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .jqtree-toggler.jqtree-closed { color: #CCC; } -/* line 3840, ../../../scss/_app_styles.scss */ +/* line 3839, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part span { vertical-align: top; } -/* line 3843, ../../../scss/_app_styles.scss */ +/* line 3842, ../../../scss/_app_styles.scss */ .course-content .collection .course-module .module-part .fa { display: inline; margin-right: 5px; } -/* line 3853, ../../../scss/_app_styles.scss */ +/* line 3852, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header { font-weight: 400; font-size: 1.3em; border-bottom: 1px solid #707070; color: #797979; } -/* line 3859, ../../../scss/_app_styles.scss */ +/* line 3858, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header > div { padding: 0.3em 0em; } -/* line 3863, ../../../scss/_app_styles.scss */ +/* line 3862, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header a { color: #797979; } -/* line 3867, ../../../scss/_app_styles.scss */ +/* line 3866, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous { cursor: pointer; padding: 0px; } -/* line 3871, ../../../scss/_app_styles.scss */ +/* line 3870, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-page-previous a:first-child { border-right: 1px solid grey; padding-right: 5px; @@ -27109,27 +27108,27 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3880, ../../../scss/_app_styles.scss */ +/* line 3879, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header i { margin-right: 0.1em; } -/* line 3884, ../../../scss/_app_styles.scss */ +/* line 3883, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .unit-title { text-align: center; color: #999999; } -/* line 3888, ../../../scss/_app_styles.scss */ +/* line 3887, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-title { text-align: center; color: #000; } -/* line 3892, ../../../scss/_app_styles.scss */ +/* line 3891, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note { color: #2a78e3; cursor: pointer; padding: 0px; } -/* line 3897, ../../../scss/_app_styles.scss */ +/* line 3896, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note a:last-child { border-left: 1px solid grey; padding-left: 5px; @@ -27137,11 +27136,11 @@ div.show-image:hover div.fullscreen-icon{ padding: 20px; display: inline-block; } -/* line 3905, ../../../scss/_app_styles.scss */ +/* line 3904, ../../../scss/_app_styles.scss */ .activity-page .activity-page-header .activity-create-note > div { float: right; } -/* line 3910, ../../../scss/_app_styles.scss */ +/* line 3909, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container { border: 1px solid black; height: 100%; @@ -27149,18 +27148,18 @@ div.show-image:hover div.fullscreen-icon{ margin-bottom: 2em; padding: 0em 1em; } -/* line 3917, ../../../scss/_app_styles.scss */ +/* line 3916, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides { height: 100%; } -/* line 3921, ../../../scss/_app_styles.scss */ +/* line 3920, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 3929, ../../../scss/_app_styles.scss */ +/* line 3928, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -27168,12 +27167,12 @@ div.show-image:hover div.fullscreen-icon{ color: #999999; margin-left: 12%; } -/* line 3937, ../../../scss/_app_styles.scss */ +/* line 3936, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 3943, ../../../scss/_app_styles.scss */ +/* line 3942, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -27182,21 +27181,21 @@ div.show-image:hover div.fullscreen-icon{ display: none; color: #8E8E8E; } -/* line 3952, ../../../scss/_app_styles.scss */ +/* line 3951, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 3957, ../../../scss/_app_styles.scss */ +/* line 3956, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 3959, ../../../scss/_app_styles.scss */ +/* line 3958, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 3962, ../../../scss/_app_styles.scss */ +/* line 3961, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -27207,24 +27206,24 @@ div.show-image:hover div.fullscreen-icon{ color: #757575; margin-right: 20px; } -/* line 3972, ../../../scss/_app_styles.scss */ +/* line 3971, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 3976, ../../../scss/_app_styles.scss */ +/* line 3975, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 3979, ../../../scss/_app_styles.scss */ +/* line 3978, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 3984, ../../../scss/_app_styles.scss */ +/* line 3983, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 3988, ../../../scss/_app_styles.scss */ +/* line 3987, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content { width: 75%; margin: 0px auto; @@ -27235,7 +27234,7 @@ div.show-image:hover div.fullscreen-icon{ min-height: 50px; position: relative; } -/* line 3998, ../../../scss/_app_styles.scss */ +/* line 3997, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -27243,15 +27242,15 @@ div.show-image:hover div.fullscreen-icon{ left: 8px; top: 4px; } -/* line 4006, ../../../scss/_app_styles.scss */ +/* line 4005, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 4008, ../../../scss/_app_styles.scss */ +/* line 4007, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 4011, ../../../scss/_app_styles.scss */ +/* line 4010, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -27261,27 +27260,27 @@ div.show-image:hover div.fullscreen-icon{ letter-spacing: 0.8px; color: #999999; } -/* line 4020, ../../../scss/_app_styles.scss */ +/* line 4019, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 4026, ../../../scss/_app_styles.scss */ +/* line 4025, ../../../scss/_app_styles.scss */ .activity-page .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 4033, ../../../scss/_app_styles.scss */ +/* line 4032, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section { width: 75%; margin: 0px auto; } -/* line 4037, ../../../scss/_app_styles.scss */ +/* line 4036, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section .user-prof-image { font-size: 7em; text-align: center; } -/* line 4042, ../../../scss/_app_styles.scss */ +/* line 4041, ../../../scss/_app_styles.scss */ .activity-page .activity-comments-section #postCommentBtn { padding: 2em 3em; } @@ -27302,28 +27301,28 @@ div.show-image:hover div.fullscreen-icon{ position: absolute; } */ -/* line 4063, ../../../scss/_app_styles.scss */ +/* line 4062, ../../../scss/_app_styles.scss */ .rate-scale { cursor: pointer; } -/* line 4066, ../../../scss/_app_styles.scss */ +/* line 4065, ../../../scss/_app_styles.scss */ .rate-scale i { margin-right: 0em !important; padding-right: 0.5em; } -/* line 4070, ../../../scss/_app_styles.scss */ +/* line 4069, ../../../scss/_app_styles.scss */ .rate-scale .hover-rating, .rate-scale .rated { color: yellow; } -/* line 4076, ../../../scss/_app_styles.scss */ +/* line 4075, ../../../scss/_app_styles.scss */ #left-tab { position: absolute; left: 0px; bottom: 0px; } -/* line 4081, ../../../scss/_app_styles.scss */ +/* line 4080, ../../../scss/_app_styles.scss */ #right-tab { position: absolute; right: 0px; @@ -27331,12 +27330,12 @@ div.show-image:hover div.fullscreen-icon{ padding-bottom: 6px; } -/* line 4087, ../../../scss/_app_styles.scss */ +/* line 4086, ../../../scss/_app_styles.scss */ #enrolled-btn { margin-bottom: 0px; } -/* line 4090, ../../../scss/_app_styles.scss */ +/* line 4089, ../../../scss/_app_styles.scss */ div.absol-descrip { position: absolute; top: 190px; @@ -27347,14 +27346,14 @@ div.absol-descrip { } /*overview-summary styling*/ -/* line 4100, ../../../scss/_app_styles.scss */ +/* line 4099, ../../../scss/_app_styles.scss */ .course-title, .course-date { color: white; padding-top: 0px; padding-bottom: 0px; } -/* line 4105, ../../../scss/_app_styles.scss */ +/* line 4104, ../../../scss/_app_styles.scss */ .course-description { color: #cccccc; padding-top: 0px; @@ -27366,48 +27365,48 @@ div.absol-descrip { overflow: hidden; } -/* line 4115, ../../../scss/_app_styles.scss */ +/* line 4114, ../../../scss/_app_styles.scss */ .course-para { padding: 0; } -/* line 4119, ../../../scss/_app_styles.scss */ +/* line 4118, ../../../scss/_app_styles.scss */ course-title { padding-left: 10px; } -/* line 4122, ../../../scss/_app_styles.scss */ +/* line 4121, ../../../scss/_app_styles.scss */ .enroll-status-margin { margin-bottom: 0; } -/* line 4126, ../../../scss/_app_styles.scss */ +/* line 4125, ../../../scss/_app_styles.scss */ .progress-summery { color: white; margin-top: 20px; } -/* line 4130, ../../../scss/_app_styles.scss */ +/* line 4129, ../../../scss/_app_styles.scss */ .course-description-thumbnails { margin: 0; padding: 0; } -/* line 4135, ../../../scss/_app_styles.scss */ +/* line 4134, ../../../scss/_app_styles.scss */ .left-shift { padding: 0; color: white !important; } /*course overview for Small screens*/ -/* line 4141, ../../../scss/_app_styles.scss */ +/* line 4140, ../../../scss/_app_styles.scss */ .course { /*position:relative;*/ border: 1px solid black; background-color: #999999; } -/* line 4147, ../../../scss/_app_styles.scss */ +/* line 4146, ../../../scss/_app_styles.scss */ .course-contents { /*position:absolute;*/ width: 100%; @@ -27415,7 +27414,7 @@ course-title { /*Medium screens*/ @media only screen and (min-width: 40.063em) { - /* line 4154, ../../../scss/_app_styles.scss */ + /* line 4153, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27423,7 +27422,7 @@ course-title { background-color: #999999; } - /* line 4160, ../../../scss/_app_styles.scss */ + /* line 4159, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27433,7 +27432,7 @@ course-title { /* min-width 641px, medium screens */ /* Large screens*/ @media only screen and (min-width: 64.063em) { - /* line 4170, ../../../scss/_app_styles.scss */ + /* line 4169, ../../../scss/_app_styles.scss */ .course { position: relative; height: 300px; @@ -27441,7 +27440,7 @@ course-title { background-color: #999999; } - /* line 4176, ../../../scss/_app_styles.scss */ + /* line 4175, ../../../scss/_app_styles.scss */ .course-contents { position: absolute; bottom: 0; @@ -27450,14 +27449,14 @@ course-title { } /* min-width 1025px, large screens */ /*General config css*/ -/* line 4183, ../../../scss/_app_styles.scss */ +/* line 4182, ../../../scss/_app_styles.scss */ .alert-box.warning { background: #ffe7c0; border-color: #bf9000; color: #966000; } -/* line 4190, ../../../scss/_app_styles.scss */ +/* line 4189, ../../../scss/_app_styles.scss */ .badge { display: inline-block; line-height: 22px; @@ -27474,7 +27473,7 @@ course-title { font-size: 1.8em; } -/* line 4206, ../../../scss/_app_styles.scss */ +/* line 4205, ../../../scss/_app_styles.scss */ .badge { background: #67c1ef; border-color: #30aae9; @@ -27484,7 +27483,7 @@ course-title { background-image: linear-gradient(to bottom, #acddf6, #67c1ef); } -/* line 4215, ../../../scss/_app_styles.scss */ +/* line 4214, ../../../scss/_app_styles.scss */ .badge.green { background: #77cc51; border-color: #59ad33; @@ -27494,7 +27493,7 @@ course-title { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 4224, ../../../scss/_app_styles.scss */ +/* line 4223, ../../../scss/_app_styles.scss */ .badge.yellow { background: #faba3e; border-color: #f4a306; @@ -27504,7 +27503,7 @@ course-title { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 4234, ../../../scss/_app_styles.scss */ +/* line 4233, ../../../scss/_app_styles.scss */ .badge.red { background: #fa623f; border-color: #fa5a35; @@ -27515,12 +27514,12 @@ course-title { } /* Course/ Event Card CSS*/ -/* line 4250, ../../../scss/_app_styles.scss */ +/* line 4249, ../../../scss/_app_styles.scss */ .card-image-wrapper { position: relative; } -/* line 4254, ../../../scss/_app_styles.scss */ +/* line 4253, ../../../scss/_app_styles.scss */ .event-card { padding: 0px; min-height: 22rem; @@ -27529,12 +27528,12 @@ course-title { border-radius: 10px; background-color: #fff; } -/* line 4262, ../../../scss/_app_styles.scss */ +/* line 4261, ../../../scss/_app_styles.scss */ .event-card:hover { box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.16), 0 2px 10px 1px rgba(0, 0, 0, 0.12); transition: box-shadow 0.5s ease; } -/* line 4267, ../../../scss/_app_styles.scss */ +/* line 4266, ../../../scss/_app_styles.scss */ .event-card .event-card-status { z-index: 99; width: auto; @@ -27549,31 +27548,31 @@ course-title { border-radius: 4px; letter-spacing: 0.3px; } -/* line 4281, ../../../scss/_app_styles.scss */ +/* line 4280, ../../../scss/_app_styles.scss */ .event-card .event-card-status.open { background-color: #00b300; } -/* line 4284, ../../../scss/_app_styles.scss */ +/* line 4283, ../../../scss/_app_styles.scss */ .event-card .event-card-status.closed { background-color: red; } -/* line 4287, ../../../scss/_app_styles.scss */ +/* line 4286, ../../../scss/_app_styles.scss */ .event-card .event-card-status.in-progress { background-color: #00b300; } -/* line 4290, ../../../scss/_app_styles.scss */ +/* line 4289, ../../../scss/_app_styles.scss */ .event-card .event-card-status.forthcoming { background-color: #F2910D; } -/* line 4293, ../../../scss/_app_styles.scss */ +/* line 4292, ../../../scss/_app_styles.scss */ .event-card .event-card-status.upcoming { background-color: #F2910D; } -/* line 4297, ../../../scss/_app_styles.scss */ +/* line 4296, ../../../scss/_app_styles.scss */ .event-card .event-card-status.completed { background-color: #4d4d4d; } -/* line 4302, ../../../scss/_app_styles.scss */ +/* line 4301, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications { position: absolute; top: 2px; @@ -27582,46 +27581,46 @@ course-title { color: #F04124; font-weight: 600; } -/* line 4310, ../../../scss/_app_styles.scss */ +/* line 4309, ../../../scss/_app_styles.scss */ .event-card .event-card-notifications .badge { padding: 0px 5px; font-size: 1.4em; font-weight: 600; } -/* line 4317, ../../../scss/_app_styles.scss */ +/* line 4316, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status { font-weight: 500; font-size: 1.2em; padding: 0.5em 0.8em 0.6em; } -/* line 4322, ../../../scss/_app_styles.scss */ +/* line 4321, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.open { color: #00b300; } -/* line 4326, ../../../scss/_app_styles.scss */ +/* line 4325, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.closed { color: red; } -/* line 4330, ../../../scss/_app_styles.scss */ +/* line 4329, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.in-progress { color: #000; } -/* line 4333, ../../../scss/_app_styles.scss */ +/* line 4332, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.forthcoming { color: #F2910D; } -/* line 4337, ../../../scss/_app_styles.scss */ +/* line 4336, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status.completed { color: #4d4d4d; } -/* line 4341, ../../../scss/_app_styles.scss */ +/* line 4340, ../../../scss/_app_styles.scss */ .event-card .event-card-session-status .event-time { font-size: 0.7em; display: block; font-weight: 400; display: inline; } -/* line 4349, ../../../scss/_app_styles.scss */ +/* line 4348, ../../../scss/_app_styles.scss */ .event-card .event-card-title { color: #0d0d0d; display: inline-block; @@ -27632,19 +27631,19 @@ course-title { font-size: 2em; font-weight: 400; } -/* line 4360, ../../../scss/_app_styles.scss */ +/* line 4359, ../../../scss/_app_styles.scss */ .event-card .event-card-desc { word-wrap: break-word; font-size: 0.6em; color: #333333; padding-left: 4px; } -/* line 4366, ../../../scss/_app_styles.scss */ +/* line 4365, ../../../scss/_app_styles.scss */ .event-card p { margin: 0px; padding: 10px; } -/* line 4372, ../../../scss/_app_styles.scss */ +/* line 4371, ../../../scss/_app_styles.scss */ .event-card .event-card-image { padding: 0px; margin: 0px; @@ -27656,7 +27655,7 @@ course-title { background-color: #e5e5e5; border-radius: 10px 10px 0px 0px; } -/* line 4383, ../../../scss/_app_styles.scss */ +/* line 4382, ../../../scss/_app_styles.scss */ .event-card .event-card-image img { border-radius: 2px 2px 0 0; display: block; @@ -27665,7 +27664,7 @@ course-title { opacity: 0.25; height: 100%; } -/* line 4392, ../../../scss/_app_styles.scss */ +/* line 4391, ../../../scss/_app_styles.scss */ .event-card .event-card-image i { font-size: 7rem; opacity: 0.75; @@ -27679,51 +27678,51 @@ course-title { text-transform: none; text-decoration: inherit; } -/* line 4406, ../../../scss/_app_styles.scss */ +/* line 4405, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.file:before { content: "\f18e"; } -/* line 4409, ../../../scss/_app_styles.scss */ +/* line 4408, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.page:before { content: "\f18e"; } -/* line 4412, ../../../scss/_app_styles.scss */ +/* line 4411, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.collection:before { content: "\f18a"; } -/* line 4415, ../../../scss/_app_styles.scss */ +/* line 4414, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.documents:before { content: "\f18b"; } -/* line 4418, ../../../scss/_app_styles.scss */ +/* line 4417, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.pdf:before { content: "\f18b"; } -/* line 4421, ../../../scss/_app_styles.scss */ +/* line 4420, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.text:before { content: "\f18e"; } -/* line 4424, ../../../scss/_app_styles.scss */ +/* line 4423, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.interactives:before { content: "\f1b2"; } -/* line 4427, ../../../scss/_app_styles.scss */ +/* line 4426, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.ebooks:before { content: "\f11e"; } -/* line 4430, ../../../scss/_app_styles.scss */ +/* line 4429, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.images:before { content: "\f125"; } -/* line 4433, ../../../scss/_app_styles.scss */ +/* line 4432, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.audios:before, .event-card .event-card-image i.audio:before { content: "\f17b"; } -/* line 4436, ../../../scss/_app_styles.scss */ +/* line 4435, ../../../scss/_app_styles.scss */ .event-card .event-card-image i.videos:before, .event-card .event-card-image i.video:before { content: "\f20e"; } -/* line 4440, ../../../scss/_app_styles.scss */ +/* line 4439, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer { padding: 0.7em 1em; border-top: 1px solid #DCDCDC; @@ -27734,7 +27733,7 @@ course-title { background-color: #F3F3F3; border-radius: 0px 0px 10px 10px; } -/* line 4450, ../../../scss/_app_styles.scss */ +/* line 4449, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .footer-label { text-transform: uppercase; font-size: 10px; @@ -27742,54 +27741,54 @@ course-title { margin-bottom: 2px; color: #ADADAD; } -/* line 4458, ../../../scss/_app_styles.scss */ +/* line 4457, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date { color: #929292; font-size: 0.85em; letter-spacing: 0.5px; } -/* line 4463, ../../../scss/_app_styles.scss */ +/* line 4462, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .date i:not(.edit-course-duration, .edit-course-enrollment) { margin-right: 0.3em; } -/* line 4467, ../../../scss/_app_styles.scss */ +/* line 4466, ../../../scss/_app_styles.scss */ .event-card .event-card-session-footer .row { margin: 10px 0px 0px; } -/* line 4471, ../../../scss/_app_styles.scss */ +/* line 4470, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration, .event-card .edit-course-enrollment { float: right; font-size: 1.5em; color: #DADADA; } -/* line 4475, ../../../scss/_app_styles.scss */ +/* line 4474, ../../../scss/_app_styles.scss */ .event-card .edit-course-duration:hover, .event-card .edit-course-enrollment:hover { color: #565656; } -/* line 4479, ../../../scss/_app_styles.scss */ +/* line 4478, ../../../scss/_app_styles.scss */ .event-card .published.scard-action { background: #A6D9CB; } -/* line 4483, ../../../scss/_app_styles.scss */ +/* line 4482, ../../../scss/_app_styles.scss */ .event-card .draft.scard-action { content: "Draft"; background: #DCDCDC; } -/* line 4488, ../../../scss/_app_styles.scss */ +/* line 4487, ../../../scss/_app_styles.scss */ .event-card .deleted.scard-action { border-color: transparent #f04124 transparent transparent; border-color: rgba(255, 255, 255, 0) #f04124 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4493, ../../../scss/_app_styles.scss */ +/* line 4492, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action { border-color: transparent #0eacb5 transparent transparent; border-color: rgba(255, 255, 255, 0) #0eacb5 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0); } -/* line 4497, ../../../scss/_app_styles.scss */ +/* line 4496, ../../../scss/_app_styles.scss */ .event-card .moderation.scard-action .label-text:before { content: "Mod"; } -/* line 4501, ../../../scss/_app_styles.scss */ +/* line 4500, ../../../scss/_app_styles.scss */ .event-card .scard_footer { border-top: 1px solid rgba(160, 160, 160, 0.2); padding: 0.25rem 0.5rem; @@ -27800,17 +27799,17 @@ course-title { /* End Course/events Card CSS*/ /* Landing page */ -/* line 4513, ../../../scss/_app_styles.scss */ +/* line 4512, ../../../scss/_app_styles.scss */ .landing_page { position: relative; text-align: center; } -/* line 4517, ../../../scss/_app_styles.scss */ +/* line 4516, ../../../scss/_app_styles.scss */ .landing_page .panel { background-color: inherit; border: none; } -/* line 4522, ../../../scss/_app_styles.scss */ +/* line 4521, ../../../scss/_app_styles.scss */ .landing_page .landing_page_background { height: 100%; width: 100%; @@ -27822,24 +27821,24 @@ course-title { background: -ms-linear-gradient(left, #E9A900, #B0108D); background: -o-linear-gradient(left, #E9A900, #B0108D); } -/* line 4534, ../../../scss/_app_styles.scss */ +/* line 4533, ../../../scss/_app_styles.scss */ .landing_page .clix_brief { text-align: left; padding: 20px 5%; } -/* line 4538, ../../../scss/_app_styles.scss */ +/* line 4537, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 30px 20px; height: 70px; } @media screen and (max-width: 450px) { - /* line 4538, ../../../scss/_app_styles.scss */ + /* line 4537, ../../../scss/_app_styles.scss */ .landing_page .clix_brief img { margin: 25px 10px; height: 55px; } } -/* line 4546, ../../../scss/_app_styles.scss */ +/* line 4545, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { color: #fff; font-size: 26px; @@ -27847,12 +27846,12 @@ course-title { font-family: 'ubuntu-light'; } @media screen and (max-width: 450px) { - /* line 4546, ../../../scss/_app_styles.scss */ + /* line 4545, ../../../scss/_app_styles.scss */ .landing_page .clix_brief p { font-size: 18px; } } -/* line 4557, ../../../scss/_app_styles.scss */ +/* line 4556, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { background-color: rgba(255, 255, 255, 0.92); border-radius: 10px; @@ -27863,12 +27862,12 @@ course-title { box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5); } @media screen and (min-width: 1025px) { - /* line 4557, ../../../scss/_app_styles.scss */ + /* line 4556, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix { margin: 200px auto; } } -/* line 4569, ../../../scss/_app_styles.scss */ +/* line 4568, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix > span { font-family: 'ubuntu-bold'; color: #6658af; @@ -27879,7 +27878,7 @@ course-title { display: inline-block; vertical-align: middle; } -/* line 4579, ../../../scss/_app_styles.scss */ +/* line 4578, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix p { color: #b0108d; font-size: 21px; @@ -27887,28 +27886,28 @@ course-title { font-weight: 300; font-family: 'ubuntu-light'; } -/* line 4587, ../../../scss/_app_styles.scss */ +/* line 4586, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix img { height: 30px; } -/* line 4590, ../../../scss/_app_styles.scss */ +/* line 4589, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form { margin-top: 30px; } -/* line 4593, ../../../scss/_app_styles.scss */ +/* line 4592, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix form input { font-size: 24px; height: 45px; margin: 5px 0px 24px; } -/* line 4600, ../../../scss/_app_styles.scss */ +/* line 4599, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix input.button { font-size: 15px; border-radius: 5px; font-family: 'ubuntu-bold'; text-transform: uppercase; } -/* line 4606, ../../../scss/_app_styles.scss */ +/* line 4605, ../../../scss/_app_styles.scss */ .landing_page .invitation_to_clix a.grey { color: #999; /*display: inline-block; @@ -27919,7 +27918,7 @@ course-title { font-family: 'ubuntu-bold'; text-transform: uppercase;*/ } -/* line 4617, ../../../scss/_app_styles.scss */ +/* line 4616, ../../../scss/_app_styles.scss */ .landing_page .flowers { left: 50px; height: 500px; @@ -27927,18 +27926,18 @@ course-title { opacity: 0.6; } @media screen and (max-width: 450px) { - /* line 4617, ../../../scss/_app_styles.scss */ + /* line 4616, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 250px; } } @media screen and (min-width: 451px) and (max-width: 1025px) { - /* line 4617, ../../../scss/_app_styles.scss */ + /* line 4616, ../../../scss/_app_styles.scss */ .landing_page .flowers { height: 350px; } } -/* line 4629, ../../../scss/_app_styles.scss */ +/* line 4628, ../../../scss/_app_styles.scss */ .landing_page .bees { position: absolute; top: 5px; @@ -27946,40 +27945,40 @@ course-title { height: 150px; } @media screen and (max-width: 450px) { - /* line 4629, ../../../scss/_app_styles.scss */ + /* line 4628, ../../../scss/_app_styles.scss */ .landing_page .bees { right: 15px; height: 100px; } } -/* line 4639, ../../../scss/_app_styles.scss */ +/* line 4638, ../../../scss/_app_styles.scss */ .landing_page h2 { color: #A0148E; font-weight: 600; } -/* line 4643, ../../../scss/_app_styles.scss */ +/* line 4642, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text { color: #6153ae; } -/* line 4646, ../../../scss/_app_styles.scss */ +/* line 4645, ../../../scss/_app_styles.scss */ .landing_page .landing-page-text p { font-size: 18px; } /* END of Landing page */ -/* line 4652, ../../../scss/_app_styles.scss */ +/* line 4651, ../../../scss/_app_styles.scss */ .audio-caption { cursor: pointer; } -/* line 4656, ../../../scss/_app_styles.scss */ +/* line 4655, ../../../scss/_app_styles.scss */ .gallery-image { cursor: pointer; max-height: 100px; border: 1px solid !important; } -/* line 4662, ../../../scss/_app_styles.scss */ +/* line 4661, ../../../scss/_app_styles.scss */ .show-collection { color: black !important; font-size: 1.1em; @@ -27992,25 +27991,25 @@ course-title { border: 1px solid #eee; } -/* line 4674, ../../../scss/_app_styles.scss */ +/* line 4673, ../../../scss/_app_styles.scss */ .processing-screen { background-color: #0eacb5 !important; } -/* line 4678, ../../../scss/_app_styles.scss */ +/* line 4677, ../../../scss/_app_styles.scss */ .processing-screen-label { width: 500px !important; font-style: normal !important; } -/* line 4682, ../../../scss/_app_styles.scss */ +/* line 4681, ../../../scss/_app_styles.scss */ h3 { font-size: 20px; color: #164A7B; font-family: 'OpenSans-Semibold'; } -/* line 4688, ../../../scss/_app_styles.scss */ +/* line 4687, ../../../scss/_app_styles.scss */ h5 { color: #99aaba; font-size: 10px; @@ -28019,7 +28018,7 @@ h5 { margin-left: 5px; } -/* line 4696, ../../../scss/_app_styles.scss */ +/* line 4695, ../../../scss/_app_styles.scss */ .edit-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28028,12 +28027,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4703, ../../../scss/_app_styles.scss */ +/* line 4702, ../../../scss/_app_styles.scss */ .edit-note-btn i { margin-right: 5px; } -/* line 4707, ../../../scss/_app_styles.scss */ +/* line 4706, ../../../scss/_app_styles.scss */ .delete-note-btn { float: right; border: 1px solid #CFCFCF; @@ -28042,12 +28041,12 @@ h5 { color: #A2A2A2; background-color: #f7f7f7; } -/* line 4714, ../../../scss/_app_styles.scss */ +/* line 4713, ../../../scss/_app_styles.scss */ .delete-note-btn i { margin-right: 5px; } -/* line 4720, ../../../scss/_app_styles.scss */ +/* line 4719, ../../../scss/_app_styles.scss */ .bef-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28059,7 +28058,7 @@ h5 { color: #6153AE; } -/* line 4731, ../../../scss/_app_styles.scss */ +/* line 4730, ../../../scss/_app_styles.scss */ .add-note-btn { padding: 3px 11px; border-radius: 100%; @@ -28072,14 +28071,14 @@ h5 { display: inline-block; color: #6153AE; } -/* line 4743, ../../../scss/_app_styles.scss */ +/* line 4742, ../../../scss/_app_styles.scss */ .add-note-btn:hover { cursor: pointer; color: #6153AE; background-color: #ffffff; } -/* line 4751, ../../../scss/_app_styles.scss */ +/* line 4750, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -28091,7 +28090,7 @@ h5 { border: 2px solid #6153ae; background-color: #dbd4e1; } -/* line 4762, ../../../scss/_app_styles.scss */ +/* line 4761, ../../../scss/_app_styles.scss */ .explore-button:hover { cursor: pointer; } @@ -28099,12 +28098,12 @@ h5 { /*Blue color variable*/ /*Orange color variables*/ /* module detail settings drop */ -/* line 4793, ../../../scss/_app_styles.scss */ +/* line 4792, ../../../scss/_app_styles.scss */ .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4796, ../../../scss/_app_styles.scss */ +/* line 4795, ../../../scss/_app_styles.scss */ .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28117,17 +28116,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4807, ../../../scss/_app_styles.scss */ +/* line 4806, ../../../scss/_app_styles.scss */ .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4813, ../../../scss/_app_styles.scss */ +/* line 4812, ../../../scss/_app_styles.scss */ .explore-settings-drop a { font-size: 16px; } -/* line 4816, ../../../scss/_app_styles.scss */ +/* line 4815, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28135,12 +28134,12 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4816, ../../../scss/_app_styles.scss */ +/* line 4815, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop { margin-left: 59%; display: inline-block; } -/* line 4819, ../../../scss/_app_styles.scss */ +/* line 4818, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button { color: #164a7b; font-weight: 400; @@ -28153,17 +28152,17 @@ h5 { margin-top: 10px; margin-left: 20px; } -/* line 4830, ../../../scss/_app_styles.scss */ +/* line 4829, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop > button:hover { border-radius: 10px; background-color: #ddeff9; color: #164a7b; } -/* line 4836, ../../../scss/_app_styles.scss */ +/* line 4835, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop a { font-size: 16px; } -/* line 4839, ../../../scss/_app_styles.scss */ +/* line 4838, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li { font-size: 0.875rem; cursor: pointer; @@ -28171,33 +28170,33 @@ h5 { margin: 0; background-color: #164A7B; } -/* line 4847, ../../../scss/_app_styles.scss */ +/* line 4846, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4851, ../../../scss/_app_styles.scss */ +/* line 4850, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4864, ../../../scss/_app_styles.scss */ +/* line 4863, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li a { color: #74b3dc; } -/* line 4868, ../../../scss/_app_styles.scss */ +/* line 4867, ../../../scss/_app_styles.scss */ .explore-settings-drop .f-dropdown li:hover { border-left: 4px solid #ffc14e; } -/* line 4875, ../../../scss/_app_styles.scss */ +/* line 4874, ../../../scss/_app_styles.scss */ .edit_button { color: #717171; } -/* line 4877, ../../../scss/_app_styles.scss */ +/* line 4876, ../../../scss/_app_styles.scss */ .edit_button:hover { border-left: 2px solid #ce7869; } -/* line 4883, ../../../scss/_app_styles.scss */ +/* line 4882, ../../../scss/_app_styles.scss */ .left-btn { margin-top: 0px; margin-right: 0px; @@ -28209,7 +28208,7 @@ h5 { color: #555555; font-size: 11px; } -/* line 4893, ../../../scss/_app_styles.scss */ +/* line 4892, ../../../scss/_app_styles.scss */ .left-btn:hover { display: block; padding: 0.5rem; @@ -28217,7 +28216,7 @@ h5 { border-left: 2px solid #ce7869; } -/* line 4902, ../../../scss/_app_styles.scss */ +/* line 4901, ../../../scss/_app_styles.scss */ .chnge-img:hover { display: block; padding: 0.5rem; @@ -28225,14 +28224,14 @@ h5 { border-left: 2px solid #ce7869; } -/* line 4913, ../../../scss/_app_styles.scss */ +/* line 4912, ../../../scss/_app_styles.scss */ .lms_page .lms_banner { width: 100%; height: 150px; background-size: 100% 100%; position: relative; } -/* line 4921, ../../../scss/_app_styles.scss */ +/* line 4920, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -28245,27 +28244,27 @@ h5 { bottom: 0; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 4934, ../../../scss/_app_styles.scss */ +/* line 4933, ../../../scss/_app_styles.scss */ .lms_page .lms_banner:before a { cursor: pointer; } -/* line 4939, ../../../scss/_app_styles.scss */ +/* line 4938, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .div-height { height: 150px !important; background-size: 100% 100%; position: absolute !important; } -/* line 4947, ../../../scss/_app_styles.scss */ +/* line 4946, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .enroll_unit > a { cursor: pointer; } -/* line 4951, ../../../scss/_app_styles.scss */ +/* line 4950, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 4957, ../../../scss/_app_styles.scss */ +/* line 4956, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .unit_name { font-size: 36px; font-family: OpenSans-Semibold; @@ -28276,17 +28275,17 @@ h5 { transition: border-radius .2s; text-shadow: 3px 2px #164a7b; } -/* line 4968, ../../../scss/_app_styles.scss */ +/* line 4967, ../../../scss/_app_styles.scss */ .lms_page .lms_banner .lms_heading .right-margin { margin-right: 46px; } -/* line 4977, ../../../scss/_app_styles.scss */ +/* line 4976, ../../../scss/_app_styles.scss */ .border-bottom-lms-header { border-bottom: 1px solid #00000029; } -/* line 4982, ../../../scss/_app_styles.scss */ +/* line 4981, ../../../scss/_app_styles.scss */ .lms_secondary_header { width: 100%; position: relative; @@ -28294,11 +28293,11 @@ h5 { box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2); border-bottom: 1px solid rgba(0, 0, 0, 0.25); } -/* line 4988, ../../../scss/_app_styles.scss */ +/* line 4987, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions { margin-top: 8px; } -/* line 4991, ../../../scss/_app_styles.scss */ +/* line 4990, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions > span { background: #2e3f51; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28310,11 +28309,11 @@ h5 { opacity: 0.8; } @media screen and (min-width: 980px) and (max-width: 1000px) { - /* line 5005, ../../../scss/_app_styles.scss */ + /* line 5004, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions { margin-top: 8px; } - /* line 5008, ../../../scss/_app_styles.scss */ + /* line 5007, ../../../scss/_app_styles.scss */ .lms_secondary_header .course_actions .course_actions > span { margin-left: 50px; background: #2e3f51; @@ -28328,16 +28327,16 @@ h5 { } } -/* line 5028, ../../../scss/_app_styles.scss */ +/* line 5027, ../../../scss/_app_styles.scss */ ul.nav_menu_1 { margin-bottom: 0px; background-color: #fff; } -/* line 5031, ../../../scss/_app_styles.scss */ +/* line 5030, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li { display: inline-block; } -/* line 5034, ../../../scss/_app_styles.scss */ +/* line 5033, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a { list-style-type: none; display: inline-block; @@ -28348,23 +28347,23 @@ ul.nav_menu_1 > li > a { letter-spacing: 0.8px; border-bottom: 3px solid transparent; } -/* line 5045, ../../../scss/_app_styles.scss */ +/* line 5044, ../../../scss/_app_styles.scss */ ul.nav_menu_1 > li > a.selected, ul.nav_menu_1 > li > a:hover { border-bottom: 3px solid #a2238d; } -/* line 5056, ../../../scss/_app_styles.scss */ +/* line 5055, ../../../scss/_app_styles.scss */ ul.authoring-tab { margin-bottom: 0px; display: inline; width: 50%; } -/* line 5060, ../../../scss/_app_styles.scss */ +/* line 5059, ../../../scss/_app_styles.scss */ ul.authoring-tab > li { display: inline-block; background-color: #164a7b; } -/* line 5063, ../../../scss/_app_styles.scss */ +/* line 5062, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a { list-style-type: none; margin-right: -4px; @@ -28377,13 +28376,13 @@ ul.authoring-tab > li > a { border-bottom: 3px solid transparent; color: #ffffff !important; } -/* line 5074, ../../../scss/_app_styles.scss */ +/* line 5073, ../../../scss/_app_styles.scss */ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-bottom: 3px solid #a2238d; } /* Secondary Top Bar */ -/* line 5083, ../../../scss/_app_styles.scss */ +/* line 5082, ../../../scss/_app_styles.scss */ .secondary-header-tabs { color: #719dc7; font-weight: 400; @@ -28393,11 +28392,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { -webkit-transition: color 1s ease, border-color 1s ease; display: inline-block; } -/* line 5092, ../../../scss/_app_styles.scss */ +/* line 5091, ../../../scss/_app_styles.scss */ .secondary-header-tabs:hover { color: #164A7B; } -/* line 5096, ../../../scss/_app_styles.scss */ +/* line 5095, ../../../scss/_app_styles.scss */ .secondary-header-tabs.active { color: #164A7B; border-bottom: 2px solid #164A7B; @@ -28405,7 +28404,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: 600; } -/* line 5106, ../../../scss/_app_styles.scss */ +/* line 5105, ../../../scss/_app_styles.scss */ .secondary-header-button { color: #3c556d; font-weight: 700; @@ -28418,12 +28417,12 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-size: 13px; letter-spacing: 1.2px; } -/* line 5118, ../../../scss/_app_styles.scss */ +/* line 5117, ../../../scss/_app_styles.scss */ .secondary-header-button:hover { opacity: 0.5; } -/* line 5125, ../../../scss/_app_styles.scss */ +/* line 5124, ../../../scss/_app_styles.scss */ .top-bar-second, .top-bar-second .name { height: 55px; background: #ddeff9; @@ -28432,34 +28431,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: -8px; } -/* line 5136, ../../../scss/_app_styles.scss */ +/* line 5135, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: 0px 0.6px 3px #000; z-index: 20; width: 100%; } -/* line 5141, ../../../scss/_app_styles.scss */ +/* line 5140, ../../../scss/_app_styles.scss */ .top-bar-second .name { text-align: center; } -/* line 5144, ../../../scss/_app_styles.scss */ +/* line 5143, ../../../scss/_app_styles.scss */ .top-bar-second .name .close-dropdown, .top-bar-second .name .side-bar-button { position: absolute; left: 15px; color: #fff; font-weight: 100; } -/* line 5154, ../../../scss/_app_styles.scss */ +/* line 5153, ../../../scss/_app_styles.scss */ .top-bar-second li.toggle-topbar i { color: #fff; display: inline-block; vertical-align: bottom; } -/* line 5162, ../../../scss/_app_styles.scss */ +/* line 5161, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li { background: #164A7B; } -/* line 5164, ../../../scss/_app_styles.scss */ +/* line 5163, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li > a { border-left: 3px solid transparent; border-bottom: 1px solid #4b5b6b; @@ -28468,31 +28467,31 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; letter-spacing: 0.5px; } -/* line 5175, ../../../scss/_app_styles.scss */ +/* line 5174, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section ul li:hover > a, .top-bar-second .top-bar-second-section ul li.active > a { border-left-color: #ffc14e; color: #ce7869; } -/* line 5183, ../../../scss/_app_styles.scss */ +/* line 5182, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li.parent-link a { display: none; } -/* line 5189, ../../../scss/_app_styles.scss */ +/* line 5188, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .side-bar-menu .add_buddy i { color: #2e3f51; background: #acd4fa; } @media screen and (min-width: 40.063em) { - /* line 5200, ../../../scss/_app_styles.scss */ + /* line 5199, ../../../scss/_app_styles.scss */ .top-bar-second .title-area { box-shadow: none; } - /* line 5202, ../../../scss/_app_styles.scss */ + /* line 5201, ../../../scss/_app_styles.scss */ .top-bar-second .title-area .name { text-align: right; } - /* line 5209, ../../../scss/_app_styles.scss */ + /* line 5208, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button) { cursor: pointer; background: transparent; @@ -28500,32 +28499,32 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { line-height: 52px; border-left-width: 0px; } - /* line 5216, ../../../scss/_app_styles.scss */ + /* line 5215, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form) a:not(.button):hover { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5222, ../../../scss/_app_styles.scss */ + /* line 5221, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).active a:not(.button) { color: #ce7869; border-bottom: 3px solid #ffc14e; } - /* line 5230, ../../../scss/_app_styles.scss */ + /* line 5229, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li:not(.has-form).has-dropdown a:not(.button):hover { color: #74b3dc; border-bottom: 0px; } - /* line 5240, ../../../scss/_app_styles.scss */ + /* line 5239, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section li.active:not(.has-form) a:not(.button):hover { background: transparent; } - /* line 5249, ../../../scss/_app_styles.scss */ + /* line 5248, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form) > a:not(.button) { border-left-width: 2px; color: #74b3dc; background: #164A7B; } - /* line 5256, ../../../scss/_app_styles.scss */ + /* line 5255, ../../../scss/_app_styles.scss */ .top-bar-second .top-bar-second-section .dropdown li:not(.has-form):hover a:not(.button), .top-bar-second .top-bar-second-section .dropdown li:not(.has-form).active a:not(.button) { background: #164A7B; color: #74b3dc; @@ -28540,7 +28539,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { /** * Sass styles related to unit cards */ -/* line 5284, ../../../scss/_app_styles.scss */ +/* line 5283, ../../../scss/_app_styles.scss */ .unit_card { width: 300px; color: #000; @@ -28552,7 +28551,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { position: relative; height: 210px; } -/* line 5298, ../../../scss/_app_styles.scss */ +/* line 5297, ../../../scss/_app_styles.scss */ .unit_card .unit_status { position: absolute; right: 0px; @@ -28563,11 +28562,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { border-radius: 3px; letter-spacing: 0.6px; } -/* line 5309, ../../../scss/_app_styles.scss */ +/* line 5308, ../../../scss/_app_styles.scss */ .unit_card .unit_header { display: table; } -/* line 5311, ../../../scss/_app_styles.scss */ +/* line 5310, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_banner { display: table-cell; border-radius: 5px; @@ -28576,7 +28575,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-right: 10px; color: #333333; } -/* line 5319, ../../../scss/_app_styles.scss */ +/* line 5318, ../../../scss/_app_styles.scss */ .unit_card .unit_header .unit_title { display: table-cell; font-size: 20px; @@ -28590,7 +28589,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { vertical-align: middle; color: #333333; } -/* line 5333, ../../../scss/_app_styles.scss */ +/* line 5332, ../../../scss/_app_styles.scss */ .unit_card .unit_desc { display: block; /* Fallback for non-webkit */ @@ -28607,16 +28606,16 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin: 10px 0px 20px; color: #333333; } -/* line 5349, ../../../scss/_app_styles.scss */ +/* line 5348, ../../../scss/_app_styles.scss */ .unit_card .unit_breif .unit_breif_row i { margin-right: 10px; color: #99aaba; } -/* line 5355, ../../../scss/_app_styles.scss */ +/* line 5354, ../../../scss/_app_styles.scss */ .unit_card .unit_actions { padding: 5px 0px; } -/* line 5360, ../../../scss/_app_styles.scss */ +/* line 5359, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol { background: #a2238d; height: 37px; @@ -28629,11 +28628,11 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5372, ../../../scss/_app_styles.scss */ +/* line 5371, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 5377, ../../../scss/_app_styles.scss */ +/* line 5376, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics { color: #a2238d; font-weight: 500; @@ -28641,7 +28640,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.3px; border-bottom: 2px solid #a2238d; } -/* line 5385, ../../../scss/_app_styles.scss */ +/* line 5384, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .unit-card-analytics-points { background: #ffffff; color: #a2238d; @@ -28652,7 +28651,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { font-weight: bold; cursor: default; } -/* line 5396, ../../../scss/_app_styles.scss */ +/* line 5395, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit { height: 37px; text-align: center; @@ -28661,13 +28660,13 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 5404, ../../../scss/_app_styles.scss */ +/* line 5403, ../../../scss/_app_styles.scss */ .unit_card .unit_actions .view_unit:hover { border-bottom: 2px solid #ffc14e; } /* unit cards labels */ -/* line 5414, ../../../scss/_app_styles.scss */ +/* line 5413, ../../../scss/_app_styles.scss */ .status-completed { width: auto; top: -1.15em; @@ -28684,7 +28683,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5430, ../../../scss/_app_styles.scss */ +/* line 5429, ../../../scss/_app_styles.scss */ .status-in-progress { width: auto; top: -1.15em; @@ -28701,7 +28700,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5447, ../../../scss/_app_styles.scss */ +/* line 5446, ../../../scss/_app_styles.scss */ .status-upcoming { width: auto; top: -1.15em; @@ -28718,7 +28717,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5464, ../../../scss/_app_styles.scss */ +/* line 5463, ../../../scss/_app_styles.scss */ .status-draft { width: auto; top: -1.15em; @@ -28735,7 +28734,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5482, ../../../scss/_app_styles.scss */ +/* line 5481, ../../../scss/_app_styles.scss */ .status-workspace { width: auto; top: -1.15em; @@ -28752,48 +28751,48 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { letter-spacing: 0.4px; } -/* line 5499, ../../../scss/_app_styles.scss */ +/* line 5498, ../../../scss/_app_styles.scss */ .icon-widget { font-size: 24px; } /* module detail css */ -/* line 5508, ../../../scss/_app_styles.scss */ +/* line 5507, ../../../scss/_app_styles.scss */ .thumbnail_style { margin-left: -30px; } -/* line 5512, ../../../scss/_app_styles.scss */ +/* line 5511, ../../../scss/_app_styles.scss */ .strip { height: 143px; margin-left: -13px; margin-bottom: 10px; } -/* line 5518, ../../../scss/_app_styles.scss */ +/* line 5517, ../../../scss/_app_styles.scss */ .title-strip { box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); padding-left: 10px; height: auto; min-height: 143px; } -/* line 5524, ../../../scss/_app_styles.scss */ +/* line 5523, ../../../scss/_app_styles.scss */ .title-strip a { float: right; padding-right: 18px; text-transform: uppercase; color: #007095; } -/* line 5534, ../../../scss/_app_styles.scss */ +/* line 5533, ../../../scss/_app_styles.scss */ .title-strip .position-actions { margin-top: -60px; margin-left: 760px; } -/* line 5539, ../../../scss/_app_styles.scss */ +/* line 5538, ../../../scss/_app_styles.scss */ .title-strip .right-margin { margin-right: 46px; } -/* line 5542, ../../../scss/_app_styles.scss */ +/* line 5541, ../../../scss/_app_styles.scss */ .title-strip .course_actions > span { background: #fff; border: 1px solid rgba(255, 255, 255, 0.7); @@ -28807,7 +28806,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { margin-top: 30px; z-index: 1; } -/* line 5559, ../../../scss/_app_styles.scss */ +/* line 5558, ../../../scss/_app_styles.scss */ .title-strip .course_actions > i { margin-right: 3px; background: rgba(0, 0, 0, 0.6); @@ -28821,7 +28820,7 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { } /* Creating and editing course Structure */ -/* line 5576, ../../../scss/_app_styles.scss */ +/* line 5575, ../../../scss/_app_styles.scss */ .group_tile { height: 300px; background: url(/static/ndf/images/group-tile.png) no-repeat; @@ -28832,34 +28831,34 @@ ul.authoring-tab > li > a.selected, ul.authoring-tab > li > a:hover { cursor: pointer; box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.4); } -/* line 5585, ../../../scss/_app_styles.scss */ +/* line 5584, ../../../scss/_app_styles.scss */ .group_tile:hover { opacity: 0.7; } -/* line 5588, ../../../scss/_app_styles.scss */ +/* line 5587, ../../../scss/_app_styles.scss */ .group_tile .group-name { font-weight: 700; font-size: 24px; letter-spacing: 1.1px; text-shadow: 0px 0px 7px rgba(46, 63, 81, 0.7); } -/* line 5595, ../../../scss/_app_styles.scss */ +/* line 5594, ../../../scss/_app_styles.scss */ .group_tile .group_desc { letter-spacing: 0.5px; } /* curriculum */ -/* line 5602, ../../../scss/_app_styles.scss */ +/* line 5601, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio { margin: 0px; height: 44px; } -/* line 5605, ../../../scss/_app_styles.scss */ +/* line 5604, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li { display: inline-block; height: 100%; } -/* line 5608, ../../../scss/_app_styles.scss */ +/* line 5607, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a { color: #ce7869; padding: 8px 20px 7.5px; @@ -28867,15 +28866,15 @@ ul.horizontal_tabs_gstudio > li > a { border-bottom: 3px solid transparent; letter-spacing: 0.3px; } -/* line 5616, ../../../scss/_app_styles.scss */ +/* line 5615, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li > a.selected, ul.horizontal_tabs_gstudio > li > a:hover { border-bottom: 4px solid #ffc14e; } -/* line 5620, ../../../scss/_app_styles.scss */ +/* line 5619, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action { position: relative; } -/* line 5622, ../../../scss/_app_styles.scss */ +/* line 5621, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { position: absolute; top: 50px; @@ -28886,27 +28885,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action > ul { background: #fff; box-shadow: 0px 1px 6px 1px #ccc; } -/* line 5632, ../../../scss/_app_styles.scss */ +/* line 5631, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li { list-style: none; white-space: nowrap; padding: 15px 15px; } -/* line 5637, ../../../scss/_app_styles.scss */ +/* line 5636, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action > ul li:hover { background: #d6f2fe; } -/* line 5643, ../../../scss/_app_styles.scss */ +/* line 5642, ../../../scss/_app_styles.scss */ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: block; } -/* line 5650, ../../../scss/_app_styles.scss */ +/* line 5649, ../../../scss/_app_styles.scss */ .max-width { max-width: 100%; } -/* line 5656, ../../../scss/_app_styles.scss */ +/* line 5655, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -28916,7 +28915,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 5665, ../../../scss/_app_styles.scss */ +/* line 5664, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -28933,7 +28932,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 5678, ../../../scss/_app_styles.scss */ +/* line 5677, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -28943,28 +28942,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 5687, ../../../scss/_app_styles.scss */ +/* line 5686, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 5692, ../../../scss/_app_styles.scss */ +/* line 5691, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background-color: #ffffff; } -/* line 5697, ../../../scss/_app_styles.scss */ +/* line 5696, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 5703, ../../../scss/_app_styles.scss */ +/* line 5702, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 5707, ../../../scss/_app_styles.scss */ +/* line 5706, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -28977,7 +28976,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 5720, ../../../scss/_app_styles.scss */ +/* line 5719, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -28992,7 +28991,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Unit_Structure styles */ -/* line 5738, ../../../scss/_app_styles.scss */ +/* line 5737, ../../../scss/_app_styles.scss */ .course_creator { background: #fff; box-shadow: 0px 2px 6px #000; @@ -29000,12 +28999,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 5746, ../../../scss/_app_styles.scss */ +/* line 5745, ../../../scss/_app_styles.scss */ .course_creator > .columns { padding: 0px; height: 100%; } -/* line 5750, ../../../scss/_app_styles.scss */ +/* line 5749, ../../../scss/_app_styles.scss */ .course_creator .course_editor { margin-bottom: 10px; position: relative; @@ -29013,17 +29012,17 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /*Custom css*/ /* Course edit in the edit mode. */ } -/* line 5756, ../../../scss/_app_styles.scss */ +/* line 5755, ../../../scss/_app_styles.scss */ .course_creator .course_editor .accordion .accordion-navigation > .content, .course_creator .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 5762, ../../../scss/_app_styles.scss */ +/* line 5761, ../../../scss/_app_styles.scss */ .course_creator .course_editor > div { display: inline-block; vertical-align: top; } -/* line 5767, ../../../scss/_app_styles.scss */ +/* line 5766, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29033,25 +29032,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 5776, ../../../scss/_app_styles.scss */ +/* line 5775, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5780, ../../../scss/_app_styles.scss */ +/* line 5779, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 5785, ../../../scss/_app_styles.scss */ +/* line 5784, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 5794, ../../../scss/_app_styles.scss */ +/* line 5793, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29060,7 +29059,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5801, ../../../scss/_app_styles.scss */ +/* line 5800, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29069,15 +29068,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 5810, ../../../scss/_app_styles.scss */ +/* line 5809, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 5815, ../../../scss/_app_styles.scss */ +/* line 5814, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 5818, ../../../scss/_app_styles.scss */ +/* line 5817, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29085,21 +29084,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 5828, ../../../scss/_app_styles.scss */ +/* line 5827, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 5834, ../../../scss/_app_styles.scss */ +/* line 5833, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 5842, ../../../scss/_app_styles.scss */ +/* line 5841, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 5844, ../../../scss/_app_styles.scss */ +/* line 5843, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29108,7 +29107,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5851, ../../../scss/_app_styles.scss */ +/* line 5850, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29116,11 +29115,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5860, ../../../scss/_app_styles.scss */ +/* line 5859, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 5869, ../../../scss/_app_styles.scss */ +/* line 5868, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29132,49 +29131,49 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 5879, ../../../scss/_app_styles.scss */ +/* line 5878, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header { height: 55px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; margin-bottom: 10px; } -/* line 5885, ../../../scss/_app_styles.scss */ +/* line 5884, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left { padding: 14px 10px 10px 10px; } -/* line 5888, ../../../scss/_app_styles.scss */ +/* line 5887, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 5897, ../../../scss/_app_styles.scss */ +/* line 5896, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 5902, ../../../scss/_app_styles.scss */ +/* line 5901, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 5906, ../../../scss/_app_styles.scss */ +/* line 5905, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 5908, ../../../scss/_app_styles.scss */ +/* line 5907, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 5911, ../../../scss/_app_styles.scss */ +/* line 5910, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 5917, ../../../scss/_app_styles.scss */ +/* line 5916, ../../../scss/_app_styles.scss */ .course_creator .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29182,29 +29181,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 15px 5px; cursor: pointer; } -/* line 5932, ../../../scss/_app_styles.scss */ +/* line 5931, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add-lesson { margin-top: 20px; margin-left: 20px; float: left; } -/* line 5940, ../../../scss/_app_styles.scss */ +/* line 5939, ../../../scss/_app_styles.scss */ .course_creator .course_editor .add_activity { margin-top: 3px; } -/* line 5946, ../../../scss/_app_styles.scss */ +/* line 5945, ../../../scss/_app_styles.scss */ .course_creator .course_editor .create_activity { margin-top: 0px; margin-left: -7.1px; } -/* line 5955, ../../../scss/_app_styles.scss */ +/* line 5954, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode button { color: #5097b5; border-color: #5097b5; transition: color 1s ease, border-color 1s ease; -webkit-transition: color 1s ease, border-color 1s ease; } -/* line 5960, ../../../scss/_app_styles.scss */ +/* line 5959, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29212,28 +29211,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #2a6882; border: 1px solid #e5f1f6; } -/* line 5967, ../../../scss/_app_styles.scss */ +/* line 5966, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd { border-color: #295566; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 5972, ../../../scss/_app_styles.scss */ +/* line 5971, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a { background: inherit; color: #8fbbd8; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 5977, ../../../scss/_app_styles.scss */ +/* line 5976, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity { width: 20px; } -/* line 5979, ../../../scss/_app_styles.scss */ +/* line 5978, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity i { display: block; } -/* line 5983, ../../../scss/_app_styles.scss */ +/* line 5982, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions { display: none; position: absolute; @@ -29245,21 +29244,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; border-radius: 3px; } -/* line 5994, ../../../scss/_app_styles.scss */ +/* line 5993, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li { display: block; margin: 0px; padding: 5px 25px; } -/* line 5999, ../../../scss/_app_styles.scss */ +/* line 5998, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity > .entity_actions li:hover { background-color: #d5f2ff; } -/* line 6005, ../../../scss/_app_styles.scss */ +/* line 6004, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation a .edit_entity:hover > .entity_actions { display: block; } -/* line 6011, ../../../scss/_app_styles.scss */ +/* line 6010, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; @@ -29267,19 +29266,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-color: #295566; border-bottom: 1px solid transparent; } -/* line 6018, ../../../scss/_app_styles.scss */ +/* line 6017, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child):hover, .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li:not(:last-child).active { border-width: 1px 0px 1px 0px; border-style: solid; border-color: #50c0f8; } -/* line 6025, ../../../scss/_app_styles.scss */ +/* line 6024, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #edf6ff; transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6036, ../../../scss/_app_styles.scss */ +/* line 6035, ../../../scss/_app_styles.scss */ .course_creator .course_editor.edit_mode .course-editor-section { width: 77%; opacity: 1; @@ -29290,7 +29289,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: width 1.9s ease, opacity 4s ease; } -/* line 6053, ../../../scss/_app_styles.scss */ +/* line 6052, ../../../scss/_app_styles.scss */ .button-hollow-grey { background: inherit; border: 2px solid #c9d1d8; @@ -29305,66 +29304,66 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* lesspn listing LMS */ -/* line 6069, ../../../scss/_app_styles.scss */ +/* line 6068, ../../../scss/_app_styles.scss */ .course-content { background: #fff; margin: 20px auto; padding: 20px 0px; margin-top: 0px; } -/* line 6077, ../../../scss/_app_styles.scss */ +/* line 6076, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node.jqtree-selected .jqtree-element { background: #fff; } -/* line 6080, ../../../scss/_app_styles.scss */ +/* line 6079, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div { height: 35px; } -/* line 6082, ../../../scss/_app_styles.scss */ +/* line 6081, ../../../scss/_app_styles.scss */ .course-content ul.jqtree-tree .course-tree-node > div a { margin-right: 0.7em; } -/* line 6089, ../../../scss/_app_styles.scss */ +/* line 6088, ../../../scss/_app_styles.scss */ .course-content .course-unit-name { padding-left: 20px; } -/* line 6091, ../../../scss/_app_styles.scss */ +/* line 6090, ../../../scss/_app_styles.scss */ .course-content .course-unit-name:not(:last-child) { border-bottom: 1px solid #d2cfcf; } -/* line 6096, ../../../scss/_app_styles.scss */ +/* line 6095, ../../../scss/_app_styles.scss */ .course-content .course-unit-name > div .jqtree-title { color: #3c5264; font-size: 19px; font-weight: 600; } -/* line 6104, ../../../scss/_app_styles.scss */ +/* line 6103, ../../../scss/_app_styles.scss */ .course-content .course-activity-group > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6110, ../../../scss/_app_styles.scss */ +/* line 6109, ../../../scss/_app_styles.scss */ .course-content .course-activity-name > div .jqtree-title { color: #74a0c0; font-size: 17px; } -/* line 6117, ../../../scss/_app_styles.scss */ +/* line 6116, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check { color: green; } -/* line 6120, ../../../scss/_app_styles.scss */ +/* line 6119, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-check-circle-o { color: green; } -/* line 6123, ../../../scss/_app_styles.scss */ +/* line 6122, ../../../scss/_app_styles.scss */ .jqtree-title > .fa-clock-o { color: orange; } -/* line 6126, ../../../scss/_app_styles.scss */ +/* line 6125, ../../../scss/_app_styles.scss */ .course-status-icon { font-size: 20px; margin-right: 5px; @@ -29374,23 +29373,23 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Styling for the Secondary header 2 */ -/* line 6145, ../../../scss/_app_styles.scss */ +/* line 6144, ../../../scss/_app_styles.scss */ .activity_player_header { background-color: rgba(107, 0, 84, 0.97); box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1); } -/* line 6148, ../../../scss/_app_styles.scss */ +/* line 6147, ../../../scss/_app_styles.scss */ .activity_player_header > div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6156, ../../../scss/_app_styles.scss */ +/* line 6155, ../../../scss/_app_styles.scss */ .activity_player_header > div:not(:last-child) { border-right: 1px solid #fff; } -/* line 6165, ../../../scss/_app_styles.scss */ +/* line 6164, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { position: relative; color: #fff; @@ -29401,56 +29400,56 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: -2px; border-right: 1px solid white; } -/* line 6174, ../../../scss/_app_styles.scss */ +/* line 6173, ../../../scss/_app_styles.scss */ .activity_player_header .header_title a { color: #ffc14f; } @media only screen and (min-device-width: 1025px) and (max-device-width: 2130px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6164, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 938px); } } @media only screen and (min-device-width: 2131px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6164, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 970px); } } @media only screen and (max-device-width: 1024px) { - /* line 6165, ../../../scss/_app_styles.scss */ + /* line 6164, ../../../scss/_app_styles.scss */ .activity_player_header .header_title { text-overflow: ellipsis; width: calc(100% - 753px); } } -/* line 6251, ../../../scss/_app_styles.scss */ +/* line 6250, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon { font-size: 16px; line-height: 45px; color: #ffc14f; } -/* line 6257, ../../../scss/_app_styles.scss */ +/* line 6256, ../../../scss/_app_styles.scss */ .activity_player_header .header_icon_block { color: #ffc14f; width: 70px; cursor: pointer; text-align: center; } -/* line 6263, ../../../scss/_app_styles.scss */ +/* line 6262, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 10px; } @media screen and (min-width: 1025px) { - /* line 6263, ../../../scss/_app_styles.scss */ + /* line 6262, ../../../scss/_app_styles.scss */ .activity_player_header .header_text_sm_block { padding: 0px 15px; } } @media screen and (min-width: 1025px) { - /* line 6270, ../../../scss/_app_styles.scss */ + /* line 6269, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { float: right; margin-right: 70px; @@ -29458,73 +29457,73 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media screen and (max-width: 1024px) { - /* line 6270, ../../../scss/_app_styles.scss */ + /* line 6269, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav { background-color: rgba(107, 0, 84, 0.97); } } -/* line 6283, ../../../scss/_app_styles.scss */ +/* line 6282, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav div { height: 45px; line-height: 45px; display: inline-block; vertical-align: top; } -/* line 6289, ../../../scss/_app_styles.scss */ +/* line 6288, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block { padding: 0px 15px; margin-left: -2px; border-right: 1px solid white; } -/* line 6293, ../../../scss/_app_styles.scss */ +/* line 6292, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_block a { color: #ffc14f; } -/* line 6299, ../../../scss/_app_styles.scss */ +/* line 6298, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 9px; } @media screen and (min-width: 1025px) { - /* line 6299, ../../../scss/_app_styles.scss */ + /* line 6298, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_lg_block { padding: 0px 15px; } } -/* line 6307, ../../../scss/_app_styles.scss */ +/* line 6306, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 7px; } @media screen and (min-width: 1025px) { - /* line 6307, ../../../scss/_app_styles.scss */ + /* line 6306, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .header_text_md_block { padding: 0px 15px; } } -/* line 6316, ../../../scss/_app_styles.scss */ +/* line 6315, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button { border-color: #e0e0e0; background-color: rgba(244, 244, 244, 0.3); } -/* line 6319, ../../../scss/_app_styles.scss */ +/* line 6318, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .back_button i { color: #71318b; } -/* line 6325, ../../../scss/_app_styles.scss */ +/* line 6324, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings i { transition: transform .5s ease-in-out; -webkit-transition: -webkit-transform .5s ease-in-out; } -/* line 6329, ../../../scss/_app_styles.scss */ +/* line 6328, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .settings:hover i { transform: rotate(90deg); -webkit-transform: rotate(90deg); } -/* line 6335, ../../../scss/_app_styles.scss */ +/* line 6334, ../../../scss/_app_styles.scss */ .activity_player_header .lesson-nav .pagination:not(i) { color: #a983b9; } -/* line 6343, ../../../scss/_app_styles.scss */ +/* line 6342, ../../../scss/_app_styles.scss */ .activity_sheet { background: rgba(231, 231, 231, 0.12); box-shadow: 0px 2px 6px #000; @@ -29532,29 +29531,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0px 0px; max-width: 100vw; } -/* line 6350, ../../../scss/_app_styles.scss */ +/* line 6349, ../../../scss/_app_styles.scss */ .activity_sheet > .columns { padding: 0px; height: 100%; } -/* line 6354, ../../../scss/_app_styles.scss */ +/* line 6353, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor { margin-bottom: 10px; position: relative; /*Overriding default*/ /*Custom css*/ } -/* line 6360, ../../../scss/_app_styles.scss */ +/* line 6359, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .accordion .accordion-navigation > .content, .activity_sheet .course_editor .accordion dd > .content { padding: 0px; padding-left: 0px; } -/* line 6366, ../../../scss/_app_styles.scss */ +/* line 6365, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor > div { display: inline-block; vertical-align: top; } -/* line 6371, ../../../scss/_app_styles.scss */ +/* line 6370, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -29564,25 +29563,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; height: 100vh; } -/* line 6380, ../../../scss/_app_styles.scss */ +/* line 6379, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd { border-bottom: 2px solid #9abfd9; transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6384, ../../../scss/_app_styles.scss */ +/* line 6383, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation { position: relative; padding-left: 0px; } -/* line 6389, ../../../scss/_app_styles.scss */ +/* line 6388, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation > a:before { position: absolute; left: 23px; line-height: 20px; color: #74b3dc; } -/* line 6398, ../../../scss/_app_styles.scss */ +/* line 6397, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title { background: inherit; cursor: pointer; @@ -29591,7 +29590,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6405, ../../../scss/_app_styles.scss */ +/* line 6404, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity { color: #c9d1d8; font-weight: 400; @@ -29600,15 +29599,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; display: none; } -/* line 6414, ../../../scss/_app_styles.scss */ +/* line 6413, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity i { display: none; } -/* line 6419, ../../../scss/_app_styles.scss */ +/* line 6418, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions { margin-bottom: 0px; } -/* line 6422, ../../../scss/_app_styles.scss */ +/* line 6421, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title .edit_entity > .entity_actions li { white-space: nowrap; list-style: none; @@ -29616,21 +29615,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px 10px; cursor: pointer; } -/* line 6432, ../../../scss/_app_styles.scss */ +/* line 6431, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation a.entity-title:hover .edit_entity { display: block; } -/* line 6438, ../../../scss/_app_styles.scss */ +/* line 6437, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation.active > a:before { content: ''; line-height: 55px; color: #d7d7d7; } -/* line 6446, ../../../scss/_app_styles.scss */ +/* line 6445, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities { margin: 0px; } -/* line 6448, ../../../scss/_app_styles.scss */ +/* line 6447, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29639,7 +29638,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: border-color 1s ease; -webkit-transition: border-color 1s ease; } -/* line 6455, ../../../scss/_app_styles.scss */ +/* line 6454, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .course-activities > li > a { color: #7ca0d0; width: 100%; @@ -29647,11 +29646,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: color 1s ease; -webkit-transition: color 1s ease; } -/* line 6464, ../../../scss/_app_styles.scss */ +/* line 6463, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course_tree .course-lessons dd.accordion-navigation .content { background: inherit; } -/* line 6473, ../../../scss/_app_styles.scss */ +/* line 6472, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section { width: 0%; display: inline-block; @@ -29663,48 +29662,48 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow-y: auto; background: #fff; } -/* line 6483, ../../../scss/_app_styles.scss */ +/* line 6482, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header { height: 100px; background-color: #e5f1f6; border-bottom: 1px solid #e6e6e7; } -/* line 6488, ../../../scss/_app_styles.scss */ +/* line 6487, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left { padding: 29px 0px; } -/* line 6491, ../../../scss/_app_styles.scss */ +/* line 6490, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .header-left > span { color: #3c5264; font-weight: 600; margin-right: 10px; } -/* line 6500, ../../../scss/_app_styles.scss */ +/* line 6499, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-header .custom_dropdown { margin: 40px 35px 0px; } -/* line 6505, ../../../scss/_app_styles.scss */ +/* line 6504, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions { background-color: #fff; border-bottom: 1px solid #ccc; height: 55px; } -/* line 6509, ../../../scss/_app_styles.scss */ +/* line 6508, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul { margin: 0px; } -/* line 6511, ../../../scss/_app_styles.scss */ +/* line 6510, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li { list-style: none; display: inline-block; } -/* line 6514, ../../../scss/_app_styles.scss */ +/* line 6513, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li:not(:first-child) { padding: 1px 30px; border-left: 1px solid #ccc; text-align: center; } -/* line 6520, ../../../scss/_app_styles.scss */ +/* line 6519, ../../../scss/_app_styles.scss */ .activity_sheet .course_editor .course-editor-section .editor-tool .editor_actions ul li span { display: inline-block; letter-spacing: 0.5px; @@ -29713,7 +29712,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; } -/* line 6538, ../../../scss/_app_styles.scss */ +/* line 6537, ../../../scss/_app_styles.scss */ .course_editor_section { background: #fff; min-height: 100vh; @@ -29721,26 +29720,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 10px; padding-right: 4px; } -/* line 6544, ../../../scss/_app_styles.scss */ +/* line 6543, ../../../scss/_app_styles.scss */ .course_editor_section #scstyle { margin-top: -10px; } -/* line 6549, ../../../scss/_app_styles.scss */ +/* line 6548, ../../../scss/_app_styles.scss */ .lesson-title { font-size: 18px; padding-top: 10px; padding-left: 10px; } -/* line 6555, ../../../scss/_app_styles.scss */ +/* line 6554, ../../../scss/_app_styles.scss */ .activity-title { font-size: 18px; padding-top: 10px; padding-left: 23px; margin: 0px; } -/* line 6561, ../../../scss/_app_styles.scss */ +/* line 6560, ../../../scss/_app_styles.scss */ .activity-title > li { list-style: none; border-top: 1px solid #e9e9e9; @@ -29750,29 +29749,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-color 1s ease; margin-left: -23px; } -/* line 6570, ../../../scss/_app_styles.scss */ +/* line 6569, ../../../scss/_app_styles.scss */ .activity-title > li.active { background: rgba(116, 0, 255, 0.31); } -/* line 6574, ../../../scss/_app_styles.scss */ +/* line 6573, ../../../scss/_app_styles.scss */ .activity-title > li > a { color: black; } -/* line 6583, ../../../scss/_app_styles.scss */ +/* line 6582, ../../../scss/_app_styles.scss */ .activity_page_rendered { margin-left: 20px; max-width: 900px; } /* Rating css */ -/* line 6591, ../../../scss/_app_styles.scss */ +/* line 6590, ../../../scss/_app_styles.scss */ .rating-bar { /* the hidden clearer */ /* this is gross, I threw this in to override the starred buttons when hovering. */ } -/* line 6593, ../../../scss/_app_styles.scss */ +/* line 6592, ../../../scss/_app_styles.scss */ .rating-bar > span { /* remove inline-block whitespace */ font-size: 0; @@ -29780,19 +29779,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { unicode-bidi: bidi-override; direction: rtl; } -/* line 6601, ../../../scss/_app_styles.scss */ +/* line 6600, ../../../scss/_app_styles.scss */ .rating-bar.unrated { /* If the user has not rated yet */ } -/* line 6603, ../../../scss/_app_styles.scss */ +/* line 6602, ../../../scss/_app_styles.scss */ .rating-bar.unrated:checked ~ label:before { color: #ffc14e; } -/* line 6609, ../../../scss/_app_styles.scss */ +/* line 6608, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] { display: none; } -/* line 6611, ../../../scss/_app_styles.scss */ +/* line 6610, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label { /* only enough room for the star */ display: inline-block; @@ -29805,7 +29804,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0; vertical-align: bottom; } -/* line 6623, ../../../scss/_app_styles.scss */ +/* line 6622, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"] + label:before { display: inline-block; text-indent: -9999px; @@ -29813,32 +29812,32 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* WHITE STAR */ color: #888; } -/* line 6630, ../../../scss/_app_styles.scss */ +/* line 6629, ../../../scss/_app_styles.scss */ .rating-bar [type*="radio"]:checked ~ label:before, .rating-bar [type*="radio"] + label:hover ~ label:before, .rating-bar [type*="radio"] + label:hover:before { content: '\2605'; /* BLACK STAR */ color: #FF980D; text-shadow: 0 0 1px #333; } -/* line 6641, ../../../scss/_app_styles.scss */ +/* line 6640, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label { text-indent: -9999px; width: .5em; margin-left: -.5em; } -/* line 6648, ../../../scss/_app_styles.scss */ +/* line 6647, ../../../scss/_app_styles.scss */ .rating-bar .last[type*="radio"] + label:before { width: .5em; height: 1.4em; } -/* line 6656, ../../../scss/_app_styles.scss */ +/* line 6655, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:before { content: '\2606'; /* WHITE STAR */ color: #888; text-shadow: none; } -/* line 6661, ../../../scss/_app_styles.scss */ +/* line 6660, ../../../scss/_app_styles.scss */ .rating-bar:hover [type*="radio"] + label:hover ~ label:before, .rating-bar:hover [type*="radio"] + label:hover:before { content: '\2605'; @@ -29847,29 +29846,29 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-shadow: 0 0 1px #333; } -/* line 6671, ../../../scss/_app_styles.scss */ +/* line 6670, ../../../scss/_app_styles.scss */ [class*="column"] + [class*="column"]:last-child { float: left; } -/* line 6675, ../../../scss/_app_styles.scss */ +/* line 6674, ../../../scss/_app_styles.scss */ .input_links { margin-left: 10px; } -/* line 6677, ../../../scss/_app_styles.scss */ +/* line 6676, ../../../scss/_app_styles.scss */ .input_links a { margin-right: 35px; margin-top: 5px; } -/* line 6683, ../../../scss/_app_styles.scss */ +/* line 6682, ../../../scss/_app_styles.scss */ .buddy_margin { margin-right: 80px; font-family: OpenSans-Regular; margin-top: 6px; } -/* line 6691, ../../../scss/_app_styles.scss */ +/* line 6690, ../../../scss/_app_styles.scss */ .activity-slides-container { height: 100%; width: 80%; @@ -29878,19 +29877,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 0em 0em 0em 0em; margin-bottom: 15px; } -/* line 6700, ../../../scss/_app_styles.scss */ +/* line 6699, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides { height: 100%; color: #f8f8f8; } -/* line 6704, ../../../scss/_app_styles.scss */ +/* line 6703, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide { padding: 1em; height: inherit; background: #fff; position: relative; } -/* line 6710, ../../../scss/_app_styles.scss */ +/* line 6709, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .view-related-content { border: 1px solid #999; display: inline-block; @@ -29898,12 +29897,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #999999; margin-left: 12%; } -/* line 6718, ../../../scss/_app_styles.scss */ +/* line 6717, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .activity-slide .page > section { margin-left: 50%; transform: translate(-50%); } -/* line 6724, ../../../scss/_app_styles.scss */ +/* line 6723, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .related-content-close { position: absolute; right: -2px; @@ -29912,21 +29911,21 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { display: none; color: #8E8E8E; } -/* line 6733, ../../../scss/_app_styles.scss */ +/* line 6732, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded > i { font-size: 20px !important; color: #ccc !important; top: 8px !important; } -/* line 6738, ../../../scss/_app_styles.scss */ +/* line 6737, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header { margin-left: 20px !important; } -/* line 6740, ../../../scss/_app_styles.scss */ +/* line 6739, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header > span:first-child { display: none !important; } -/* line 6743, ../../../scss/_app_styles.scss */ +/* line 6742, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .back-to-activity { display: inline-block !important; float: right; @@ -29937,24 +29936,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #757575; margin-right: 20px; } -/* line 6753, ../../../scss/_app_styles.scss */ +/* line 6752, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title { font-size: 15px !important; position: relative; } -/* line 6757, ../../../scss/_app_styles.scss */ +/* line 6756, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title .related-content-close { display: block; } -/* line 6760, ../../../scss/_app_styles.scss */ +/* line 6759, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-header .related-content-title > i { display: none !important; } -/* line 6765, ../../../scss/_app_styles.scss */ +/* line 6764, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides .content-expanded .related-content-body { display: block !important; } -/* line 6769, ../../../scss/_app_styles.scss */ +/* line 6768, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content { width: 100%; margin: 0px auto; @@ -29966,7 +29965,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; color: #222222; } -/* line 6780, ../../../scss/_app_styles.scss */ +/* line 6779, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content > i { color: #fff; font-size: 40px; @@ -29974,15 +29973,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 8px; top: 4px; } -/* line 6788, ../../../scss/_app_styles.scss */ +/* line 6787, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header { margin-left: 40px; } -/* line 6790, ../../../scss/_app_styles.scss */ +/* line 6789, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .back-to-activity { display: none; } -/* line 6793, ../../../scss/_app_styles.scss */ +/* line 6792, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header span { display: block; vertical-align: top; @@ -29992,25 +29991,25 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { letter-spacing: 0.8px; color: #999999; } -/* line 6802, ../../../scss/_app_styles.scss */ +/* line 6801, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-header .related-content-title { font-size: 20px; color: #000; cursor: pointer; } -/* line 6808, ../../../scss/_app_styles.scss */ +/* line 6807, ../../../scss/_app_styles.scss */ .activity-slides-container .activity-slides #related-content .related-content-body { display: none; } -/* line 6817, ../../../scss/_app_styles.scss */ +/* line 6816, ../../../scss/_app_styles.scss */ .icon-color { color: #2e3f51 !important; padding: right; } /* The asset tile */ -/* line 6827, ../../../scss/_app_styles.scss */ +/* line 6826, ../../../scss/_app_styles.scss */ .group_content .group_banner { transition: all 1s ease; -webkit-transition: all 1s ease; @@ -30020,7 +30019,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: -70px; -webkit-box-shadow: 0px 0px 5px 5px #C9C9C; } -/* line 6836, ../../../scss/_app_styles.scss */ +/* line 6835, ../../../scss/_app_styles.scss */ .group_content .group_header { height: 45px; padding-bottom: 5px; @@ -30037,7 +30036,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0049667a', endColorstr='#8049667a',GradientType=0 ); /* IE6-9 */ } -/* line 6849, ../../../scss/_app_styles.scss */ +/* line 6848, ../../../scss/_app_styles.scss */ .group_content .group_header .group_title { font-size: 28px; font-weight: 700; @@ -30047,28 +30046,28 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { left: 25px; color: #164A7B; } -/* line 6858, ../../../scss/_app_styles.scss */ +/* line 6857, ../../../scss/_app_styles.scss */ .group_content .group_header .group_actions > button { display: inline-block; margin: 7px 10px; } -/* line 6863, ../../../scss/_app_styles.scss */ +/* line 6862, ../../../scss/_app_styles.scss */ .group_content .group_sections { text-align: center; border-bottom: 2px solid #f5f5f5; background: #eefaff; } -/* line 6868, ../../../scss/_app_styles.scss */ +/* line 6867, ../../../scss/_app_styles.scss */ .group_content .group_sections_content { background-color: #fff; margin-bottom: 100px; margin-top: -1px; } -/* line 6874, ../../../scss/_app_styles.scss */ +/* line 6873, ../../../scss/_app_styles.scss */ .group_content .top-bar-secondions_content { background-color: #fff; } -/* line 6878, ../../../scss/_app_styles.scss */ +/* line 6877, ../../../scss/_app_styles.scss */ .group_content .course_actions > span { margin-right: 5px; background: #2e3f51; @@ -30081,7 +30080,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; margin-left: 130px; } -/* line 6891, ../../../scss/_app_styles.scss */ +/* line 6890, ../../../scss/_app_styles.scss */ .group_content .course_actions > i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -30095,7 +30094,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 80px; } -/* line 6906, ../../../scss/_app_styles.scss */ +/* line 6905, ../../../scss/_app_styles.scss */ .orange-button-subtitle { color: #ce7869; padding: 4px 5px; @@ -30108,13 +30107,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 6917, ../../../scss/_app_styles.scss */ +/* line 6916, ../../../scss/_app_styles.scss */ .orange-button-subtitle:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 6923, ../../../scss/_app_styles.scss */ +/* line 6922, ../../../scss/_app_styles.scss */ .transcript-toggler { display: block; width: 155px !important; @@ -30130,12 +30129,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; } -/* line 6938, ../../../scss/_app_styles.scss */ +/* line 6937, ../../../scss/_app_styles.scss */ .asset_list { margin-left: 12px; } -/* line 6942, ../../../scss/_app_styles.scss */ +/* line 6941, ../../../scss/_app_styles.scss */ .activity_tile { margin-top: 10px; margin-bottom: 25px; @@ -30144,22 +30143,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 260px; border: 1px solid #164A7B; } -/* line 6951, ../../../scss/_app_styles.scss */ +/* line 6950, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 6958, ../../../scss/_app_styles.scss */ +/* line 6957, ../../../scss/_app_styles.scss */ .activity_tile .activity_preview img { width: 100%; height: 210px; } -/* line 6964, ../../../scss/_app_styles.scss */ +/* line 6963, ../../../scss/_app_styles.scss */ .activity_tile .activity_text { padding: 7px 0px 0px 0px; } -/* line 6966, ../../../scss/_app_styles.scss */ +/* line 6965, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title { letter-spacing: 0.2px; overflow: hidden; @@ -30168,15 +30167,15 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 6973, ../../../scss/_app_styles.scss */ +/* line 6972, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title > a { margin-right: 0px !important; } -/* line 6977, ../../../scss/_app_styles.scss */ +/* line 6976, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_title .filenode { z-index: -1; } -/* line 6983, ../../../scss/_app_styles.scss */ +/* line 6982, ../../../scss/_app_styles.scss */ .activity_tile .activity_text .activity_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30185,7 +30184,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 6994, ../../../scss/_app_styles.scss */ +/* line 6993, ../../../scss/_app_styles.scss */ .asset_tile { margin-top: 10px; margin-bottom: 25px; @@ -30194,24 +30193,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { height: 280px; border: 1px solid #164A7B; } -/* line 7003, ../../../scss/_app_styles.scss */ +/* line 7002, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview { height: 200px; width: 100%; border-width: 5px; } -/* line 7010, ../../../scss/_app_styles.scss */ +/* line 7009, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-1 img { /* Just in case there are inline attributes */ width: 100% !important; height: 210px !important; } -/* line 7015, ../../../scss/_app_styles.scss */ +/* line 7014, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview img { width: 100%; height: 210px; } -/* line 7019, ../../../scss/_app_styles.scss */ +/* line 7018, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { /* Prevent vertical gaps */ line-height: 0; @@ -30222,14 +30221,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { column-count: 2; column-gap: 0px; } -/* line 7029, ../../../scss/_app_styles.scss */ +/* line 7028, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos img { /* Just in case there are inline attributes */ width: 100% !important; height: 100px !important; } @media (max-width: 1200px) { - /* line 7036, ../../../scss/_app_styles.scss */ + /* line 7035, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30237,7 +30236,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7045, ../../../scss/_app_styles.scss */ + /* line 7044, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30245,7 +30244,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7052, ../../../scss/_app_styles.scss */ + /* line 7051, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 2; -webkit-column-count: 2; @@ -30253,14 +30252,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7059, ../../../scss/_app_styles.scss */ + /* line 7058, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos { -moz-column-count: 1; -webkit-column-count: 1; column-count: 1; } } -/* line 7067, ../../../scss/_app_styles.scss */ +/* line 7066, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { /* no vertical space*/ line-height: 0; @@ -30275,14 +30274,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7083, ../../../scss/_app_styles.scss */ +/* line 7082, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 img { /* Just in case there are inline attributes */ width: 100% !important; height: 105px !important; } @media (max-width: 1200px) { - /* line 7090, ../../../scss/_app_styles.scss */ + /* line 7089, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30293,7 +30292,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7101, ../../../scss/_app_styles.scss */ + /* line 7100, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30304,7 +30303,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7112, ../../../scss/_app_styles.scss */ + /* line 7111, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 0; @@ -30315,7 +30314,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7123, ../../../scss/_app_styles.scss */ + /* line 7122, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-02 { -moz-row-count: 2; -webkit-column-count: 1; @@ -30325,7 +30324,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7134, ../../../scss/_app_styles.scss */ +/* line 7133, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { /* no vertical space*/ line-height: 0; @@ -30340,14 +30339,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-row-gap: 0px; -moz-row-gap: 0px; } -/* line 7150, ../../../scss/_app_styles.scss */ +/* line 7149, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 img { /* Just in case there are inline attributes */ width: 100% !important; height: 70px !important; } @media (max-width: 1200px) { - /* line 7157, ../../../scss/_app_styles.scss */ + /* line 7156, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30358,7 +30357,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 1000px) { - /* line 7168, ../../../scss/_app_styles.scss */ + /* line 7167, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30369,7 +30368,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 800px) { - /* line 7179, ../../../scss/_app_styles.scss */ + /* line 7178, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 0; @@ -30380,7 +30379,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } } @media (max-width: 400px) { - /* line 7190, ../../../scss/_app_styles.scss */ + /* line 7189, ../../../scss/_app_styles.scss */ .asset_tile .asset_preview .photos-03 { -moz-row-count: 3; -webkit-column-count: 1; @@ -30390,11 +30389,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -moz-row-gap: 0px; } } -/* line 7201, ../../../scss/_app_styles.scss */ +/* line 7200, ../../../scss/_app_styles.scss */ .asset_tile .asset_text { padding: 7px 0px 0px 0px; } -/* line 7203, ../../../scss/_app_styles.scss */ +/* line 7202, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title { letter-spacing: 0.2px; overflow: hidden; @@ -30403,11 +30402,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 10px; padding-left: 6px; } -/* line 7211, ../../../scss/_app_styles.scss */ +/* line 7210, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_title .filenode { z-index: -1; } -/* line 7217, ../../../scss/_app_styles.scss */ +/* line 7216, ../../../scss/_app_styles.scss */ .asset_tile .asset_text .asset_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30416,7 +30415,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7228, ../../../scss/_app_styles.scss */ +/* line 7227, ../../../scss/_app_styles.scss */ .audio_tile { display: inline-block; margin-top: 10px; @@ -30427,22 +30426,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 270px; margin-right: 15px; } -/* line 7238, ../../../scss/_app_styles.scss */ +/* line 7237, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview audio { width: 100%; } -/* line 7241, ../../../scss/_app_styles.scss */ +/* line 7240, ../../../scss/_app_styles.scss */ .audio_tile .audio_preview figcaption { margin-left: 5px; } -/* line 7246, ../../../scss/_app_styles.scss */ +/* line 7245, ../../../scss/_app_styles.scss */ .audio_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7257, ../../../scss/_app_styles.scss */ +/* line 7256, ../../../scss/_app_styles.scss */ .template_tile { display: inline-block; margin-top: 10px; @@ -30453,26 +30452,26 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 120px; margin-right: 15px; } -/* line 7267, ../../../scss/_app_styles.scss */ +/* line 7266, ../../../scss/_app_styles.scss */ .template_tile .template_preview { height: 85px; width: 100%; } -/* line 7270, ../../../scss/_app_styles.scss */ +/* line 7269, ../../../scss/_app_styles.scss */ .template_tile .template_preview img { width: 100%; } -/* line 7274, ../../../scss/_app_styles.scss */ +/* line 7273, ../../../scss/_app_styles.scss */ .template_tile:hover { border-width: 2px 2px 5px 2px; border-style: solid; border-color: #ce7869; } -/* line 7280, ../../../scss/_app_styles.scss */ +/* line 7279, ../../../scss/_app_styles.scss */ .template_tile .template_text { padding: 10px 0px 0px 0px; } -/* line 7282, ../../../scss/_app_styles.scss */ +/* line 7281, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_title { letter-spacing: 0.2px; overflow: hidden; @@ -30481,7 +30480,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 22px; padding-left: 6px; } -/* line 7291, ../../../scss/_app_styles.scss */ +/* line 7290, ../../../scss/_app_styles.scss */ .template_tile .template_text .template_desc { letter-spacing: 0.3px; overflow: hidden; @@ -30490,7 +30489,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: grey; } -/* line 7305, ../../../scss/_app_styles.scss */ +/* line 7304, ../../../scss/_app_styles.scss */ .preview_asset { background: #ccc; border: 2px solid #999; @@ -30500,19 +30499,19 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* Asset detail */ -/* line 7316, ../../../scss/_app_styles.scss */ +/* line 7315, ../../../scss/_app_styles.scss */ .overlay-head { height: 60px; margin-bottom: 20px; } -/* line 7322, ../../../scss/_app_styles.scss */ +/* line 7321, ../../../scss/_app_styles.scss */ .listing-row { margin-top: 10px !important; background-color: #ffffff; } -/* line 7327, ../../../scss/_app_styles.scss */ +/* line 7326, ../../../scss/_app_styles.scss */ .orange-button { color: #ce7869; padding: 7px 14px; @@ -30526,13 +30525,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 8px; cursor: pointer; } -/* line 7339, ../../../scss/_app_styles.scss */ +/* line 7338, ../../../scss/_app_styles.scss */ .orange-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7346, ../../../scss/_app_styles.scss */ +/* line 7345, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; padding: 7px 14px; @@ -30545,22 +30544,22 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7357, ../../../scss/_app_styles.scss */ +/* line 7356, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7362, ../../../scss/_app_styles.scss */ +/* line 7361, ../../../scss/_app_styles.scss */ .orange-button-template { color: #ce7869; background: #fff; } -/* line 7365, ../../../scss/_app_styles.scss */ +/* line 7364, ../../../scss/_app_styles.scss */ .orange-button-template:hover { background-color: #fff; } -/* line 7368, ../../../scss/_app_styles.scss */ +/* line 7367, ../../../scss/_app_styles.scss */ .orange-button-template > a { color: #ce7869; padding: 7px 14px; @@ -30573,13 +30572,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-bottom: 8px; margin-top: 10px; } -/* line 7379, ../../../scss/_app_styles.scss */ +/* line 7378, ../../../scss/_app_styles.scss */ .orange-button-template > a:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7386, ../../../scss/_app_styles.scss */ +/* line 7385, ../../../scss/_app_styles.scss */ .explore-button { border-radius: 5px; text-transform: uppercase; @@ -30591,7 +30590,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border: 2px solid #6a0054; background-color: #6a0054; } -/* line 7397, ../../../scss/_app_styles.scss */ +/* line 7396, ../../../scss/_app_styles.scss */ .explore-button:hover { background-color: #ffffff; cursor: pointer; @@ -30599,18 +30598,18 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /* asset description */ -/* line 7406, ../../../scss/_app_styles.scss */ +/* line 7405, ../../../scss/_app_styles.scss */ .name-desc-asset-cont-area { width: 95%; margin-left: 24px; } -/* line 7413, ../../../scss/_app_styles.scss */ +/* line 7412, ../../../scss/_app_styles.scss */ .page-name { margin-top: 8px; } -/* line 7417, ../../../scss/_app_styles.scss */ +/* line 7416, ../../../scss/_app_styles.scss */ .tag-ele { font-weight: normal; text-align: center; @@ -30629,7 +30628,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: none; } -/* line 7435, ../../../scss/_app_styles.scss */ +/* line 7434, ../../../scss/_app_styles.scss */ .button-cancel-new { height: 2rem; padding: 0 2rem; @@ -30647,12 +30646,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7451, ../../../scss/_app_styles.scss */ +/* line 7450, ../../../scss/_app_styles.scss */ .button-cancel-new:hover { background-color: #fff; color: #333333; } -/* line 7456, ../../../scss/_app_styles.scss */ +/* line 7455, ../../../scss/_app_styles.scss */ .button-cancel-new > a { font-family: open_sansbold,sans-serif; font-size: 1.2rem; @@ -30664,13 +30663,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all .1s ease; margin-right: 1px; } -/* line 7466, ../../../scss/_app_styles.scss */ +/* line 7465, ../../../scss/_app_styles.scss */ .button-cancel-new > a:hover { background-color: #fff; color: #333333; } -/* line 7474, ../../../scss/_app_styles.scss */ +/* line 7473, ../../../scss/_app_styles.scss */ .button-save-new { height: 2rem; padding: 0 2rem; @@ -30687,13 +30686,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; transition: all .1s ease; } -/* line 7489, ../../../scss/_app_styles.scss */ +/* line 7488, ../../../scss/_app_styles.scss */ .button-save-new:hover { background-color: #fff; color: #912a7d; } -/* line 7500, ../../../scss/_app_styles.scss */ +/* line 7499, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner { width: 100%; height: 200px; @@ -30701,7 +30700,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-size: 100% 100%; position: relative; } -/* line 7507, ../../../scss/_app_styles.scss */ +/* line 7506, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner:before { content: ' '; background-color: rgba(0, 0, 0, 0.1); @@ -30715,13 +30714,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { z-index: 10; box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2); } -/* line 7521, ../../../scss/_app_styles.scss */ +/* line 7520, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile { position: absolute; bottom: 30px; left: 40px; } -/* line 7526, ../../../scss/_app_styles.scss */ +/* line 7525, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo { display: inline-block; margin-right: 10px; @@ -30730,79 +30729,79 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { overflow: hidden; background-color: #fff; } -/* line 7534, ../../../scss/_app_styles.scss */ +/* line 7533, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg { height: 100px; width: 100px; } -/* line 7539, ../../../scss/_app_styles.scss */ +/* line 7538, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .buddy_logo svg path { fill: #7a422a; } -/* line 7544, ../../../scss/_app_styles.scss */ +/* line 7543, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading { color: #fff; display: inline-block; vertical-align: top; } -/* line 7549, ../../../scss/_app_styles.scss */ +/* line 7548, ../../../scss/_app_styles.scss */ .mydesk_page .page_banner .banner_profile .banner_heading .buddy_name { font-size: 23px; display: block; margin-bottom: 10px; } -/* line 7557, ../../../scss/_app_styles.scss */ +/* line 7556, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu { border-bottom: 1px solid #e5e5e5; } -/* line 7561, ../../../scss/_app_styles.scss */ +/* line 7560, ../../../scss/_app_styles.scss */ .mydesk_page .page_menu li > a { padding: 12px 20px 9px; } -/* line 7570, ../../../scss/_app_styles.scss */ +/* line 7569, ../../../scss/_app_styles.scss */ .lms_explore_head_unit { width: 100%; height: 50px; background-color: #fff; color: #164A7B; } -/* line 7575, ../../../scss/_app_styles.scss */ +/* line 7574, ../../../scss/_app_styles.scss */ .lms_explore_head_unit > p { margin-left: 81px; padding: 0px 0px 0px 1px; font-family: OpenSans-Semibold; font-size: 20px; } -/* line 7581, ../../../scss/_app_styles.scss */ +/* line 7580, ../../../scss/_app_styles.scss */ .lms_explore_head_unit > a { padding: 0px 85px 3px 0px; } -/* line 7587, ../../../scss/_app_styles.scss */ +/* line 7586, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: -19.3px; } -/* line 7594, ../../../scss/_app_styles.scss */ +/* line 7593, ../../../scss/_app_styles.scss */ .course-students-data { margin: 2px 2px 2px 2px; border: 2px solid #164a7b; padding: 19px 14px 0px 5px; } -/* line 7601, ../../../scss/_app_styles.scss */ +/* line 7600, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(odd) { margin: 0px 10px; } -/* line 7604, ../../../scss/_app_styles.scss */ +/* line 7603, ../../../scss/_app_styles.scss */ .course-students-data .students-table-legends > span:nth-child(even) { display: inline-block; vertical-align: top; margin-right: 10px; } -/* line 7612, ../../../scss/_app_styles.scss */ +/* line 7611, ../../../scss/_app_styles.scss */ .badge_ex { display: inline-block; line-height: 22px; @@ -30818,7 +30817,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.08); } -/* line 7631, ../../../scss/_app_styles.scss */ +/* line 7630, ../../../scss/_app_styles.scss */ .badge_ex.green { background: #77cc51; border-color: #59ad33; @@ -30828,7 +30827,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #a5dd8c, #77cc51); } -/* line 7640, ../../../scss/_app_styles.scss */ +/* line 7639, ../../../scss/_app_styles.scss */ .badge_ex.yellow { background: #faba3e; border-color: #f4a306; @@ -30838,7 +30837,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-image: linear-gradient(to bottom, #fcd589, #faba3e); } -/* line 7649, ../../../scss/_app_styles.scss */ +/* line 7648, ../../../scss/_app_styles.scss */ .badge_ex.red { background: #fa623f; border-color: #fa5a35; @@ -30858,13 +30857,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #A6D7F5; } }*/ -/* line 7672, ../../../scss/_app_styles.scss */ +/* line 7671, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs { width: 100%; margin: 0em 0em 0.5em; border-bottom: 1px solid #CCC; } -/* line 7677, ../../../scss/_app_styles.scss */ +/* line 7676, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title { width: 43%; /* background-color: blue;*/ @@ -30874,7 +30873,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { text-transform: uppercase; color: #fff; } -/* line 7686, ../../../scss/_app_styles.scss */ +/* line 7685, ../../../scss/_app_styles.scss */ .create-task-event-tabs .tabs .tab-title.active { background-color: #719dc7; border: 1px solid #CCC; @@ -30882,7 +30881,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #fff; } -/* line 7699, ../../../scss/_app_styles.scss */ +/* line 7698, ../../../scss/_app_styles.scss */ .create_unit { background: #fff; box-shadow: 0px 2px 3px #000; @@ -30890,7 +30889,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 10px; } -/* line 7707, ../../../scss/_app_styles.scss */ +/* line 7706, ../../../scss/_app_styles.scss */ .asset-unit-button { color: #ce7869; padding: 7px 14px; @@ -30902,13 +30901,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-right: 30px; margin-bottom: 8px; } -/* line 7718, ../../../scss/_app_styles.scss */ +/* line 7717, ../../../scss/_app_styles.scss */ .asset-unit-button:hover { background-color: rgba(206, 120, 105, 0.2); color: #ce7869; } -/* line 7724, ../../../scss/_app_styles.scss */ +/* line 7723, ../../../scss/_app_styles.scss */ .course_creator_header { width: 100%; height: 70px; @@ -30916,7 +30915,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7731, ../../../scss/_app_styles.scss */ +/* line 7730, ../../../scss/_app_styles.scss */ .course_creator_header .unit_editor { width: 100%; height: 320px; @@ -30924,13 +30923,13 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: 5px 15px; box-shadow: 1px 0px 0px #000; } -/* line 7740, ../../../scss/_app_styles.scss */ +/* line 7739, ../../../scss/_app_styles.scss */ .course_creator_header .back_to_group { padding: 0px 15px 0px 10px; border-right: 1px solid #ccc; margin-right: 15px; } -/* line 7746, ../../../scss/_app_styles.scss */ +/* line 7745, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit { width: 500px; height: 40px; @@ -30939,24 +30938,24 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7755, ../../../scss/_app_styles.scss */ +/* line 7754, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit:focus { border: 1px solid #74b3dc; } -/* line 7759, ../../../scss/_app_styles.scss */ +/* line 7758, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7767, ../../../scss/_app_styles.scss */ +/* line 7766, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading_unit select { font-size: 14px; font-family: 'OpenSans-Regular', sans-serif; color: gray; border: 0px solid #74b3dc; } -/* line 7778, ../../../scss/_app_styles.scss */ +/* line 7777, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input { width: 500px; height: 40px; @@ -30965,31 +30964,31 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { float: right; text-align: center; } -/* line 7786, ../../../scss/_app_styles.scss */ +/* line 7785, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input:focus { border: 1px solid #74b3dc; } -/* line 7790, ../../../scss/_app_styles.scss */ +/* line 7789, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading input::-webkit-input-placeholder { color: #d9dfe4; letter-spacing: 0.8px; } -/* line 7800, ../../../scss/_app_styles.scss */ +/* line 7799, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading h5 { margin-top: 15px; } -/* line 7805, ../../../scss/_app_styles.scss */ +/* line 7804, ../../../scss/_app_styles.scss */ .course_creator_header .course_heading span { letter-spacing: 0.9px; font-weight: 600; line-height: 50px; } -/* line 7813, ../../../scss/_app_styles.scss */ +/* line 7812, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul { margin: 0px; } -/* line 7816, ../../../scss/_app_styles.scss */ +/* line 7815, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li { list-style-type: none; display: inline-block; @@ -30998,11 +30997,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; letter-spacing: 0.8px; } -/* line 7825, ../../../scss/_app_styles.scss */ +/* line 7824, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions ul li.active, .course_creator_header .course_actions ul li:hover { border-bottom: 3px solid #ffc14e; } -/* line 7830, ../../../scss/_app_styles.scss */ +/* line 7829, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions span { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -31014,7 +31013,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { cursor: pointer; border-radius: 3px; } -/* line 7842, ../../../scss/_app_styles.scss */ +/* line 7841, ../../../scss/_app_styles.scss */ .course_creator_header .course_actions i { margin-right: 5px; background: rgba(0, 0, 0, 0.6); @@ -31027,20 +31026,20 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { border-radius: 3px; } -/* line 7859, ../../../scss/_app_styles.scss */ +/* line 7858, ../../../scss/_app_styles.scss */ .lms_explore_back_unit { background-color: #fff; margin-top: 2.7px; } -/* line 7864, ../../../scss/_app_styles.scss */ +/* line 7863, ../../../scss/_app_styles.scss */ .empty-dashboard-message { border: 3px solid #e4e4e4; background: #f8f8f8; padding: 40px 0; text-align: center; } -/* line 7870, ../../../scss/_app_styles.scss */ +/* line 7869, ../../../scss/_app_styles.scss */ .empty-dashboard-message > a { background-color: #164a7b; border: 1px solid #164a7b; @@ -31054,7 +31053,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 5px; padding: 15px 20px; } -/* line 7884, ../../../scss/_app_styles.scss */ +/* line 7883, ../../../scss/_app_styles.scss */ .empty-dashboard-message .button-explore-courses { font-size: 20px; font-weight: normal; @@ -31064,7 +31063,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { width: 170px; } -/* line 7899, ../../../scss/_app_styles.scss */ +/* line 7898, ../../../scss/_app_styles.scss */ .module_card { display: table; height: 290px; @@ -31075,16 +31074,16 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { position: relative; box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15); } -/* line 7909, ../../../scss/_app_styles.scss */ +/* line 7908, ../../../scss/_app_styles.scss */ .module_card:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 7913, ../../../scss/_app_styles.scss */ +/* line 7912, ../../../scss/_app_styles.scss */ .module_card > div { display: table-cell; height: 290px; } -/* line 7918, ../../../scss/_app_styles.scss */ +/* line 7917, ../../../scss/_app_styles.scss */ .module_card .card_banner { width: 250px; height: 290px; @@ -31098,14 +31097,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { -webkit-transition: border-radius .2s; transition: border-radius .2s; } -/* line 7931, ../../../scss/_app_styles.scss */ +/* line 7930, ../../../scss/_app_styles.scss */ .module_card .card_banner > img { height: 100%; width: 100%; border-radius: 4px; -webkit-filter: drop-shadow(16px 16px 10px rgba(0, 0, 0, 0.9)); } -/* line 7936, ../../../scss/_app_styles.scss */ +/* line 7935, ../../../scss/_app_styles.scss */ .module_card .card_banner > img:hover { -webkit-transform: scale(1.03); -moz-transform: scale(1.03); @@ -31114,7 +31113,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transform: scale(1.03); opacity: 0.8; } -/* line 7948, ../../../scss/_app_styles.scss */ +/* line 7947, ../../../scss/_app_styles.scss */ .module_card .card_banner > h4 { position: absolute; top: 100px; @@ -31123,7 +31122,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: #ffffff !important; text-shadow: 2px 0px 8px black; } -/* line 7963, ../../../scss/_app_styles.scss */ +/* line 7962, ../../../scss/_app_styles.scss */ .module_card .card_title { display: block; width: 230px; @@ -31133,27 +31132,27 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0px auto; letter-spacing: 1px; } -/* line 7974, ../../../scss/_app_styles.scss */ +/* line 7973, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_banner { border-radius: 8px; } -/* line 7977, ../../../scss/_app_styles.scss */ +/* line 7976, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7982, ../../../scss/_app_styles.scss */ +/* line 7981, ../../../scss/_app_styles.scss */ .module_card.animated_card.isOpen .card_banner { border-radius: 8px 0px 0px 8px; } -/* line 7986, ../../../scss/_app_styles.scss */ +/* line 7985, ../../../scss/_app_styles.scss */ .module_card.animated_card:hover .card_summary { left: 30px; } -/* line 7989, ../../../scss/_app_styles.scss */ +/* line 7988, ../../../scss/_app_styles.scss */ .module_card.animated_card .card_summary { left: 5px; } -/* line 7993, ../../../scss/_app_styles.scss */ +/* line 7992, ../../../scss/_app_styles.scss */ .module_card .card_summary { width: 290px; padding: 0px 15px; @@ -31169,35 +31168,35 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { /* Safari */ transition-property: left; } -/* line 8007, ../../../scss/_app_styles.scss */ +/* line 8006, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_label { font-weight: 500; font-size: 12.5px; letter-spacing: 1px; color: black; } -/* line 8013, ../../../scss/_app_styles.scss */ +/* line 8012, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section { margin: 5px 0px; padding: 5px 0px; } -/* line 8017, ../../../scss/_app_styles.scss */ +/* line 8016, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section:not(:last-child) { border-bottom: 1px solid #ccc; } -/* line 8020, ../../../scss/_app_styles.scss */ +/* line 8019, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section p { margin-bottom: 7px; font-size: 12.5px; } -/* line 8024, ../../../scss/_app_styles.scss */ +/* line 8023, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .ellipsis { width: 245px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } -/* line 8032, ../../../scss/_app_styles.scss */ +/* line 8031, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol { background: #a2238d; height: 37px; @@ -31211,11 +31210,11 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-top: 2px !important; letter-spacing: 0.4px; } -/* line 8045, ../../../scss/_app_styles.scss */ +/* line 8044, ../../../scss/_app_styles.scss */ .module_card .card_summary .card_section .module-card-enrol:hover { box-shadow: 0px 0px 17px rgba(0, 0, 0, 0.68); } -/* line 8051, ../../../scss/_app_styles.scss */ +/* line 8050, ../../../scss/_app_styles.scss */ .module_card .card_summary .module_brief { display: block; /* Fallback for non-webkit */ @@ -31232,12 +31231,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { color: black; } -/* line 8068, ../../../scss/_app_styles.scss */ +/* line 8067, ../../../scss/_app_styles.scss */ .inner { display: inline-block !important; } -/* line 8075, ../../../scss/_app_styles.scss */ +/* line 8074, ../../../scss/_app_styles.scss */ .enroll-btn { width: 90px; opacity: 1; @@ -31253,7 +31252,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { background-color: #4b4852; } -/* line 8095, ../../../scss/_app_styles.scss */ +/* line 8094, ../../../scss/_app_styles.scss */ .enrollBtn { background: #a2238d; height: 37px; @@ -31268,51 +31267,51 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { } /*****Toolbar CSS******/ -/* line 8110, ../../../scss/_app_styles.scss */ +/* line 8109, ../../../scss/_app_styles.scss */ #toolbar { background-color: #3e3e3e; } -/* line 8113, ../../../scss/_app_styles.scss */ +/* line 8112, ../../../scss/_app_styles.scss */ .datetime { color: #eaeaea; padding: 4px 0px 2px 5px; font-size: 11px; } -/* line 8118, ../../../scss/_app_styles.scss */ +/* line 8117, ../../../scss/_app_styles.scss */ .changefont { text-align: right; padding: 2px 5px 1px 0px; } -/* line 8122, ../../../scss/_app_styles.scss */ +/* line 8121, ../../../scss/_app_styles.scss */ .changefont .minus { font-size: 60%; color: #eaeaea; } -/* line 8125, ../../../scss/_app_styles.scss */ +/* line 8124, ../../../scss/_app_styles.scss */ .changefont .normal { font-size: 80%; color: #eaeaea; } -/* line 8128, ../../../scss/_app_styles.scss */ +/* line 8127, ../../../scss/_app_styles.scss */ .changefont .plus { font-size: 100%; color: #eaeaea; } /***********Landing page***************/ -/* line 8137, ../../../scss/_app_styles.scss */ +/* line 8136, ../../../scss/_app_styles.scss */ .about_us { background: #20ade0; } -/* line 8140, ../../../scss/_app_styles.scss */ +/* line 8139, ../../../scss/_app_styles.scss */ .analytics { margin-top: 20px; } -/* line 8143, ../../../scss/_app_styles.scss */ +/* line 8142, ../../../scss/_app_styles.scss */ .square { border: 4px solid #ffffff; position: relative; @@ -31323,14 +31322,14 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin-left: 30px; } -/* line 8153, ../../../scss/_app_styles.scss */ +/* line 8152, ../../../scss/_app_styles.scss */ .square:after { content: ""; display: block; padding-bottom: 100%; } -/* line 8159, ../../../scss/_app_styles.scss */ +/* line 8158, ../../../scss/_app_styles.scss */ .box-content { position: absolute; width: 100%; @@ -31339,7 +31338,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding-top: 20%; } -/* line 8172, ../../../scss/_app_styles.scss */ +/* line 8171, ../../../scss/_app_styles.scss */ .activity-slider { font-family: Arial; width: 800px; @@ -31347,7 +31346,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { margin: 0 auto; } -/* line 8179, ../../../scss/_app_styles.scss */ +/* line 8178, ../../../scss/_app_styles.scss */ .activity-slider h3 { background: #fff; color: #3498db; @@ -31375,12 +31374,12 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { .action a:hover{ background:#000; }*/ -/* line 8205, ../../../scss/_app_styles.scss */ +/* line 8204, ../../../scss/_app_styles.scss */ .footer_link_cont h4 { color: #999; } -/* line 8209, ../../../scss/_app_styles.scss */ +/* line 8208, ../../../scss/_app_styles.scss */ .about_content { color: #ececec; margin-bottom: 30px; @@ -31388,18 +31387,18 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { font-size: 18px; } -/* line 8217, ../../../scss/_app_styles.scss */ +/* line 8216, ../../../scss/_app_styles.scss */ .about-blog { height: 100%; background: #107aa1; } -/* line 8222, ../../../scss/_app_styles.scss */ +/* line 8221, ../../../scss/_app_styles.scss */ .searchbar { margin: 0.8rem; } -/* line 8226, ../../../scss/_app_styles.scss */ +/* line 8225, ../../../scss/_app_styles.scss */ .search-field { width: 0; height: 40px; @@ -31410,7 +31409,7 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { transition: all 0.5s ease; } -/* line 8236, ../../../scss/_app_styles.scss */ +/* line 8235, ../../../scss/_app_styles.scss */ .expand-search { width: 80%; max-width: calc(80% - 3rem); @@ -31418,31 +31417,77 @@ ul.horizontal_tabs_gstudio > li.sub_group_action:hover ul { padding: .5rem; } -/* line 8243, ../../../scss/_app_styles.scss */ +/* line 8242, ../../../scss/_app_styles.scss */ svg { width: 20px; height: 20px; } -/* line 8248, ../../../scss/_app_styles.scss */ +/* line 8247, ../../../scss/_app_styles.scss */ .button { border-radius: 50px; } -/* line 8253, ../../../scss/_app_styles.scss */ +/* line 8252, ../../../scss/_app_styles.scss */ #page_content { display: table; height: auto; display: table-row; } -/* line 8261, ../../../scss/_app_styles.scss */ +/* line 8260, ../../../scss/_app_styles.scss */ .footer_container { height: auto; display: table-row; } -/* line 8268, ../../../scss/_app_styles.scss */ +/* line 8267, ../../../scss/_app_styles.scss */ #footer { height: 1px; } + +/* ----New Footer For NROER -------*/ +/* line 8276, ../../../scss/_app_styles.scss */ +.footer-nav { + margin-right: auto; + margin-left: auto; + margin-top: 60px; + display: table-row; + height: 1px; + display: flex; + flex-flow: row wrap; + flex-direction: row; + flex-wrap: row; + align-items: center; + background-color: rgba(0, 0, 0, 0.8); + padding: 1.8rem; + width: 100%; + justify-content: center; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} + +/* line 8294, ../../../scss/_app_styles.scss */ +.footer-nav-center { + flex: 1 1 0px; +} + +/* line 8297, ../../../scss/_app_styles.scss */ +.footer-nav-menu { + list-style: none; + margin-bottom: 0; + text-align: center; +} + +/* line 8302, ../../../scss/_app_styles.scss */ +.footer-nav-menu-item { + display: inline-block; + margin-right: 1.5rem; + font-size: 1.2rem; + padding: 0.4rem 0; +} + +/* line 8308, ../../../scss/_app_styles.scss */ +.footer-copyright { + margin-top: -70px; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss index f29a9a5947..b8d37af94a 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss +++ b/gnowsys-ndf/gnowsys_ndf/ndf/static/ndf/scss/_app_styles.scss @@ -556,7 +556,6 @@ body>footer { .footer_link_cont { display: inline-block; vertical-align: top; - /*margin: 20px;*/ text-align: left; .links_show { @@ -8270,3 +8269,43 @@ svg { } + + +/* ----New Footer For NROER -------*/ + +.footer-nav{ + margin-right: auto; + margin-left: auto; + margin-top: 60px; + display:table-row; + height:1px; + display:flex; + flex-flow:row wrap; + flex-direction: row; + flex-wrap: row; + align-items: center; + background-color: rgba(0,0,0,0.8); + padding:1.8rem; + width:100%; + justify-content: center; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} + +.footer-nav-center{ + flex: 1 1 0px; +} +.footer-nav-menu{ + list-style: none; + margin-bottom: 0; + text-align: center; +} +.footer-nav-menu-item{ + display: inline-block; + margin-right: 1.5rem; + font-size: 1.2rem; + padding: 0.4rem 0; +} +.footer-copyright{ + margin-top: -70px; + font-family: 'Proxima Nova', 'Helvetica Neue', 'sans-serif', Arial; +} \ No newline at end of file diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html index daba7042de..067be46c40 100755 --- a/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html +++ b/gnowsys-ndf/gnowsys_ndf/ndf/templates/ndf/footer.html @@ -13,7 +13,7 @@