Path: blob/master/src/packages/frontend/course/styles.ts
1503 views
/*1* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.2* License: MS-RSL – see LICENSE.md for details3*/45import { CSSProperties } from "react";67import { merge, types } from "@cocalc/util/misc";89export const entry_style: CSSProperties = {};1011export const selected_entry: CSSProperties = merge(12{13border: "1px solid #aaa",14boxShadow: "5px 5px 5px #999",15borderRadius: "3px",16marginBottom: "10px",17},18entry_style,19);2021export const note: CSSProperties = {22borderTop: "3px solid #aaa",23marginTop: "10px",24paddingTop: "5px",25};2627export function show_hide_deleted(opts): CSSProperties {28types(opts, { needs_margin: types["bool"]?.isRequired });2930return {31marginTop: opts.needs_margin ? "15px" : "0px",32float: "right",33};34}353637