base.css 99 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413
  1. /*
  2. * Common CSS for all themes
  3. */
  4. @import url('bootstrap.css');
  5. /* some changes to the bootstrap.css */
  6. /* when doing a var_dump*/
  7. pre {
  8. margin-top: 40px;
  9. }
  10. /* chzn-select fix */
  11. select {
  12. width: auto;
  13. }
  14. .invisible {
  15. visibility: visible;
  16. }
  17. legend {
  18. margin-bottom: 10px;
  19. }
  20. #header_right {
  21. text-align: right;
  22. }
  23. #header_right #notifications {
  24. padding: 40px 0px 0px 0px;
  25. }
  26. header #logo {
  27. padding: 0px 0px 15px 0px;
  28. }
  29. .subnav .brand {
  30. display: none;
  31. }
  32. .subnav .navbar-inner {
  33. box-shadow: none;
  34. }
  35. .subnav .dropdown-menu li a {
  36. color: #333;
  37. }
  38. .subnav li a {
  39. margin: 0px;
  40. }
  41. .subnav {
  42. }
  43. .subnav .btn-navbar {
  44. background: #efefef;
  45. }
  46. .subnav .btn-navbar .icon-bar {
  47. background-color: #888;
  48. }
  49. .subnav-fixed {
  50. position: fixed;
  51. top: 0px;
  52. left: 0;
  53. right: 0;
  54. z-index: 1030;
  55. border-color: #d5d5d5;
  56. border-width: 0 0 1px; /* drop the border on the fixed edges */
  57. -webkit-border-radius: 0;
  58. -moz-border-radius: 0;
  59. border-radius: 0;
  60. /*-webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 5px rgba(0,0,0,.1);
  61. -moz-box-shadow: inset 0 1px 0 #fff, 0 1px 5px rgba(0,0,0,.1);
  62. box-shadow: inset 0 1px 0 #fff, 0 1px 5px rgba(0,0,0,.1);
  63. */
  64. }
  65. .subnav {
  66. margin-bottom: 0px;
  67. }
  68. /* Subnav */
  69. .subnav .navbar-inner {
  70. -webkit-border-radius: 4px;
  71. -moz-border-radius: 4px;
  72. border-radius: 4px;
  73. /* default subnav color */
  74. background-color: #eeeeee; /* Old browsers */
  75. background-repeat: repeat-x; /* Repeat the gradient */
  76. background-image: -moz-linear-gradient(top, #f5f5f5 0%, #eeeeee 100%); /* FF3.6+ */
  77. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f5f5f5), color-stop(100%, #eeeeee)); /* Chrome,Safari4+ */
  78. background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #eeeeee 100%); /* Chrome 10+,Safari 5.1+ */
  79. background-image: -ms-linear-gradient(top, #f5f5f5 0%, #eeeeee 100%); /* IE10+ */
  80. background-image: -o-linear-gradient(top, #f5f5f5 0%, #eeeeee 100%); /* Opera 11.10+ */
  81. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#f5f5f5', endColorstr = '#eeeeee', GradientType = 0); /* IE6-9 */
  82. background-image: linear-gradient(top, #f5f5f5 0%, #eeeeee 100%); /* W3C */
  83. border: 1px solid #e5e5e5;
  84. margin-bottom: 0px;
  85. padding-left: 4px;
  86. padding-right: 4px;
  87. /* end default subnav background colors */
  88. }
  89. /* fixing gray border next the logout button */
  90. .subnav .nav-tabs .open .dropdown-toggle, .subnav .nav-pills .open .dropdown-toggle, .nav > .open.active > a:hover {
  91. border-color: transparent;
  92. }
  93. .subnav .nav > li > a {
  94. margin: 0;
  95. border-left: 1px solid #f5f5f5;
  96. border-right: 1px solid #e5e5e5;
  97. -webkit-border-radius: 0;
  98. -moz-border-radius: 0;
  99. border-radius: 0;
  100. }
  101. .subnav .nav > #current > a,
  102. .subnav .nav > #current > a:hover {
  103. padding-left: 13px;
  104. color: #777;
  105. background-color: #e9e9e9;
  106. border-right-color: #ddd;
  107. border-left: 0;
  108. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .05);
  109. -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .05);
  110. box-shadow: inset 0 3px 5px rgba(0, 0, 0, .05);
  111. }
  112. .subnav .nav > #current > a .caret,
  113. .subnav .nav > #current > a:hover .caret {
  114. border-top-color: #777;
  115. }
  116. .subnav .nav > li:last-child > a {
  117. border-right: 0;
  118. }
  119. .subnav .dropdown-menu {
  120. -webkit-border-radius: 0 0 4px 4px;
  121. -moz-border-radius: 0 0 4px 4px;
  122. border-radius: 0 0 4px 4px;
  123. }
  124. .subnav .nav > li:first-child > a,
  125. .subnav .nav > li:first-child > a:hover {
  126. -webkit-border-radius: 0;
  127. -moz-border-radius: 0;
  128. border-radius: 0;
  129. }
  130. .subnav .nav > li > a:hover {
  131. text-decoration: none;
  132. color: #aaa;
  133. }
  134. .subnav .nav > li a {
  135. text-shadow: none;
  136. }
  137. header {
  138. margin-bottom: 11px;
  139. }
  140. .breadcrumb {
  141. margin-bottom: 0px;
  142. }
  143. .breadcrumb a, .breadcrumb li {
  144. text-shadow:none;
  145. font-size: 13px;
  146. }
  147. /* To fix the increase/decrease buttons */
  148. label, input, button, select, textarea, p {
  149. font-size: inherit;
  150. }
  151. .badge-group {
  152. width: 200px;
  153. position: relative;
  154. }
  155. .badge-group .badge {
  156. float: left;
  157. position: relative;
  158. }
  159. .badge-group > :first-child {
  160. z-index: 1000;
  161. }
  162. .badge-group > :nth-child(2) {
  163. z-index: 900;
  164. }
  165. .badge-group > :nth-child(3) {
  166. z-index: 800;
  167. }
  168. .badge-group > :nth-child(4) {
  169. z-index: 700;
  170. }
  171. .badge-group > :nth-child(5) {
  172. z-index: 600;
  173. }
  174. .badge-group .badge:not(:first-child) {
  175. margin-left: -13px;
  176. padding-left: 15px;
  177. }
  178. /* button with image */
  179. button.add, button.save, button.cancel, button.refresh, button.upload, button.search, button.login, button.plus, button.minus, button.next, button.back {
  180. padding-left: 30px;
  181. background-position: 8px !important;
  182. background-repeat: no-repeat;
  183. }
  184. /* button << */
  185. button.arrowl, button.arrowr, input.arrowl, input.arrowr {
  186. margin: 0px 15px 0px 15px;
  187. padding: 15px 18px;
  188. background-position: 7px;
  189. }
  190. /*including "arrowl" image*/
  191. button.arrowl, button.arrowr, input.arrowl, input.arrowr {
  192. background-repeat: no-repeat;
  193. }
  194. button.arrowl:hover, button.arrowr:hover, input.arrowl:hover, input.arrowr:hover {
  195. background-position: 7px;
  196. }
  197. /* Fixing old chamilo forms */
  198. /* fixes the * */
  199. span.form_required {
  200. padding-right: 5px;
  201. }
  202. form .formw {
  203. margin-left: 170px;
  204. }
  205. form .formw input {
  206. float: left;
  207. }
  208. .formw input[type="checkbox"], .formw input[type="radio"] {
  209. margin-right: 5px;
  210. margin-top: 2px;
  211. }
  212. #accept_licence, #checkbox {
  213. margin-right: 5px;
  214. margin-top: -1px;
  215. }
  216. /* end chamilo forms fixes */
  217. /* New changes Chamilo 1.9 */
  218. .well h4 {
  219. padding: 3px 15px;
  220. }
  221. #login_block #formLogin,
  222. #login_block #lang_form,
  223. #notice_block .homepage_notice {
  224. padding: 3px 15px;
  225. }
  226. .nav-list > .active > a,
  227. .nav-list > .active > a:hover {
  228. background-color: #999999;
  229. }
  230. .sidebar-nav {
  231. padding: 8px 0px;
  232. }
  233. .sidebar-nav-skill-wheel {
  234. padding-top: 0px;
  235. }
  236. .well_border {
  237. /* border: 1px solid rgba(0, 0, 0, 0.05);*/
  238. border: 1px solid #E1E1E0;
  239. border-radius: 4px 4px 4px 4px;
  240. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05) inset;
  241. margin-bottom: 20px;
  242. min-height: 20px;
  243. padding: 19px;
  244. }
  245. .well_login {
  246. margin: 0 auto;
  247. width: 200px;
  248. }
  249. .well_login button {
  250. margin-left: 0px;
  251. }
  252. #progress_bar img {
  253. height: 26px;
  254. }
  255. #lp_navigation_elem .buttons {
  256. margin-bottom: 5px;
  257. }
  258. #lp_navigation_elem {
  259. padding-left: 15px;
  260. width: 110px;
  261. }
  262. html, body {
  263. margin: 0;
  264. padding: 0;
  265. }
  266. /* the sticky effect */
  267. html {
  268. height: 100%;
  269. }
  270. body {
  271. /* hack ignored by non-IE to enable ie to support :hover on button */
  272. behavior: url("/main/css/csshover3.htc");
  273. margin: 0;
  274. padding: 0;
  275. background-color: #fff;
  276. height: 100%; /* stick */
  277. }
  278. /* Sticky footer*/
  279. #wrapper {
  280. min-height: 100%;
  281. height: auto !important;
  282. height: 100%;
  283. margin: 0 auto -9em; /* Do not change this value */
  284. }
  285. #topbar {
  286. z-index: 9000; /* bug when using full area fckeditor */
  287. }
  288. footer {
  289. margin-top: 17px;
  290. padding-top: 17px;
  291. height: 9em;
  292. width: 100%;
  293. }
  294. /* Sticky footer*/
  295. .push {
  296. height: 9em; /* Very important */
  297. }
  298. footer .container .row {
  299. padding-top: 50px;
  300. }
  301. #footer_right #admin_name, #footer_right #software_name {
  302. text-align: right;
  303. }
  304. .page-header {
  305. padding-bottom: 10px;
  306. border-bottom: 1px solid #ddd;
  307. -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  308. -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  309. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  310. }
  311. #topbar_push {
  312. height: 55px;
  313. }
  314. .actions {
  315. background: #efefef;
  316. border: 1px solid #ccc;
  317. margin-bottom: 11px;
  318. height: 32px;
  319. padding: 2px 2px 2px 14px;
  320. vertical-align: middle;
  321. }
  322. .actions .actions-pagination {
  323. float:right;
  324. margin-top:2px;
  325. }
  326. .actions .actions-pagination * {
  327. display:inline-block;
  328. float:none;
  329. margin:0;
  330. padding:0;
  331. }
  332. .actions .actions-pagination img {
  333. margin:6px;
  334. padding:0;
  335. }
  336. .actions form {
  337. margin-bottom: 0px;
  338. }
  339. .actions a img {
  340. padding: 0px;
  341. margin: 0px;
  342. float: left;
  343. }
  344. .actions fieldset {
  345. margin-top: 0px;
  346. }
  347. .muted {
  348. color: #999999 !important;
  349. }
  350. .actions img {
  351. padding-right: 10px;
  352. border: none;
  353. text-decoration: none;
  354. vertical-align: middle;
  355. }
  356. .actions a {
  357. display: block;
  358. float: left;
  359. margin-right: 10px;
  360. vertical-align: middle;
  361. }
  362. .actions .btn-toolbar {
  363. margin: 0px;
  364. }
  365. .actions span {
  366. margin-right: 10px;
  367. vertical-align: middle;
  368. }
  369. .actions form {
  370. margin-right: 10px;
  371. vertical-align: middle;
  372. }
  373. .actions fieldset {
  374. margin-top: 0px;
  375. }
  376. #friend-container .thumbnail {
  377. min-height: 140px;
  378. }
  379. #friend-container .thumbnail img {
  380. max-height: 100px;
  381. }
  382. .show-grid [class*="span"] {
  383. background-color: #EEEEEE;
  384. border-bottom-left-radius: 3px;
  385. border-bottom-right-radius: 3px;
  386. border-top-left-radius: 3px;
  387. border-top-right-radius: 3px;
  388. line-height: 30px;
  389. min-height: 30px;
  390. text-align: center;
  391. }
  392. a.tag {
  393. background-color: #E0EAF1;
  394. border-bottom: 1px solid #3E6D8E;
  395. border-right: 1px solid #7F9FB6;
  396. color: #3E6D8E;
  397. font-size: 90%;
  398. line-height: 2.4;
  399. margin: 2px 2px 2px 0;
  400. padding: 3px 4px;
  401. text-decoration: none;
  402. white-space: nowrap;
  403. }
  404. /* User portal */
  405. #settings h4 {
  406. margin-bottom: 10px;
  407. }
  408. /* Admin index.php */
  409. #settings .span6 {
  410. min-height: 320px;
  411. }
  412. /* user_portal course status icon */
  413. .coursestatusicons {
  414. border: 0px solid #000;
  415. float: left;
  416. padding-right: 5px;
  417. width: auto;
  418. }
  419. /* user_portal course list */
  420. .courses {
  421. list-style-type: none;
  422. margin-bottom: 5px;
  423. height: 30px;
  424. }
  425. /* user_portal session list */
  426. .session_course_item .courses {
  427. margin-bottom: 5px;
  428. height: 35px;
  429. }
  430. .session_course_item {
  431. /* padding: 0px; */
  432. margin: 0px;
  433. margin-bottom: 15px;
  434. font-size: 135%;
  435. }
  436. .userportal-course-item {
  437. -webkit-border-radius: 10px;
  438. -moz-border-radius: 10px;
  439. border-radius: 10px;
  440. background-color: #F9F9F9;
  441. /*padding:5px 10px 5px 10px;
  442. margin:0px 0px 10px 0px; */
  443. }
  444. #course_category li,
  445. #hot_courses h5,
  446. .course_item h5,
  447. .course-box h5 {
  448. font-size: 12px;
  449. overflow-y : auto;
  450. max-height:70px;
  451. padding: 5px;
  452. }
  453. .session_box_title {
  454. margin-bottom: 7px;
  455. }
  456. .session_course_item .item_closed, .userportal-course-item-title .item_closed {
  457. font-size: 80%;
  458. }
  459. #maincontent .courseslist li {
  460. margin-bottom: 8px;
  461. }
  462. .independent_course_item a {
  463. font-size: 135%;
  464. }
  465. .userportal-session-item {
  466. -webkit-border-radius: 10px;
  467. -moz-border-radius: 10px;
  468. border-radius: 10px;
  469. background-color: #F9F9F9;
  470. padding: 5px 10px 10px 6px;
  471. margin: 10px 0px;
  472. }
  473. .userportal-session-category-item {
  474. -webkit-border-radius: 10px;
  475. -moz-border-radius: 10px;
  476. border-radius: 10px;
  477. background-color: #F9F9F9;
  478. padding: 5px 10px 10px 16px;
  479. /* height:40px; */
  480. /*background-color:#f9f9f9; border:1px solid #dddddd; padding:5px 10px 5px 10px; margin-top: 10px; */
  481. }
  482. /*****************************************************
  483. * AGENDA *
  484. *****************************************************/
  485. #agenda {
  486. width: 100%;
  487. margin: 0 auto;
  488. border: 1px solid #bbb;
  489. border-collapse: collapse;
  490. }
  491. .agenda_month_divider {
  492. background-color: #dcdcdc;
  493. font-weight: bold;
  494. font-size: 12px;
  495. color: #666;
  496. text-align: center;
  497. }
  498. #agenda .title a {
  499. color: #fff;
  500. }
  501. #agenda .agendaitem {
  502. font-size: 12px;
  503. }
  504. #smallcalendar .title {
  505. background-color: #dcdcdc;
  506. font-weight: bold;
  507. padding: 5px;
  508. color: #666;
  509. text-align: center;
  510. font-size: 11px;
  511. }
  512. #smallcalendar .title a {
  513. color: #666;
  514. }
  515. #agenda_select {
  516. list-style: none;
  517. border: 0px solid green;
  518. margin: 30px 0 0 0;
  519. padding: 0 0 0 10px;
  520. }
  521. /* ---------------------------------------------------
  522. styles for the agenda (day, week, month view)
  523. -----------------------------------------------------*/
  524. #agenda_list {
  525. width: 100%;
  526. margin: 0 auto;
  527. border: 1px solid #fff;
  528. border-collapse: collapse;
  529. }
  530. /*The caption of the calendar (displays the month and the << and >> links*/
  531. #agenda_list .title {
  532. background-color: #dcdcdc;
  533. font-weight: bold;
  534. font-size: 12px;
  535. color: #666;
  536. text-align: left;
  537. padding: 2px 10px;
  538. text-align: center;
  539. border: 1px solid #bbb;
  540. }
  541. #agenda_list .title a:link, #agenda_list #title a:visited {
  542. background-color: #dcdcdc;
  543. font-weight: bold;
  544. font-size: 11px;
  545. color: #666;
  546. padding: 2px 10px;
  547. text-align: center;
  548. }
  549. #agenda_list .title a:hover {
  550. background-color: #dcdcdc;
  551. font-weight: bold;
  552. font-size: 11px;
  553. color: #f3840d;
  554. padding: 2px 10px;
  555. text-align: center;
  556. }
  557. /* The cells with the name of the days of the weeks (mon->sun)*/
  558. #agenda_list .weekdays, .data_table .weekdays {
  559. background-color: #dcdcdc;
  560. text-align: center;
  561. font-weight: bold;
  562. border: 1px solid #264269;
  563. border-collapse: collapse;
  564. }
  565. /* The cells for the days (1->31) */
  566. #agenda_list .days_week {
  567. height: 40px;
  568. width: 12%;
  569. text-align: left;
  570. vertical-align: top;
  571. border: 1px solid #ccc;
  572. border-collapse: collapse;
  573. background-color: #fff;
  574. }
  575. #agenda_list .days_week_selected {
  576. height: 40px;
  577. width: 12%;
  578. text-align: left;
  579. vertical-align: top;
  580. border: 1px solid #ccc;
  581. border-collapse: collapse;
  582. background-color: #f5f5f5;
  583. }
  584. #agenda_list .days_weekend {
  585. height: 40px;
  586. width: 12%;
  587. text-align: left;
  588. vertical-align: top;
  589. border: 1px solid #ccc;
  590. border-collapse: collapse;
  591. background-color: #e6e6e6;
  592. }
  593. #agenda_list .days_today {
  594. height: 40px;
  595. width: 12%;
  596. text-align: left;
  597. vertical-align: top;
  598. border: 1px solid #ccc;
  599. border-collapse: collapse;
  600. background-color: #FFFFC0;
  601. }
  602. #agenda_list th {
  603. background-color: #E5EDF9;
  604. border: 1px solid gray;
  605. padding-right: 12px;
  606. }
  607. /* text in the cells: display of agenda items (visible)*/
  608. #agenda_list .data {
  609. background-color: #eee;
  610. text-align: left;
  611. padding: 2px 10px;
  612. font-weight: bold;
  613. border: 0px solid #dcdcdc;
  614. border-collapse: collapse;
  615. }
  616. #agenda_list .datanotbold {
  617. background-color: #eee;
  618. text-align: left;
  619. padding: 2px 10px;
  620. font-weight: normal;
  621. border: 0px solid #dcdcdc;
  622. border-collapse: collapse;
  623. }
  624. #agenda_list .text {
  625. background-color: #fff;
  626. text-align: left;
  627. padding: 2px 10px;
  628. font-weight: normal;
  629. border: 0px solid #dcdcdc;
  630. border-collapse: collapse;
  631. }
  632. /*text in the cells: display of agenda items (invisible)*/
  633. #agenda_list .data_hidden {
  634. background-color: #eee;
  635. text-align: left;
  636. padding: 2px 10px;
  637. font-weight: bold;
  638. border: 0px solid #dcdcdc;
  639. border-collapse: collapse;
  640. color: #999999;
  641. }
  642. #agenda_list .datanotbold_hidden {
  643. background-color: #eee;
  644. text-align: left;
  645. padding: 2px 10px;
  646. font-weight: normal;
  647. border: 0px solid #dcdcdc;
  648. border-collapse: collapse;
  649. color: #999999;
  650. }
  651. #agenda_list .text_hidden {
  652. background-color: #fff;
  653. text-align: left;
  654. padding: 2px 10px;
  655. font-weight: normal;
  656. border: 0px solid #dcdcdc;
  657. border-collapse: collapse;
  658. color: #999999;
  659. }
  660. /*text in the cells: display of agenda items (highlighted)*/
  661. #agenda_list .datanow {
  662. background-color: #FFCC00;
  663. text-align: left;
  664. padding: 2px 10px;
  665. font-weight: bold;
  666. border: 0px solid #dcdcdc;
  667. border-collapse: collapse;
  668. }
  669. #agenda_list .datanotboldnow {
  670. background-color: #FFCC00;
  671. text-align: left;
  672. padding: 2px 10px;
  673. font-weight: normal;
  674. border: 0px solid #dcdcdc;
  675. border-collapse: collapse;
  676. }
  677. #agenda_list .textnow {
  678. background-color: #fff;
  679. text-align: left;
  680. padding: 2px 10px;
  681. font-weight: normal;
  682. border: 0px solid #dcdcdc;
  683. border-collapse: collapse;
  684. }
  685. /* ---------------------------------------------------
  686. styles for the mini agenda
  687. -----------------------------------------------------*/
  688. #smallcalendar {
  689. width: 100%;
  690. margin: 0 auto;
  691. border: 1px solid #fff;
  692. border-collapse: collapse;
  693. }
  694. #smallcalendar .weekdays {
  695. background-color: #dcdcdc;
  696. text-align: center;
  697. font-size: 11px;
  698. font-weight: bold;
  699. border: 1px solid #fff;
  700. border-collapse: collapse;
  701. }
  702. #smallcalendar .days_week {
  703. background-color: #f5f5f5;
  704. text-align: center;
  705. font-size: 11px;
  706. border-collapse: collapse;
  707. }
  708. #smallcalendar .days_weekend {
  709. background-color: #e6e6e6;
  710. text-align: center;
  711. font-size: 11px;
  712. border: 1px solid #fff;
  713. border-collapse: collapse;
  714. }
  715. #smallcalendar .days_today {
  716. width: 12%;
  717. text-align: center;
  718. font-size: 11px;
  719. border: 1px solid #FA8500;
  720. border-collapse: collapse;
  721. background-color: #FFCA8D;
  722. }
  723. /* ---------------------------------------------------
  724. styles for the personal agenda
  725. -----------------------------------------------------*/
  726. .personal_agenda {
  727. color: #008000;
  728. }
  729. .personal_agenda a:link, .personal_agenda a:visited {
  730. color: #008000;
  731. }
  732. a.personal_agenda:link, a.personal_agenda:visited {
  733. color: #008000;
  734. }
  735. .personal_agenda a:hover, .personal_agenda a:hover {
  736. color: #666666;
  737. }
  738. a.personal_agenda:hover, a.personal_agenda:hover {
  739. color: #666666;
  740. }
  741. .myagendatoday {
  742. background-color: #FFCA8D;
  743. border-collapse: collapse;
  744. font-family: verdana, arial, helvetica, sans-serif;
  745. color: #CC3300;
  746. font-weight: bold;
  747. }
  748. .rounded_div_agenda {
  749. background: none repeat scroll 0 0 #FFFFFF;
  750. -webkit-border-radius: 6px;
  751. -opera-border-radius: 6px;
  752. -moz-border-radius: 6px;
  753. border-radius: 6px;
  754. -webkit-box-shadow: 0 2px 5px #C8C8C8;
  755. -opera-box-shadow: 0 2px 5px #C8C8C8;
  756. -moz-box-shadow: 0 2px 5px #C8C8C8;
  757. box-shadow: 0 2px 5px #C8C8C8;
  758. float: left;
  759. height: auto;
  760. margin: 2px 4px 15px;
  761. padding: 8px;
  762. width: 75%;
  763. }
  764. .agenda_day {
  765. float: left;
  766. width: 100%;
  767. background-color: #F8F9FF;
  768. color: #666666;
  769. line-height: 16px;
  770. overflow: hidden;
  771. margin-bottom: 5px;
  772. }
  773. .days_today .agenda_day {
  774. float: left;
  775. width: 100%;
  776. background-color: #FAD163;
  777. color: #666666;
  778. line-height: 16px;
  779. overflow: hidden;
  780. margin-bottom: 5px;
  781. }
  782. #agenda_list th {
  783. background-color: #F2F2F2;
  784. }
  785. #agenda_list .days_week {
  786. height: 100px;
  787. }
  788. /* -------------- DOCUMENT --------------*/
  789. #document_quota {
  790. margin: 15px;
  791. font-weight: bold;
  792. color: #006633;
  793. text-align: center;
  794. }
  795. /* Message and Social */
  796. .online_grid_item {
  797. float: left;
  798. margin: 10px;
  799. width: 100%;
  800. }
  801. .online_grid_element_0 {
  802. display: inline;
  803. float: left;
  804. height: 100px;
  805. overflow: hidden;
  806. width: 100px;
  807. }
  808. .online_grid_element_1, .online_grid_element_2 {
  809. font-size: 13px;
  810. float: left;
  811. margin: 25px 0px 0px 10px;
  812. width: 70%;
  813. }
  814. /* input values to crop the image: top, right, bottom, left */
  815. .social-home-users-online {
  816. width: 200px;
  817. margin: -28px 0 0 -50px;
  818. }
  819. .social-home-anonymous-online {
  820. width: 200px;
  821. }
  822. .menulist {
  823. margin: 0px;
  824. list-style: none;
  825. padding: 3px 15px;
  826. list-style-image: none;
  827. list-style-position: outside;
  828. list-style-type: none;
  829. }
  830. .menulist li {
  831. /* float:left; */
  832. /* margin-left:10px; */
  833. margin-bottom: 10px;
  834. display: list-item;
  835. }
  836. .menulist li {
  837. margin-top: 10px;
  838. }
  839. .group_social_item {
  840. float: left;
  841. width: 95%;
  842. }
  843. .group_social_sub_item {
  844. float: left;
  845. /* width:600px; */
  846. background-color: #E9F4FA;
  847. background-repeat: repeat-x;
  848. margin: 8px;
  849. padding: 5px;
  850. width: 100%;
  851. }
  852. .group_social_sub_item_highlight {
  853. background-color: #FFFFDD;
  854. }
  855. .message-group-content {
  856. float: right;
  857. width: 93%;
  858. line-height: 100%;
  859. }
  860. .message-group-date {
  861. font-style: italic;
  862. text-align: left;
  863. margin-top: 4px;
  864. }
  865. .message-reply-link {
  866. float: right;
  867. }
  868. .group_social_main_item {
  869. float: left;
  870. width: 600px;
  871. background-color: #fff;
  872. background-repeat: repeat-x;
  873. margin: 8px;
  874. padding: 5px;
  875. }
  876. .group_discussions_replies {
  877. background-color: #E9F4FA;
  878. background-repeat: repeat-x;
  879. border: 1px solid #D0E2EC;
  880. border-radius: 3px 3px 3px 3px;
  881. color: #999999;
  882. float: left;
  883. font-size: 0.8em;
  884. margin-right: 10px;
  885. overflow: hidden;
  886. padding: 13px;
  887. text-align: center;
  888. width: 47px;
  889. margin-bottom: 65px;
  890. }
  891. .group_discussions_replies span {
  892. display: block;
  893. font-size: 2em;
  894. }
  895. .group_discussions_info {
  896. width: 400px;
  897. height: 80px;
  898. overflow: hidden;
  899. width: 400px;
  900. }
  901. .group_social_grid {
  902. float: left;
  903. width: 100%;
  904. }
  905. .message-attach {
  906. float: left;
  907. }
  908. /** BUTTONS **/
  909. .left {
  910. float: left !important;
  911. }
  912. .right {
  913. float: right !important;
  914. }
  915. /* Nice buttons v2 */
  916. button.next.disabled {
  917. cursor: default;
  918. opacity: 0.65;
  919. }
  920. .round {
  921. -webkit-border-radius: 1em;
  922. -moz-border-radius: 1em;
  923. border-radius: 1em;
  924. }
  925. .bigger {
  926. font-size: 16px;
  927. font-weight: bold;
  928. padding: .8em 2em .62em;
  929. }
  930. .big {
  931. font-size: 14px;
  932. font-weight: bold;
  933. padding: .8em 2em .62em;
  934. }
  935. .medium {
  936. font-size: 12px;
  937. padding: .4em 1.5em .42em;
  938. }
  939. .small {
  940. font-size: 11px;
  941. padding: .2em 1em .275em;
  942. }
  943. .no_link {
  944. cursor: default;
  945. }
  946. .no_link:hover {
  947. cursor: default;
  948. }
  949. .no_link:active {
  950. cursor: default;
  951. }
  952. /* Note */
  953. .note {
  954. margin: 6px;
  955. font-size: 12px;
  956. line-height: 14px;
  957. font-family: verdana, arial, helvetica, sans-serif;
  958. background-color: #FFFF96;
  959. color: #666666;
  960. border: 1px solid #bbb;
  961. padding: 10px 10px 10px 10px;
  962. }
  963. .note b {
  964. margin: 10px 10px 5px 0px;
  965. }
  966. /* Breadcrumb */
  967. .breadcrumb .home {
  968. padding: 0px;
  969. height: 22px;
  970. }
  971. .breadcrumb .home img {
  972. float: left;
  973. }
  974. /* Warning and error messages to the user */
  975. .error {
  976. color: red;
  977. }
  978. .confirmation-message .right_link,
  979. .error-message .right_link,
  980. .normal-message .right_link,
  981. .warning-message .right_link {
  982. position: relative;
  983. right: 0;
  984. top: -6px;
  985. float: right;
  986. }
  987. .confirmation-message, .error-message, .normal-message, .warning-message {
  988. min-height: 15px;
  989. position: relative;
  990. margin-top: 5px;
  991. margin-bottom: 10px;
  992. -moz-border-radius: 10px;
  993. border-radius: 10px;
  994. border-width: 1px;
  995. border-style: solid;
  996. padding: 6px 12px;
  997. }
  998. .confirmation-message img, .error-message img, .normal-message img, .warning-message img {
  999. position: relative;
  1000. margin-top: 10px;
  1001. margin-bottom: 10px;
  1002. float: left;
  1003. }
  1004. /* Categories courses*/
  1005. #course-picture {
  1006. position: absolute;
  1007. top: 8%;
  1008. left: 85%;
  1009. padding: 4px;
  1010. border: 1pt solid #ccc;
  1011. }
  1012. #categories-search {
  1013. text-align: center;
  1014. /*height:55px; */
  1015. float: left;
  1016. }
  1017. .course-block-main-item {
  1018. height: 45px;
  1019. padding: 5px 0px;
  1020. }
  1021. .categories-course-description {
  1022. padding-bottom: 10px;
  1023. }
  1024. .course-block-popularity {
  1025. width: 90px;
  1026. float: right;
  1027. font-size: x-small;
  1028. font-style: italic;
  1029. text-align: right;
  1030. background-color: #eeeeee;
  1031. min-height: 95px;
  1032. padding-right: 5px;
  1033. -moz-border-radius-topleft: 4px;
  1034. -moz-border-radius-topright: 4px;
  1035. -webkit-border-top-left-radius: 4px;
  1036. -webkit-border-top-right-radius: 4px;
  1037. border-top-left-radius: 4px;
  1038. border-top-right-radius: 4px;
  1039. -moz-box-shadow: 0 -1px 5px 2px #CCCCCC;
  1040. -Webkit-box-shadow: 0 -1px 5px 2px #CCCCCC;
  1041. box-shadow: 0 -1px 5px 2px #CCCCCC;
  1042. }
  1043. .course-block-popularity-score {
  1044. font-size: 3em;
  1045. text-align: center;
  1046. color: #000000;
  1047. padding-top: 10px;
  1048. text-shadow: gray 3px 3px 2px;
  1049. }
  1050. /* THEMATIC ADVANCE */
  1051. .thematic-postit {
  1052. width: 250px;
  1053. height: auto;
  1054. overflow: hidden;
  1055. float: right;
  1056. }
  1057. .thematic-postit-top {
  1058. background-image: url('../img/postit_top.png');
  1059. height: 38px;
  1060. }
  1061. .thematic-postit-top h3 {
  1062. margin: 20px 5px 10px 20px;
  1063. padding-top: 40px;
  1064. }
  1065. .thematic-postit-bottom {
  1066. background-image: url('../img/postit_bottom.png');
  1067. height: 40px;
  1068. }
  1069. .thematic-postit-center {
  1070. background-image: url('../img/postit_center.png');
  1071. height: auto;
  1072. margin-top: 0px;
  1073. margin-bottom: -16px;
  1074. padding: 28px 20px 0;
  1075. }
  1076. #titlethematic {
  1077. text-transform: uppercase;
  1078. }
  1079. /* ATTENDANCE */
  1080. div.attendance-calendar-add div.row div.formw, div.attendance-calendar-edit div.row div.formw {
  1081. float: left;
  1082. display: inline;
  1083. width: auto;
  1084. overflow: hidden;
  1085. margin-right: 2px;
  1086. margin-top: 5px;
  1087. }
  1088. .attendance-calendar-add div.row {
  1089. display: inline;
  1090. }
  1091. .attendance-calendar-edit div.row {
  1092. display: inline;
  1093. }
  1094. .attendance-calendar-row {
  1095. padding: 5px;
  1096. }
  1097. .attendance-faults-bar {
  1098. width: 90%;
  1099. background-color: none;
  1100. padding: 2px;
  1101. font-size: 120%;
  1102. font-weight: bold;
  1103. padding: 5px;
  1104. }
  1105. .attendance-users-table td {
  1106. height: 66px;
  1107. }
  1108. .attendance-calendar-table td {
  1109. height: 66px;
  1110. }
  1111. /**********************************************
  1112. * MESSAGE TOOL *
  1113. **********************************************/
  1114. #inbox-wrapper {
  1115. width: 100%;
  1116. }
  1117. #inbox {
  1118. height: auto;
  1119. margin-left: auto;
  1120. margin-right: auto;
  1121. overflow: hidden;
  1122. }
  1123. #outbox {
  1124. height: auto;
  1125. margin-left: auto;
  1126. margin-right: auto;
  1127. overflow: hidden;
  1128. }
  1129. #inbox-menu {
  1130. width: 150px;
  1131. float: left;
  1132. margin-right: 10px;
  1133. }
  1134. #inbox-menu ul {
  1135. list-style-image: none;
  1136. list-style-position: outside;
  1137. list-style-type: none;
  1138. margin: 0;
  1139. padding: 0px;
  1140. }
  1141. #inbox-menu ul li {
  1142. padding: 2px 0px;
  1143. }
  1144. #message-reply-link {
  1145. float: right;
  1146. }
  1147. .message-item {
  1148. -moz-background-clip: border;
  1149. -moz-background-inline-policy: continuous;
  1150. -moz-background-origin: padding;
  1151. -moz-border-radius-bottomleft: 8px;
  1152. -moz-border-radius-bottomright: 8px;
  1153. -moz-border-radius-topleft: 8px;
  1154. -moz-border-radius-topright: 8px;
  1155. background: #F5F5F5 none repeat scroll 0 0;
  1156. margin: 0 0 5px;
  1157. padding: 10px;
  1158. }
  1159. .message-topic {
  1160. -moz-background-clip: border;
  1161. -moz-background-inline-policy: continuous;
  1162. -moz-background-origin: padding;
  1163. -moz-border-radius-bottomleft: 8px;
  1164. -moz-border-radius-bottomright: 8px;
  1165. -moz-border-radius-topleft: 8px;
  1166. -moz-border-radius-topright: 8px;
  1167. background: #E6EEFB none repeat scroll 0 0;
  1168. margin: 0 0 5px;
  1169. padding: 10px;
  1170. }
  1171. .message-group-title-topic {
  1172. font-size: 180%;
  1173. margin: 5px 0px 5px 0px;
  1174. }
  1175. .message-group-title {
  1176. font-size: 120%;
  1177. }
  1178. .message-group-author {
  1179. margin: 0px 5px 5px 0px;
  1180. float: left;
  1181. }
  1182. .message-group-content {
  1183. margin: 0px 0px 8px 0px;
  1184. }
  1185. .message-group-date {
  1186. color: #999;
  1187. width: 100%;
  1188. font-size: 98%;
  1189. }
  1190. .view-message-content {
  1191. line-height: 150%;
  1192. font-size: 110%;
  1193. }
  1194. .message_view_table {
  1195. cellspacing: 0;
  1196. cellpadding: 0;
  1197. background-color: #dbeaf5;
  1198. border: 0;
  1199. border-collapse: collapse;
  1200. width: 100%;
  1201. }
  1202. .message_view_table th {
  1203. padding-right: 12px;
  1204. border: 1px solid gray;
  1205. background-color: #f0f0f0;
  1206. }
  1207. .message-select-box {
  1208. float: left;
  1209. display: inline;
  1210. position: absolute;
  1211. margin-top: 23px;
  1212. margin-left: 20px;
  1213. }
  1214. /* styles from the my.profile.php file */
  1215. .message-content {
  1216. /* float:right;
  1217. background:#FFF;
  1218. padding: 10px 0 0 5px;
  1219. width:125px;
  1220. position:relative;*/
  1221. }
  1222. .message-content .message-delete {
  1223. position: absolute;
  1224. top: 10px;
  1225. right: 10px;
  1226. cursor: pointer;
  1227. }
  1228. .message-content-internal {
  1229. display: inline;
  1230. margin: 20px auto;
  1231. background: #F5E38E;
  1232. border: 2px solid #EBCA4F;
  1233. padding: 10px;
  1234. width: 100px;
  1235. position: relative;
  1236. margin-top: 150px;
  1237. margin-right: -100px;
  1238. }
  1239. .message-title {
  1240. font-size: 12px;
  1241. }
  1242. .message-body {
  1243. padding: 0 0 11px;
  1244. color: #333;
  1245. font-size: 100%;
  1246. }
  1247. .message-link {
  1248. color: #ff8400;
  1249. }
  1250. .message-view {
  1251. float: right;
  1252. margin: 20px auto;
  1253. background: #F5E38E;
  1254. border: 2px solid #EBCA4F;
  1255. padding: 10px;
  1256. width: 100px;
  1257. position: relative;
  1258. margin-top: 115px;
  1259. margin-right: -100px;
  1260. }
  1261. .message-content-table {
  1262. background-color: white;
  1263. border: 1px solid black;
  1264. position: absolute;
  1265. width: 200px;
  1266. height: 60px;
  1267. z-index: 3;
  1268. visibility: hidden;
  1269. top: 85px;
  1270. left: 10px;
  1271. margin: 0px;
  1272. padding: 0px;
  1273. }
  1274. #message {
  1275. margin: 0 auto;
  1276. text-align: center;
  1277. }
  1278. #message select {
  1279. margin: 10px 0;
  1280. width: 220px;
  1281. }
  1282. #message textarea {
  1283. margin: 10px 0;
  1284. }
  1285. #message td {
  1286. padding: 4px;
  1287. }
  1288. .message-top-title {
  1289. float: left;
  1290. margin-top: 1px;
  1291. margin-bottom: 1px;
  1292. background-color: #F2F2F2;
  1293. width: 600px;
  1294. border-bottom: 1px solid #CCCCCC;
  1295. margin-left: 5px;
  1296. }
  1297. .message-bottom-title {
  1298. height: 22px;
  1299. float: left;
  1300. margin-top: 1px;
  1301. margin-bottom: 1px;
  1302. background-color: #F2F2F2;
  1303. width: 600px;
  1304. border-bottom: 1px solid #CCCCCC;
  1305. }
  1306. .message-content-body-left {
  1307. float: left;
  1308. width: 30%;
  1309. }
  1310. .message-content-body-right {
  1311. float: right;
  1312. text-align: left;
  1313. width: 60%;
  1314. }
  1315. .message-body-title {
  1316. float: right;
  1317. margin-top: 1px;
  1318. margin-bottom: 5px;
  1319. border-bottom: 1px solid #CCCCCC;
  1320. border-collapse: collapse;
  1321. }
  1322. .message-image-info {
  1323. float: left;
  1324. margin-top: 10px;
  1325. margin-bottom: 10px;
  1326. margin-left: 10px;
  1327. text-align: left;
  1328. margin-right: 20px;
  1329. }
  1330. .message-content-body-right dd {
  1331. color: #333399;
  1332. border-bottom: 1px solid #CCCCCC;
  1333. height: 20px;
  1334. text-decoration: none;
  1335. outline-style: none;
  1336. background: #ffffff;
  1337. }
  1338. .message-content-body-right:hover {
  1339. }
  1340. a.unread {
  1341. font-weight: bold;
  1342. }
  1343. /*SOCIAL TOOL*/
  1344. .clip-wrapper {
  1345. position: relative;
  1346. width: 100px;
  1347. height: 100px;
  1348. top: -1px;
  1349. left: -1px;
  1350. }
  1351. .clip_vertical {
  1352. position: absolute;
  1353. clip: rect(0px 218px 185px 0px);
  1354. top: -50px;
  1355. left: -32px;
  1356. -webkit-transform: scale(0.6);
  1357. -moz-transform: scale(0.6);
  1358. -o-transform: scale(0.6);
  1359. }
  1360. .clip_horizontal {
  1361. position: absolute;
  1362. clip: rect(0px 218px 155px 0px);
  1363. top: -25px;
  1364. left: -48px;
  1365. -webkit-transform: scale(0.6);
  1366. -moz-transform: scale(0.6);
  1367. -o-transform: scale(0.6);
  1368. }
  1369. .social-plugin-item {
  1370. float: left;
  1371. width: 50%;
  1372. background-color: #ccc;
  1373. margin: 0px;
  1374. }
  1375. #social-plugins {
  1376. float: left;
  1377. background-color: #f00;
  1378. width: 100%;
  1379. margin: 0px;
  1380. padding: 2px;
  1381. }
  1382. .social-profile-extended {
  1383. width: 320px;
  1384. overflow: hidden;
  1385. }
  1386. div.image-social-content {
  1387. float: left;
  1388. /*border:1px dotted #ccc;*/
  1389. margin: 2px;
  1390. padding: 8px 4px 4px 4px;
  1391. background: #ffffff;
  1392. height: 105px;
  1393. width: 82px;
  1394. z-index: 5;
  1395. cursor: pointer;
  1396. position: relative;
  1397. overflow: hidden;
  1398. }
  1399. div.image-social-content span {
  1400. overflow: hidden;
  1401. display: block;
  1402. height: 75px;
  1403. }
  1404. div.image-social-content img {
  1405. vertical-align: middle;
  1406. }
  1407. div.image-social-content center.friend {
  1408. overflow: hidden;
  1409. height: 30px;
  1410. }
  1411. .image-social-content .image-delete {
  1412. position: absolute;
  1413. top: 1px;
  1414. right: 1px;
  1415. cursor: pointer;
  1416. }
  1417. .social-info {
  1418. background: #B8C8DC;
  1419. color: #4475B0;
  1420. font-size: 12px;
  1421. font-weight: bold;
  1422. }
  1423. .social-display-image {
  1424. float: right;
  1425. margin-top: -130px;
  1426. margin-right: 5px;
  1427. }
  1428. .social-search-image {
  1429. color: #000033;
  1430. margin-top: 2px;
  1431. width: 200px;
  1432. }
  1433. .social-subtitle-search {
  1434. background: #ffffff;
  1435. border-top: 1px #9DACBF solid;
  1436. border-bottom: 1px #9DACBF solid;
  1437. }
  1438. .social-align-box {
  1439. text-align: left;
  1440. float: left;
  1441. }
  1442. .social-header {
  1443. margin-bottom: 8px;
  1444. }
  1445. #social-content {
  1446. width: 100%;
  1447. height: auto;
  1448. overflow: hidden;
  1449. margin-left: auto;
  1450. margin-right: auto;
  1451. }
  1452. #social-content-right {
  1453. height: auto;
  1454. margin-left: 190px;
  1455. overflow: hidden;
  1456. width: 75%;
  1457. }
  1458. .social-content-image {
  1459. margin-bottom: 10px;
  1460. margin-top: 2px;
  1461. overflow: hidden;
  1462. }
  1463. #social-content-left {
  1464. display: block;
  1465. float: left;
  1466. height: auto;
  1467. min-height: 300px;
  1468. overflow: hidden;
  1469. width: 180px;
  1470. }
  1471. .social-content-description {
  1472. background: #ECE9D8;
  1473. }
  1474. .social-content-body {
  1475. background: #ffffff;
  1476. }
  1477. .social-content-table {
  1478. border-top: 1px #9DACBF solid;
  1479. border-left: 1px #9DACBF solid;
  1480. border-right: 1px #9DACBF solid;
  1481. border-bottom: 1px #9DACBF solid;
  1482. }
  1483. .social-profile-info {
  1484. width: 100%;
  1485. }
  1486. /* general layout of the profile page */
  1487. #social-profile-wrapper {
  1488. width: 100%;
  1489. text-align: left;
  1490. margin: 0 auto;
  1491. float: left;
  1492. }
  1493. #social-profile-container {
  1494. /* width: 705px; */
  1495. }
  1496. #social-profile-left {
  1497. float: left;
  1498. width: 22%;
  1499. }
  1500. #social-profile-content {
  1501. float: right;
  1502. width: 47%;
  1503. margin-left: 4px;
  1504. }
  1505. #social-profile-right {
  1506. float: right;
  1507. width: 30%;
  1508. margin-left: 4px;
  1509. }
  1510. /* SOCIAL MENU VERTICAL */
  1511. .social-menu {
  1512. width: 100%;
  1513. height: auto;
  1514. }
  1515. .social-menu-sub-level {
  1516. margin-left: 20px;
  1517. }
  1518. /* BOX SHARED PROFILE */
  1519. .social-menu-groups {
  1520. border-top: 1px solid #ddd;
  1521. margin-top: 2px;
  1522. }
  1523. .social-menu-groups li {
  1524. padding: 5px;
  1525. }
  1526. .social-menu-groups li a {
  1527. margin-left: 6px;
  1528. }
  1529. .social_menu_items ul li {
  1530. padding: 5px;
  1531. }
  1532. .social_menu_items ul li a {
  1533. padding-left: 6px;
  1534. }
  1535. .social_menu_option {
  1536. color: #999999;
  1537. font-size: 9px;
  1538. font-weight: bold;
  1539. margin-top: 12px;
  1540. margin-bottom: 10px;
  1541. }
  1542. .social-friend-container {
  1543. width: 100%;
  1544. overflow: hidden;
  1545. }
  1546. .shared_profile_mygroups_grid_container {
  1547. width: 100%;
  1548. overflow: hidden;
  1549. }
  1550. .shared_profile_mygroups_grid_item {
  1551. width: 42%;
  1552. float: left;
  1553. height: 140px;
  1554. margin: 20px;
  1555. }
  1556. .social-menu-group-member {
  1557. float: left;
  1558. height: 120px;
  1559. margin: 5px;
  1560. overflow: hidden;
  1561. padding: 2px;
  1562. width: 76px;
  1563. }
  1564. .box_shared_profile_group_title {
  1565. border-bottom: 1pt dotted #000;
  1566. padding: 5px;
  1567. vertical-align: middle;
  1568. font-size: 12pt;
  1569. font-weight: bold;
  1570. margin-bottom: 5px
  1571. }
  1572. .box_shared_profile_group_description {
  1573. height: 100px;
  1574. margin-left: 65px;
  1575. }
  1576. .box_shared_profile_group_image {
  1577. height: 80px;
  1578. width: 60px;
  1579. float: left;
  1580. }
  1581. .box_shared_profile_group_actions {
  1582. text-align: right;
  1583. }
  1584. .social-groups-text1 {
  1585. font-size: 12px;
  1586. color: #669;
  1587. }
  1588. .social-groups-text2 {
  1589. font-size: 12px;
  1590. color: #686868;
  1591. font-weight: bold;
  1592. }
  1593. .social-groups-text3 {
  1594. font-size: 12px;
  1595. color: #000;
  1596. font-weight: bold;
  1597. text-transform: capitalize;
  1598. margin-top: 5px;
  1599. }
  1600. .social-groups-text4 {
  1601. font-size: 12px;
  1602. color: #666666;
  1603. }
  1604. .social-groups-image {
  1605. /* border: 2px solid #cac9c9; */
  1606. }
  1607. .social-groups-home-title {
  1608. border-top: 1px solid #E2E2E2;
  1609. padding: 2px;
  1610. margin-bottom: 5px;
  1611. font-weight: bold;
  1612. background: #F2F2F2;
  1613. }
  1614. .social-home-users-online {
  1615. border: 3px solid #E6E6E6;
  1616. }
  1617. #social-content-online {
  1618. margin-bottom: 5px;
  1619. margin-top: 2px;
  1620. padding: 1px;
  1621. }
  1622. #social-group-details {
  1623. margin-bottom: 20px;
  1624. }
  1625. .social-group-details-info span {
  1626. color: #777;
  1627. }
  1628. .social-group-details-info {
  1629. padding: 2px 0px 2px 0px;
  1630. }
  1631. .social-background-content {
  1632. z-index: 5;
  1633. text-align: center;
  1634. }
  1635. .social-background-content .hidden_message {
  1636. cursor: pointer;
  1637. position: absolute;
  1638. top: 0px;
  1639. right: 0px;
  1640. }
  1641. .hidden_message {
  1642. background-color: #5A5A5A;
  1643. padding: 2px;
  1644. margin: 0px;
  1645. }
  1646. .hidden_message a {
  1647. color: #fff !important;
  1648. /* text-decoration: underline; */
  1649. }
  1650. #social-forum-main-title {
  1651. font-size: 130%;
  1652. font-weight: bold;
  1653. padding: 0px 8px 0px 8px;
  1654. }
  1655. #social-forum-title {
  1656. font-size: 130%;
  1657. font-weight: bold;
  1658. padding: 0px 8px 0px 8px;
  1659. }
  1660. #social-thread {
  1661. /*-moz-border-radius-bottomleft:5px;
  1662. -moz-border-radius-bottomright:5px; */
  1663. -moz-border-radius-topleft: 5px;
  1664. -moz-border-radius-topright: 5px;
  1665. border: 1px solid #E1E1E0;
  1666. background-color: #E1E1E0;
  1667. padding: 8px;
  1668. font-size: 110%;
  1669. font-weight: bold;
  1670. }
  1671. #social-post {
  1672. -moz-border-radius-bottomleft: 5px;
  1673. -moz-border-radius-bottomright: 5px;
  1674. /* -moz-border-radius-topleft:5px;
  1675. -moz-border-radius-topright:5px; */
  1676. border: 1px solid #E1E1E0;
  1677. background-color: #ECECEB;
  1678. padding: 12px;
  1679. }
  1680. /* GROUP TOOL */
  1681. #group_description {
  1682. margin: 10px 0px 10px 0px;
  1683. }
  1684. #group_privacy {
  1685. margin: 10px 0px 10px 0px;
  1686. }
  1687. #group_permissions {
  1688. -moz-background-clip: border;
  1689. -moz-background-inline-policy: continuous;
  1690. -moz-background-origin: padding;
  1691. -moz-border-radius-bottomleft: 8px;
  1692. -moz-border-radius-bottomright: 8px;
  1693. -moz-border-radius-topleft: 8px;
  1694. -moz-border-radius-topright: 8px;
  1695. background: #EEE none repeat scroll 0 0;
  1696. margin: 20px 0px 20px 0px;
  1697. }
  1698. #group_permissions ul {
  1699. list-style-image: none;
  1700. list-style-position: outside;
  1701. list-style-type: none;
  1702. margin: 0;
  1703. padding: 0;
  1704. }
  1705. #group_permissions ul li {
  1706. margin: 10px 0px 10px 5px;
  1707. }
  1708. /* Groups boxes */
  1709. .groups_grid_container {
  1710. width: 100%;
  1711. }
  1712. .groups_grid_item {
  1713. width: 80px;
  1714. float: left;
  1715. margin: 5px;
  1716. }
  1717. .groups_grid_element_0 {
  1718. width: 100px;
  1719. float: left;
  1720. text-align: center;
  1721. margin-bottom: 5px;
  1722. }
  1723. .groups_grid_element_1 {
  1724. width: 100px;
  1725. float: left;
  1726. text-align: left;
  1727. margin-bottom: 5px;
  1728. }
  1729. .groups_grid_element_2 {
  1730. width: 150px;
  1731. float: left;
  1732. }
  1733. /*MY GROUPS*/
  1734. .mygroups_grid_item {
  1735. border-bottom: 1px solid #EAEAEA;
  1736. float: left;
  1737. height: 70px;
  1738. margin: 0 8px 15px 15px;
  1739. padding: 16px 12px 40px 0px;
  1740. width: 600px;
  1741. }
  1742. .topic_div {
  1743. width: 620px;
  1744. border-bottom: 1px solid #EAEAEA;
  1745. margin-bottom: 20px;
  1746. height: 96px;
  1747. }
  1748. .box_description_group_member {
  1749. color: #999999;
  1750. font-size: 10px;
  1751. }
  1752. .mygroups_grid_element_1 {
  1753. width: 600px;
  1754. height: 100px;
  1755. overflow: hidden;
  1756. }
  1757. .box_description_group_title h2 {
  1758. margin-bottom: 4px;
  1759. margin-top: 0px;
  1760. }
  1761. .box_description_group_title {
  1762. float: right;
  1763. width: 530px;
  1764. }
  1765. .box_description_group_content {
  1766. float: right;
  1767. width: 530px;
  1768. margin-top: 5px;
  1769. /* height:45px;*/
  1770. font-family: Verdana, Geneva, sans-serif;
  1771. font-size: 12px;
  1772. color: #666666;
  1773. }
  1774. .box_description_group_actions {
  1775. float: right;
  1776. width: 530px;
  1777. text-align: right;
  1778. margin-top: 4px;
  1779. margin-right: 4px;
  1780. }
  1781. /* Fixes the FB input*/
  1782. input.maininput:focus {
  1783. box-shadow: 0 0 0px #fff;
  1784. border: none;
  1785. }
  1786. /* Big icons course home page styles */
  1787. #course_tools .big_icon {
  1788. padding: 10px;
  1789. text-align: center;
  1790. }
  1791. #course_tools .content {
  1792. text-align: center;
  1793. margin-bottom: 20px;
  1794. }
  1795. /* session.php */
  1796. #session_course_list .big_icon {
  1797. padding: 10px;
  1798. text-align: center;
  1799. }
  1800. #session_course_list .content {
  1801. text-align: center;
  1802. margin-bottom: 20px;
  1803. }
  1804. .big_icon img {
  1805. padding: 5px;
  1806. -moz-border-radius: 10px;
  1807. -border-radius: 10px;
  1808. -webkit-border-radius: 10px;
  1809. border-radius: 10px;
  1810. -webkit-box-shadow: 0 4px 8px #C8C8C8;
  1811. -opera-box-shadow: 0 4px 8px #C8C8C8;
  1812. -moz-box-shadow: 0 4px 8px #C8C8C8;
  1813. box-shadow: 0 4px 8px #C8C8C8;
  1814. }
  1815. .big_icon img:hover {
  1816. -webkit-box-shadow: 0 4px 18px #C8C8C8;
  1817. -opera-box-shadow: 0 4px 18px #C8C8C8;
  1818. -moz-box-shadow: 0 4px 18px #C8C8C8;
  1819. box-shadow: 0 4px 18px #C8C8C8;
  1820. }
  1821. .courseadminview .big_icon a {
  1822. font-size: 12px;
  1823. }
  1824. /* Fixes the administration block section */
  1825. .admin_section div {
  1826. margin: 5px 0 14px 25px;
  1827. }
  1828. .rounded_div {
  1829. background: none repeat scroll 0 0 #FFFFFF;
  1830. border: 1px solid #E5E5E5;
  1831. -webkit-border-radius: 11px;
  1832. -opera-border-radius: 11px;
  1833. -moz-border-radius: 11px;
  1834. border-radius: 11px;
  1835. -webkit-box-shadow: 0 4px 18px #C8C8C8;
  1836. -opera-box-shadow: 0 4px 18px #C8C8C8;
  1837. -moz-box-shadow: 0 4px 18px #C8C8C8;
  1838. box-shadow: 0 4px 18px #C8C8C8;
  1839. float: left;
  1840. height: auto;
  1841. margin: 10px 8px 15px 15px;
  1842. padding: 18px;
  1843. }
  1844. /* LP tool*/
  1845. #lp_overview .thumbnail {
  1846. text-align: center;
  1847. }
  1848. .lp_resource {
  1849. padding: 5px 10px;
  1850. list-style-type: none;
  1851. margin: 0;
  1852. padding: 0;
  1853. float: left;
  1854. width: 100%;
  1855. }
  1856. .lp_resource_element, .lp_resource_element_no_link {
  1857. background-image: -moz-linear-gradient(top, #fefefe, #eee);
  1858. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fdfdfd), color-stop(1, #eee));
  1859. border: 1px solid #CCCCCC;
  1860. color: #444444;
  1861. cursor: pointer;
  1862. font-weight: bold;
  1863. text-decoration: none;
  1864. text-shadow: 0 1px 1px #F6F6F6;
  1865. margin: 5px;
  1866. padding: 5px;
  1867. list-style: none outside none;
  1868. }
  1869. .lp_resource_element_new a {
  1870. font-size: 14px;
  1871. }
  1872. .doc_resource {
  1873. margin: 6px;
  1874. }
  1875. table.lp_build td.tree {
  1876. border: none;
  1877. }
  1878. #resource_tab {
  1879. min-height: 380px;
  1880. }
  1881. div.system_announcement {
  1882. background-color: #EEEEEE;
  1883. }
  1884. .RequirementHeading, .RequirementText, .RequirementContent {
  1885. margin-top: 12px;
  1886. line-height: 18px;
  1887. }
  1888. #toolshortcuts_horizontal {
  1889. padding: 0px 20px 2px 0px;
  1890. clear: right;
  1891. margin-left: auto;
  1892. margin-right: auto;
  1893. text-align: right;
  1894. width: 98%;
  1895. }
  1896. #toolshortcuts_vertical {
  1897. padding: 0px 0px 2px 0px;
  1898. clear: right;
  1899. margin-left: auto;
  1900. margin-right: auto;
  1901. text-align: right;
  1902. width: 98%;
  1903. }
  1904. div.admin_section {
  1905. min-height: 260px;
  1906. }
  1907. .admin_section li {
  1908. padding: 2px 0px 2px;
  1909. }
  1910. div.admin_section h4 {
  1911. font-size: 16px;
  1912. letter-spacing: -1px;
  1913. }
  1914. .actions span {
  1915. margin-right: 0px;
  1916. }
  1917. #courseintro_empty {
  1918. float: right;
  1919. margin: 2px auto;
  1920. padding: 0;
  1921. }
  1922. /*PROFILE*/
  1923. .profile_grid_container {
  1924. width: 100%;
  1925. }
  1926. .profile_grid_item {
  1927. border: 1px dotted #CCCCCC;
  1928. float: left;
  1929. height: 90px;
  1930. margin: 5px;
  1931. padding: 5px;
  1932. width: 270px;
  1933. }
  1934. .profile_grid_element_0 {
  1935. width: 100px;
  1936. float: left;
  1937. text-align: center;
  1938. margin-bottom: 5px;
  1939. }
  1940. .profile_grid_element_1 {
  1941. width: 170px;
  1942. float: left;
  1943. text-align: left;
  1944. margin-bottom: 1px;
  1945. }
  1946. /* pagination grid sortable */
  1947. .sub_header {
  1948. width: 100%
  1949. }
  1950. .grid_selectbox {
  1951. float: left;
  1952. width: 35%
  1953. }
  1954. .grid_title {
  1955. float: left;
  1956. width: 30%;
  1957. text-align: center
  1958. }
  1959. .grid_nav {
  1960. float: left;
  1961. width: 35%;
  1962. text-align: right
  1963. }
  1964. /* Groups boxes */
  1965. .group_invitation_grid_container {
  1966. width: 100%;
  1967. }
  1968. .group_invitation_grid_item {
  1969. border: 1px dotted #CCCCCC;
  1970. float: left;
  1971. height: 85px;
  1972. margin: 8px;
  1973. padding: 5px;
  1974. width: 300px;
  1975. }
  1976. .group_invitation_grid_element_0 {
  1977. width: 100px;
  1978. float: left;
  1979. text-align: center;
  1980. margin-bottom: 5px;
  1981. }
  1982. .group_invitation_grid_element_1 {
  1983. width: 100px;
  1984. float: left;
  1985. text-align: left;
  1986. margin-bottom: 5px;
  1987. }
  1988. .group_invitation_grid_element_2 {
  1989. width: 150px;
  1990. float: left;
  1991. }
  1992. /* home group boxes */
  1993. .home_group_grid_container {
  1994. margin-bottom: 70px;
  1995. height: 65px;
  1996. }
  1997. .home_group_grid_element_1 {
  1998. font-family: Verdana, Geneva, sans-serif;
  1999. font-size: 12px;
  2000. color: #686868;
  2001. font-weight: bold;
  2002. margin: 2px;
  2003. padding: 2px;
  2004. }
  2005. .home_group_grid_element_2 {
  2006. float: right;
  2007. width: 80%;
  2008. height: 45px;
  2009. font-family: Verdana, Geneva, sans-serif;
  2010. font-size: 12px;
  2011. color: #666666;
  2012. }
  2013. /*INVITATION IN PROFILE*/
  2014. .invitation_profile_grid_container {
  2015. width: 100%;
  2016. }
  2017. .invitation_profile_grid_item {
  2018. border: 1px dotted #CCCCCC;
  2019. float: left;
  2020. height: 110px;
  2021. margin: 5px;
  2022. padding: 5px;
  2023. width: 100px;
  2024. }
  2025. .invitation_profile_grid_element_0 {
  2026. width: 100px;
  2027. float: left;
  2028. text-align: center;
  2029. margin-bottom: 5px;
  2030. }
  2031. .invitation_profile_grid_element_0 img {
  2032. width: 50px;
  2033. height: 50px;
  2034. border: 3px solid #E6E6E6;
  2035. }
  2036. .invitation_profile_grid_element_2 {
  2037. width: 100px;
  2038. float: left;
  2039. text-align: center;
  2040. }
  2041. .invitation_profile_grid_element_3 {
  2042. width: 100px;
  2043. float: left;
  2044. text-align: center;
  2045. }
  2046. /* User boxes */
  2047. .search_users_grid_container {
  2048. width: 100%;
  2049. }
  2050. .search_users_grid_item {
  2051. width: 400px;
  2052. height: 90px;
  2053. border: 1px dotted #ccc;
  2054. float: left;
  2055. padding: 5px;
  2056. margin: 8px;
  2057. }
  2058. .search_users_grid_element_0 {
  2059. width: 100px;
  2060. float: left;
  2061. text-align: center;
  2062. margin-bottom: 5px;
  2063. }
  2064. .search_users_grid_element_1 {
  2065. width: 100px;
  2066. float: left;
  2067. text-align: center;
  2068. margin-bottom: 5px;
  2069. }
  2070. .search_users_grid_element_2 {
  2071. width: 150px;
  2072. float: left;
  2073. }
  2074. .search_users_grid_selectbox {
  2075. width: 50%;
  2076. float: left;
  2077. }
  2078. .search_users_grid_title {
  2079. width: 30%;
  2080. float: left;
  2081. }
  2082. .search_users_grid_nav {
  2083. float: right;
  2084. }
  2085. /*WAITING USER*/
  2086. .waiting_user_grid_container {
  2087. width: 100%;
  2088. }
  2089. .waiting_user_grid_item {
  2090. width: 500px;
  2091. height: 120px;
  2092. border: 1px dotted #ccc;
  2093. float: left;
  2094. padding: 5px;
  2095. margin: 5px;
  2096. }
  2097. .waiting_user_grid_element_0 {
  2098. width: 100px;
  2099. height: 90px;
  2100. float: left;
  2101. text-align: center;
  2102. margin-bottom: 5px;
  2103. padding-top: 15px;
  2104. }
  2105. .waiting_user_grid_element_1 {
  2106. width: 400px;
  2107. float: left;
  2108. text-align: left;
  2109. margin-bottom: 5px
  2110. }
  2111. .waiting_user_grid_element_2 {
  2112. width: 400px;
  2113. float: left;
  2114. text-align: justify;
  2115. margin-bottom: 5px
  2116. }
  2117. .waiting_user_grid_element_5 {
  2118. width: 100%;
  2119. text-align: left;
  2120. }
  2121. .waiting_user_grid_element_6 {
  2122. width: 100%;
  2123. text-align: left;
  2124. }
  2125. /*LIST MEMBERS*/
  2126. .list_members_grid_container {
  2127. width: 100%;
  2128. }
  2129. .list_members_grid_item {
  2130. width: 105px;
  2131. height: 150px;
  2132. border: 1px dotted #ccc;
  2133. float: left;
  2134. padding: 5px;
  2135. margin: 8px;
  2136. }
  2137. .list_members_grid_element_0 {
  2138. width: 100px;
  2139. float: left;
  2140. text-align: center;
  2141. margin-bottom: 5px;
  2142. }
  2143. .list_members_grid_element_0 img {
  2144. width: 50px;
  2145. height: 50px;
  2146. border: 3px solid #E6E6E6;
  2147. }
  2148. .list_members_grid_element_2 {
  2149. width: 100px;
  2150. float: left;
  2151. text-align: center;
  2152. margin-bottom: 5px;
  2153. }
  2154. .list_members_grid_element_3 {
  2155. width: 100px;
  2156. float: left;
  2157. text-align: center;
  2158. margin-bottom: 5px;
  2159. }
  2160. .list_members_grid_element_5 {
  2161. width: 100%;
  2162. text-align: center;
  2163. }
  2164. /*SEARCH USER*/
  2165. .search_user_grid_container {
  2166. width: 100%;
  2167. }
  2168. .search_user_grid_item {
  2169. width: 100px;
  2170. height: 100px;
  2171. border: 1px dotted #ccc;
  2172. float: left;
  2173. padding: 5px;
  2174. margin: 5px;
  2175. overflow: hidden;
  2176. }
  2177. .search_user_grid_element_0 {
  2178. width: 100px;
  2179. float: left;
  2180. text-align: center;
  2181. margin-bottom: 5px;
  2182. }
  2183. .search_user_grid_element_0 img {
  2184. width: 50px;
  2185. height: 50px;
  2186. border: 2px solid #E6E6E6;
  2187. }
  2188. .search_user_grid_element_1 {
  2189. width: 100%;
  2190. text-align: center;
  2191. }
  2192. .search_user_grid_element_2 {
  2193. width: 100%;
  2194. text-align: center;
  2195. }
  2196. .search_user_grid_element_3 {
  2197. width: 100%;
  2198. text-align: center;
  2199. }
  2200. /*SEARCH GROUP*/
  2201. .search_group_grid_item {
  2202. float: left;
  2203. width: 345px;
  2204. height: 165px;
  2205. margin-top: 20px;
  2206. }
  2207. .search_group_grid_container {
  2208. margin-top: 0px;
  2209. }
  2210. .search_group_grid_element_1 {
  2211. width: 330px;
  2212. height: 165px;
  2213. padding-left: 10px;
  2214. padding-right: 10px;
  2215. background-repeat: repeat-y;
  2216. overflow: hidden;
  2217. }
  2218. /* chosen javascript checkbox select width fix */
  2219. .chzn-select {
  2220. min-width: 173px;
  2221. }
  2222. .lp_tree {
  2223. padding: 15px;
  2224. }
  2225. #lp_item_list {
  2226. margin: 0px;
  2227. }
  2228. #lp_item_list, #lp_item_list li {
  2229. list-style-type: none;
  2230. /* float:left;*/
  2231. }
  2232. #lp_item_list .active {
  2233. border: 2px dotted #BDB76B;
  2234. }
  2235. #lp_item_list ul, #lp_item_list li {
  2236. /* float:left;*/
  2237. width: 100%;
  2238. }
  2239. #lp_item_list .item_data {
  2240. padding: 5px 0px 5px 0px;
  2241. /* float:left;*/
  2242. }
  2243. #lp_item_list .item {
  2244. border: none;
  2245. }
  2246. #lp_item_list .empty {
  2247. height: 5px;
  2248. }
  2249. #question_list .ui-state-highlight {
  2250. height: 80px;
  2251. }
  2252. .ui-state-highlight {
  2253. height: 25px;
  2254. }
  2255. #question_list .header_operations {
  2256. height: 40px;
  2257. margin-bottom: 5px;
  2258. }
  2259. .question-list-description-block {
  2260. margin-bottom: 10px !important;
  2261. margin-top: -6px !important;
  2262. }
  2263. .thematic_advance_content {
  2264. padding: 10px;
  2265. }
  2266. .thematic_advance_actions {
  2267. width: 100px;
  2268. }
  2269. .document_preview_container {
  2270. -webkit-border-radius: 6px;
  2271. -opera-border-radius: 6px;
  2272. -moz-border-radius: 6px;
  2273. border-radius: 6px;
  2274. -webkit-box-shadow: 0 2px 5px #C8C8C8;
  2275. -opera-box-shadow: 0 2px 5px #C8C8C8;
  2276. -moz-box-shadow: 0 2px 5px #C8C8C8;
  2277. box-shadow: 0 2px 5px #C8C8C8;
  2278. background-color: #F9F9F9;
  2279. position: absolute;
  2280. z-index: 20;
  2281. margin: 5px;
  2282. padding: 5px;
  2283. width: 400px;
  2284. height: 280px;
  2285. overflow-y: auto;
  2286. }
  2287. #course_settings h3 img {
  2288. margin-left: 25px;
  2289. }
  2290. .document_preview_container {
  2291. font-size: 12px !important;
  2292. color: #111 ! important;
  2293. }
  2294. /* Exercise comment*/
  2295. #comments {
  2296. position: absolute;
  2297. left: 795px;
  2298. top: 0px;
  2299. width: 200px;
  2300. height: 75px;
  2301. z-index: 1;
  2302. }
  2303. #questions {
  2304. width: 40%;
  2305. height: 50px;
  2306. float: left;
  2307. padding: 5px;
  2308. }
  2309. .question_item {
  2310. height: 50px;
  2311. padding: 5px;
  2312. margin: 10px 0px 10px 0px;
  2313. }
  2314. .option_item {
  2315. width: 150px;
  2316. padding: 3px;
  2317. margin: 10px;
  2318. }
  2319. .ui-jqgrid tr.jqgrow td {
  2320. height: 38px !important;
  2321. }
  2322. .exercise_overview_options {
  2323. background-color: #F9F9F9;
  2324. -webkit-border-radius: 10px;
  2325. -moz-border-radius: 10px;
  2326. border-radius: 10px;
  2327. /*height: 40px;
  2328. margin: 5px; */
  2329. padding: 15px 0px 15px 0px;
  2330. }
  2331. .exercise_overview_options .left_option {
  2332. float: left;
  2333. margin: 12px 5px;
  2334. width: 33%;
  2335. }
  2336. .exercise_overview_options .center_option {
  2337. float: left;
  2338. margin: 15px 5px;
  2339. text-align: center;
  2340. width: 33%;
  2341. }
  2342. .exercise_overview_options .right_option {
  2343. float: right;
  2344. margin: 12px 5px;
  2345. text-align: right;
  2346. font-size: 14px;
  2347. }
  2348. .remind_highlight {
  2349. background-color: #FFF7C0;
  2350. }
  2351. .exercise_header {
  2352. border-bottom: 1px dotted #ccc;
  2353. margin-bottom: 20px;
  2354. }
  2355. /* Table */
  2356. .exercise_options {
  2357. width: 720px;
  2358. border-collapse: collapse;
  2359. border-spacing: 0;
  2360. }
  2361. .exercise_options th {
  2362. background-color: #F2F2F2;
  2363. border-bottom: 1px solid #DDDDDD;
  2364. line-height: normal;
  2365. padding: 8px 10px;
  2366. text-align: center;
  2367. vertical-align: middle;
  2368. }
  2369. /* Fixes questions list */
  2370. .question_options {
  2371. margin-top:16px;
  2372. min-height: 150px;
  2373. }
  2374. .question_options label {
  2375. margin-bottom: 14px;
  2376. display: block;
  2377. }
  2378. .question_options .radio, .question_options .checkbox {
  2379. min-height: 18px;
  2380. padding-left: 25px;
  2381. }
  2382. .question_options .radio input[type="radio"], .question_options .checkbox input[type="checkbox"] {
  2383. float: left;
  2384. margin-left: -25px;
  2385. }
  2386. .question_options input {
  2387. /* margin-right:10px; */
  2388. }
  2389. .question_options input[type="text"] {
  2390. padding:0px;
  2391. margin:2px 2px 2px 0px;
  2392. }
  2393. .question_description {
  2394. padding: 0px;
  2395. }
  2396. .exercise_description {
  2397. padding: 0px 0px 10px 0px;
  2398. border-bottom: 1px solid #CCCCCC;
  2399. }
  2400. .exercise_title {
  2401. font-size: 1.6em;
  2402. font-weight: bold;
  2403. padding: 10px 0px 10px 0px;
  2404. }
  2405. .question_title {
  2406. font-size: 1.2em;
  2407. font-weight: bold;
  2408. margin: 15px 0px;
  2409. }
  2410. .question_no_answer {
  2411. background-color: #FFF7C0;
  2412. /* padding: 5px 0px 5px 0px; */
  2413. margin: 10px 0px 5px 0px;
  2414. }
  2415. .question_answer {
  2416. display: block;
  2417. float: left;
  2418. margin: 0;
  2419. width: 100%;
  2420. margin: 0 0 0 0px;
  2421. padding: 0px 0px 5px 0px;
  2422. }
  2423. .question_answer label {
  2424. float: left;
  2425. margin: 0px 0 0 8px;
  2426. }
  2427. .question_answer input {
  2428. float: left;
  2429. margin: 0px;
  2430. }
  2431. #question_description {
  2432. padding-left: 5px;
  2433. padding-top: 10px;
  2434. padding-bottom:10px;
  2435. }
  2436. #question_score {
  2437. padding-top: 10px;
  2438. padding-bottom: 10px;
  2439. font-weight: bold;
  2440. font-size: 130%;
  2441. }
  2442. .question_row {
  2443. margin-bottom: 40px;
  2444. }
  2445. .ribbon {
  2446. float: left;
  2447. width: 100%;
  2448. margin-bottom: 20px;
  2449. border: 1px solid #d2d2d2;
  2450. border-radius: 3px;
  2451. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  2452. position: relative;
  2453. background-image: -ms-linear-gradient(top, #FDFDFD, #F3F5F7);
  2454. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#FDFDFD), to(#F3F5F7));
  2455. background-image: -webkit-linear-gradient(top, #FDFDFD, #F3F5F7);
  2456. background-image: -o-linear-gradient(top, #FDFDFD, #F3F5F7);
  2457. background-image: -moz-linear-gradient(top, #FDFDFD, #F3F5F7);
  2458. background-image: linear-gradient(top, #FDFDFD, #F3F5F7);
  2459. }
  2460. .ribbon .rib {
  2461. height: 30px;
  2462. width: 120px;
  2463. display: block;
  2464. line-height: 1.3;
  2465. left: -2px;
  2466. top: 0px;
  2467. color: #cfcfcf;
  2468. margin: 0;
  2469. padding: 2px 10px;
  2470. position: relative;
  2471. text-shadow: 0 1px 1px #111;
  2472. border-top: 1px solid #363636;
  2473. border-bottom: 1px solid #202020;
  2474. background: #333;
  2475. background-image: -ms-linear-gradient(top, #414B57, #2F3741);
  2476. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#414B57), to(#2F3741));
  2477. background-image: -webkit-linear-gradient(top, #414B57, #2F3741);
  2478. background-image: -o-linear-gradient(top, #414B57, #2F3741);
  2479. background-image: -moz-linear-gradient(top, #414B57, #2F3741);
  2480. background-image: linear-gradient(top, #414B57, #2F3741);
  2481. border-radius: 5px 2px 0 0;
  2482. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  2483. float: left;
  2484. }
  2485. .ribbon .rib h3 {
  2486. color: white;
  2487. font-size: 16px;
  2488. float: left;
  2489. line-height: 16px;
  2490. padding-top: 5px;
  2491. margin-top: 0px;
  2492. }
  2493. .ribbon .rib-total {
  2494. width: 275px;
  2495. }
  2496. .ribbon .rib-error, .ribbon .ribbon-total-error {
  2497. background: #C83F25;
  2498. background-image: -ms-linear-gradient(top, #992800, #C83F25);
  2499. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#992800), to(#C83F25));
  2500. background-image: -webkit-linear-gradient(top, #992800, #C83F25);
  2501. background-image: -o-linear-gradient(top, #992800, #C83F25);
  2502. background-image: -moz-linear-gradient(top, #992800, #C83F25);
  2503. background-image: linear-gradient(top, #992800, #C83F25);
  2504. border-top: 1px solid #C56E5B;
  2505. border-bottom: 1px solid #7A290F;
  2506. float: left;
  2507. }
  2508. .ribbon .rib-gray {
  2509. background: #cccccc;
  2510. background-image: -ms-linear-gradient(top, #bbbbbb, #cccccc);
  2511. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#bbbbbb), to(#cccccc));
  2512. background-image: -webkit-linear-gradient(top, #bbbbbb, #cccccc);
  2513. background-image: -o-linear-gradient(top, #bbbbbb, #cccccc);
  2514. background-image: -moz-linear-gradient(top, #bbbbbb, #cccccc);
  2515. background-image: linear-gradient(top, #bbbbbb, #cccccc);
  2516. border-top: 1px solid #bbbbbb;
  2517. border-bottom: 1px solid #bbbbbb;
  2518. float: left;
  2519. }
  2520. .ribbon .rib-success, .ribbon .ribbon-total-success {
  2521. background-color: #768E00;
  2522. background-image: -ms-linear-gradient(top, #9CB80A, #768E00);
  2523. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#9CB80A), to(#768E00));
  2524. background-image: -webkit-linear-gradient(top, #9CB80A, #768E00);
  2525. background-image: -o-linear-gradient(top, #9CB80A, #768E00);
  2526. background-image: -moz-linear-gradient(top, #9CB80A, #768E00);
  2527. background-image: linear-gradient(top, #9CB80A, #768E00);
  2528. border-top: 1px solid #A8C31B;
  2529. border-bottom: 1px solid #617700;
  2530. float: left;
  2531. }
  2532. .ribbon h4 {
  2533. margin: 0;
  2534. padding: 8px 10px;
  2535. color: #444;
  2536. float: left;
  2537. }
  2538. .ribbon-total h4 {
  2539. left: 290px;
  2540. }
  2541. .ribbon h5 {
  2542. display: block;
  2543. height: 30px;
  2544. width: 150px;
  2545. margin: 0;
  2546. padding: 15px 0px;
  2547. position: absolute;
  2548. right: 0px;
  2549. top: 0px;
  2550. }
  2551. .ribbon .rib::before {
  2552. content: '';
  2553. display: block;
  2554. width: 0;
  2555. height: 0;
  2556. position: absolute;
  2557. bottom: -11px;
  2558. z-index: -10;
  2559. border: 5px solid;
  2560. border-color: #242424 transparent transparent transparent;
  2561. }
  2562. .ribbon .rib-error::before {
  2563. border-color: #610801 transparent transparent transparent;
  2564. }
  2565. .ribbon .rib-success::before {
  2566. border-color: #66751B transparent transparent transparent;
  2567. }
  2568. .ribbon .rib-gray::before {
  2569. border-color: #ccc transparent transparent transparent;
  2570. }
  2571. .ribbon .rib::before {
  2572. left: 0;
  2573. }
  2574. .ribbon .rib::after {
  2575. right: 0;
  2576. }
  2577. .ribbon .success {
  2578. }
  2579. .ribbon .error {
  2580. color: red;
  2581. }
  2582. .ribbon .success {
  2583. color: green;
  2584. }
  2585. .exercise_save_now_button img {
  2586. position: relative;
  2587. top: 4px;
  2588. }
  2589. .exercise_save_now_button {
  2590. margin-top: 10px;
  2591. }
  2592. .exercise_save_now_button, .exercise_button {
  2593. /* padding:5px; */
  2594. }
  2595. .time_container_warning {
  2596. background-color: #FFD700;
  2597. border: 1px solid #B8860B;
  2598. }
  2599. /* Exercise clock*/
  2600. .count_down {
  2601. padding: 3px;
  2602. font-size: 22px;
  2603. font-weight: bold;
  2604. color: #222;
  2605. padding: 12px;
  2606. text-align: center;
  2607. width: 200px;
  2608. }
  2609. .red_alert {
  2610. color: red;
  2611. font-weight: bold;
  2612. }
  2613. #question_feedback {
  2614. -webkit-border-radius: 10px;
  2615. -moz-border-radius: 10px;
  2616. border-radius: 10px;
  2617. background-color: #FCF7BA;
  2618. border: 1px solid #EADC31;
  2619. color: #555;
  2620. font-size: 12px;
  2621. font-weight: bold;
  2622. list-style-type: none;
  2623. margin-top: 5px;
  2624. padding: 5px;
  2625. }
  2626. .userportal-order-courses-link {
  2627. background-color: #F9F9F9;
  2628. border-radius: 10px 10px 10px 10px;
  2629. height: 40px;
  2630. margin: 5px;
  2631. padding: 15px;
  2632. }
  2633. .userportal-order-courses-link a {
  2634. float: right;
  2635. }
  2636. .course_social_content {
  2637. background: #EFEFEF;
  2638. margin: 10px 21px;
  2639. padding: 10px;
  2640. }
  2641. .topics_grid_item {
  2642. border-bottom: 1px solid #CCCCCC;
  2643. margin-bottom: 20px;
  2644. }
  2645. #div_content_table {
  2646. border-bottom: 1px solid #EAEAEA;
  2647. margin-bottom: 20px;
  2648. padding-bottom: 10px;
  2649. }
  2650. .group_description {
  2651. word-wrap: break-word;
  2652. font-size: 11px;
  2653. }
  2654. /* Forms */
  2655. /*****************************************************
  2656. * FORM STYLES *
  2657. *****************************************************/
  2658. div.row div.form_header {
  2659. white-space: nowrap;
  2660. padding: 2px;
  2661. margin: 0px 0px 10px 0px;
  2662. background-color: #E5EDF9;
  2663. border: 1px solid #E5EDF9;
  2664. font-size: 20px;
  2665. }
  2666. /*
  2667. [dir=ltr] div.row div.label, [dir=ltl] div.row div.formw {
  2668. float: left;
  2669. text-align: right;
  2670. }
  2671. [dir=rtl] div.row div.label, [dir=rtr] div.row div.formw {
  2672. float: right;
  2673. text-align: left;
  2674. }*/
  2675. span.form_required {
  2676. color: #f00;
  2677. }
  2678. span.form_error {
  2679. color: #f00;
  2680. font-size: x-small;
  2681. margin: 2px;
  2682. }
  2683. form .row {
  2684. margin-bottom: 18px;
  2685. }
  2686. form .formw .freeze {
  2687. display: block;
  2688. padding-top: 8px;
  2689. }
  2690. .course_activity_home {
  2691. width: 100%;
  2692. }
  2693. .course_activity_home td {
  2694. line-height: normal;
  2695. padding: 4px;
  2696. text-align: left;
  2697. vertical-align: middle;
  2698. }
  2699. .hide {
  2700. display: none;
  2701. }
  2702. /* agenda js */
  2703. #add_event_form fieldset {
  2704. width: 400px;
  2705. }
  2706. .tag {
  2707. background-color: #D3E6EF;
  2708. border-radius: 3px 3px 3px 3px;
  2709. display: inline-block;
  2710. float: left;
  2711. font-size: 12px;
  2712. font-weight: 700;
  2713. margin: 0 10px 5px 0;
  2714. padding: 0.4em 0.6em;
  2715. }
  2716. .label_tag {
  2717. padding: 1px 3px 2px;
  2718. margin: 2px 3px 2px 0px;
  2719. /* padding:5px;*/
  2720. background-color: #bfbfbf;
  2721. font-size: 10px;
  2722. font-weight: bold;
  2723. color: #ffffff;
  2724. -webkit-border-radius: 3px;
  2725. -moz-border-radius: 3px;
  2726. border-radius: 3px;
  2727. text-align: center;
  2728. width: 155px;
  2729. }
  2730. .label_tag.personal_event {
  2731. background: #3366CC;
  2732. }
  2733. .label_tag.admin_event {
  2734. background: red;
  2735. }
  2736. .label_tag.course_event {
  2737. background: #458B00;
  2738. }
  2739. .label_tag.group_event {
  2740. background: #A0522D;
  2741. }
  2742. .label_tag.session_event {
  2743. background: #00496D;
  2744. }
  2745. .label_tag.important {
  2746. background-color: #c43c35;
  2747. }
  2748. .label_tag.warning {
  2749. background-color: #f89406;
  2750. }
  2751. .label_tag.success {
  2752. background-color: #46a546;
  2753. }
  2754. .label_tag.notice {
  2755. background-color: #62cffc;
  2756. }
  2757. .label_tag.skill {
  2758. background-color: #46a546;
  2759. }
  2760. .label_tag.course {
  2761. background-color: #62cffc;
  2762. }
  2763. .invisible {
  2764. color: #999;
  2765. }
  2766. .invisible h2 {
  2767. color: #999;
  2768. }
  2769. .requirements td {
  2770. padding: 5px;
  2771. }
  2772. /* header cell in data table in tools */
  2773. .data_table {
  2774. margin-bottom: 18px;
  2775. width: 100%;
  2776. border: 1px solid #DDDDDD;
  2777. }
  2778. .data_table th, .data_table td {
  2779. border-top: 1px solid #DDDDDD;
  2780. line-height: 18px;
  2781. padding: 6px;
  2782. text-align: left;
  2783. vertical-align: top;
  2784. }
  2785. .data_table th {
  2786. padding: 8px 10px;
  2787. font-weight: bold;
  2788. background-color: #F2F2F2;
  2789. border-bottom: 1px solid #DDDDDD;
  2790. }
  2791. .data_table td {
  2792. }
  2793. .data_table_no_border {
  2794. border-collapse: collapse;
  2795. border-spacing: 0;
  2796. font-size: 12px;
  2797. margin-bottom: 15px;
  2798. margin-top: 8px;
  2799. text-align: left;
  2800. width: 100%;
  2801. }
  2802. .data_table_no_border td {
  2803. line-height: normal;
  2804. padding: 6px;
  2805. text-align: left;
  2806. vertical-align: middle;
  2807. }
  2808. .data_table tr.row_odd {
  2809. background-color: #F9F9F9;
  2810. }
  2811. .data_table tr.row_odd:hover, .data_table tr.row_even:hover {
  2812. background-color: #E5EDF9;
  2813. }
  2814. .data_table tr.row_even {
  2815. background-color: #fff;
  2816. }
  2817. .data_table_no_border td .highlight {
  2818. font-weight: bold;
  2819. }
  2820. .data_table_pagination {
  2821. width: 100%;
  2822. margin-top: 8px;
  2823. }
  2824. .form-stacked .label {
  2825. display: block;
  2826. float: none;
  2827. font-weight: bold;
  2828. line-height: 20px;
  2829. padding-top: 0;
  2830. text-align: left;
  2831. width: auto;
  2832. }
  2833. .form-stacked .row div.formw {
  2834. margin-left: 0;
  2835. }
  2836. .form-stacked .row {
  2837. margin-bottom: 9px;
  2838. }
  2839. #install_form blockquote {
  2840. line-height: 16px;
  2841. }
  2842. #install_form .data_table_no_border td {
  2843. width: 30%;
  2844. }
  2845. .lp_content_type_label {
  2846. font-style: italic;
  2847. color: #999;
  2848. font-size: 11px;
  2849. }
  2850. /* Stick table header */
  2851. .tableWithFloatingHeader th {
  2852. padding: 5px 5px 0px 5px;
  2853. }
  2854. .tableFloatingHeaderOriginal th, .tableWithFloatingHeader th {
  2855. height: 40px;
  2856. }
  2857. /* jsPlumb */
  2858. .skill_root {
  2859. box-shadow: 2px 2px 19px #aaa;
  2860. -o-box-shadow: 2px 2px 19px #aaa;
  2861. -webkit-box-shadow: 2px 2px 19px #aaa;
  2862. -moz-box-shadow: 2px 2px 19px #aaa;
  2863. -webkit-border-radius: 6px;
  2864. -opera-border-radius: 6px;
  2865. -moz-border-radius: 6px;
  2866. border-radius: 6px;
  2867. background-color: #ccc;
  2868. border: 0.1em dotted #D4E06B;
  2869. color: black;
  2870. font-size: 0.9em;
  2871. height: 4em;
  2872. opacity: 0.8;
  2873. padding-top: 0.9em;
  2874. text-align: center;
  2875. width: 120px;
  2876. z-index: 40;
  2877. position: relative;
  2878. }
  2879. .skill_child {
  2880. box-shadow: 2px 2px 19px #aaa;
  2881. -o-box-shadow: 2px 2px 19px #aaa;
  2882. -webkit-box-shadow: 2px 2px 19px #aaa;
  2883. -moz-box-shadow: 2px 2px 19px #aaa;
  2884. -webkit-border-radius: 6px;
  2885. -opera-border-radius: 6px;
  2886. -moz-border-radius: 6px;
  2887. border-radius: 6px;
  2888. background-color: white;
  2889. border: 0.1em dotted #D4E06B;
  2890. color: black;
  2891. font-size: 0.9em;
  2892. height: 4em;
  2893. opacity: 0.8;
  2894. padding-top: 0.9em;
  2895. /* position: absolute; */
  2896. text-align: center;
  2897. width: 120px;
  2898. z-index: 40;
  2899. float: left;
  2900. margin-left: 20px;
  2901. margin-bottom: 20px;
  2902. margin-top: 10px;
  2903. position: relative;
  2904. }
  2905. .done_window {
  2906. background-color: #73982C;
  2907. }
  2908. .first_window {
  2909. border: 1px solid red;
  2910. cursor: pointer;
  2911. }
  2912. .second_window {
  2913. border: 1px solid blue;
  2914. margin-left: 0px;
  2915. }
  2916. .third_window {
  2917. border: 1px solid blue;
  2918. cursor: pointer;
  2919. }
  2920. ._jsPlumb_endpoint {
  2921. z-index: 50;
  2922. }
  2923. .drag-locked {
  2924. border: 1px solid red;
  2925. }
  2926. ._jsPlumb_endpoint {
  2927. z-index: 50;
  2928. }
  2929. ._jsPlumb_connector {
  2930. z-index: 1;
  2931. }
  2932. .dropHover {
  2933. border: 1px dotted red;
  2934. }
  2935. .dragActive {
  2936. border: 2px dotted orange;
  2937. }
  2938. .edit_block {
  2939. z-index: 200;
  2940. }
  2941. #language_list {
  2942. width: 80px !important;
  2943. min-width: 140px !important;
  2944. }
  2945. /*****************************************************
  2946. * LOGIN AND LANGUAGE FORM *
  2947. *****************************************************/
  2948. #lang_form {
  2949. text-align: left;
  2950. }
  2951. .form_login {
  2952. padding: 3px 15px;
  2953. }
  2954. #formLogin label {
  2955. color: #666666;
  2956. }
  2957. #login_fail {
  2958. margin-left: 20px;
  2959. padding: 4px;
  2960. border: 1px solid #f00;
  2961. background-color: #fff;
  2962. font-size: 12px;
  2963. color: #f00;
  2964. width: 185px;
  2965. }
  2966. input.mainoption {
  2967. font-weight: bold;
  2968. -moz-border-radius-bottomleft: 5px;
  2969. -moz-border-radius-bottomright: 5px;
  2970. -moz-border-radius-topleft: 5px;
  2971. -moz-border-radius-topright: 5px;
  2972. border: 1px solid #E1E1E0;
  2973. }
  2974. input.liteoption {
  2975. font-weight: normal;
  2976. -moz-border-radius-bottomleft: 5px;
  2977. -moz-border-radius-bottomright: 5px;
  2978. -moz-border-radius-topleft: 5px;
  2979. -moz-border-radius-topright: 5px;
  2980. border: 1px solid #E1E1E0;
  2981. }
  2982. .row_selected {
  2983. border-color: #478ced #1f6fe2 #1f6fe2;
  2984. background-color: #FFFFCC;
  2985. background-image: -webkit-gradient(linear, left top, left bottom, from(#FFFFCC), to(#FFFFCC));
  2986. background-image: -webkit-linear-gradient(top, #FFFFCC, #FFFFCC);
  2987. background-image: -moz-linear-gradient(top, #FFFFCC, #FFFFCC);
  2988. background-image: -ms-linear-gradient(top, #FFFFCC, #FFFFCC);
  2989. background-image: -o-linear-gradient(top, #FFFFCC, #FFFFCC);
  2990. background-image: linear-gradient(top, #FFFFCC, #FFFFCC);
  2991. /*filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#2d7ceb', EndColorStr='#2978e6');*/
  2992. -moz-box-shadow: 0px 0px 0px transparent;
  2993. -webkit-box-shadow: 0px 1px 0px transparent;
  2994. box-shadow: 0px 1px 0px transparent;
  2995. }
  2996. .row_selected a, .row_selected .invisible, .row_selected td {
  2997. /* color: #FFFFFF !important; */
  2998. }
  2999. .data_table_exercise_result, .data_table_exercise_result_left {
  3000. border-collapse: collapse;
  3001. border-spacing: 0;
  3002. font-size: 12px;
  3003. margin-bottom: 15px;
  3004. margin-top: 8px;
  3005. text-align: left;
  3006. width: 100%;
  3007. }
  3008. .data_table_exercise_result td {
  3009. line-height: normal;
  3010. padding: 6px;
  3011. text-align: center;
  3012. vertical-align: middle;
  3013. }
  3014. .data_table_exercise_result_left td {
  3015. line-height: normal;
  3016. padding: 6px;
  3017. text-align: left;
  3018. vertical-align: middle;
  3019. }
  3020. #no-data-view {
  3021. padding: 20px 0 0px;
  3022. text-align: center;
  3023. }
  3024. div#no-data-view img {
  3025. margin-bottom: 25px;
  3026. }
  3027. div#no-data-view h2 {
  3028. border: 0 none;
  3029. color: #212121;
  3030. font-size: 18px;
  3031. font-weight: bold;
  3032. margin: 0 0 6px;
  3033. padding: 0;
  3034. }
  3035. div#no-data-view div.controls {
  3036. padding-top: 1px;
  3037. }
  3038. /* styles for the star rater */
  3039. .star-rating {
  3040. list-style: none;
  3041. margin: 0px;
  3042. padding: 0px;
  3043. width: 125px;
  3044. height: 25px;
  3045. position: relative;
  3046. overflow: hidden;
  3047. background: url(../img/alt_star.png) top left repeat-x;
  3048. }
  3049. .star-rating li {
  3050. padding: 0px;
  3051. margin: 0px;
  3052. width: 25px;
  3053. height: 25px;
  3054. float: left;
  3055. }
  3056. .star-rating li a {
  3057. display: block;
  3058. width: 25px;
  3059. height: 25px;
  3060. line-height: 25px;
  3061. text-decoration: none;
  3062. text-indent: -9000px;
  3063. z-index: 20;
  3064. position: absolute;
  3065. padding: 0px;
  3066. overflow: hidden;
  3067. }
  3068. .star-rating li a:hover {
  3069. background: url(../img/alt_star.png) left bottom;
  3070. z-index: 2;
  3071. left: 0px;
  3072. border: none;
  3073. }
  3074. .star-rating a.one-star {
  3075. left: 0px;
  3076. }
  3077. .star-rating a.one-star:hover {
  3078. width: 25px;
  3079. }
  3080. .star-rating a.two-stars {
  3081. left: 25px;
  3082. }
  3083. .star-rating a.two-stars:hover {
  3084. width: 50px;
  3085. }
  3086. .star-rating a.three-stars {
  3087. left: 50px;
  3088. }
  3089. .star-rating a.three-stars:hover {
  3090. width: 75px;
  3091. }
  3092. .star-rating a.four-stars {
  3093. left: 75px;
  3094. }
  3095. .star-rating a.four-stars:hover {
  3096. width: 100px;
  3097. }
  3098. .star-rating a.five-stars {
  3099. left: 100px;
  3100. }
  3101. .star-rating a.five-stars:hover {
  3102. width: 125px;
  3103. }
  3104. .star-rating li.current-rating {
  3105. background: url(../img/alt_star.png) left center;
  3106. position: absolute;
  3107. height: 25px;
  3108. display: block;
  3109. text-indent: -9000px;
  3110. z-index: 1;
  3111. }
  3112. /* remove halo effect in firefox */
  3113. a:active {
  3114. outline: none;
  3115. }
  3116. .skills-profiles, .skills-users, .skills-skills {
  3117. margin-top: 10px;
  3118. margin-bottom: 10px;
  3119. padding: 10px;
  3120. border: 1px solid #ccc;
  3121. }
  3122. .skills-skills ul.holder,
  3123. .skills-users ul.holder,
  3124. .skills-profiles ul.holder {
  3125. margin-bottom: 8px;
  3126. border: 0px;
  3127. }
  3128. .offline_user {
  3129. display: block;
  3130. height: 20px;
  3131. width: 20px;
  3132. position: absolute;
  3133. background: url("offline.png") no-repeat scroll right center transparent;
  3134. }
  3135. .online_user {
  3136. display: block;
  3137. height: 20px;
  3138. width: 20px;
  3139. position: absolute;
  3140. background: url("online.png") no-repeat scroll right center transparent;
  3141. }
  3142. .online_user_in_text {
  3143. background: url("online.png") no-repeat scroll right center transparent;
  3144. height: 16px;
  3145. width: 17px;
  3146. display: inline-block;
  3147. margin-right: 4px;
  3148. }
  3149. .send_msg_in_text {
  3150. background: url("send_msg.png") no-repeat scroll right center transparent;
  3151. height: 16px;
  3152. width: 17px;
  3153. display: inline-block;
  3154. margin-right: 4px;
  3155. }
  3156. .send_inv_in_text {
  3157. background: url("send_inv.png") no-repeat scroll right center transparent;
  3158. height: 16px;
  3159. width: 17px;
  3160. display: inline-block;
  3161. margin-right: 4px;
  3162. }
  3163. .teacher_online {
  3164. background: url("teacher.png") no-repeat scroll right center transparent;
  3165. height: 16px;
  3166. width: 17px;
  3167. display: inline-block;
  3168. margin-right: 4px;
  3169. }
  3170. .student_online {
  3171. background: url("student.png") no-repeat scroll right center transparent;
  3172. height: 16px;
  3173. width: 17px;
  3174. display: inline-block;
  3175. margin-right: 4px;
  3176. }
  3177. #online_grid_container .thumbnail .caption {
  3178. text-align: center;
  3179. }
  3180. .offline_user_in_text {
  3181. background: url("offline.png") no-repeat scroll right center transparent;
  3182. height: 16px;
  3183. width: 17px;
  3184. display: inline-block;
  3185. margin-right: 4px;
  3186. }
  3187. .subnav .nav .hide_menu {
  3188. display: none;
  3189. }
  3190. .homepage_notice {
  3191. }
  3192. .welcome_course li {
  3193. float: left;
  3194. list-style-type: none;
  3195. width: 175px
  3196. }
  3197. .welcome_course li p {
  3198. margin-left: auto;
  3199. margin-right: auto;
  3200. width: 88px;
  3201. }
  3202. .welcome_course li a {
  3203. margin-left: auto;
  3204. margin-right: auto;
  3205. width: 120px;
  3206. }
  3207. /* Nanogong - exercise player*/
  3208. .nanogong_player_container {
  3209. width: 370px;
  3210. margin: 0 auto;
  3211. }
  3212. .nanogong_player {
  3213. float: left;
  3214. }
  3215. .action_player {
  3216. float: right;
  3217. width: 120px;
  3218. }
  3219. .audio_preview_container {
  3220. margin-left: 50px;
  3221. }
  3222. /* ie fixes */
  3223. /* Disabling help/bug notifications */
  3224. .lt-ie7 #navigation {
  3225. display: none;
  3226. }
  3227. /* Disabling top bar */
  3228. .lt-ie7 #topbar {
  3229. display: none
  3230. }
  3231. .lt-ie7 .subnav .nav > li {
  3232. float: left !important;
  3233. }
  3234. .lt-ie7 #announcements_page {
  3235. width: 450px !important;
  3236. }
  3237. /* Disabling chat */
  3238. .lt-ie7 #chatmain {
  3239. display: none;
  3240. }
  3241. #my_timeline {
  3242. background: url("dot.gif") repeat-x scroll left 45px;
  3243. height: 350px;
  3244. margin: 0px auto;
  3245. overflow: hidden;
  3246. position: relative;
  3247. width: 600px;
  3248. }
  3249. #dates {
  3250. /* height: 60px; */
  3251. overflow: hidden;
  3252. width: 800px;
  3253. }
  3254. #my_timeline #next {
  3255. background: url("../img/action_next.png") no-repeat transparent;
  3256. height: 32px;
  3257. width: 32px;
  3258. float: right;
  3259. }
  3260. #my_timeline #prev {
  3261. background: url("../img/action_prev.png") no-repeat transparent;
  3262. height: 32px;
  3263. width: 32px;
  3264. float: left;
  3265. }
  3266. #dates .selected {
  3267. font-size: 22px;
  3268. font-weight: bold;
  3269. font-color: #E06B04;
  3270. }
  3271. #dates li {
  3272. background: url("biggerdot.png") no-repeat scroll center bottom transparent;
  3273. float: left;
  3274. font-size: 14px;
  3275. height: 50px;
  3276. list-style: none outside none;
  3277. text-align: center;
  3278. width: 130px;
  3279. }
  3280. #issues {
  3281. height: 350px;
  3282. overflow: hidden;
  3283. width: 800px;
  3284. }
  3285. #issues li {
  3286. float: left;
  3287. height: 350px;
  3288. list-style: none outside none;
  3289. width: 800px;
  3290. }
  3291. #issues li h3 {
  3292. color: #FFCC00;
  3293. font-size: 48px;
  3294. margin: 0px;
  3295. text-shadow: 1px 1px 2px #000000;
  3296. }
  3297. #issues li p {
  3298. font-size: 14px;
  3299. font-weight: normal;
  3300. line-height: 22px;
  3301. margin-right: 70px;
  3302. text-shadow: 1px 1px 2px #000000;
  3303. }
  3304. #course_tools .row h3 {
  3305. margin-top: 10px;
  3306. }
  3307. .td_actions {
  3308. /*
  3309. background:#F9F9F9;
  3310. border:1px solid #eee;
  3311. margin-bottom: 5px;
  3312. padding:2px;
  3313. vertical-align:middle;
  3314. */
  3315. width: 250px;
  3316. }
  3317. /*
  3318. This is set in the template
  3319. .td_actions a {
  3320. float:left;
  3321. width:100%;
  3322. }
  3323. */
  3324. /*****************************************************
  3325. * THE NEW FORUM *
  3326. *****************************************************/
  3327. /* **** FORUM CATEGORY **** */
  3328. .forum_category {
  3329. background-color: #0066CC;
  3330. color: #fff;
  3331. }
  3332. .forum_category a {
  3333. color: #fff;
  3334. }
  3335. .forum_category_header {
  3336. background-color: #0066CC;
  3337. color: #fff;
  3338. }
  3339. tr.forum_category_header a {
  3340. color: #fff;
  3341. }
  3342. /* **** FORUM **** */
  3343. .forum_header {
  3344. background-color: #EEF;
  3345. }
  3346. /* **** THREAD **** */
  3347. .forum_threadheader {
  3348. color: #aaa;
  3349. background-color: #F7F7F7;
  3350. }
  3351. .forum-thread-header {
  3352. color: #000000;
  3353. background-color: #F7F7F7;
  3354. border-left: 1px solid #aaa;
  3355. border-right: 1px solid #aaa;
  3356. border-bottom: 1px solid #aaa;
  3357. border-top: 1px solid #aaa;
  3358. }
  3359. .forum-thread-body {
  3360. color: #000000;
  3361. background-color: #FFFFFF;
  3362. border-left: 1px solid #aaa;
  3363. border-right: 1px solid #aaa;
  3364. border-bottom: 1px solid #aaa;
  3365. border-top: 1px solid #aaa;
  3366. }
  3367. /* **** POST **** */
  3368. .quote {
  3369. background-color: #a0e5fc;
  3370. }
  3371. .current {
  3372. font-weight: bold;
  3373. }
  3374. .structure {
  3375. /*border-bottom: 1px solid #666666;*/
  3376. font-weight: bold;
  3377. background-color: #F7F7F7;
  3378. height: 20px;
  3379. }
  3380. a.forum_group_link {
  3381. font-weight: lighter;
  3382. display: inline;
  3383. }
  3384. .forum_description {
  3385. color: #000;
  3386. font-weight: normal;
  3387. font-size: 11px;
  3388. }
  3389. .forum_description p {
  3390. font-size: 11px;
  3391. }
  3392. .forum_title {
  3393. color: #000;
  3394. font-size: 14px;
  3395. }
  3396. .forum_low_description {
  3397. color: #737780;
  3398. font-style: italic;
  3399. font-weight: normal;
  3400. }
  3401. .forum_attach_comment {
  3402. color: #737780;
  3403. font-style: italic;
  3404. font-weight: normal;
  3405. }
  3406. .forum_message_left {
  3407. width: 150px;
  3408. vertical-align: top;
  3409. border-right: 1px solid #aaa;
  3410. background-color: #F7F7F7;
  3411. }
  3412. .forum_message_left_2_be_approved {
  3413. width: 150px;
  3414. vertical-align: top;
  3415. border-right: 1px solid #aaa;
  3416. background-color: #F7F7F7;
  3417. color: #999;
  3418. }
  3419. .forum_message_post_title {
  3420. /*border-bottom: 1px solid #666666;*/
  3421. font-weight: bold;
  3422. background-color: #F7F7F7;
  3423. height: 20px;
  3424. font-size: 20px;
  3425. }
  3426. .forum_message_post_title_2_be_approved {
  3427. /*border-bottom: 1px solid #666666;*/
  3428. color: #999;
  3429. font-weight: bold;
  3430. background-color: #F7F7F7;
  3431. height: 20px;
  3432. }
  3433. .forum_message_post_text {
  3434. /*border-bottom: 1px solid #666666;*/
  3435. margin-bottom: 10px;
  3436. vertical-align: top;
  3437. }
  3438. .forum_message_post_text_2_be_approved {
  3439. /*border-bottom: 1px solid #666666;*/
  3440. color: #999;
  3441. margin-bottom: 10px;
  3442. vertical-align: top;
  3443. }
  3444. /* New forum table */
  3445. .forum_table_title {
  3446. border-collapse: collapse;
  3447. width: 100%;
  3448. padding: 5px;
  3449. border-left: 1px solid #ccc;
  3450. border-top: 1px solid #ccc;
  3451. border-right: 1px solid #ccc;
  3452. padding: 5px;
  3453. }
  3454. .forum_table_title th {
  3455. padding-right: 12px;
  3456. /*border: 1px solid gray;*/
  3457. background-color: #E5EDF9;
  3458. }
  3459. .forum_table {
  3460. border-collapse: collapse;
  3461. width: 100%;
  3462. padding: 5px;
  3463. border: 1px solid #ccc;
  3464. margin-bottom: 15px;
  3465. }
  3466. .forum_table .forum_head {
  3467. padding: 5px;
  3468. text-align: left;
  3469. font-size: 14px;
  3470. }
  3471. .forum_table th {
  3472. padding-right: 12px;
  3473. background-color: #E5EDF9;
  3474. }
  3475. .forum_table tr.row_odd {
  3476. background-color: #F2F2F2;
  3477. }
  3478. .forum_table tr.row_odd:hover, .data_table tr.row_even:hover {
  3479. background-color: #E5EDF9;
  3480. }
  3481. .forum_table tr.row_even {
  3482. background-color: #fff;
  3483. }
  3484. .forum_table td {
  3485. padding: 5px;
  3486. vertical-align: top;
  3487. border-bottom: 1px solid #ccc;
  3488. border-right: 1px dotted #e1e1e1;
  3489. border-left: 1px dotted #e1e1e1;
  3490. border-top: 1px solid #ccc;
  3491. }
  3492. .post {
  3493. border: 1px solid #ccc;
  3494. margin-bottom: 5px;
  3495. }
  3496. /* User list */
  3497. .blackboard_show {
  3498. float: left;
  3499. position: absolute;
  3500. border: 1px solid black;
  3501. width: 200px;
  3502. background-color: white;
  3503. z-index: 99;
  3504. padding: 3px;
  3505. display: inline;
  3506. }
  3507. .blackboard_hide {
  3508. display: none;
  3509. }
  3510. #online_grid_container li img {
  3511. height: 100px;
  3512. }
  3513. #online_grid_container .thumbnail .caption {
  3514. height: 30px;
  3515. }
  3516. #hide_bar_template {
  3517. width: 10px;
  3518. display: inline;
  3519. float: left;
  3520. height: 100%;
  3521. padding-bottom: 90em;
  3522. margin-bottom: -90em;
  3523. cursor: pointer;
  3524. background-color: #eee;
  3525. margin-left: 4px !important;
  3526. background-image: url("../img/hide0.png");
  3527. background-repeat: no-repeat;
  3528. background-position: center center;
  3529. }
  3530. #hide_bar_template:hover {
  3531. background-color: #aaa;
  3532. }
  3533. .timeline-example {
  3534. background-color: #FFFFFF;
  3535. border: 1px solid #CCCCCC;
  3536. border-radius: 10px 10px 10px 10px;
  3537. box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.25);
  3538. margin-bottom: 20px;
  3539. padding-bottom: 20px;
  3540. padding-top: 20px;
  3541. }
  3542. #timeline {
  3543. clear: both;
  3544. height: 600px !important;
  3545. position: relative !important;
  3546. z-index: 100;
  3547. }
  3548. #main_content .course_item {
  3549. padding: 0px 0px 16px 0px;
  3550. }
  3551. /* actions */
  3552. .actions_lp {
  3553. background: #F8F8F8;
  3554. margin: 0px;
  3555. padding: 9px 0px 9px 0px;
  3556. width: 100%;
  3557. text-align: center;
  3558. }
  3559. .actions_lp .btn-group {
  3560. margin-left: 25px;
  3561. }
  3562. .actions_lp img {
  3563. vertical-align: middle;
  3564. }
  3565. .actions_lp a {
  3566. }
  3567. .actions_lp span {
  3568. margin-right: 10px;
  3569. vertical-align: middle;
  3570. }
  3571. .actions_lp form {
  3572. margin-right: 10px;
  3573. vertical-align: middle;
  3574. }
  3575. .exercise_overview_options {
  3576. text-align: center;
  3577. }
  3578. .new_actions {
  3579. background-color: #EEEEEE;
  3580. background-image: -moz-linear-gradient(center top, #F5F5F5 0%, #EEEEEE 100%);
  3581. background-repeat: repeat-x;
  3582. border: 1px solid #E5E5E5;
  3583. border-radius: 4px 4px 4px 4px;
  3584. height: 53px;
  3585. }
  3586. .new_actions .nav > li > a {
  3587. border-left: 1px solid #F5F5F5;
  3588. border-radius: 0 0 0 0;
  3589. border-right: 1px solid #E5E5E5;
  3590. margin: 0;
  3591. padding-bottom: 11px;
  3592. padding-top: 11px;
  3593. }
  3594. .new_actions-fixed {
  3595. border-color: #D5D5D5;
  3596. border-radius: 0 0 0 0;
  3597. border-width: 0 0 1px;
  3598. left: 0;
  3599. position: fixed;
  3600. right: 0;
  3601. top: 38px;
  3602. z-index: 1030;
  3603. }
  3604. .new_actions .nav > .active > a, .new_actions .nav > .active > a:hover {
  3605. background-color: #E9E9E9;
  3606. border-left: 0 none;
  3607. border-right-color: #DDDDDD;
  3608. box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05) inset;
  3609. color: #777777;
  3610. padding-left: 13px;
  3611. }
  3612. .new_actions .nav-tabs > li > a, .new_actions .nav-pills > li > a {
  3613. padding-left: 6px;
  3614. padding-right: 6px;
  3615. line-height: 18px;
  3616. }
  3617. .subnav .nav > li > .logout {
  3618. padding-top: 8px;
  3619. }
  3620. footer {
  3621. /* Default gray footer */
  3622. background-color: #F5F5F5; /* Old browsers */
  3623. background-repeat: repeat-x; /* Repeat the gradient */
  3624. background-image: -moz-linear-gradient(top, #F5F5F5 0%, #EEEEEE 100%); /* FF3.6+ */
  3625. background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #F5F5F5), color-stop(100%, #EEEEEE)); /* Chrome,Safari4+ */
  3626. background-image: -webkit-linear-gradient(top, #F5F5F5 0%, #EEEEEE 100%); /* Chrome 10+,Safari 5.1+ */
  3627. background-image: -ms-linear-gradient(top, #F5F5F5 0%, #EEEEEE 100%); /* IE10+ */
  3628. background-image: -o-linear-gradient(top, #F5F5F5 0%, #EEEEEE 100%); /* Opera 11.10+ */
  3629. /* Fixes bug in ie8 */
  3630. /* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F5F5F5', endColorstr='#EEEEEE',GradientType=0 ); */
  3631. /* IE6-9 */
  3632. background-image: linear-gradient(top, #F5F5F5 0%, #EEEEEE 100%); /* W3C */
  3633. }
  3634. /* Default LP left column values */
  3635. #learning_path_left_zone {
  3636. float: left;
  3637. width: 280px;
  3638. height: 100%;
  3639. padding-left: 8px;
  3640. padding-right: 4px;
  3641. }
  3642. #learning_path_left_zone #header {
  3643. font-size: 14px;
  3644. }
  3645. #author_icon {
  3646. float: left;
  3647. }
  3648. #lp_navigation_elem {
  3649. float: left;
  3650. }
  3651. #author_image {
  3652. border: 1px solid #CCCCCC;
  3653. float: left;
  3654. margin: 0;
  3655. padding: 8px;
  3656. position: relative;
  3657. width: 94%;
  3658. }
  3659. #author_name {
  3660. float: left;
  3661. text-align: center;
  3662. width: 100%;
  3663. font-size: 11px;
  3664. color: #888;
  3665. margin-top: 2px;
  3666. }
  3667. #lp_media_file {
  3668. float: left;
  3669. text-align: center;
  3670. width: 94%;
  3671. }
  3672. #learning_path_toc {
  3673. font-size: 9pt;
  3674. margin: 0;
  3675. }
  3676. #scorm_title {
  3677. background: none repeat scroll 0 0 #EEEEEE;
  3678. color: #444444;
  3679. font-size: 16px;
  3680. font-weight: bold;
  3681. padding: 1px 5px 3px 8px;
  3682. }
  3683. .progresstext {
  3684. text-align: center;
  3685. }
  3686. .inner_lp_toc {
  3687. overflow: auto;
  3688. background-color: white;
  3689. height: 210px;
  3690. }
  3691. .inner_lp_toc .scorm_item a {
  3692. font-weight: bold;
  3693. font-size: 14px;
  3694. margin-right: 1px;
  3695. padding-bottom: 2px;
  3696. text-decoration: none;
  3697. color: #2F3E46;
  3698. }
  3699. .inner_lp_toc .scorm_item a.chapter_module {
  3700. font-weight: normal;
  3701. margin-right: 10px;
  3702. }
  3703. .inner_lp_toc .scorm_item_highlight {
  3704. border: 1px solid #999;
  3705. background: #999;
  3706. font-weight: bold;
  3707. text-shadow: 0 -1px 1px #666;
  3708. background-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(#999));
  3709. background-image: -webkit-linear-gradient(top, #666, #999);
  3710. background-image: -moz-linear-gradient(top, #666, #999);
  3711. background-image: -ms-linear-gradient(top, #666, #999);
  3712. background-image: -o-linear-gradient(top, #666, #999);
  3713. background-image: linear-gradient(top, #666, #999);
  3714. margin-right: 0px;
  3715. padding: 10px 0px 10px 0px;
  3716. text-decoration: none;
  3717. }
  3718. .inner_lp_toc .scorm_item_highlight a {
  3719. color: #fff;
  3720. margin-right: 1px;
  3721. text-decoration: none;
  3722. font-weight: bold;
  3723. }
  3724. .inner_lp_toc .scorm_item_section {
  3725. border: 1px solid #222;
  3726. background: #333;
  3727. font-weight: bold;
  3728. color: #fff;
  3729. text-shadow: 0 -1px 1px #000;
  3730. background-image: -webkit-gradient(linear, left top, left bottom, from(#555), to(#333));
  3731. background-image: -webkit-linear-gradient(top, #555, #333);
  3732. background-image: -moz-linear-gradient(top, #555, #333);
  3733. background-image: -ms-linear-gradient(top, #555, #333);
  3734. background-image: -o-linear-gradient(top, #555, #333);
  3735. background-image: linear-gradient(top, #555, #333);
  3736. margin-right: 1px;
  3737. padding: 10px 0px 10px 0px;
  3738. text-decoration: none;
  3739. }
  3740. .inner_lp_toc .scorm_item {
  3741. font-size: 16px;
  3742. margin-left: 10px;
  3743. margin-right: 10px;
  3744. text-decoration: none;
  3745. border-color: rgba(255, 255, 255, 0.3);
  3746. }
  3747. .inner_lp_toc .scorm_item_1 {
  3748. border-bottom: 1px solid #CCCCCC;
  3749. background: #eee;
  3750. font-weight: bold;
  3751. color: #444;
  3752. text-shadow: 0 1px 1px #f6f6f6;
  3753. background-image: -webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#eee));
  3754. background-image: -webkit-linear-gradient(top, #fdfdfd, #eee);
  3755. background-image: -moz-linear-gradient(top, #fdfdfd, #eee);
  3756. background-image: -ms-linear-gradient(top, #fdfdfd, #eee);
  3757. background-image: -o-linear-gradient(top, #fdfdfd, #eee);
  3758. background-image: linear-gradient(top, #fdfdfd, #eee);
  3759. margin-right: 1px;
  3760. padding: 10px 0px 10px 0px;
  3761. text-decoration: none;
  3762. font-weight: normal;
  3763. /* background:#FDFDFD; */
  3764. }
  3765. .inner_lp_toc .scorm_item_2 {
  3766. background-image: -webkit-gradient(linear, left top, left bottom, from(#fdfdfd), to(#eee));
  3767. background-image: -webkit-linear-gradient(top, #fdfdfd, #eee);
  3768. background-image: -moz-linear-gradient(top, #fdfdfd, #eee);
  3769. background-image: -ms-linear-gradient(top, #fdfdfd, #eee);
  3770. background-image: -o-linear-gradient(top, #fdfdfd, #eee);
  3771. background-image: linear-gradient(top, #fdfdfd, #eee);
  3772. border-bottom: 1px solid #CCCCCC;
  3773. color: #444444;
  3774. font-weight: bold;
  3775. text-shadow: 0 1px 1px #F6F6F6;
  3776. margin-right: 1px;
  3777. padding: 10px 0px 10px 0px;
  3778. text-decoration: none;
  3779. font-weight: normal;
  3780. }
  3781. .ui-state-highlight_lp {
  3782. border: 1px solid #FEAA18;
  3783. background: #FFB738;
  3784. color: #363636;
  3785. height: 20px;
  3786. width: 70%;
  3787. }
  3788. .bottom_actions {
  3789. display: block;
  3790. }
  3791. .bottom_actions_fixed {
  3792. position: fixed;
  3793. z-index: 9001;
  3794. bottom: 0;
  3795. left: 0px;
  3796. margin-bottom: 0px;
  3797. }
  3798. .doc_folder {
  3799. margin-right: 5px;
  3800. margin-top: 5px;
  3801. width: 100%;
  3802. float: left;
  3803. }
  3804. .doc_resource {
  3805. margin: 5px;
  3806. width: 100%;
  3807. float: left;
  3808. }
  3809. .lp_resource_element_new {
  3810. border: 2px dotted green;
  3811. }
  3812. #course_thing_to_do .thumbnail {
  3813. text-align: center;
  3814. }
  3815. .handle {
  3816. background-image: url('../img/div_show.gif');
  3817. background-repeat: no-repeat;
  3818. background-position: left center;
  3819. padding-left: 25px;
  3820. box-shadow: none;
  3821. }
  3822. .handle.collapsed {
  3823. background-image: url('../img/div_show.gif');
  3824. background-repeat: no-repeat;
  3825. background-position: left center;
  3826. padding-left: 25px;
  3827. box-shadow: none;
  3828. }
  3829. .handle.expanded {
  3830. background-image: url('../img/div_hide.gif');
  3831. background-repeat: no-repeat;
  3832. background-position: left center;
  3833. padding-left: 25px;
  3834. box-shadow: none;
  3835. }
  3836. .collapsible .handle {
  3837. background-image: url('../img/div_hide.gif');
  3838. background-repeat: no-repeat;
  3839. background-position: left center;
  3840. padding-left: 25px;
  3841. box-shadow: none;
  3842. }
  3843. .collapsible .handle.collapsed {
  3844. background-image: url('../img/div_show.gif');
  3845. background-repeat: no-repeat;
  3846. background-position: left center;
  3847. padding-left: 25px;
  3848. box-shadow: none;
  3849. }
  3850. .collapsible.expanded .handle {
  3851. background-image: url('../img/div_hide.gif');
  3852. background-repeat: no-repeat;
  3853. background-position: left center;
  3854. padding-left: 25px;
  3855. box-shadow: none;
  3856. }
  3857. .btn.show {
  3858. border: none;
  3859. border-radius: 0;
  3860. background-color: transparent;
  3861. width: 22px;
  3862. height: 22px;
  3863. margin: 0;
  3864. padding: 0;
  3865. display: inline-block;
  3866. background-image: url('../img/icons/22/invisible.png');
  3867. background-repeat: no-repeat;
  3868. background-position: center center;
  3869. box-shadow: none;
  3870. }
  3871. .btn.hide {
  3872. border: none;
  3873. border-radius: 0;
  3874. margin: 0;
  3875. padding: 0;
  3876. background-color: transparent;
  3877. width: 22px;
  3878. height: 22px;
  3879. display: inline-block;
  3880. background-image: url('../img/icons/22/visible.png');
  3881. background-repeat: no-repeat;
  3882. background-position: center center;
  3883. box-shadow: none;
  3884. }
  3885. .btn.loading {
  3886. border: none;
  3887. border-radius: 0;
  3888. background-color: transparent;
  3889. width: 22px;
  3890. height: 22px;
  3891. margin: 0;
  3892. padding: 0;
  3893. display: inline-block;
  3894. background-image: url('../img/loading1.gif') !important;
  3895. background-repeat: no-repeat;
  3896. background-position: center center;
  3897. box-shadow: none;
  3898. }
  3899. i.size-32 {
  3900. width: 32px;
  3901. height: 32px;
  3902. line-height: 32px;
  3903. margin: 0;
  3904. padding: 0;
  3905. border: none;
  3906. border-radius: 0;
  3907. background-repeat: no-repeat;
  3908. background-position: center center;
  3909. box-shadow: none;
  3910. background-color: transparent;
  3911. display: inline-block;
  3912. }
  3913. i.size-32.icon-new-folder {
  3914. background-image: url('../img/icons/32/new_folder.png');
  3915. }
  3916. i.size-32.icon-new-link {
  3917. background-image: url('../img/icons/32/new_link.png');
  3918. }
  3919. i.size-32.icon-export-csv {
  3920. background-image: url('../img/icons/32/export_csv.png');
  3921. }
  3922. i.size-32.icon-import-csv {
  3923. background-image: url('../img/icons/32/import_csv.png');
  3924. }
  3925. i.size-32.icon-delete-all {
  3926. background-image: url('../img/icons/32/delete.png');
  3927. }
  3928. i.size-32.icon-back {
  3929. background-image: url('../img/icons/32/back.png');
  3930. }
  3931. i.size-32.icon-settings {
  3932. background-image: url('../img/icons/32/settings.png');
  3933. }
  3934. i.size-32.icon-view-detailed {
  3935. background-image: url('../img/icons/32/view_detailed.png');
  3936. }
  3937. i.size-32.icon-view-text {
  3938. background-image: url('../img/icons/32/view_text.png');
  3939. }
  3940. i.size-32.icon-sort-by-created-date {
  3941. background-image: url('../img/icons/32/notes_order_by_date_new.png');
  3942. }
  3943. i.size-32.icon-sort-by-modified-date {
  3944. background-image: url('../img/icons/32/notes_order_by_date_mod.png');
  3945. }
  3946. i.size-32.icon-sort-by-title {
  3947. background-image: url('../img/icons/32/notes_order_by_title.png');
  3948. }
  3949. i.size-32.icon-new-announce {
  3950. background-image: url('../img/icons/32/new_announce.png');
  3951. }
  3952. i.size-22 {
  3953. width: 22px;
  3954. height: 22px;
  3955. line-height: 22px;
  3956. margin: 0;
  3957. padding: 0;
  3958. border: none;
  3959. border-radius: 0;
  3960. background-repeat: no-repeat;
  3961. background-position: center center;
  3962. box-shadow: none;
  3963. background-color: transparent;
  3964. display: inline-block;
  3965. }
  3966. i.size-22.icon-edit {
  3967. background-image: url('../img/icons/22/edit.png');
  3968. }
  3969. i.size-22.icon-delete {
  3970. background-image: url('../img/icons/22/delete.png');
  3971. }
  3972. i.icon-collapse {
  3973. background-image: url('../img/div_show.gif');
  3974. }
  3975. i.icon-expand {
  3976. background-image: url('../img/div_hide.gif');
  3977. }
  3978. .announcement {
  3979. /* background: none repeat scroll 0 0 #F2F2F2;*/
  3980. border: 1px solid #D3D3D3;
  3981. color: #555555;
  3982. font-weight: normal;
  3983. border-spacing: 0;
  3984. margin-bottom: 15px;
  3985. margin-top: 8px;
  3986. text-align: left;
  3987. width: 100%;
  3988. }
  3989. .announcement .title {
  3990. background: none repeat scroll 0 0 #F2F2F2;
  3991. color: black;
  3992. }
  3993. .announcement .title a:link,
  3994. .announcement .title a:active,
  3995. .announcement .title a:visited {
  3996. color: #555555;
  3997. }
  3998. .announcement .icon.attachement {
  3999. border: none;
  4000. border-radius: 0;
  4001. background-color: transparent;
  4002. width: 16px;
  4003. height: 16px;
  4004. margin: 0;
  4005. padding: 0;
  4006. display: inline-block;
  4007. background-image: url('../img/attachment.gif');
  4008. background-repeat: no-repeat;
  4009. background-position: center center;
  4010. box-shadow: none;
  4011. }
  4012. li.annoucement {
  4013. min-height: 76px;
  4014. }
  4015. .announcement .details {
  4016. font-style: italic;
  4017. text-align: right;
  4018. }
  4019. .control-text {
  4020. padding-top: 5px;
  4021. display: inline-block;
  4022. }
  4023. .boot-tooltip {
  4024. cursor: pointer;
  4025. }
  4026. /*
  4027. link
  4028. */
  4029. .link_category {
  4030. background-color: #FFFFFF;
  4031. margin-bottom: 5px;
  4032. }
  4033. .link_category .head {
  4034. background-color: #EFEFEF;
  4035. border: 1px solid #CCCCCC;
  4036. margin-bottom: 5px;
  4037. padding-top: 2px;
  4038. padding-right: 2px;
  4039. padding-bottom: 2px;
  4040. vertical-align: middle;
  4041. }
  4042. .link_category .body {
  4043. margin-left: 32px;
  4044. }
  4045. .link:nth-child(2n) {
  4046. background-color: #F9F9F9;
  4047. }
  4048. .link {
  4049. border-top: 1px solid #DDDDDD;
  4050. border-left: 1px solid #DDDDDD;
  4051. border-right: 1px solid #DDDDDD;
  4052. }
  4053. .link:last-child {
  4054. border-bottom: 1px solid #DDDDDD;
  4055. border-left: 1px solid #DDDDDD;
  4056. border-right: 1px solid #DDDDDD;
  4057. }
  4058. .link {
  4059. border-collapse: collapse;
  4060. /*border: 1px solid #CCCCCC;*/
  4061. padding-top: 6px;
  4062. padding-right: 6px;
  4063. padding-bottom: 6px;
  4064. padding-left: 6px;
  4065. vertical-align: middle;
  4066. }
  4067. .link .icon {
  4068. position: absolute;
  4069. float: left;
  4070. }
  4071. .link:hover {
  4072. background-color: #E5EDF9;
  4073. }
  4074. .link .title,
  4075. .link .description {
  4076. margin-left: 32px;
  4077. }
  4078. .link .description {
  4079. font-weight: normal;
  4080. color: #000000;
  4081. }
  4082. .link.invisible img {
  4083. opacity: 0.4;
  4084. filter: alpha(opacity = 40); /* For IE8 and earlier */
  4085. }
  4086. .link.invisible .description {
  4087. color: #999999;
  4088. }
  4089. .link .status {
  4090. border: none;
  4091. border-radius: 0;
  4092. background-color: transparent;
  4093. width: 22px;
  4094. height: 22px;
  4095. margin: 0;
  4096. padding: 0;
  4097. display: inline-block;
  4098. background-repeat: no-repeat;
  4099. background-position: center center;
  4100. box-shadow: none;
  4101. }
  4102. .link.invalid .status {
  4103. background-image: url('../img/icons/22/error.png');
  4104. }
  4105. .link.valid .status {
  4106. background-image: url('../img/icons/22/accept.png');
  4107. }
  4108. .btn.validate_link {
  4109. border: none;
  4110. border-radius: 0;
  4111. background-color: transparent;
  4112. width: 22px;
  4113. height: 22px;
  4114. margin: 0;
  4115. padding: 0;
  4116. display: inline-block;
  4117. background-image: url('../img/icons/22/preview_view.png');
  4118. background-repeat: no-repeat;
  4119. background-position: center center;
  4120. box-shadow: none;
  4121. }
  4122. /*
  4123. Glossary
  4124. */
  4125. i.size-32.icon-new-glossary-term {
  4126. background-image: url('../img/icons/32/new_glossary_term.png');
  4127. }
  4128. /*
  4129. * Notebook
  4130. */
  4131. i.size-32.icon-new-note {
  4132. background-image: url('../img/icons/32/new_note.png');
  4133. }
  4134. .notebook.entries li {
  4135. vertical-align: text-top;
  4136. }
  4137. .notebook.note {
  4138. display: inline-block;
  4139. width: 49%;
  4140. margin-left: 0px;
  4141. margin-right: 1px;
  4142. padding: 0;
  4143. }
  4144. .notebook.note {
  4145. background-color: #D2ECF5;
  4146. }
  4147. .notebook.note .title {
  4148. padding: 1;
  4149. display: block;
  4150. margin-top: 0;
  4151. margin-right: 0;
  4152. margin-left: 0;
  4153. padding-top: 5px;
  4154. padding-bottom: 12px;
  4155. vertical-align: baseline;
  4156. background-color: #028DC2;
  4157. color: #ffffff;
  4158. }
  4159. .notebook.note .footer {
  4160. text-align: right;
  4161. font-style: italic
  4162. }
  4163. #learning_path_main #control {
  4164. text-align: center;
  4165. background-image: -webkit-gradient(linear, left top, left bottom, from(#ececec), to(#fff));
  4166. background-image: -webkit-linear-gradient(top, #ececec, #fff);
  4167. background-image: -moz-linear-gradient(top, #ececec, #fff);
  4168. background-image: -ms-linear-gradient(top, #ececec, #fff);
  4169. background-image: -o-linear-gradient(top, #ececec, #fff);
  4170. background-image: linear-gradient(top, #ececec, #fff);
  4171. height: 32px;
  4172. padding: 8px 0px 8px 0px;
  4173. opacity: 0.9;
  4174. bottom: 0px;
  4175. margin: auto;
  4176. width: 100%;
  4177. height: 34px;
  4178. position: absolute
  4179. }
  4180. /*
  4181. data table
  4182. */
  4183. .dataTables_wrapper {
  4184. clear: both;
  4185. }
  4186. .dataTables_length {
  4187. float: left;
  4188. width: 40%;
  4189. }
  4190. .dataTables_filter {
  4191. text-align: right;
  4192. }
  4193. .dataTables_info {
  4194. float: left;
  4195. width: 60%;
  4196. }
  4197. .dataTables_paginate {
  4198. float: right;
  4199. text-align: right;
  4200. }
  4201. .dataTables_wrapper label input, .dataTables_wrapper label textarea, .dataTables_wrapper label select {
  4202. display: inline-block;
  4203. }
  4204. .dataTables.display {
  4205. clear: both;
  4206. margin: 0 auto;
  4207. width: 100%;
  4208. }
  4209. .dataTables_wrapper .paginate_disabled_previous, .dataTables_wrapper .paginate_enabled_previous {
  4210. padding-left: 23px;
  4211. background: url("../img/action_prev.png") no-repeat scroll left top;
  4212. }
  4213. .dataTables_wrapper .paginate_disabled_next, .dataTables_wrapper .paginate_enabled_next {
  4214. margin-left: 10px;
  4215. padding-right: 23px;
  4216. background: url("../img/action_next.png") no-repeat scroll left top;
  4217. }
  4218. .dataTables_wrapper .paginate_disabled_previous, .dataTables_wrapper .paginate_disabled_next {
  4219. opacity: 0.4;
  4220. }
  4221. .dataTables_wrapper .sorting_asc {
  4222. background-image: url("../img/sort_asc.png");
  4223. background-repeat: no-repeat;
  4224. background-attachment: scroll;
  4225. background-position: right center;
  4226. }
  4227. .dataTables_wrapper .sorting_desc {
  4228. background-image: url("../img/sort_desc.png");
  4229. background-repeat: no-repeat;
  4230. background-attachment: scroll;
  4231. background-position: right center;
  4232. }
  4233. #course_category_well {
  4234. padding: 9px 0;
  4235. }
  4236. .nav-list img {
  4237. margin-right: 6px;
  4238. }
  4239. /* Only for Firefox */
  4240. @-moz-document url-prefix() {
  4241. select#question_type_hidden option {
  4242. padding: 10px 0px 10px 40px;
  4243. background-repeat:no-repeat;
  4244. }
  4245. select#question_type_hidden option[value="1"] {background-image: url(../img/icons/32/mcua.gif);}
  4246. select#question_type_hidden option[value="2"] {background-image: url(../img/icons/32/mcma.gif);}
  4247. select#question_type_hidden option[value="3"] {background-image: url(../img/icons/32/fill_in_blanks.gif);}
  4248. select#question_type_hidden option[value="4"] {background-image: url(../img/icons/32/matching.gif);}
  4249. select#question_type_hidden option[value="5"] {background-image: url(../img/icons/32/open_answer.gif);}
  4250. select#question_type_hidden option[value="6"] {background-image: url(../img/icons/32/hotspot.gif);}
  4251. select#question_type_hidden option[value="7"] {background-image: url(../img/icons/32/mcma.gif);}
  4252. select#question_type_hidden option[value="8"] {background-image: url(../img/icons/32/mcma.gif);}
  4253. select#question_type_hidden option[value="9"] {background-image: url(../img/icons/32/mcmac.gif);}
  4254. select#question_type_hidden option[value="10"] {background-image: url(../img/icons/32/mcuao.gif);}
  4255. select#question_type_hidden option[value="11"] {background-image: url(../img/icons/32/mcmao.gif);}
  4256. select#question_type_hidden option[value="12"] {background-image: url(../img/icons/32/mcmaco.gif);}
  4257. select#question_type_hidden option[value="13"] {background-image: url(../img/icons/32/audio_question.png);}
  4258. select#question_type_hidden option[value="14"] {background-image: url(../img/icons/32/mcmagl.gif);}
  4259. }
  4260. .btn-success.btn-install {
  4261. float: right;
  4262. }
  4263. /*
  4264. * work
  4265. */
  4266. i.size-32.icon-new-work {
  4267. background-image: url('../img/icons/32/new_work.png');
  4268. }
  4269. /* Default skill partition colors */
  4270. .skill_partition {
  4271. cursor: pointer;
  4272. stroke: #000000;
  4273. stroke-width: 1.5;
  4274. }
  4275. #skill_holder li {
  4276. float: left;
  4277. /*width: 120px;*/
  4278. }
  4279. #filepaths input {
  4280. margin-bottom: 5px;
  4281. }
  4282. /* Fixing z-index */
  4283. #ui-datepicker-div {
  4284. z-index: 1005 !important;
  4285. }
  4286. .exercise_save_mini_message {
  4287. padding-left: 5px;
  4288. }
  4289. .xdebug-error {
  4290. margin-top: 20px;
  4291. }
  4292. .multiple_select_header {
  4293. height: 35px;
  4294. margin-bottom: 15px;
  4295. }
  4296. .pagination .current a {
  4297. cursor: default;
  4298. color:white !important;
  4299. background-color: #3a87ad !important;
  4300. }
  4301. .pagination .before a, .pagination .before a:hover {
  4302. background-color: #EEECE1;
  4303. color: #0D0D0C;
  4304. }
  4305. .pagination .after a, .pagination .after a:hover {
  4306. background-color: #F5F5F5;
  4307. color:#999999;
  4308. }
  4309. .pagination .remind a, .pagination .remind a:hover {
  4310. /* text-decoration: underline; */
  4311. background-color: #f89406;
  4312. color:white;
  4313. }
  4314. .pagination .not_answered a , .pagination .not_answered a:hover {
  4315. background-color: #f89406;
  4316. }
  4317. .pagination .answered a , .pagination .answered a:hover {
  4318. background-color: green;
  4319. color: white;
  4320. }
  4321. .exercise_reminder_item {
  4322. font-size: 80%;
  4323. }
  4324. .exercise_reminder_item .radio, .exercise_reminder_item .checkbox {
  4325. padding-left: 0px;
  4326. }
  4327. .exercise_save_mini_message {
  4328. margin-left: 5px;
  4329. }
  4330. #learning_path_left_zone .no-border {
  4331. border: 0px;
  4332. }
  4333. .highlight_image_selected img {
  4334. border: 5px solid #0088cc;
  4335. }
  4336. .highlight_image_default img {
  4337. border: 5px solid transparent;
  4338. }
  4339. .window_right_question {
  4340. padding: 10px 10px 10px 25px;
  4341. }
  4342. .window_left_question {
  4343. text-align: right;
  4344. padding: 10px 25px 10px 10px;
  4345. }
  4346. .drag_question .window, .drag_question .label {
  4347. cursor:pointer;
  4348. box-shadow: 2px 2px 19px #aaa;
  4349. -o-box-shadow: 2px 2px 19px #aaa;
  4350. -webkit-box-shadow: 2px 2px 19px #aaa;
  4351. -moz-box-shadow: 2px 2px 19px #aaa;
  4352. min-height: 50px;
  4353. padding-top: 25px;
  4354. }
  4355. .select_class_filter {
  4356. margin: 0px 0px 50px 10px;
  4357. }
  4358. .advmultiselect .span1 {
  4359. padding-top: 50px;
  4360. }
  4361. .drag_question {
  4362. float: left;
  4363. width: 65%;
  4364. min-height: 4em;
  4365. }
  4366. .droppable {
  4367. float:left;
  4368. width:100px;
  4369. min-height: 25px;
  4370. padding : 1px;
  4371. text-align: center;
  4372. border: 1px dashed #555;
  4373. margin: 3px 3px 3px 0;
  4374. }
  4375. .drag_question li, .droppable li{
  4376. margin: 3px 3px 3px 0;
  4377. padding: 1px;
  4378. float: left;
  4379. width: 100px;
  4380. min-height: 25px;
  4381. text-align: center;
  4382. color: #000;
  4383. }
  4384. .item_added {
  4385. float:left;
  4386. }
  4387. .data_table .row_total {
  4388. background-color: #555;
  4389. color:white;
  4390. }
  4391. .exercise_pagination {
  4392. margin: 0px;
  4393. }
  4394. #question_admin_form .media, #edit_question .media{
  4395. display:none;
  4396. }
  4397. .activity_content {
  4398. margin-left:120px;
  4399. }
  4400. .form-signin {
  4401. max-width: 300px;
  4402. padding: 19px 29px 29px;
  4403. margin: 0 auto 20px;
  4404. background-color: #fff;
  4405. border: 1px solid #e5e5e5;
  4406. -webkit-border-radius: 5px;
  4407. -moz-border-radius: 5px;
  4408. border-radius: 5px;
  4409. -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
  4410. -moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
  4411. box-shadow: 0 1px 2px rgba(0,0,0,.05);
  4412. }
  4413. .form-signin .form-signin-heading,
  4414. .form-signin .checkbox {
  4415. margin-bottom: 10px;
  4416. }
  4417. .form-signin input[type="text"],
  4418. .form-signin input[type="password"] {
  4419. font-size: 16px;
  4420. height: auto;
  4421. margin-bottom: 15px;
  4422. padding: 7px 9px;
  4423. }
  4424. .question_no_title {
  4425. text-align: center;
  4426. font-size: larger;
  4427. }
  4428. .main_question .media .media-object {
  4429. font-weight: bold;
  4430. background-color: #ccc;
  4431. width:32px;
  4432. height:32px;
  4433. padding:8px 2px 0px 2px;
  4434. border-radius: 5px;
  4435. }
  4436. .main_question .media .question_description {
  4437. padding-top: 5px;
  4438. }
  4439. .btn-invitations {
  4440. margin-left: 110px;
  4441. }
  4442. .btn-msg {
  4443. background: url("send_msg.png") no-repeat left center;
  4444. background-position: 3px;
  4445. padding: 2px 4px;
  4446. padding-left: 22px;
  4447. margin-bottom: 10px;
  4448. font-size: 11px;
  4449. line-height: 14px;
  4450. background-color: #e6e6e6;
  4451. }
  4452. .btn-inv {
  4453. background: url("send_inv.png") no-repeat left center;
  4454. background-position: 3px;
  4455. padding: 2px 4px;
  4456. padding-left: 22px;
  4457. margin-bottom: 10px;
  4458. font-size: 11px;
  4459. line-height: 14px;
  4460. background-color: #e6e6e6;
  4461. }
  4462. .btn-inv-off {
  4463. background: url("send_inv_off.png") no-repeat left center;
  4464. background-position: 3px;
  4465. padding: 2px 4px;
  4466. padding-left: 22px;
  4467. margin-bottom: 10px;
  4468. font-size: 11px;
  4469. line-height: 14px;
  4470. background-color: #e6e6e6;
  4471. }
  4472. .password-verdict {
  4473. padding-left:5px;
  4474. }
  4475. #password_progress {
  4476. width: 220px;
  4477. }
  4478. .table td div.success {
  4479. background-color: #98E57F;
  4480. }
  4481. .table td.hover {
  4482. background-color: rgba(255, 153, 0, 0.5);
  4483. }
  4484. .trajectory .control-group .btn-danger {
  4485. margin-top: -10px;
  4486. margin-left: 5px;
  4487. }
  4488. .trajectory ul {
  4489. margin-left: 0px;
  4490. list-style-type: none;
  4491. }
  4492. .trajectory .control-group {
  4493. /* margin-left: 25px; */
  4494. }
  4495. .trajectory .control-group label {
  4496. }
  4497. .trajectory .btn-group {
  4498. margin-top: -50px;
  4499. margin-right: -10px;
  4500. float: right;
  4501. }
  4502. #saveQuestionBar {
  4503. width:150px;
  4504. bottom:140px;
  4505. position:fixed;
  4506. }
  4507. .jqgrid_whitespace {
  4508. white-space: normal !important;
  4509. }